/* ====== CONTACT PAGE ====== */

/* --- Contact Cards Section --- */
.contact-cards-section {
  background: #f9f4f1;
  padding: 130px 20px 60px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: #8c5c5c;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: block;
}

.contact-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(140, 92, 92, 0.1);
  border: 1px solid rgba(178, 125, 106, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(140, 92, 92, 0.15);
}

.contact-card-icon {
  margin-bottom: 20px;
  color: #b27d6a;
}

.contact-card-icon svg {
  stroke: #b27d6a;
}

.contact-card-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #8c5c5c;
  margin-bottom: 15px;
}

.contact-card-text {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-card-link {
  display: inline-block;
  background: #f9f4f1;
  color: #8c5c5c;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.contact-card-link:hover {
  background: #b27d6a;
  color: white;
}

.contact-card-hours {
  display: inline-block;
  background: #f9f4f1;
  color: #8c5c5c;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-weight: 500;
}

/* --- Location Section --- */
.location-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: #faf6f3;
}

.location-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.location-deco--1 {
  width: 400px;
  height: 400px;
  background: rgba(230, 213, 203, 0.3);
  top: -100px;
  left: -100px;
  animation: loc-pulse 10s infinite alternate ease-in-out;
}

.location-deco--2 {
  width: 500px;
  height: 500px;
  background: rgba(230, 213, 203, 0.2);
  bottom: -150px;
  right: -150px;
  animation: loc-pulse 12s infinite alternate-reverse ease-in-out;
}

@keyframes loc-pulse {
  0% { transform: scale(0.9); opacity: 0.2; }
  100% { transform: scale(1.1); opacity: 0.4; }
}

.location-section .contact-container {
  position: relative;
  z-index: 1;
}

.location-header {
  text-align: center;
  margin-bottom: 50px;
}

.location-header .contact-section-title {
  margin-bottom: 20px;
}

.location-intro {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Location Features */
.location-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.location-section .location-feature {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(140, 92, 92, 0.08);
  border: 1px solid rgba(178, 125, 106, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-section .location-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(140, 92, 92, 0.15);
}

.location-section .feature-image-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(140, 92, 92, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.location-section .feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.location-section .location-feature:hover .feature-image {
  transform: scale(1.15);
}

.location-section .location-feature h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #8c5c5c;
}

.location-section .location-feature p {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
}

/* Find Us - Two Column */
.find-us {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(140, 92, 92, 0.08);
  border: 1px solid rgba(178, 125, 106, 0.15);
}

.find-us-info {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.find-us-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #8c5c5c;
  margin-bottom: 20px;
}

.find-us-address {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.find-us-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #b27d6a;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(178, 125, 106, 0.2);
}

.find-us-directions:hover {
  background: #8c5c5c;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(140, 92, 92, 0.3);
}

.find-us-directions svg {
  stroke: white;
  fill: none;
}

.find-us-map {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.find-us-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(140, 92, 92, 0.12);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .contact-card {
    flex: 1 0 calc(50% - 30px);
    max-width: 100%;
  }

  .location-section .location-feature {
    max-width: 100%;
    width: 100%;
  }

  .find-us-info,
  .find-us-map {
    flex: 100%;
  }
}

@media (max-width: 768px) {
  .contact-card {
    flex: 1 0 100%;
  }

  .contact-section-title {
    font-size: 28px;
  }

  .find-us {
    padding: 25px 20px;
  }

  .find-us-map iframe {
    height: 250px;
  }

  .location-deco--1 {
    width: 300px;
    height: 300px;
  }

  .location-deco--2 {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-cards-section {
    padding: 110px 20px 40px;
  }

  .location-section {
    padding: 50px 15px;
  }

  .location-section .location-feature {
    min-width: 100%;
  }

  .find-us-map iframe {
    height: 200px;
  }
}
