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

:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --dark-grey: #2a2a2a;
  --mid-grey: #3a3a3a;
  --light-grey: #8a8a8a;
  --gold: #c9a84c;
  --gold-light: #d4b85a;
  --gold-dim: rgba(201,168,76,0.15);
  --bronze: #b08d57;
  --white: #f5f0e8;
  --white-pure: #ffffff;
  --glass-bg: rgba(20,20,20,0.65);
  --glass-border: rgba(201,168,76,0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Outfit', sans-serif;
}

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

html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--black); }
::-webkit-scrollbar-thumb { background:var(--gold); border-radius:3px; }

/* ── PRELOADER ── */
.preloader {
  position:fixed; inset:0; z-index:10000;
  background:var(--black);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .6s, visibility .6s;
}
.preloader.hidden { opacity:0; visibility:hidden; }
.preloader-ring {
  width:60px; height:60px;
  border:3px solid var(--dark-grey);
  border-top-color:var(--gold);
  border-radius:50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

/* ── NAVBAR ── */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:1rem 3rem;
  display:flex; align-items:center; justify-content:space-between;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.navbar.scrolled {
  background:rgba(10,10,10,0.92);
  backdrop-filter:blur(20px);
  padding:.75rem 3rem;
  border-bottom:1px solid var(--glass-border);
}
.nav-logo img { height:40px; filter:brightness(1.1); }
.nav-cta {
  padding:.65rem 1.6rem;
  background:linear-gradient(135deg,var(--gold),var(--bronze));
  color:var(--black);
  font-family:var(--font-accent);
  font-weight:600; font-size:.85rem;
  border:none; border-radius:4px; cursor:pointer;
  letter-spacing:.5px; text-transform:uppercase;
  transition: transform .3s, box-shadow .3s;
}
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(201,168,76,.35); }

/* ── HERO ── */
.hero {
  position:relative;
  min-height:100vh;
  display:flex; align-items:center;
  overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background: url('images/hero-theater.png') center/cover no-repeat;
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(0,0,0,.82),rgba(0,0,0,.55),rgba(0,0,0,.78));
}
.hero-content {
  position:relative; z-index:2;
  max-width:55%; padding:8rem 4rem 4rem;
}
.hero-badge-row {
  display:flex; flex-wrap:wrap; gap:.6rem;
  margin-bottom:2rem;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.4rem .9rem;
  background:var(--gold-dim);
  border:1px solid var(--glass-border);
  border-radius:50px;
  font-family:var(--font-accent);
  font-size:.7rem; font-weight:500;
  color:var(--gold-light);
  letter-spacing:.5px; text-transform:uppercase;
  backdrop-filter:blur(8px);
}
.hero-badge svg { width:14px; height:14px; fill:var(--gold); }
.hero h1 {
  font-family:var(--font-display);
  font-size:clamp(2.4rem,5vw,4.2rem);
  font-weight:700;
  line-height:1.12;
  margin-bottom:1.5rem;
  background:linear-gradient(135deg,var(--white),var(--gold-light));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.hero-sub {
  font-size:clamp(1rem,1.6vw,1.2rem);
  line-height:1.7;
  color:rgba(245,240,232,.7);
  max-width:580px;
  margin-bottom:2.5rem;
}
.hero-buttons { display:flex; gap:1rem; flex-wrap:wrap; }
.btn-primary {
  padding:.85rem 2rem;
  background:linear-gradient(135deg,var(--gold),var(--bronze));
  color:var(--black);
  font-family:var(--font-accent);
  font-weight:600; font-size:.9rem;
  border:none; border-radius:4px; cursor:pointer;
  letter-spacing:.5px; text-transform:uppercase;
  transition: transform .3s, box-shadow .3s;
  text-decoration:none;
  white-space:nowrap;
  display:inline-block;
  text-align:center;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 12px 35px rgba(201,168,76,.4); }
.btn-secondary {
  padding:.85rem 2rem;
  background:transparent;
  color:var(--gold);
  font-family:var(--font-accent);
  font-weight:500; font-size:.9rem;
  border:1px solid var(--gold);
  border-radius:4px; cursor:pointer;
  letter-spacing:.5px; text-transform:uppercase;
  transition: background .3s, color .3s;
  text-decoration:none;
}
.btn-secondary:hover { background:var(--gold); color:var(--black); }

/* ── LEAD FORM (sticky desktop) ── */
.lead-form-wrap {
  position:fixed; top:50%; right:2rem;
  transform:translateY(-50%);
  z-index:999; width:340px;
}
.lead-form {
  background:var(--glass-bg);
  backdrop-filter:blur(24px);
  border:1px solid var(--glass-border);
  border-radius:16px;
  padding:2rem 1.8rem;
  box-shadow:0 20px 60px rgba(0,0,0,.6);
}
.lead-form h3 {
  font-family:var(--font-display);
  font-size:1.25rem; font-weight:600;
  margin-bottom:1.2rem;
  background:linear-gradient(135deg,var(--white),var(--gold));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  text-align:center;
}
.form-group { margin-bottom:1rem; }
.form-group input {
  width:100%; padding:.75rem 1rem;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(201,168,76,.2);
  border-radius:8px;
  color:var(--white);
  font-family:var(--font-body);
  font-size:.88rem;
  transition: border-color .3s, box-shadow .3s;
  outline:none;
}
.form-group input::placeholder { color:rgba(245,240,232,.35); }
.form-group input:focus {
  border-color:var(--gold);
  box-shadow:0 0 20px rgba(201,168,76,.15);
}
.form-submit {
  width:100%; padding:.85rem;
  background:linear-gradient(135deg,var(--gold),var(--bronze));
  color:var(--black);
  font-family:var(--font-accent);
  font-weight:700; font-size:.85rem;
  border:none; border-radius:8px; cursor:pointer;
  letter-spacing:.5px; text-transform:uppercase;
  transition: transform .3s, box-shadow .3s;
}
.form-submit:hover { transform:translateY(-2px); box-shadow:0 10px 30px rgba(201,168,76,.4); }
.form-trust {
  text-align:center; margin-top:.8rem;
  font-size:.7rem; color:var(--light-grey);
  font-family:var(--font-accent);
}
.form-success {
  display:none; text-align:center;
  padding:2rem 0;
}
.form-success svg { width:48px; height:48px; fill:var(--gold); margin-bottom:1rem; }
.form-success h4 {
  font-family:var(--font-display);
  font-size:1.1rem; color:var(--gold);
  margin-bottom:.5rem;
}
.form-success p { font-size:.85rem; color:var(--light-grey); }

/* ── SECTION COMMON ── */
.section { padding:7rem 4rem; position:relative; }
.section-label {
  font-family:var(--font-accent);
  font-size:.7rem; font-weight:600;
  letter-spacing:3px; text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1rem;
}
.section-title {
  font-family:var(--font-display);
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:700; line-height:1.2;
  margin-bottom:1.5rem;
}
.section-divider {
  width:60px; height:2px;
  background:linear-gradient(90deg,var(--gold),transparent);
  margin-bottom:2rem;
}

/* ── WHY AUDISEE ── */
.why-section { background:var(--charcoal); }
.why-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:4rem; align-items:center;
  max-width:1200px; margin:0 auto;
}
.why-image { position:relative; border-radius:16px; overflow:hidden; }
.why-image img { width:100%; display:block; border-radius:16px; }
.why-image::after {
  content:''; position:absolute; inset:0;
  border:1px solid var(--glass-border); border-radius:16px;
}
.why-features {
  display:grid; grid-template-columns:1fr 1fr;
  gap:1.2rem; margin-top:2rem;
}
.why-feat {
  display:flex; align-items:flex-start; gap:.8rem;
  padding:1rem;
  background:rgba(201,168,76,.05);
  border:1px solid rgba(201,168,76,.1);
  border-radius:12px;
  transition: border-color .3s, background .3s;
}
.why-feat:hover { border-color:var(--gold); background:rgba(201,168,76,.1); }
.why-feat-icon {
  width:36px; height:36px; min-width:36px;
  display:flex; align-items:center; justify-content:center;
  background:var(--gold-dim); border-radius:8px;
}
.why-feat-icon svg { width:18px; height:18px; fill:var(--gold); }
.why-feat h4 { font-size:.85rem; font-weight:600; margin-bottom:.2rem; }
.why-feat p { font-size:.75rem; color:var(--light-grey); line-height:1.4; }
.why-quote {
  margin-top:2rem; padding:1.5rem;
  border-left:3px solid var(--gold);
  background:rgba(201,168,76,.05);
  border-radius:0 12px 12px 0;
  font-style:italic; font-size:.95rem;
  color:rgba(245,240,232,.7); line-height:1.6;
}

/* ── BRANDS ── */
.brands-section {
  background:var(--black);
  text-align:center;
  overflow:hidden;
}
.brands-track {
  display:flex; align-items:center;
  gap:4rem;
  animation: scrollBrands 25s linear infinite;
  width:max-content;
}
.brands-track:hover { animation-play-state:paused; }
@keyframes scrollBrands { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.brand-item {
  flex-shrink:0;
  padding:1.5rem 2.5rem;
  background:var(--glass-bg);
  border:1px solid var(--glass-border);
  border-radius:12px;
  backdrop-filter:blur(10px);
  font-family:var(--font-accent);
  font-size:1rem; font-weight:600;
  color:var(--light-grey);
  letter-spacing:1px;
  white-space:nowrap;
  transition: color .3s, border-color .3s;
}
.brand-item:hover { color:var(--gold); border-color:var(--gold); }
.brands-tagline {
  margin-top:2.5rem;
  font-family:var(--font-accent);
  font-size:.8rem; letter-spacing:2px;
  text-transform:uppercase;
  color:var(--light-grey);
}

/* ── SERVICES ── */
.services-section { background:var(--charcoal); }
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.5rem; max-width:1200px; margin:0 auto;
}
.service-card {
  position:relative;
  padding:2.5rem 2rem;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(201,168,76,.1);
  border-radius:16px;
  overflow:hidden;
  transition: transform .4s, border-color .4s, box-shadow .4s;
  cursor:default;
}
.service-card::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 50% 0%,rgba(201,168,76,.08),transparent 70%);
  opacity:0; transition:opacity .4s;
}
.service-card:hover {
  transform:translateY(-6px);
  border-color:var(--gold);
  box-shadow:0 20px 50px rgba(201,168,76,.12);
}
.service-card:hover::before { opacity:1; }
.service-icon {
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  background:var(--gold-dim); border-radius:12px;
  margin-bottom:1.5rem;
  position:relative; z-index:1;
}
.service-icon svg { width:26px; height:26px; fill:var(--gold); }
.service-card h3 {
  font-family:var(--font-display);
  font-size:1.15rem; font-weight:600;
  margin-bottom:.8rem; position:relative; z-index:1;
}
.service-card p {
  font-size:.85rem; line-height:1.6;
  color:var(--light-grey); position:relative; z-index:1;
}

/* ── IMMERSIVE ── */
.immersive-section {
  position:relative; min-height:80vh;
  display:flex; align-items:center;
  overflow:hidden;
}
.immersive-bg {
  position:absolute; inset:0;
  background: url('images/immersive-experience.png') center/cover no-repeat;
}
.immersive-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to right,rgba(0,0,0,.88),rgba(0,0,0,.5));
}
.immersive-content {
  position:relative; z-index:2;
  max-width:600px; padding:4rem;
}
.immersive-features {
  display:flex; flex-direction:column; gap:1.2rem;
  margin-top:2rem;
}
.imm-feat {
  display:flex; align-items:center; gap:1rem;
  padding:1rem 1.2rem;
  background:var(--glass-bg);
  border:1px solid var(--glass-border);
  border-radius:12px;
  backdrop-filter:blur(10px);
  transition: border-color .3s;
}
.imm-feat:hover { border-color:var(--gold); }
.imm-feat svg { width:22px; height:22px; fill:var(--gold); flex-shrink:0; }
.imm-feat span { font-size:.9rem; }
.streaming-badges {
  display:flex; gap:.8rem; flex-wrap:wrap; margin-top:2rem;
}
.stream-badge {
  padding:.5rem 1rem;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  border-radius:50px;
  font-family:var(--font-accent);
  font-size:.75rem; font-weight:500;
  color:var(--white);
}

/* ── WASIF EXPERTISE ── */
.expert-section { background:var(--charcoal); }
.expert-grid {
  display:grid; grid-template-columns:1fr 1.4fr;
  gap:4rem; align-items:center;
  max-width:1100px; margin:0 auto;
}
.expert-portrait {
  position:relative; border-radius:16px; overflow:hidden;
}
.expert-portrait img { width:100%; display:block; border-radius:16px; }
.expert-portrait::before {
  content:''; position:absolute; inset:0;
  border:1px solid var(--glass-border); border-radius:16px; z-index:1;
}
.expert-name {
  font-family:var(--font-display);
  font-size:1.6rem; font-weight:700;
  margin-bottom:.3rem;
}
.expert-role {
  font-family:var(--font-accent);
  font-size:.8rem; letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold); margin-bottom:1.5rem;
}
.expert-stats {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:1rem; margin-top:2rem;
}
.stat-box {
  padding:1.2rem;
  background:rgba(201,168,76,.05);
  border:1px solid rgba(201,168,76,.1);
  border-radius:12px; text-align:center;
}
.stat-num {
  font-family:var(--font-display);
  font-size:1.8rem; font-weight:700;
  color:var(--gold);
}
.stat-label {
  font-size:.72rem; color:var(--light-grey);
  text-transform:uppercase; letter-spacing:1px;
  margin-top:.3rem;
}

/* ── PROJECT SHOWCASE ── */
.showcase-section { background:var(--black); }
.showcase-slider {
  display:flex; gap:1.5rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:1.5rem;
  -ms-overflow-style:none; scrollbar-width:none;
}
.showcase-slider::-webkit-scrollbar { display:none; }
.showcase-card {
  flex:0 0 380px;
  scroll-snap-align:start;
  position:relative;
  border-radius:16px; overflow:hidden;
  border:1px solid rgba(201,168,76,.1);
  transition: border-color .3s, transform .3s;
}
.showcase-card:hover { border-color:var(--gold); transform:scale(1.02); }
.showcase-card img { width:100%; height:280px; object-fit:cover; display:block; }
.showcase-overlay {
  position:absolute; bottom:0; left:0; right:0;
  padding:1.5rem;
  background:linear-gradient(transparent,rgba(0,0,0,.9));
}
.showcase-overlay h4 { font-family:var(--font-display); font-size:1rem; }
.showcase-overlay p { font-size:.75rem; color:var(--light-grey); margin-top:.3rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { background:var(--charcoal); }
.testimonial-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.5rem; max-width:1200px; margin:0 auto;
}
.testimonial-card {
  padding:2rem;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(201,168,76,.1);
  border-radius:16px;
  transition: border-color .3s, transform .3s;
}
.testimonial-card:hover { border-color:var(--gold); transform:translateY(-4px); }
.test-stars { display:flex; gap:3px; margin-bottom:1rem; }
.test-stars svg { width:16px; height:16px; fill:var(--gold); }
.test-text {
  font-size:.9rem; line-height:1.7;
  color:rgba(245,240,232,.75);
  margin-bottom:1.5rem; font-style:italic;
}
.test-author { display:flex; align-items:center; gap:.8rem; }
.test-avatar {
  width:42px; height:42px;
  background:var(--gold-dim); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display);
  font-size:1rem; font-weight:700;
  color:var(--gold);
}
.test-info h5 { font-size:.85rem; font-weight:600; }
.test-info p { font-size:.72rem; color:var(--light-grey); }

/* ── FINAL CTA ── */
.final-cta {
  position:relative;
  padding:8rem 4rem;
  text-align:center;
  overflow:hidden;
}
.final-cta-bg {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(201,168,76,.08),transparent,rgba(201,168,76,.05));
}
.final-cta .section-title {
  font-size:clamp(2rem,4vw,3.2rem);
  max-width:700px; margin:0 auto 1rem;
}
.final-sub {
  font-size:1.1rem; color:rgba(245,240,232,.6);
  max-width:550px; margin:0 auto 2.5rem;
  line-height:1.7;
}

/* ── FOOTER ── */
.footer {
  padding:3rem 4rem;
  background:var(--charcoal);
  border-top:1px solid rgba(201,168,76,.1);
  text-align:center;
}
.footer p {
  font-size:.8rem; color:var(--light-grey);
}
.footer a { color:var(--gold); text-decoration:none; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-btn {
  position:fixed; bottom:2rem; left:2rem; z-index:998;
  width:56px; height:56px;
  background:#25d366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s;
  text-decoration:none;
}
.whatsapp-btn:hover { transform:scale(1.1); }
.whatsapp-btn svg { width:28px; height:28px; fill:#fff; }

/* ── MOBILE CTA BAR ── */
.mobile-cta-bar {
  display:none; position:fixed; bottom:0; left:0; right:0;
  z-index:998; padding:.8rem 1rem;
  background:rgba(10,10,10,.95);
  backdrop-filter:blur(20px);
  border-top:1px solid var(--glass-border);
}
.mobile-cta-bar .btn-primary { width:100%; text-align:center; display:block; }

/* ── ANIMATIONS ── */
.reveal {
  opacity:0; transform:translateY(40px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }
.reveal-delay-5 { transition-delay:.5s; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .lead-form-wrap { position:relative; top:auto; right:auto; transform:none; width:100%; max-width:400px; margin:3rem auto 0; }
  .hero-content { max-width:100%; padding:7rem 2rem 2rem; }
  .hero { flex-direction:column; }
  .why-grid, .expert-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .testimonial-grid { grid-template-columns:repeat(2,1fr); }
  .section { padding:5rem 2rem; }
  .navbar { padding:.8rem 1.5rem; }
}
@media(max-width:768px) {
  .services-grid, .testimonial-grid { grid-template-columns:1fr; }
  .why-features { grid-template-columns:1fr; }
  .expert-stats { grid-template-columns:repeat(2,1fr); }
  .showcase-card { flex:0 0 300px; }
  .hero h1 { font-size:2rem; }
  .mobile-cta-bar { display:block; }
  .whatsapp-btn { bottom:5rem; }
  .lead-form-wrap { display:none; }
  .navbar .nav-cta { display:none; }
}
