/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #d4a017;
  --gold-light: #f5e06e;
  --gold-dark: #b8860b;
  --gold-gradient: linear-gradient(135deg, #f5e06e 0%, #d4a017 40%, #e8c84a 70%, #b8860b 100%);
  --gold-gradient-h: linear-gradient(90deg, #f5e06e 0%, #d4a017 50%, #b8860b 100%);
  --dark: #0a0a0f;
  --dark2: #111118;
  --dark3: #1a1a24;
  --dark4: #22222e;
  --text: #e8e8f0;
  --text-muted: #9090a8;
  --white: #ffffff;
  --font: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ===== TYPOGRAPHY ===== */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0a0a0f;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

/* AI Video button — outlined gold with film icon tint */
.btn-ai-video {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid rgba(212,160,23,0.50);
  font-size: 0.82rem;
}
.btn-ai-video:hover {
  background: rgba(212,160,23,0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION COMMONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--dark2); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(10,10,15,0.0);
}

#navbar.scrolled {
  background: rgba(10,10,15,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  /* mix-blend-mode: screen removes white bg on dark surfaces */
  mix-blend-mode: screen;
  transition: opacity 0.2s;
}
.nav-logo-img:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }

/* AI Video nav item — subtle gold tint to stand out */
.nav-link-aivideo {
  color: var(--gold) !important;
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 6px;
}
.nav-link-aivideo:hover {
  background: rgba(212,160,23,0.10);
  border-color: rgba(212,160,23,0.50);
  color: var(--gold-light) !important;
}

.nav-cta {
  background: var(--gold-gradient);
  color: var(--dark) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
}
.nav-cta:hover { 
  transform: translateY(-1px); 
  box-shadow: 0 4px 15px rgba(212,160,23,0.4);
  color: var(--dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* ── Video background layer — z-index: 0 ── */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* ── Dark gradient overlay — z-index: 1 ── */
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 30, 0.70) 0%,
    rgba(10, 15, 30, 0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Radial gold accents sit on top of overlay — z-index: 2 */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(212,160,23,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(212,160,23,0.04) 0%, transparent 60%);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; transform: translateY(-20px) scale(1); }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-200px) scale(0.5); }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge i { color: var(--gold); }

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
  letter-spacing: -1px;
}

.hero-title-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: fadeInUp 0.8s ease 0.65s both;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 16px;
  padding: 20px 40px;
  backdrop-filter: blur(10px);
}

.hero-stat { text-align: center; padding: 0 28px; }
.hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212,160,23,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.scroll-indicator {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(212,160,23,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s;
}
.scroll-indicator:hover { border-color: var(--gold); }
.hero-scroll a { text-decoration: none; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== ABOUT ===== */
.about { background: var(--dark); }

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

.about-visual {
  position: relative;
}

.about-card-main {
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 24px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.about-logo-big { width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; }
.about-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

.about-card-tag {
  margin-top: 16px;
  background: rgba(212,160,23,0.1);
  color: var(--gold-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  border: 1px solid rgba(212,160,23,0.25);
}

.about-floating-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--gold-gradient);
  color: var(--dark);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(212,160,23,0.4);
  animation: float 3s ease-in-out infinite;
}

.about-floating-badge2 {
  position: absolute;
  bottom: 20px; left: -20px;
  background: var(--dark3);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-light);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: float 3s ease-in-out infinite 1.5s;
}
.about-floating-badge2 i { color: var(--gold); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-content { }
.about-content .section-tag { display: inline-block; }
.about-content .section-title { text-align: left; margin-top: 12px; }

.about-text {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-features { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 0.9rem;
}
.feature-icon {
  width: 22px;
  height: 22px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-icon i { color: var(--dark); font-size: 0.6rem; font-weight: 900; }

/* ===== SERVICES ===== */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(212,160,23,0.2);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tab-btn:hover { color: var(--gold-light); border-color: rgba(212,160,23,0.5); }
.tab-btn.active {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(212,160,23,0.3);
}

.services-content { position: relative; min-height: 360px; }

.service-panel {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.service-panel.active { display: block; }

.service-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--dark3);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 24px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.service-panel-inner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.service-icon-large {
  width: 64px;
  height: 64px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-panel-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.service-panel-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.92rem;
}

.service-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}
.service-list li i { color: var(--gold); font-size: 0.8rem; }

/* Service Mockups */
.service-panel-visual { display: flex; align-items: center; justify-content: center; }

.service-mockup {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Web mockup */
.mockup-browser {
  width: 100%;
  background: var(--dark4);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.15);
}
.mockup-bar {
  background: rgba(212,160,23,0.08);
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(212,160,23,0.3);
}
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }
.mockup-content { padding: 20px; }
.mockup-line {
  height: 8px;
  background: rgba(212,160,23,0.15);
  border-radius: 4px;
  margin-bottom: 10px;
}
.mockup-line.gold { background: var(--gold-gradient); width: 70%; }
.mockup-line.short { width: 45%; }
.mockup-grid { display: flex; gap: 8px; margin-top: 16px; }
.mockup-block {
  flex: 1;
  height: 50px;
  background: rgba(212,160,23,0.08);
  border-radius: 6px;
  border: 1px solid rgba(212,160,23,0.1);
}

/* Brand mockup */
.brand-mockup { flex-direction: column; gap: 20px; }
.brand-circles { display: flex; gap: -10px; }
.brand-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  margin-left: -10px;
}
.c1 { background: var(--gold-gradient); }
.c2 { background: linear-gradient(135deg, #e8c84a, #d4a017); opacity: 0.7; }
.c3 { background: linear-gradient(135deg, #b8860b, #8b6508); opacity: 0.5; }
.brand-palettes { display: flex; gap: 8px; width: 100%; }
.palette { flex: 1; height: 30px; border-radius: 6px; }
.p1 { background: var(--gold); }
.p2 { background: #e8c84a; }
.p3 { background: #b8860b; }
.p4 { background: #8b6508; }

/* SEO mockup */
.seo-mockup { flex-direction: column; align-items: center; gap: 16px; }
.seo-chart { display: flex; align-items: flex-end; gap: 8px; height: 120px; padding: 0 10px; }
.seo-bar {
  flex: 1;
  background: rgba(212,160,23,0.2);
  border-radius: 4px 4px 0 0;
  transition: all 0.3s;
}
.seo-bar.highlight { background: var(--gold-gradient); }
.seo-rank {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1rem;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  padding: 8px 20px;
  border-radius: 50px;
}

/* Social mockup */
.social-mockup { }
.social-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}
.social-icon-box {
  aspect-ratio: 1;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  transition: all 0.3s;
  cursor: pointer;
}
.social-icon-box:hover {
  background: rgba(212,160,23,0.15);
  transform: scale(1.05);
}

/* Ads mockup */
.ads-mockup { }
.ads-funnel { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 100%; }
.funnel-step {
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.f1 { width: 100%; background: var(--gold-light); }
.f2 { width: 80%; background: var(--gold); }
.f3 { width: 60%; background: #c49515; }
.f4 { width: 40%; background: var(--gold-dark); }

/* White-label mockup */
.white-mockup { }
.white-label-diagram {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wl-center {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wl-orbit { position: absolute; inset: 0; animation: spin-slow 8s linear infinite; }
.wl-node {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark4);
  border: 2px solid rgba(212,160,23,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
}
.n1 { top: 0; left: 50%; transform: translateX(-50%); }
.n2 { right: 0; top: 50%; transform: translateY(-50%); }
.n3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.n4 { left: 0; top: 50%; transform: translateY(-50%); }

@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== BENEFITS ===== */
.benefits { background: var(--dark); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--dark3);
  border: 1px solid rgba(212,160,23,0.12);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,160,23,0.35);
  box-shadow: 0 20px 50px rgba(212,160,23,0.1);
}
.benefit-card.highlight {
  background: linear-gradient(135deg, rgba(212,160,23,0.08), rgba(212,160,23,0.03));
  border-color: rgba(212,160,23,0.35);
}
.benefit-card.highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.benefit-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--dark3);
  border: 1px solid rgba(212,160,23,0.1);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,160,23,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212,160,23,0.08);
  border: 2px solid rgba(212,160,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.why-card:hover .why-icon {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: transparent;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark); overflow: hidden; }

.testimonials-slider { overflow: hidden; }

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: var(--dark3);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 20px;
  padding: 32px;
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars { color: var(--gold); margin-bottom: 14px; font-size: 0.85rem; gap: 3px; display: flex; }

.testimonial-card blockquote {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--dark);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
}
.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.3);
  background: transparent;
  color: var(--gold);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212,160,23,0.25);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.slider-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a150a 0%, #2a1e0a 50%, #1a150a 100%);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,160,23,0.12) 0%, transparent 70%);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-size: 1rem;
}

/* ===== CONTACT ===== */
.contact { background: var(--dark2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.contact-info .section-tag { display: inline-block; }
.contact-info .section-title { text-align: left; margin-top: 12px; }

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
  font-size: 0.92rem;
}

.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  margin-bottom: 2px;
}
.contact-item span { color: var(--text-muted); font-size: 0.88rem; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-form-wrapper {
  background: var(--dark3);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 24px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: all 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212,160,23,0.5);
  background: rgba(212,160,23,0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(144,144,168,0.5); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark3); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(212,160,23,0.1);
  padding: 70px 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .service-panel-inner { grid-template-columns: 1fr; gap: 30px; }
  .service-panel-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* ── Mobile: hide video, use static dark-navy gradient fallback ── */
  .hero-video {
    display: none;
  }
  .hero {
    background: linear-gradient(160deg, #0a0f1e 0%, #080c18 40%, #0d1020 70%, #0a0a0f 100%);
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,15,0.98);
    flex-direction: column;
    padding: 20px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(212,160,23,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; width: 100%; }
  .nav-cta { text-align: center; width: 100%; justify-content: center; border-radius: 8px; }
  .hamburger { display: flex; }
  
  #navbar { position: fixed; }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .hero-stat-divider { width: 40px; height: 1px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .testimonial-card { min-width: calc(100% - 0px); }

  .services-tabs { gap: 6px; }
  .tab-btn { font-size: 0.7rem; padding: 8px 12px; }

  .service-panel-inner { padding: 28px 24px; }

  .contact-form-wrapper { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .about-card-main { padding: 30px; }
  .about-floating-badge { right: 0; top: 0; }
  .about-floating-badge2 { left: 0; }
}
