.elementor-739 .elementor-element.elementor-element-3f73acd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:140px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-739 .elementor-element.elementor-element-293c008{--display:flex;}@media(min-width:768px){.elementor-739 .elementor-element.elementor-element-3f73acd{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-a646b78 *//* Root Theme Colors */
:root {
  /*--primary-color: #008000;*/
  --primary-color: #245142;
  --secondary-color: #000000;
  --background-color: #ffffff;
      --form-bg-color: #fafafa;
  --focus-color: #006400;

  --side-img-height: 280px;
  --side-offset: 140px;
  --wrap-max: 1200px;
}

/* Base Page */
body {
  margin: 0;
  background: #f2f4f7;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* === WRAPPER === */
.contact-wrap {
  position: relative;
  max-width: var(--wrap-max);
  margin: 40px auto;
  padding: 0 20px;
}

/* Decorative Side Images */
.side-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: var(--side-img-height);
  width: auto;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
  filter: saturate(1) contrast(1) brightness(1);
  transition: opacity 0.25s ease;
}

.side-img.left {
  left: calc(50% - (var(--wrap-max) / 2) - var(--side-offset));
}

.side-img.right {
  right: calc(50% - (var(--wrap-max) / 2) - var(--side-offset));
}

@media (hover: hover) and (pointer: fine) {
  .side-img:hover {
    opacity: 0.28;
  }
}

/* === CONTACT SECTION === */
.contact-section {
  position: relative;
  z-index: 2;
  padding: 30px;
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--background-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-section h2 {
  color: var(--secondary-color);
  font-size: 2.8em;
  border-bottom: 3px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 5px;
  margin: 0 0 10px 0;
}

.contact-section p {
  color: var(--primary-color);
  font-size: 1.1em;
  margin: 0.5rem 0 0 0;
}

/* Two Column Layout */
.contact-split {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.contact-form-container {
  flex: 3;
  background-color: var(--form-bg-color);
  padding: 30px;
  border-radius: 8px;
}

.contact-visual-info {
  flex: 2;
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 8px;
  color: #fff;
}

/* === FORM === */
.contact-form-container h3 {
  color: var(--secondary-color);
  margin: 0 0 25px 0;
  font-size: 1.4rem;
}

.form-group {
  margin-bottom: 18px;
}

label {
  color: var(--secondary-color);
  display: block;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
textarea {
  border: 1px solid var(--secondary-color);
  background-color: #ffffff;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--focus-color);
}

button[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: var(--primary-color);
}

/* === RIGHT COLUMN === */
.contact-visual-info h4 {
  font-size: 1.5em;
  margin: 0 0 15px 0;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}

.contact-visual-info p {
  color: #fff;
  margin: 15px 0;
}

.contact-visual-info a {
  color: #fff;
  text-decoration: none;
  transition: text-decoration 0.3s;
}

.contact-visual-info a:hover {
  text-decoration: underline;
}

.info-separator {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 25px 0;
}

/* === GALLERY === */
.gallery-mini-container {
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #fff;
}

.gallery-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.gallery-item:hover img {
  opacity: 0.85;
}

/* === SOCIAL ICONS === */
.social-icons {
  margin-top: 20px;
  text-align: center;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin: 0 6px;
  font-size: 1.1em;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  background-color: var(--form-bg-color);
  transform: scale(1.1);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .side-img.left {
    left: calc(50% - (var(--wrap-max) * 0.43) - 120px);
  }
  .side-img.right {
    right: calc(50% - (var(--wrap-max) * 0.43) - 120px);
  }
  :root {
    --side-img-height: 240px;
  }
}

@media (max-width: 980px) {
  .side-img.left {
    left: calc(50% - (var(--wrap-max) * 0.38) - 100px);
  }
  .side-img.right {
    right: calc(50% - (var(--wrap-max) * 0.38) - 100px);
  }
  :root {
    --side-img-height: 200px;
  }
  .side-img {
    opacity: 0.18;
  }
}

@media (max-width: 800px) {
  .contact-split {
    flex-direction: column;
  }
  .contact-form-container,
  .contact-visual-info {
    flex: auto;
  }
  .side-img {
    display: none;
  }
}/* End custom CSS */