/* ========================================
   CONTACT PAGE - PREMIUM LUXURY CSS
   Glassmorphism + Advanced Animations
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
  --glass-bg: rgba(248, 244, 236, 0.85);
  --glass-bg-dark: rgba(44, 44, 44, 0.7);
  --glass-border: rgba(200, 168, 107, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --glass-shadow-gold: 0 15px 35px rgba(200, 168, 107, 0.15);
  --glass-blur: blur(12px);
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(107, 138, 116, 0.08), rgba(200, 169, 107, 0.12));
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/3912498/pexels-photo-3912498.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
  animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.page-hero-content {
  position: relative;
  z-index: 2;
  animation: heroGlowReveal 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

@keyframes heroGlowReveal {
  0% {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(12px);
  }
  40% {
    opacity: 0.6;
    transform: translateY(20px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--charcoal), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
}

.page-hero-content h1::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: topLineExpand 0.8s ease 0.3s forwards;
  opacity: 0;
}

@keyframes topLineExpand {
  to {
    opacity: 1;
    width: 80px;
  }
}

.page-hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
  animation: bottomLineExpand 1s ease-out 0.5s forwards;
}

@keyframes bottomLineExpand {
  to {
    width: 50%;
    left: 25%;
  }
}

.breadcrumb {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  margin: 25px auto 20px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.breadcrumb a {
  text-decoration: none;
  color: var(--charcoal);
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

.breadcrumb a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
  width: 100%;
}

.breadcrumb a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.breadcrumb span {
  color: var(--gold);
  font-weight: 500;
}

.hero-description {
  max-width: 650px;
  margin: 25px auto 0;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  animation: fadeUpSlow 0.8s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeUpSlow {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--charcoal);
  opacity: 0.6;
  animation: gentleBounce 2s infinite;
  z-index: 2;
}

@keyframes gentleBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--charcoal);
  border-radius: 20px;
  margin: 10px auto 0;
  position: relative;
}

.mouse-wheel {
  width: 2px;
  height: 8px;
  background: var(--gold);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelRoll 2s infinite;
  border-radius: 2px;
}

@keyframes wheelRoll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  80% { opacity: 0; transform: translateX(-50%) translateY(15px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   CONTACT INFO CARDS (GLASS)
   ======================================== */

.contact-info-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--ivory), var(--cream));
  position: relative;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.info-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 45px 30px 40px;
  text-align: center;
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--sage), var(--gold));
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(200, 168, 107, 0.1), rgba(107, 138, 116, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  border: 1px solid var(--glass-border);
}

.info-card:hover .card-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
}

.card-icon i {
  font-size: 2.2rem;
  color: var(--gold);
  transition: all 0.3s ease;
}

.info-card:hover .card-icon i {
  color: var(--charcoal);
  transform: scale(1.05);
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.info-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.info-card:hover h3::after {
  width: 40px;
}

.info-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 8px 18px;
  border-radius: 40px;
  background: rgba(200, 168, 107, 0.1);
}

.card-link:hover {
  gap: 15px;
  color: var(--charcoal);
  background: var(--gold);
  transform: translateY(-2px);
}

/* ========================================
   CONTACT FORM & MAP SECTION (GLASS)
   ======================================== */

.contact-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--ivory), #FDF9F2);
}

.form-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Contact Form - Glass */
.contact-form-container {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 55px 50px;
  border-radius: 28px;
  box-shadow: var(--glass-shadow);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.contact-form-container:hover {
  box-shadow: var(--glass-shadow-gold);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.form-header {
  margin-bottom: 40px;
  text-align: center;
}

.form-header .section-tag {
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 4px;
  font-size: 0.75rem;
  color: var(--gold);
}

.form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin: 15px 0;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--charcoal), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.form-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 15px auto 20px;
  position: relative;
  border-radius: 2px;
}

.form-header p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Form Styles */
.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  position: relative;
  margin-bottom: 5px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 16px 8px 50px;
  border: 1.5px solid var(--glass-border);
  border-radius: 16px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  outline: none;
  color: var(--charcoal);
}

.form-group textarea {
  padding-top: 18px;
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C8A86B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group label {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
}

.form-group textarea ~ label {
  top: 18px;
  transform: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 168, 107, 0.1);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
  top: -10px;
  left: 15px;
  font-size: 0.7rem;
  background: white;
  padding: 0 8px;
  color: var(--gold);
  font-weight: 500;
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1;
}

.form-group textarea ~ .input-icon {
  top: 20px;
  transform: none;
}

.form-group input:focus ~ .input-icon,
.form-group textarea:focus ~ .input-icon,
.form-group select:focus ~ .input-icon {
  color: var(--gold-light);
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s ease;
  pointer-events: none;
  border-radius: 2px;
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border,
.form-group select:focus ~ .focus-border {
  width: 100%;
}

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--gold);
  padding: 0;
}

.checkbox-wrapper label {
  position: static;
  transform: none;
  color: #666;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.checkbox-wrapper:hover label {
  color: var(--gold);
}

/* Submit Button */
.btn-submit {
  position: relative;
  padding: 16px 35px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 50px;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, gap 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  margin-top: 15px;
  width: 100%;
  letter-spacing: 1px;
}

.btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(200, 168, 107, 0.4);
  gap: 18px;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.btn-submit:hover .btn-glow {
  left: 100%;
}

/* ========================================
   MAP CONTAINER (GLASS)
   ======================================== */

.map-container {
  animation: slideFromRight 0.8s ease;
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.map-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}

.map-card:hover {
  box-shadow: var(--glass-shadow-gold);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.map-header {
  background: linear-gradient(135deg, var(--charcoal), #1a1a1a);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.map-header i {
  font-size: 1.8rem;
  color: var(--gold);
  animation: mapIconPulse 2s infinite;
}

@keyframes mapIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.map-header h3 {
  font-family: 'Playfair Display', serif;
  color: white;
  margin: 0;
  font-size: 1.3rem;
}

.map-wrapper {
  height: 260px;
  position: relative;
  background: #e8e4dc;
  overflow: hidden;
}

.map-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Address Card */
.address-card {
  background: linear-gradient(135deg, rgba(200, 168, 107, 0.05), rgba(107, 138, 116, 0.03));
  padding: 25px 30px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s ease;
}

.address-card:hover {
  background: linear-gradient(135deg, rgba(200, 168, 107, 0.1), rgba(107, 138, 116, 0.06));
}

.address-card i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.address-info strong {
  display: block;
  font-size: 1rem;
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
  margin-bottom: 5px;
}

.address-info span {
  font-size: 0.85rem;
  color: #666;
  display: block;
  line-height: 1.5;
}

.address-info a {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.address-info a:hover {
  color: var(--sage);
  transform: translateX(3px);
}

/* Business Hours */
.business-hours {
  padding: 25px 30px;
  background: transparent;
}

.business-hours h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.business-hours h4 i {
  color: var(--gold);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(200, 168, 107, 0.2);
}

.hour-item:last-child {
  border-bottom: none;
}

.hour-item.holiday {
  color: #e74c3c;
}

/* ========================================
   WHATSAPP CTA SECTION (GLASS)
   ======================================== */

.whatsapp-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #075E54, #128C7E);
  position: relative;
  overflow: hidden;
}

.whatsapp-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
  animation: rotateBgSlow 25s linear infinite;
}

@keyframes rotateBgSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.whatsapp-cta-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 32px;
  padding: 50px;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeScaleUp 0.8s ease;
}

@keyframes fadeScaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.whatsapp-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.whatsapp-icon-wrapper i {
  font-size: 5rem;
  animation: whatsappBeat 2s infinite;
}

@keyframes whatsappBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.icon-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: rippleExpand 2s infinite;
}

@keyframes rippleExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.whatsapp-cta-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 15px;
}

.whatsapp-cta-content p {
  margin-bottom: 30px;
  opacity: 0.9;
  font-size: 1.05rem;
}

.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 40px;
  background: white;
  color: #075E54;
  text-decoration: none;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.btn-whatsapp-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  gap: 20px;
  background: var(--gold);
  color: var(--charcoal);
}

/* ========================================
   FAQ SECTION (GLASS)
   ======================================== */

.faq-contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: headerReveal 0.8s ease 0.2s forwards;
}

@keyframes headerReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.section-tag::before {
  content: '✦';
  margin-right: 10px;
  opacity: 0.8;
}

.section-tag::after {
  content: '✦';
  margin-left: 10px;
  opacity: 0.8;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--charcoal), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

.section-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  margin: 20px auto 0;
  position: relative;
  border-radius: 2px;
}

.section-line::before,
.section-line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-line::before {
  left: -15px;
  box-shadow: 0 0 5px var(--gold);
}

.section-line::after {
  right: -15px;
  box-shadow: 0 0 5px var(--gold);
}

.faq-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--glass-shadow);
  opacity: 0;
  transform: translateY(30px);
  animation: faqSlideUp 0.6s ease forwards;
}

@keyframes faqSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item:nth-child(1) { animation-delay: 0.08s; }
.faq-item:nth-child(2) { animation-delay: 0.16s; }
.faq-item:nth-child(3) { animation-delay: 0.24s; }
.faq-item:nth-child(4) { animation-delay: 0.32s; }

.faq-item:hover {
  box-shadow: var(--glass-shadow-gold);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.faq-question h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin: 0;
  transition: color 0.3s ease;
  font-weight: 600;
}

.faq-item:hover .faq-question h3 {
  color: var(--gold);
}

.faq-question i {
  color: var(--gold);
  transition: transform 0.4s ease;
  font-size: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  padding: 0 32px;
  overflow: hidden;
  transition: all 0.4s ease;
  background: transparent;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 32px 24px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   FLOATING ELEMENTS
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366, #20b859);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  text-decoration: none;
  z-index: 100;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: hoverFloat 2s infinite;
}

@keyframes hoverFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: var(--charcoal);
  color: white;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-8px);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  border: 1.5px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-5px);
  color: var(--charcoal);
  box-shadow: var(--glass-shadow-gold);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1100px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .form-map-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .page-hero-content h1 {
    font-size: 3.2rem;
  }
  
  .contact-form-container {
    padding: 40px 30px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 2.3rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    padding: 0 20px;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .info-card {
    padding: 35px 25px;
  }
  
  .contact-form-container {
    padding: 30px 25px;
  }
  
  .form-header h2 {
    font-size: 1.6rem;
  }
  
  .faq-question {
    padding: 18px 22px;
  }
  
  .faq-question h3 {
    font-size: 0.95rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 22px 18px;
  }
  
  .whatsapp-cta-content h3 {
    font-size: 1.5rem;
  }
  
  .address-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .address-card i {
    margin-bottom: 10px;
  }
  
  .business-hours {
    padding: 20px;
  }
  
  .breadcrumb {
    padding: 6px 16px;
    font-size: 0.8rem;
  }
  
  .map-header {
    padding: 18px 22px;
  }
  
  .map-wrapper {
    height: 200px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .form-header h2 {
    font-size: 1.4rem;
  }
  
  .info-card h3 {
    font-size: 1.2rem;
  }
  
  .card-icon {
    width: 65px;
    height: 65px;
  }
  
  .card-icon i {
    font-size: 1.8rem;
  }
  
  .whatsapp-cta-content h3 {
    font-size: 1.2rem;
  }
  
  .btn-whatsapp-cta {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

/* ========================================
   SCROLL REVEAL CLASS
   ======================================== */

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   FORM STATUS
   ======================================== */

.form-status {
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: statusPop 0.3s ease;
}

@keyframes statusPop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-status.success {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.05));
  color: #27ae60;
  border-left: 3px solid #27ae60;
}

.form-status.error {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
  color: #e74c3c;
  border-left: 3px solid #e74c3c;
}


/* Enhanced Map Styles */
.map-wrapper {
  height: 260px;
  position: relative;
  background: #e8e4dc;
  overflow: hidden;
  cursor: pointer;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: all 0.5s ease;
  pointer-events: auto;
}

.map-card:hover .map-wrapper iframe {
  transform: scale(1.02);
}

/* Map overlay for better UX */
.map-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-card:hover .map-wrapper::after {
  opacity: 1;
}

/* Direction link styling */
.direction-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 30px;
  background: rgba(200, 168, 107, 0.1);
}

.direction-link:hover {
  background: var(--gold);
  color: var(--charcoal);
  gap: 12px;
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
  .map-wrapper {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .map-wrapper {
    height: 200px;
  }
}


/* Style for the directions link inside the address card */
.direction-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.direction-link i {
    font-size: 0.8rem;
}

.direction-link:hover {
    color: var(--sage); /* or a color that matches your hover state */
    gap: 10px;
}

/* ========================================
   FAQ ACCORDION - COMPLETE FIXED STYLES
   ======================================== */

.faq-contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.section-tag::before {
  content: '✦';
  margin-right: 10px;
  opacity: 0.8;
}

.section-tag::after {
  content: '✦';
  margin-left: 10px;
  opacity: 0.8;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--charcoal), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

.section-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  margin: 20px auto 0;
  position: relative;
  border-radius: 2px;
}

.section-line::before,
.section-line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-line::before {
  left: -15px;
  box-shadow: 0 0 5px var(--gold);
}

.section-line::after {
  right: -15px;
  box-shadow: 0 0 5px var(--gold);
}

/* FAQ Grid */
.faq-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ Item */
.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--glass-shadow);
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: var(--glass-shadow-gold);
  border-color: var(--gold);
}

/* FAQ Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.faq-question h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin: 0;
  transition: color 0.3s ease;
  font-weight: 600;
  color: var(--charcoal);
}

.faq-item:hover .faq-question h3 {
  color: var(--gold);
}

.faq-question i {
  color: var(--gold);
  transition: transform 0.4s ease;
  font-size: 1rem;
}

/* FAQ Answer - Hidden by default */
.faq-answer {
  max-height: 0;
  padding: 0 32px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1), padding 0.4s ease;
  background: transparent;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

/* FAQ Active State - Answer Visible */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 32px 24px;
}

.faq-item.active .faq-answer p {
  opacity: 1;
}

/* FAQ Active State - Icon Rotation */
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-contact {
    padding: 60px 0;
  }
  
  .faq-question {
    padding: 18px 22px;
  }
  
  .faq-question h3 {
    font-size: 0.95rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 22px 18px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .faq-question {
    padding: 15px 18px;
  }
  
  .faq-question h3 {
    font-size: 0.85rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 18px 15px;
  }
  
  .faq-answer p {
    font-size: 0.85rem;
  }
}