@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --ivory: #FAF9F6;
  --warm-beige: #F5EFE6;
  --champagne-gold: #D4AF37;
  --soft-cream: #FFFDD0;
  --walnut-brown: #4A3525;
  --dark-charcoal: #222222;
  --accent-gold: #C5A059;
  --accent-gold-hover: #B08D45;
  --text-dark: #2A2A2A;
  --glass-bg: rgba(250, 249, 246, 0.98);
  --glass-border: rgba(197, 160, 89, 0.2);
  --shadow-premium: 0 20px 40px rgba(74, 53, 37, 0.08);
  --shadow-hover: 0 30px 60px rgba(74, 53, 37, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--ivory);
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--walnut-brown);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.section {
  padding: 100px 5%;
}

.section-alt {
  background-color: var(--warm-beige);
}

.section-white {
  background-color: #ffffff;
}

.section-ivory {
  background-color: var(--ivory);
}

.section-gradient {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--warm-beige) 100%);
}

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

.text-center {
  text-align: center;
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.2rem;
  color: var(--dark-charcoal);
  max-width: 800px;
  margin: 0 auto 4rem;
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #D4AF37 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
  background: linear-gradient(135deg, #D4AF37 0%, var(--accent-gold-hover) 100%);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--walnut-brown);
  border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: #fff;
}

/* Topbar */
.topbar {
  background-color: var(--walnut-brown);
  color: var(--ivory);
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.topbar span {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 5%;
  transition: all 0.4s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 120px;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 40px;
}

/* Nav CTA — Book Appointment */
.nav-cta {
  background: linear-gradient(135deg, #C5A059 0%, #D4AF37 50%, #C5A059 100%);
  background-size: 200% 200%;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.4s ease;
  animation: navBtnPulse 3s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 32px rgba(197, 160, 89, 0.5);
  background-position: right center;
  animation-play-state: paused;
}

@keyframes navBtnPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35); }
  50%       { box-shadow: 0 8px 28px rgba(197, 160, 89, 0.6), 0 0 0 6px rgba(197, 160, 89, 0.12); }
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark-charcoal);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 5% 50px 5%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(10, 8, 5, 0.85) 0%,
    rgba(10, 8, 5, 0.75) 40%,
    rgba(10, 8, 5, 0.2) 70%,
    rgba(10, 8, 5, 0) 100%
  );
  z-index: 0;
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: min(750px, 60%);
  margin-left: 100px;
  animation: fadeIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.18);
  border: 1px solid rgba(197, 160, 89, 0.45);
  color: #f5d98b;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 3rem;
  animation: fadeIn 1s 0.1s both;
}

.hero h1 {
  font-size: 3.3rem;
  line-height: 1.32;
  margin-bottom: 2.8rem;
  color: #ffffff;
  font-weight: 700;
  animation: fadeIn 1s 0.15s both;
}

.hero h1 em {
  color: #f5d98b;
  font-style: normal;
}

.hero .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.8;
  animation: fadeIn 1s 0.2s both;
}

.hero-tagline {
  font-size: 0.88rem;
  font-weight: 600;
  color: #f5d98b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4rem;
  animation: fadeIn 1s 0.25s both;
  opacity: 0.9;
}

/* Trust Badges */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 4.5rem;
  animation: fadeIn 1s 0.3s both;
  max-width: 90%;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.trust-badge i {
  color: #ffffff;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.trust-badge:hover i {
  color: #f5d98b;
}

.hero-actions {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeIn 1s 0.4s both;
}

@keyframes heroPulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

.hero-book-btn {
  padding: 1.4rem 3.5rem !important;
  font-size: 1.25rem !important;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: heroPulseGlow 3s infinite;
}

.hero-book-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.6) !important;
  animation: none;
}

.hero-call {
  background: rgba(255, 255, 255, 0.10) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
  font-size: 1.1rem !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 1.1rem 2.6rem !important;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-call:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(-2px);
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(255,255,255,0.15) !important;
}

/* Trust Card (bottom-right) */
.floating-card {
  position: absolute;
  bottom: 30px;
  right: calc(3% + 70px);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(197, 160, 89, 0.28);
  padding: 15px 18px;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  max-width: 190px;
  z-index: 3;
  animation: fadeIn 1s 0.5s both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(197, 160, 89, 0.3);
}

.floating-card .trust-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.floating-card .trust-rating .stars {
  color: #D4AF37;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.floating-card .trust-rating span {
  font-size: 0.75rem;
  color: var(--dark-charcoal);
  font-weight: 600;
}

.floating-card .trust-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-card .trust-items li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--walnut-brown);
  font-weight: 500;
}

.floating-card .trust-items li i {
  color: var(--accent-gold);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

/* Override btn-gold for hero buttons to appear on dark background */
.hero .btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #D4AF37 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
}

.hero .btn-outline {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.5);
}

.hero .btn-outline:hover {
  background: rgba(255,255,255,0.25);
  color: #ffffff;
}


/* About Section */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  z-index: -1;
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--dark-charcoal);
  opacity: 0.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-feature i {
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.about-feature span {
  font-weight: 500;
  color: var(--walnut-brown);
}

/* Trust in Numbers */
#stats {
  position: relative;
  background-color: #faf7f2; /* Deeper warm ivory base */
  background-image: 
    /* Blurred golden highlight top-left */
    radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0) 50%),
    /* Organic wave bottom-right */
    radial-gradient(ellipse 130% 90% at 90% 110%, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.05) 50%, rgba(255, 255, 255, 0) 80%),
    /* Flowing light ray */
    linear-gradient(125deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0) 60%),
    /* Gentle warm curve bottom-left */
    radial-gradient(ellipse 100% 100% at -10% 110%, rgba(197, 160, 89, 0.16) 0%, rgba(197, 160, 89, 0) 60%),
    /* Soft top down beige wave */
    linear-gradient(to bottom right, rgba(197, 160, 89, 0.10) 0%, rgba(255, 255, 255, 0) 50%);
}

#stats .container {
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  background-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  transition: color 0.35s ease;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 5px;
  line-height: 1;
  transition: color 0.35s ease;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--walnut-brown);
  font-weight: 500;
  transition: color 0.35s ease;
}

.stat-card:hover .stat-icon,
.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
  color: #ffffff;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0,0,0,0.03);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4);
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

.service-img {
  height: 250px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-content p {
  color: var(--dark-charcoal);
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-link {
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.service-card:hover .service-link {
  color: #ffffff;
  gap: 12px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--ivory);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-charcoal);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--accent-gold);
  color: #fff;
}

.modal-header {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.modal-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 40px;
}

.modal-body h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.modal-body .modal-intro {
  font-size: 1.1rem;
  color: var(--dark-charcoal);
  margin-bottom: 30px;
}

.modal-info-block {
  margin-bottom: 25px;
  background: rgba(197, 160, 89, 0.05);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-gold);
}

.modal-info-block h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-size: 1rem;
}

.modal-info-block p {
  color: var(--dark-charcoal);
  line-height: 1.5;
  font-size: 0.95rem;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.modal-section h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.modal-list {
  list-style: none;
}

.modal-list li {
  position: relative;
  margin-bottom: 10px;
  color: var(--dark-charcoal);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
}

.modal-text-block {
  color: var(--dark-charcoal);
  font-size: 0.95rem;
  line-height: 1.6;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
}

.modal-faq {
  margin-bottom: 25px;
}

.modal-faq h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.modal-faq-item {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-gold);
  margin-bottom: 15px;
}

.modal-faq-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  color: var(--midnight-blue);
  font-size: 1.05rem;
  margin-bottom: 5px;
}

/* Trust Section */
.trust {
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
}

.trust-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
  background: url('reception.png') center/cover no-repeat;
  filter: blur(5px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
  z-index: 1;
}

.trust-item {
  text-align: center;
  background: var(--glass-bg);
  padding: 50px 30px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
  transition: all 0.4s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.trust-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--walnut-brown);
  margin-bottom: 15px;
}

.trust-text {
  color: var(--dark-charcoal);
  opacity: 0.8;
}

/* Testimonials Carousel */
.testimonials-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 20px 5px 40px;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 400px;
  scroll-snap-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  position: relative;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.15;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-charcoal);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  min-height: 120px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #D4AF37 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  border: 2px solid var(--glass-border);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.author-info span {
  color: var(--accent-gold);
  font-size: 0.85rem;
}

/* Gallery Slider */
.gallery-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 5px 40px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 450px;
  scroll-snap-align: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--glass-bg);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--glass-border);
}

.contact-info {
  padding: 80px 60px;
  background: var(--walnut-brown);
  color: var(--ivory);
}

.contact-info h2 {
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: rgba(255, 255, 240, 0.8);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(197, 160, 89, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--ivory);
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-family: 'Outfit', sans-serif;
}

.contact-text p {
  margin-bottom: 0;
}

.map-container {
  height: 100%;
  min-height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  background: var(--dark-charcoal);
  color: var(--ivory);
  padding: 100px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo-wrapper {
  background: white;
  padding: 20px;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 30px;
}
.footer-logo-wrapper img {
  width: 160px;
  mix-blend-mode: multiply;
}

.footer-brand p {
  color: rgba(255, 255, 240, 0.6);
  max-width: 300px;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 240, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer h4 {
  color: var(--ivory);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 240, 0.7);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 240, 0.1);
  color: rgba(255, 255, 240, 0.5);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* ===================================================
   BOOKING MODAL
   =================================================== */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 5, 0.65);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.booking-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-box {
  background: var(--ivory);
  border-radius: 24px;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}

.booking-modal-overlay.active .booking-modal-box {
  transform: translateY(0) scale(1);
}

/* Close button */
.booking-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(74, 53, 37, 0.1);
  color: var(--walnut-brown);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease, color 0.2s ease;
}

.booking-modal-close:hover {
  background: var(--accent-gold);
  color: #fff;
}

/* Left panel */
.booking-modal-left {
  background: linear-gradient(160deg, var(--walnut-brown) 0%, #2e1f12 100%);
  color: var(--ivory);
  padding: 52px 44px;
  border-radius: 24px 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: #f5d98b;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  width: fit-content;
}

.booking-modal-left h2 {
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0;
}

.booking-modal-left > p {
  color: rgba(255, 255, 240, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.booking-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.booking-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 240, 0.85);
  font-size: 0.9rem;
}

.booking-perks li i {
  color: #D4AF37;
  flex-shrink: 0;
}

.booking-hours {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: #f5d98b;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
}

/* Right panel */
.booking-modal-right {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-choose {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 4px;
}

/* Option cards */
.booking-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  background: #fff;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.booking-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  border-color: var(--accent-gold);
}

.booking-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.booking-whatsapp .booking-option-icon { background: #e8f8ee; color: #25d366; }
.booking-call    .booking-option-icon  { background: rgba(197, 160, 89, 0.12); color: var(--accent-gold); }
.booking-email   .booking-option-icon  { background: rgba(74, 53, 37, 0.08); color: var(--walnut-brown); }

.booking-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking-option-text strong {
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  color: var(--walnut-brown);
}

.booking-option-text small {
  font-size: 0.8rem;
  color: rgba(34,34,34,0.55);
}

.booking-arrow {
  color: rgba(34,34,34,0.25);
  font-size: 0.85rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.booking-option:hover .booking-arrow {
  transform: translateX(4px);
  color: var(--accent-gold);
}

.booking-note {
  font-size: 0.8rem;
  color: rgba(34,34,34,0.45);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
}

.booking-note i {
  color: var(--accent-gold);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--walnut-brown);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content { margin-left: 40px; }
  .floating-card { right: 5%; }
  .hero h1 { font-size: 3rem; line-height: 1.2; }
  .hero-eyebrow { font-size: 0.75rem; }
  .hero-trust-badges { flex-wrap: wrap; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content { margin-left: 0; max-width: 100%; }
  /* Hide text, show icon on tablet so nav doesn't crowd */
  .nav-cta { font-size: 0; padding: 0.7rem 0.9rem; gap: 0; }
  .nav-cta i { font-size: 1.1rem; }
  .mobile-toggle { display: block; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--ivory);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
  }
  
  .nav-links.active {
    display: flex;
  }

  .hero h1 { font-size: 2rem; line-height: 1.25; }
  .hero .lead { font-size: 0.95rem; }
  .hero-tagline { font-size: 0.78rem; letter-spacing: 0.8px; }
  .hero-trust-badges { flex-wrap: wrap; gap: 7px; }
  .trust-badge { font-size: 0.75rem; padding: 5px 11px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: auto; }
  .floating-card { display: none; }
  .about { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .map-container { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr; }
  .modal-grid { grid-template-columns: 1fr; }
  .gallery-item { flex: 0 0 300px; }
  .testimonial-card { flex: 0 0 300px; }
  .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  /* Booking modal: single column on mobile */
  .booking-modal-box {
    grid-template-columns: 1fr;
    max-height: 100vh;
    border-radius: 20px 20px 0 0;
  }
  .booking-modal-left {
    padding: 36px 28px 28px;
    border-radius: 20px 20px 0 0;
  }
  .booking-modal-right {
    padding: 24px 28px 36px;
  }
  .booking-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .nav-cta { display: none; }
}

/* Masonry Gallery */
.masonry-gallery {
  column-count: 3;
  column-gap: 20px;
  padding: 20px 0;
}
@media (max-width: 992px) {
  .masonry-gallery {
    column-count: 2;
  }
}
@media (max-width: 576px) {
  .masonry-gallery {
    column-count: 1;
  }
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img {
  transform: scale(1.05);
}

/* Google Reviews Slider */
.google-reviews-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 20px 5px 40px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.google-reviews-slider::-webkit-scrollbar {
  display: none;
}
.google-review-card {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: center;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  transition: all 0.3s ease;
  cursor: pointer;
}
.google-review-card h4, .google-review-card .review-text, .google-review-card .fa-google {
  transition: color 0.3s ease;
}
.google-review-card:hover {
  background: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(184, 134, 11, 0.2);
}
.google-review-card:hover h4 {
  color: #fff !important;
}
.google-review-card:hover .review-text {
  color: #fff !important;
}
.google-review-card:hover .fa-google {
  color: #fff !important;
}
.google-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: var(--shadow-soft);
  font-size: 1.5rem;
  color: var(--accent-gold);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.google-nav-btn:hover {
  background: var(--accent-gold);
  color: #fff;
}
@media (max-width: 992px) {
  .google-review-card { flex: 0 0 calc(50% - 15px); }
}
@media (max-width: 768px) {
  .google-review-card { flex: 0 0 100%; }
}

/* Contact Form Styles */
.contact-form-container {
  padding: 50px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.premium-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark-charcoal);
  background: #fdfdfd;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

.form-group textarea {
  resize: vertical;
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 30px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile Touch Interactions */
@media (max-width: 992px) {
  .stat-card.touch-active {
    background: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.2);
  }
  .stat-card.touch-active .stat-icon,
  .stat-card.touch-active .stat-number,
  .stat-card.touch-active .stat-label {
    color: #fff;
  }

  .service-card.touch-active {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: var(--accent-gold);
  }
  .service-card.touch-active h3,
  .service-card.touch-active p {
    color: #fff !important;
  }
  .service-card.touch-active .service-img img {
    transform: scale(1.05);
  }
  .service-card.touch-active .service-link {
    color: #fff;
  }

  .google-review-card.touch-active {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.2);
  }
  .google-review-card.touch-active h4,
  .google-review-card.touch-active .review-text,
  .google-review-card.touch-active .fa-google {
    color: #fff !important;
  }
}