/* ── DESIGN TOKENS ────────────────────────── */
:root {
  /* Colors */
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #121215;
  --dark-2: #1c1c21;
  --dark-3: #26262c;
  --dark-4: #32323a;
  --white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #a0a0a5;
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 168, 76, 0.3);
  --overlay-bg: rgba(18, 18, 21, 0.8);
  --overlay-bg-alt: rgba(18, 18, 21, 0.3);
  --overlay-heavy: rgba(13, 13, 15, 0.75);
  --overlay-medium: rgba(13, 13, 15, 0.6);
  --overlay-light: rgba(13, 13, 15, 0.4);

  /* Typography */
  --ff-serif: 'Cormorant Garamond', serif;
  --ff-sans: 'Outfit', sans-serif;

  /* Spacing & Misc */
  --container-max: 1200px;
  --section-py: 100px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --nav-height: 62px;
}

/* Light Mode Variables */
body.light-mode {
  --dark: #f8f9fa;
  --dark-2: #ffffff;
  --dark-3: #f1f3f5;
  --dark-4: #e9ecef;
  --white: #121215;
  --text-light: #212529;
  --text-muted: #495057;
  --border-soft: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(201, 168, 76, 0.5);
  --overlay-bg: rgba(255, 255, 255, 0.85);
  --overlay-bg-alt: rgba(255, 255, 255, 0.4);
  --overlay-heavy: rgba(255, 255, 255, 0.75);
  --overlay-medium: rgba(255, 255, 255, 0.6);
  --overlay-light: rgba(255, 255, 255, 0.4);
}
body.light-mode #navbar { background: var(--dark) !important; color: var(--text-light); }
body.light-mode .hero-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%),
              linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 70%);
}
body.light-mode .hero-badge { background: rgba(201,168,76,0.15); border-color: var(--gold); }
/* Force hero content visibility since bg remains dark */
body.light-mode .hero-content .hero-title,
body.light-mode .hero-content .hero-subtitle,
body.light-mode .hero-content .stat-label,
body.light-mode .hero-content .stat-num,
body.light-mode .hero-content .btn-outline { 
  color: #ffffff !important; 
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
body.light-mode .hero-stats .stat-divider { background: rgba(255, 255, 255, 0.2); }
body.light-mode .nav-logo { color: var(--gold); }
body.light-mode .nav-link { color: var(--text-light); }
body.light-mode .theme-toggle { color: var(--text-light); border-color: var(--border-soft); }

body.light-mode .nav-logo,
body.light-mode .nav-link { text-shadow: none; }

/* ── RESET ──────────────────────────────────── */
* { margin:0; padding:0; box-sizing:border-box; }
html { 
  scroll-behavior: smooth; 
  scroll-padding-top: var(--nav-height); /* Offset for the fixed navbar */
}
/* Ensure scroll lands exactly at the content below the padding */
section[id] {
  scroll-margin-top: -38px; /* Subtracts the section padding to align with section-tag */
}
body {
  background-color: var(--dark);
  color: var(--text-light);
  font-family: var(--ff-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── LAYOUT ─────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── LOADER ─────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.loader-inner { text-align: center; }
.loader-logo-img { height: 75px; width: auto; max-width: 90vw; margin-bottom: 1.5rem; animation: lotusPulse 2s infinite ease-in-out; object-fit: contain; }
.loader-bar { width: 140px; height: 2px; background: var(--border-soft); margin: 0 auto; border-radius: 2px; overflow: hidden; }
.loader-fill { width: 0%; height: 100%; background: var(--gold); transition: width 0.3s ease; }

@keyframes lotusPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 10px var(--gold)); }
}

/* ── NAVIGATION ─────────────────────────────── */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 8px 0; transition: var(--transition);
  background: #faf7ed !important; /* Light Cream Color */
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
#navbar .nav-logo { color: #121215 !important; }
#navbar .nav-link { color: #333333 !important; }
#navbar .nav-link:hover, #navbar .nav-link.active { color: var(--gold) !important; }
#navbar .theme-toggle { color: #121215 !important; border-color: rgba(0,0,0,0.1); }
#navbar .hamburger span { background: #121215 !important; }
#navbar.scrolled {
  background: rgba(250, 247, 237, 0.98);
  backdrop-filter: blur(12px);
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-container {
  max-width: 1300px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  line-height: 1;
}
.nav-logo-img { height: 42px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.9rem; font-weight: 400; color: var(--text-muted);
  letter-spacing: 0.05em; text-transform: uppercase;
  position: relative; padding: 8px 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark); padding: 12px 28px; border-radius: 99px;
  font-weight: 600; font-size: 0.85rem; text-transform: uppercase;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3); }

/* Mobile Menu */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1100; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--transition); transform-origin: center; }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Theme Toggle */
.nav-actions { display: flex; align-items: center; gap: 15px; }
.theme-toggle {
  background: none; border: 1px solid var(--border-soft); border-radius: 50%;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--white); transition: var(--transition);
  position: relative; z-index: 1001;
}
.theme-toggle:hover { border-color: var(--gold); background: rgba(201, 168, 76, 0.1); }
.theme-toggle svg { width: 20px; height: 20px; position: absolute; transition: var(--transition); }

.sun-icon { opacity: 0; transform: scale(0.5); }
.moon-icon { opacity: 1; transform: scale(1); }

body.light-mode .sun-icon { opacity: 1; transform: scale(1); }
body.light-mode .moon-icon { opacity: 0; transform: scale(0.5); }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-height)); display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75); /* Increased from 0.5 for better visibility */
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.3) 100%),
              linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 800px; text-align: center;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-block; background: rgba(201, 168, 76, 0.1); border: 1px solid var(--border-gold);
  color: var(--gold-light); font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  padding: 8px 20px; border-radius: 99px; margin-bottom: 24px; letter-spacing: 0.15em;
}
.hero-title {
  font-family: var(--ff-serif); 
  font-size: clamp(3rem, 8vw, 5.5rem); 
  font-weight: 600;
  line-height: 1.1; 
  color: #ffffff !important; 
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,1); 
  display: block !important;
  text-align: center;
}
.hero-title span { 
  display: block !important; 
  margin: 0 auto;
}
.hero-title-line1 { 
  font-size: 0.5em !important; 
  text-transform: uppercase !important; 
  letter-spacing: 0.25em !important; 
  color: var(--gold-light) !important; 
  margin-bottom: 8px !important; 
  font-family: var(--ff-sans) !important; 
  font-weight: 700 !important; 
}
.hero-title-line2 { 
  font-size: 1.3em !important; 
  line-height: 0.8 !important; 
  letter-spacing: -0.02em;
}
.hero-title-line3 { 
  font-size: 0.45em !important; 
  letter-spacing: 0.15em !important; 
  color: rgba(255,255,255,0.95) !important; 
  margin-top: 12px !important; 
  font-family: var(--ff-sans) !important;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.15rem; 
  color: rgba(255,255,255,0.95) !important; 
  max-width: 700px; 
  margin: 0 auto 45px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.9);
  line-height: 1.6;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 20px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; padding: 16px 40px;
  border-radius: 99px; transition: var(--transition); font-size: 0.95rem; cursor: pointer; border: none;
}
.btn-primary { background: linear-gradient(135deg, #b39137, #8a6d25); color: #ffffff; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--border-soft); }
.btn-outline:hover { background: var(--border-soft); border-color: var(--white); }

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 40px; margin-top: 60px;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.8rem; font-weight: 700; color: var(--gold-light); font-family: var(--ff-serif); }
.stat-label { font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.1em; }
.stat-divider { width: 1px; height: 40px; background: var(--border-soft); }

/* ── MARQUEE ─────────────────────────────────── */
.marquee-strip { background: var(--dark-2); padding: 16px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; gap: 40px; animation: marqueeScroll 20s linear infinite; }
.marquee-track span { font-family: var(--ff-serif); font-size: 1.1rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTION HEADER ──────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.75rem; margin-bottom: 12px; display: block; }
.section-title { font-family: var(--ff-serif); font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1.2; color: var(--white); }
.section-title em { font-style: italic; font-weight: 300; }
.section-subtitle { color: var(--text-muted); margin-top: 16px; max-width: 600px; margin-inline: auto; font-size: 1rem; }

/* ── ABOUT ──────────────────────────────────── */
.about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; }
.about-img-main img { width: 100%; transition: var(--transition); }
.about-image-wrap:hover .about-img-main img { transform: scale(1.05); }
.about-img-badge {
  position: absolute; bottom: 30px; right: -20px; background: var(--gold);
  color: var(--dark); padding: 24px; border-radius: var(--radius-lg); text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3); z-index: 2;
}
.badge-num { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.badge-text { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }
.about-content h2 { margin-bottom: 24px; }
.about-lead { font-size: 1.15rem; color: var(--text-light); margin-bottom: 24px; }
.about-text { color: var(--text-muted); margin-bottom: 40px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-item { display: flex; gap: 16px; }
.feature-icon { font-size: 1.5rem; }
.feature-item h4 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.feature-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

.about-cta {
  margin-top: 48px;
  display: flex;
  justify-content: flex-start; /* Default left align for desktop synergy */
}
@media (max-width: 900px) {
  .about-cta { justify-content: center; }
}


/* ── SERVICES ────────────────────────────────── */
.services { background: var(--dark-2); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--dark-3); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-soft); transition: var(--transition); position: relative;
  display: flex; flex-direction: column; height: 100%;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--border-gold); }
.service-img-wrap { height: 200px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img-wrap img { transform: scale(1.1); }
.service-content { padding: 30px; flex: 1; display:flex; flex-direction:column; }
.service-content h3 { font-family: var(--ff-serif); font-size: 1.4rem; color: var(--white); margin-bottom: 15px; }
.service-content p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.service-duration {
  font-size: 0.75rem; font-weight: 700; color: var(--gold-light);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: auto;
}
.service-hover-line { position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--gold); transition: var(--transition); }
.service-card:hover .service-hover-line { width: 100%; }
.services-cta { text-align: center; margin-top: 60px; }

/* ── EXPERIENCE BANNER ───────────────────────── */
.experience-banner { position: relative; padding: 120px 0; overflow: hidden; }
.exp-banner-bg { position: absolute; inset: 0; z-index: 0; }
.exp-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.exp-banner-overlay { position: absolute; inset: 0; background: var(--overlay-heavy); }
.exp-banner-content { position: relative; z-index: 1; max-width: 800px; text-align: center; margin: 0 auto; }
.exp-banner-content h2 { font-family: var(--ff-serif); font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 24px; }
.exp-banner-content h2 em { font-style: italic; font-weight: 300; }
.exp-banner-content p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 40px; }
.btn-gold { background: transparent; color: var(--gold-light); border: 1.5px solid var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--dark); }

/* ── GALLERY ────────────────────────────────── */
.gallery { background: var(--dark); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 300px 300px; gap: 20px;
}
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 1.1rem; font-family: var(--ff-serif); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }

/* ── PRICING ─────────────────────────────────── */
.pricing { background: var(--dark); padding-top: 0; }
.pricing-banner { position: relative; height: 260px; overflow: hidden; }
.pricing-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.pricing-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--overlay-heavy) 0%, var(--overlay-medium) 100%); }
.pricing-banner-overlay { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.pricing-banner-overlay h2 { font-family: var(--ff-serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 12px; }
.pricing-banner-overlay p { color: var(--text-muted); }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; margin-top: 60px; }
.price-table { background: var(--dark-3); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); overflow: hidden; }
.price-table-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; background: var(--dark-4); border-bottom: 1px solid var(--border-soft); }
.price-table-header h3 { font-family: var(--ff-serif); font-size: 1.6rem; color: var(--white); }
.price-cols-labels { display: flex; gap: 8px; }
.badge-60 { font-size: .72rem; font-weight: 700; background: var(--gold); color: var(--dark); padding: 5px 12px; border-radius: 99px; }
.badge-90 { font-size: .72rem; font-weight: 700; background: rgba(255,255,255,.1); color: var(--text-muted); border: 1px solid var(--border-soft); padding: 5px 12px; border-radius: 99px; }
.price-list { padding: 12px 0; }
.price-list li { display: flex; align-items: center; gap: 12px; padding: 14px 28px; border-bottom: 1px solid var(--border-soft); }
.price-list li:last-child { border-bottom: none; }
.price-list li::before { content: '•'; color: var(--gold); }
.price-name { flex: 1; font-size: .9rem; color: var(--text-light); }
.price-60 { color: var(--gold-light); font-weight: 700; min-width: 70px; text-align: right; }
.price-90 { color: var(--text-muted); font-weight: 700; min-width: 70px; text-align: right; }
.price-table--special .special-title { color: var(--gold-light); font-style: italic; }
.price-list--special li:nth-child(odd) { background: rgba(201,168,76,.03); }
.pricing-note { text-align: center; padding: 24px; background: var(--dark-3); border-radius: var(--radius-lg); border: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.pricing-note p { font-size: 0.9rem; color: var(--text-muted); flex: 1; text-align: left; }

/* ── WHY US ──────────────────────────────────── */
.why-us { background: var(--dark-2); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { padding: 40px 30px; background: var(--dark-3); border-radius: var(--radius-lg); border: 1px solid var(--border-soft); position: relative; }
.why-num { position: absolute; top: 20px; right: 20px; font-size: 3rem; font-weight: 900; color: var(--border-soft); line-height: 1; pointer-events: none; }
.why-icon { font-size: 2.5rem; margin-bottom: 24px; }
.why-card h3 { font-family: var(--ff-serif); font-size: 1.4rem; color: var(--white); margin-bottom: 16px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials { background: var(--dark); padding-bottom: 140px; overflow: hidden; }
.testimonials-slider { position: relative; max-width: 1000px; margin: 0 auto; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1); cursor: grab; }
.testimonial-track:active { cursor: grabbing; }
.testimonial-card { min-width: 100%; padding: 60px; background: var(--dark-3); border-radius: var(--radius-xl); border: 1px solid var(--border-soft); margin: 0 10px; text-align: center; }
.testimonial-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 24px; }
.testimonial-text { font-family: var(--ff-serif); font-size: 1.6rem; color: var(--white); font-style: italic; margin-bottom: 40px; line-height: 1.5; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.author-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--dark); font-size: 1.2rem; }
.testimonial-author h4 { font-size: 1.1rem; color: var(--white); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 30px; margin-top: 40px; }
.testi-btn { background: none; border: 1px solid var(--border-soft); color: var(--white); width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; transition: var(--transition); }
.testi-btn:hover { border-color: var(--gold); color: var(--gold); }
.testi-dots { display: flex; gap: 12px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-soft); cursor: pointer; transition: var(--transition); }
.testi-dot.active { background: var(--gold); width: 30px; border-radius: 5px; }

/* ── CONTACT ─────────────────────────────────── */
.contact { background: var(--dark-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-card { background: var(--dark-3); padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--border-soft); margin-bottom: 24px; }
.contact-card-icon { font-size: 2rem; margin-bottom: 15px; }
.contact-card h4 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.contact-card a, .contact-card p { color: var(--text-muted); font-size: 0.95rem; }
.contact-card a:hover { color: var(--gold); }
.whatsapp-link { display: block; margin-top: 8px; font-weight: 700; color: #25D366 !important; }

.contact-form-wrap { background: var(--dark-3); padding: 50px; border-radius: var(--radius-xl); border: 1px solid var(--border-soft); }
.contact-form h3 { font-family: var(--ff-serif); font-size: 1.8rem; color: var(--white); margin-bottom: 30px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--dark-4); border: 1px solid var(--border-soft); padding: 14px 18px;
  border-radius: 10px; color: var(--white); font-family: inherit; font-size: 1rem; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 15px rgba(201,168,76,0.1); }
.form-success { display: none; background: rgba(37,211,102,0.1); color: #25D366; padding: 15px; border-radius: 8px; margin-top: 20px; text-align: center; border: 1px solid rgba(37,211,102,0.2); }
.map-wrap { margin-top: 80px; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-soft); }

/* ── FOOTER ──────────────────────────────────── */
.footer { background: var(--dark); border-top: 1px solid var(--border-soft); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 80px; margin-bottom: 60px; }
.footer-logo { margin-bottom: 24px; display: block; }
.footer-logo-img { height: 50px; width: auto; object-fit: contain; }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 30px; }
.footer-social { display: flex; gap: 16px; }
.social-link { width: 45px; height: 45px; border-radius: 50%; background: var(--dark-3); display: flex; align-items: center; justify-content: center; transition: var(--transition); border: 1px solid var(--border-soft); color: var(--text-muted); }
.social-link:hover { background: var(--gold); color: var(--dark); transform: translateY(-5px); border-color: var(--gold); }
.footer-links-col h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 24px; font-family: var(--ff-serif); }
.footer-links-col ul li { margin-bottom: 12px; }
.footer-links-col ul li a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links-col ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact-list li { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }
.footer-bottom { padding: 30px 0; border-top: 1px solid var(--border-soft); text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-disclaimer { margin-top: 10px; color: rgba(255,255,255,0.2) !important; font-size: 0.75rem !important; }

/* ── UTILITIES ───────────────────────────────── */
.fab { position: fixed; left: 30px; width: 60px; height: 60px; border-radius: 50%; z-index: 1001; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: var(--transition); color: var(--white); }
#fab-call { bottom: 110px; background: var(--gold); color: var(--dark); animation: fabPulseGold 2.5s infinite; }
#fab-whatsapp { bottom: 30px; background: #25D366; animation: fabPulseGreen 2.5s infinite; }
.fab:hover { transform: scale(1.1) translateY(-5px); }
.fab svg { width: 28px; height: 28px; }

#scroll-top { position: fixed; right: 30px; bottom: 30px; width: 50px; height: 50px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-soft); border-radius: 12px; display: none; align-items: center; justify-content: center; z-index: 1000; cursor: pointer; color: var(--white); backdrop-filter: blur(5px); }
#scroll-top:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-5px); }
#scroll-top svg { width: 24px; height: 24px; }

@keyframes fabPulseGold { 0% { box-shadow: 0 0 0 0 rgba(201,168,76, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(201,168,76, 0); } 100% { box-shadow: 0 0 0 0 rgba(201,168,76, 0); } }
@keyframes fabPulseGreen { 0% { box-shadow: 0 0 0 0 rgba(37,211,102, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(37,211,102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102, 0); } }

/* ── LIGHTBOX ────────────────────────────────── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; display: none; flex-direction: column; align-items: center; justify-content: center; padding: 40px; }
.lightbox.active { display: flex; }
.lightbox-close { position: absolute; top: 30px; right: 30px; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }
#lightbox-img { max-width: 90%; max-height: 80vh; border-radius: 8px; object-fit: contain; }
.lightbox-caption { margin-top: 20px; color: var(--gold-light); font-family: var(--ff-serif); font-size: 1.5rem; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--dark-2); flex-direction: column; padding: 100px 40px; transition: 0.5s; z-index: 1000; }
  .nav-links.active { right: 0; }
  .hamburger { display: block; z-index: 1100; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 250px); }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  .hero-content { padding: 60px 20px 40px; }
  .hero-badge { font-size: 0.65rem; padding: 6px 14px; margin-bottom: 16px; }
  .hero-title { font-size: 2.2rem; margin-bottom: 16px; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 24px; line-height: 1.5; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 15px; margin-top: 30px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.65rem; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-note { flex-direction: column; text-align: center; }
  .pricing-note p { text-align: center; }
}
