/* ===== WEEDING WALA – DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── VARIABLES ── */
:root {
  --gold: #c9a86c;
  --gold-light: #e8c98a;
  --gold-dark: #a88040;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --dark-card: rgba(20, 18, 14, 0.85);
  --text-primary: #f0eae0;
  --text-muted: #9a9080;
  --text-dim: #c8bfb0;
  --border-gold: rgba(201, 168, 108, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --gradient-gold: linear-gradient(135deg, #c9a86c, #e8c98a, #c9a86c);
  --gradient-dark: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.7) 50%, #0a0a0a 100%);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-gold: 0 0 30px rgba(201, 168, 108, 0.18);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; line-height: 1.2; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400; color: var(--text-primary);
  margin-bottom: 18px;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-subtitle {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 100px 0; position: relative; }

/* ── GOLD DIVIDER ── */
.gold-line {
  width: 60px; height: 2px;
  background: var(--gradient-gold);
  margin: 20px 0;
}
.gold-line.center { margin: 20px auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-body); font-size: 13px;
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0; transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: var(--gradient-gold);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(201,168,108,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 35px rgba(201,168,108,0.55); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background: var(--gold); color: #0a0a0a; transform: translateY(-2px); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { box-shadow: 0 6px 35px rgba(37,211,102,0.5); transform: translateY(-2px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle), 0 4px 20px rgba(0,0,0,0.4);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-main {
  font-family: var(--font-heading); font-size: 1.9rem;
  font-weight: 600; color: var(--gold); letter-spacing: 0.02em;
}
.nav-logo .logo-sub {
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text-dim); transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: var(--gold); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: var(--gold); }

/* ── HERO ── */
.hero {
  height: 100svh; min-height: 620px;
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center top;
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,8,5,0.88) 0%, rgba(20,15,5,0.65) 60%, rgba(10,8,5,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; opacity: 0;
  animation: fadeSlideUp 0.9s 0.3s forwards;
}
.hero-eyebrow .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.01em;
  color: var(--text-primary); margin-bottom: 28px;
  opacity: 0; animation: fadeSlideUp 0.9s 0.55s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 1.05rem; color: var(--text-dim); line-height: 1.9;
  max-width: 520px; margin-bottom: 44px;
  opacity: 0; animation: fadeSlideUp 0.9s 0.75s forwards;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  opacity: 0; animation: fadeSlideUp 0.9s 0.95s forwards;
}
.hero-stats {
  position: absolute; bottom: 50px; right: 0; z-index: 2;
  display: flex; gap: 2px;
}
.hero-stat {
  padding: 22px 30px; background: rgba(10,10,10,0.6);
  backdrop-filter: blur(20px); border: 1px solid var(--border-subtle);
  text-align: center; min-width: 120px;
  opacity: 0; animation: fadeSlideUp 1s 1.2s forwards;
}
.hero-stat + .hero-stat { animation-delay: 1.35s; }
.hero-stat + .hero-stat + .hero-stat { animation-delay: 1.5s; }
.hero-stat .number { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.hero-stat .label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 10px; opacity: 0; animation: fadeIn 1s 1.8s forwards;
}
.scroll-indicator span { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.scroll-mouse {
  width: 22px; height: 36px; border: 1.5px solid rgba(201,168,108,0.4);
  border-radius: 11px; position: relative;
}
.scroll-mouse::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--gold); border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; } 70% { transform: translateX(-50%) translateY(10px); opacity: 0; } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── ABOUT ── */
.about { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 560px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 75%; height: 80%;
  object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 55%;
  object-fit: cover; border-radius: var(--radius-lg);
  border: 4px solid var(--dark);
  box-shadow: var(--shadow-card);
}
.about-badge {
  position: absolute; bottom: 90px; left: -20px;
  background: var(--gradient-gold); color: #0a0a0a;
  padding: 20px 24px; border-radius: var(--radius);
  text-align: center; z-index: 2; box-shadow: var(--shadow-gold);
}
.about-badge .big { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; line-height: 1; }
.about-badge .small { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--dark-3); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); transition: var(--transition);
}
.about-feature:hover { border-color: var(--border-gold); transform: translateX(6px); }
.feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201,168,108,0.1); border: 1px solid var(--border-gold);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.feature-text h4 { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.feature-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── SERVICES ── */
.services { background: var(--dark-2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 56px; }
.service-card {
  background: var(--dark-3); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 36px 30px;
  position: relative; overflow: hidden; transition: var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { border-color: var(--border-gold); transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: calc(var(--radius) - 4px); margin-bottom: 24px;
}
.service-icon { font-size: 2.8rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 14px; }

/* ── GALLERY ── */
.gallery { background: var(--dark); }
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin: 44px 0 40px;
}
.filter-btn {
  padding: 9px 22px; border-radius: 50px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  border: 1px solid var(--border-subtle); color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); color: #0a0a0a;
  border-color: var(--gold); font-weight: 600;
}
.gallery-grid {
  columns: 3; column-gap: 16px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.85) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { font-size: 28px; color: var(--gold); }
.gallery-cta { text-align: center; margin-top: 50px; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,4,2,0.96); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 88vh; }
.lightbox-inner img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.8); }
.lightbox-close {
  position: fixed; top: 24px; right: 28px;
  font-size: 28px; color: var(--text-muted);
  transition: color var(--transition); z-index: 10001; line-height: 1;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  font-size: 28px; color: var(--text-muted); padding: 16px;
  z-index: 10001; transition: color var(--transition);
}
.lightbox-nav:hover { color: var(--gold); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ── WHY CHOOSE US ── */
.why { background: var(--dark-2); overflow: hidden; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; margin-top: 56px; }
.why-card {
  padding: 38px 30px;
  background: var(--dark-3); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,108,0.07) 0%, transparent 70%);
  opacity: 0; transition: var(--transition);
}
.why-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.why-card:hover::after { opacity: 1; }
.why-icon {
  width: 70px; height: 70px; margin: 0 auto 24px;
  background: rgba(201,168,108,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 28px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: rgba(201,168,108,0.15); transform: scale(1.1); }
.why-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--dark); }
.testimonials-track { display: flex; gap: 24px; margin-top: 56px; overflow-x: auto; padding-bottom: 16px; scrollbar-width: none; }
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 360px; background: var(--dark-3);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: 32px; position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '\201C'; font-family: var(--font-heading);
  font-size: 7rem; color: rgba(201,168,108,0.08);
  position: absolute; top: -10px; left: 16px; line-height: 1;
}
.stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-text { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-gold); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-heading); font-size: 1.2rem;
  font-weight: 600; color: #0a0a0a; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.author-event { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, #1a1209 0%, #0f0c06 50%, #1a1209 100%);
  border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold);
  padding: 80px 0; text-align: center;
}
.cta-strip h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; }
.cta-strip p { color: var(--text-muted); margin-bottom: 36px; font-size: 1.05rem; }
.cta-strip .cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ── CONTACT ── */
.contact { background: var(--dark-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; margin-top: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; background: var(--dark-3);
  border: 1px solid var(--border-subtle); border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: var(--border-gold); }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,108,0.1); border: 1px solid var(--border-gold);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-item h4 { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.contact-item a:hover { color: var(--gold); }
.contact-map {
  width: 100%; height: 200px; border-radius: var(--radius);
  border: 1px solid var(--border-subtle); overflow: hidden; margin-top: 20px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }
.contact-form {
  background: var(--dark-3); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 40px;
}
.contact-form h3 { font-size: 1.8rem; margin-bottom: 8px; }
.contact-form p { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--dark-4);
  border: 1px solid var(--border-subtle); border-radius: 8px;
  padding: 13px 16px; font-family: var(--font-body); font-size: 14px;
  color: var(--text-primary); outline: none; transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark-4); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 8px; }

/* ── FOOTER ── */
.footer { background: var(--dark); border-top: 1px solid var(--border-subtle); }
.footer-top { padding: 64px 0; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-main { font-family: var(--font-heading); font-size: 2.2rem; color: var(--gold); }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-top: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-subtle); display: flex; align-items: center;
  justify-content: center; font-size: 16px; transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); background: rgba(201,168,108,0.1); color: var(--gold); }
.footer-col h4 { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--text-primary); }
.footer-hours li { font-size: 13px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--border-subtle); }
.footer-hours li:last-child { border: none; }
.footer-bottom {
  padding: 20px 0; border-top: 1px solid var(--border-subtle);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px; font-size: 12px; color: var(--text-muted);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  animation: waPulse 2.5s infinite;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.15); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 400px; position: relative;
  display: flex; align-items: center;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,8,5,0.78);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .section-tag { margin-bottom: 12px; }
.page-hero-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.breadcrumb { font-size: 12px; color: var(--text-muted); margin-top: 16px; letter-spacing: 0.1em; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── SUCCESS MESSAGE ── */
.form-success {
  display: none; padding: 18px 24px;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius); color: #25d366;
  font-size: 14px; text-align: center; margin-top: 16px;
}
.form-success.show { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  section { padding: 72px 0; }
  .nav-links { display: none; position: fixed; inset: var(--nav-h) 0 0 0; background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; gap: 36px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
  .nav-cta.desktop { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-stats { right: 0; left: 0; bottom: 0; justify-content: center; }
  .hero-stat { flex: 1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 340px; }
  .about-img-main { width: 70%; height: 90%; }
  .about-img-accent { width: 55%; height: 55%; }
  .about-badge { left: 0; bottom: 8px; }
  .gallery-grid { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 28px 20px; }
}
