/* ============================================================
   THE IMAGING TOWN — Complete Redesign 2026
   Premium Pre-Wedding Shoot Location in Delhi
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold: #c59d5f;
  --gold-dark: #b8905a;
  --gold-light: #d9b87a;
  --dark: #0a0a0a;
  --dark2: #1a1a1a;
  --dark3: #252525;
  --gray-800: #2d2d2d;
  --gray-600: #555;
  --gray-400: #888;
  --gray-200: #e8e8e8;
  --gray-100: #f5f5f5;
  --white: #fff;
  --bg: #fafafa;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow: 0 6px 28px rgba(0,0,0,0.11);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.17);
  --gold-shadow: 0 5px 22px rgba(197,157,95,0.38);
  --t: 0.3s ease;
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --sp: 88px 5%;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 56px;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark2);
}
p { line-height: 1.78; color: var(--gray-600); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-family: var(--font-b);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
}
section { padding: var(--sp); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-b);
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--gold-shadow); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-secondary:hover { background: var(--white); color: var(--dark2); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t);
}
header.scrolled,
header.solid {
  background: var(--dark2);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.navbar { padding: 1.1rem 5%; }
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3px;
  transition: color var(--t);
}
.logo:hover { color: var(--gold-light); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.2px;
  transition: color var(--t);
  position: relative;
  padding-bottom: 3px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-menu a:hover,
.nav-menu a.active-link { color: var(--gold); }
.nav-menu a:hover::after,
.nav-menu a.active-link::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.35rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 5px;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* Nav overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.nav-overlay.active { display: block; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.carousel-container {
  width: 100%;
  height: 100%;
}
.carousel-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
  transition: opacity 0.75s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.42) 50%,
    rgba(0,0,0,0.18) 100%
  );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 5%;
  max-width: 880px;
  animation: heroIn 1s ease forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(197,157,95,0.13);
  border: 1px solid rgba(197,157,95,0.32);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.18;
  text-shadow: 0 2px 24px rgba(0,0,0,0.28);
}
.hero p {
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.4rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.cta-buttons {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.carousel-dots {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 4;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  padding: 0;
}
.dot.active { background: var(--gold); width: 26px; border-radius: 4px; }
.dot:hover { background: rgba(255,255,255,0.7); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  background: var(--dark2);
  padding: 48px 5%;
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.4px;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
  background: var(--bg);
  padding: var(--sp);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.75rem;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 0.9rem;
}
.section-header p {
  font-size: 1.03rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.feature-card {
  background: var(--white);
  padding: 2.1rem 1.85rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 90px; height: 90px;
  background: radial-gradient(circle at top right, rgba(197,157,95,0.06) 0%, transparent 70%);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--gold-dark);
}
.feature-icon { font-size: 2rem; margin-bottom: 1.1rem; display: block; }
.feature-card h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  color: var(--dark2);
  margin-bottom: 0.65rem;
  font-weight: 600;
}
.feature-card p {
  font-size: 0.91rem;
  color: var(--gray-600);
  line-height: 1.72;
}

/* ============================================================
   GALLERY / HIGHLIGHTS SECTION
   ============================================================ */
.highlights {
  padding: var(--sp);
  background: var(--white);
}
.highlights .section-header { margin-bottom: 3.25rem; }

/* Masonry grid container */
.grid {
  column-count: 3;
  column-gap: 1.2rem;
  max-width: var(--max-w);
  margin: 0 auto 2.75rem;
}

/* Grid item wrapper (created by JS) */
.grid-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.grid-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0;
  transition: transform 0.5s ease;
  display: block;
}
.grid-item:hover img { transform: scale(1.04); }
.grid-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
}
.grid-item:hover .grid-item-overlay { opacity: 1; }
.grid-item-overlay span {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Fallback: direct img children (for pages not yet migrated) */
.grid > img {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  cursor: pointer;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow var(--t);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.grid > img:hover { transform: scale(1.02); box-shadow: var(--shadow); }

/* CTA banner inside sections */
.cta-section {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  color: var(--white);
  padding: 3.25rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.cta-section p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.65rem;
}

/* ============================================================
   INFO SECTION
   ============================================================ */
.info {
  background: var(--bg);
  padding: var(--sp);
}
.info .container { max-width: 920px; }
.info h2 { margin-bottom: 1.4rem; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.info p {
  font-size: 1.04rem;
  margin-bottom: 1.2rem;
  line-height: 1.82;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials { padding: var(--sp); background: var(--white); }
.testimonials .section-header { margin-bottom: 3.25rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
}
.testimonial-card {
  background: var(--bg);
  padding: 2rem 1.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--t);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(197,157,95,0.3);
  transform: translateY(-4px);
}
.stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.94rem;
  line-height: 1.78;
  color: var(--gray-600);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-author { font-weight: 600; color: var(--dark2); font-size: 0.9rem; font-family: var(--font-h); }
.testimonial-author span { display: block; font-weight: 400; color: var(--gray-400); font-size: 0.82rem; margin-top: 0.2rem; font-family: var(--font-b); font-style: normal; }
.testimonials-cta { text-align: center; }
.testimonials-cta a { color: var(--gold); font-weight: 600; font-size: 0.95rem; transition: color var(--t); }
.testimonials-cta a:hover { color: var(--gold-dark); text-decoration: underline; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 130px 5% 65px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(197,157,95,0.09) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 2.85rem); margin-bottom: 0.9rem; }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 1.07rem; max-width: 580px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.4rem;
  font-family: var(--font-b);
}
.breadcrumb a { color: var(--gold); transition: color var(--t); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content { padding: var(--sp); background: var(--white); }
.about-intro {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}
.about-text h2 { font-size: clamp(1.65rem, 3vw, 2.2rem); margin-bottom: 1.35rem; }
.about-text p { margin-bottom: 1.2rem; font-size: 1.02rem; line-height: 1.85; }

.why-choose { padding: var(--sp); background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: var(--max-w);
  margin: 3rem auto 0;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--t);
}
.why-item:hover { border-color: rgba(197,157,95,0.3); box-shadow: var(--shadow); }
.why-check {
  width: 32px; height: 32px;
  min-width: 32px;
  background: rgba(197,157,95,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}
.why-item h3 { font-size: 1rem; color: var(--dark2); margin-bottom: 0.35rem; font-weight: 600; }
.why-item p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

.feature-list { margin: 1.5rem 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.94rem;
  color: var(--gray-800);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.about-cta-section {
  background: var(--dark2);
  padding: 64px 5%;
  text-align: center;
}
.about-cta-section h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.85rem; }
.about-cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: var(--sp); background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.25rem;
}
.contact-card {
  background: var(--bg);
  padding: 1.65rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--t);
}
.contact-card:hover { border-color: rgba(197,157,95,0.38); box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-card-icon { font-size: 1.65rem; margin-bottom: 0.75rem; }
.contact-card h3 { font-size: 0.95rem; color: var(--dark2); margin-bottom: 0.45rem; font-weight: 600; font-family: var(--font-b); }
.contact-card a { color: var(--gold); font-weight: 600; font-size: 0.97rem; display: block; margin-bottom: 0.25rem; transition: color var(--t); }
.contact-card a:hover { color: var(--gold-dark); }
.contact-card p { font-size: 0.83rem; color: var(--gray-400); line-height: 1.58; }

.contact-sidebar { position: sticky; top: 110px; }
.booking-card {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  padding: 2.4rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
  margin-bottom: 1.35rem;
}
.booking-card h2 { color: var(--white); font-size: 1.55rem; margin-bottom: 0.75rem; }
.booking-card p { color: rgba(255,255,255,0.72); margin-bottom: 1.75rem; font-size: 0.94rem; line-height: 1.7; }

.process-section { padding: var(--sp); background: var(--bg); }
.process-section .section-header { text-align: left; max-width: 100%; margin-bottom: 2.5rem; }
.process-list { max-width: 720px; }
.process-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: flex-start;
}
.process-item:last-child { border-bottom: none; }
.process-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: rgba(197,157,95,0.11);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.process-item h3 { font-size: 0.98rem; color: var(--dark2); margin-bottom: 0.28rem; font-weight: 600; font-family: var(--font-b); }
.process-item p { font-size: 0.89rem; color: var(--gray-600); line-height: 1.65; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page { padding: var(--sp); background: var(--white); }
.faq-page .container { max-width: 820px; }
.faq-page h1 { margin-bottom: 0.9rem; }
.faq-intro {
  font-size: 1.04rem;
  color: var(--gray-600);
  margin-bottom: 3.25rem;
  line-height: 1.78;
}
.faq-list { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-h);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--dark2);
  gap: 1rem;
  transition: color var(--t);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  font-style: normal;
  transition: all 0.35s ease;
  font-weight: 300;
  line-height: 1;
}
.faq-item.active .faq-question { color: var(--gold); }
.faq-item.active .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 320px; padding-bottom: 1.5rem; }
.faq-answer p { font-size: 1rem; color: var(--gray-600); line-height: 1.82; }

.faq-cta { margin-top: 3rem; padding: 2.5rem; background: var(--bg); border-radius: var(--radius-lg); text-align: center; }
.faq-cta p { margin-bottom: 1.5rem; font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 5rem 5% 2.25rem;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}
.footer-brand .logo { display: inline-block; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.48); line-height: 1.75; max-width: 270px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.65rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--t);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer-section h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section a { color: rgba(255,255,255,0.48); font-size: 0.88rem; transition: all var(--t); display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-section a:hover { color: var(--gold); padding-left: 3px; }
footer hr { border: none; border-top: 1px solid rgba(255,255,255,0.07); max-width: var(--max-w); margin: 0 auto 1.5rem; }
.footer-bottom-row {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom { font-size: 0.83rem; color: rgba(255,255,255,0.38); }
.footer-credit { font-size: 0.8rem; color: rgba(255,255,255,0.32); }
.footer-credit a { color: rgba(255,255,255,0.45); transition: color var(--t); }
.footer-credit a:hover { color: var(--gold); }

/* ============================================================
   MODAL / LIGHTBOX
   ============================================================ */
.modal, #imageModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal.active, #imageModal.active { display: flex; }
#imageModal[style*="flex"] { display: flex !important; }

.modal-image {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  animation: modalIn 0.3s ease;
  box-shadow: none;
  margin-bottom: 0;
}
@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 3001;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  line-height: 1;
}
.modal-close:hover { background: var(--gold); border-color: var(--gold); }
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1.2rem;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 3001;
  transition: all var(--t);
  line-height: 1;
}
.modal-nav:hover { background: var(--gold); border-color: var(--gold); }
.modal-nav.prev { left: 1.4rem; }
.modal-nav.next { right: 1.4rem; }
.modal-info {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  white-space: nowrap;
  z-index: 3001;
}

/* ============================================================
   STICKY BOTTOM BAR (mobile only)
   ============================================================ */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  display: flex;
  z-index: 9999;
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: opacity var(--t);
  font-family: var(--font-b);
}
.sticky-btn:hover { opacity: 0.88; }
.call-btn { background: #c62828; }
.whatsapp-btn { background: #128C7E; }

/* WhatsApp float button (desktop) */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 52px; height: 52px;
  background: #128C7E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--white);
  z-index: 9990;
  box-shadow: 0 4px 20px rgba(18,140,126,0.42);
  transition: all var(--t);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(18,140,126,0.52); }

@media (max-width: 992px) {
  .sticky-bottom-bar { display: flex; }
  .wa-float { display: none; }
}
@media (min-width: 993px) {
  .sticky-bottom-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE: 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sp: 70px 4%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-sidebar { position: static; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE: 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --sp: 55px 4%; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; left: -100%;
    width: 78%; max-width: 300px;
    height: 100vh;
    background: var(--dark2);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 1.75rem 2rem;
    gap: 0;
    transition: left 0.38s ease;
    box-shadow: 5px 0 30px rgba(0,0,0,0.35);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.active { left: 0; }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
  }
  .nav-menu a::after { display: none; }
  .nav-cta { margin-top: 1rem; text-align: center !important; display: block !important; border-radius: var(--radius) !important; }
  .hero { min-height: 92vh; }
  .features-grid { grid-template-columns: 1fr; }
  .grid { column-count: 2; column-gap: 0.9rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-row { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .modal-nav { padding: 0.7rem 1rem; font-size: 1.2rem; }
  .modal-nav.prev { left: 0.6rem; }
  .modal-nav.next { right: 0.6rem; }
  #imageModal { padding: 0; }
  .modal-image { max-width: 96vw; max-height: 80vh; }
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   RESPONSIVE: 480px
   ============================================================ */
@media (max-width: 480px) {
  :root { --sp: 44px 4%; }
  .grid { column-count: 1; column-gap: 0; }
  .stat-number { font-size: 2.1rem; }
  .modal-nav { padding: 0.6rem 0.8rem; font-size: 1.1rem; }
  .contact-cards { grid-template-columns: 1fr; }
  .carousel-dots { bottom: 1.25rem; }
}
