/* [project]/src/app/contact/contact.css [app-client] (css) */
.header-section {
  text-align: center;
  background-image: url("/img/pages/Untitled design - 2025-07-09T120313.362.png");
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
  color: #fff !important;
}

.header-section:before {
  content: "";
  z-index: 1;
  position: absolute;
  inset: 0;
}

.header-section:after {
  content: "";
  opacity: .2;
  z-index: 0;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80") center / cover no-repeat;
  position: absolute;
  inset: 0;
}

.header-content {
  z-index: 2;
  position: relative;
}

.main-headline {
  color: wheat;
  text-shadow: 2px 2px 4px #0000001a;
  margin-bottom: 20px;
  font-family: Playfair Display, serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.sub-headline {
  color: var(--text-color);
  max-width: 600px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6;
}

.highlight-text {
  color: var(--accent-color);
  font-weight: 600;
}

.contact-section {
  background-image: url("/img/bg2.png");
  padding: 40px 0;
  position: relative;
}

.contact-container {
  align-items: stretch;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}

.contact-image {
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80") center / cover no-repeat;
  border-radius: 20px;
  flex: 1;
  min-height: 600px;
  transition: all .4s;
  position: relative;
  box-shadow: 0 10px 30px #02221626;
}

.contact-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px #02221640;
}

.contact-image:before {
  content: "";
  background: linear-gradient(135deg, #022216cc, #043e2880);
  border-radius: 20px;
  position: absolute;
  inset: 0;
}

.image-overlay {
  color: var(--text-white);
  z-index: 2;
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
}

.overlay-title {
  text-shadow: 2px 2px 4px #0000004d;
  margin-bottom: 15px;
  font-family: Playfair Display, serif;
  font-size: 2.5rem;
  font-weight: 600;
}

.overlay-text {
  opacity: .9;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-form-container {
  background: #fff;
  border-radius: 20px;
  flex: 1;
  padding: 20px;
  transition: all .4s;
  position: relative;
  box-shadow: 0 10px 30px #0222161f;
}

.contact-form-container:hover {
  background: linear-gradient(135deg, #f5ebdffa, #f4fdf8f2);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px #0222162e;
}

.contact-form-container:hover:before {
  opacity: .1;
}

.contact-title {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 15px;
  font-family: Playfair Display, serif;
  font-size: 2.8rem;
  font-weight: 600;
}

.contact-subtitle {
  color: var(--primary-color-M);
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 10px;
  position: relative;
}

.form-label {
  color: var(--primary-color-M);
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: .95rem;
  font-weight: 600;
  display: flex;
}

.form-control {
  color: var(--primary-color-M);
  background: #fff;
  border: 2px solid #d4e7dc;
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 1rem;
  transition: all .3s;
  position: relative;
}

.form-control:focus {
  border-color: var(--primary-color);
  background: #f4fdf880;
  outline: 0;
  transform: translateY(-2px);
  box-shadow: 0 0 0 .25rem #043e2826;
}

.form-control:hover {
  border-color: var(--accent-color);
  background: #e9f7ef4d;
  transform: translateY(-1px);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.floating-icon {
  color: var(--accent-color);
  opacity: .7;
  font-size: 1.1rem;
  transition: all .3s;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.form-group:focus-within .floating-icon {
  color: var(--primary-color);
  opacity: 1;
  transform: translateY(-50%)scale(1.1);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-color-M), var(--primary-color));
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 12px;
  width: 100%;
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px #02221633;
}

.btn-submit:before {
  content: "";
  background: linear-gradient(90deg, #0000, #52be804d, #0000);
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.btn-submit:hover:before {
  left: 100%;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-green));
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px #0222164d;
}

.btn-submit:active {
  transform: translateY(-1px);
}

.stats-section {
  background: var(--text-white);
  border-radius: 20px;
  margin-top: 60px;
  padding: 60px 0;
  box-shadow: 0 10px 30px #0222161a;
}

.stats-container {
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
}

.stat-item {
  border-radius: 12px;
  padding: 20px;
  transition: transform .3s;
}

.stat-item:hover {
  background: linear-gradient(135deg, #e9f7ef66, #f4fdf899);
  transform: translateY(-5px);
}

.stat-number {
  color: var(--primary-color);
  text-shadow: 1px 1px 2px #0222161a;
  margin-bottom: 10px;
  font-family: Playfair Display, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: var(--primary-color-M);
  font-size: 1.1rem;
  font-weight: 500;
}

.floating-shape {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  opacity: .08;
  border-radius: 50%;
  position: absolute;
}

.floating-shape:first-child {
  width: 80px;
  height: 80px;
  animation-delay: 0s;
  top: 10%;
  left: 10%;
}

.floating-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  animation-delay: 2s;
  top: 60%;
  right: 15%;
}

.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  animation-delay: 4s;
  bottom: 20%;
  left: 15%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0)rotate(0);
  }

  50% {
    transform: translateY(-20px)rotate(180deg);
  }
}

@media (max-width: 1200px) {
  .contact-container {
    gap: 40px;
    padding: 0 40px;
  }

  .contact-form-container {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .main-headline {
    font-size: 3rem;
  }

  .contact-container {
    flex-direction: column;
    padding: 0 20px;
  }

  .contact-image {
    min-height: 400px;
  }

  .overlay-title {
    font-size: 2rem;
  }

  .contact-title {
    font-size: 2.2rem;
  }

  .contact-subtitle {
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .header-section {
    padding: 60px 0 30px;
  }

  .main-headline {
    font-size: 2.5rem;
  }

  .sub-headline {
    font-size: 1.1rem;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .contact-image {
    min-height: 300px;
  }

  .image-overlay {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .overlay-title {
    font-size: 1.5rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .main-headline {
    font-size: 2rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=src_app_contact_contact_4adf85c6.css.map*/