/* ==========================================================================
   VENTURE VOICES - PREMIUM BRANDING & DESIGN SYSTEM
   Colors: Deep Lilac, French Lilac, Lilac Shadow, Dark Navy
   Fonts: PUBG Sans (Primary), Coolvetica (Secondary)
   ========================================================================== */

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

/* Fallback local / imported custom fonts */
@font-face {
  font-family: 'PUBG Sans';
  src: local('PUBG Sans'), url('https://fonts.cdnfonts.com/s/94635/PUBGSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Coolvetica';
  src: local('Coolvetica'), url('https://fonts.cdnfonts.com/s/14352/coolvetica%20rg.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Theme Palette */
  --deep-lilac: #7E57C2;
  --deep-lilac-glow: rgba(126, 87, 194, 0.4);
  --french-lilac: #9D70A6;
  --french-lilac-light: #C099CC;
  --lilac-shadow: #1F1126;
  --dark-navy: #0B0F19;
  --dark-surface: #121624;
  --card-bg: rgba(26, 20, 38, 0.65);
  --card-border: rgba(157, 112, 166, 0.2);
  --card-border-hover: rgba(192, 153, 204, 0.5);
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #7E57C2 0%, #9D70A6 50%, #E056FD 100%);
  --grad-pink-purple: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
  --grad-dark-glass: linear-gradient(180deg, rgba(31, 17, 38, 0.8) 0%, rgba(11, 15, 25, 0.95) 100%);
  --grad-text: linear-gradient(135deg, #FFFFFF 30%, #C099CC 70%, #E056FD 100%);
  
  /* Typography */
  --font-primary: 'PUBG Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Coolvetica', 'Space Grotesk', sans-serif;
  
  /* Utilities */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 10px 40px -10px rgba(126, 87, 194, 0.4);
}

/* --- BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--dark-navy);
  color: #E2E8F0;
  font-family: var(--font-primary);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Ambient Background Lights */
.ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.ambient-glow-1 {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--deep-lilac) 0%, rgba(31, 17, 38, 0) 70%);
}

.ambient-glow-2 {
  top: 40%;
  right: -150px;
  background: radial-gradient(circle, #EC4899 0%, rgba(126, 87, 194, 0) 70%);
}

.ambient-glow-3 {
  bottom: 10%;
  left: 20%;
  background: radial-gradient(circle, var(--french-lilac) 0%, rgba(11, 15, 25, 0) 70%);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.font-primary {
  font-family: var(--font-primary);
}

.font-secondary {
  font-family: var(--font-secondary);
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-pink {
  background: var(--grad-pink-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-lilac {
  color: var(--french-lilac-light);
}

/* --- NAVBAR --- */
.navbar-custom {
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(157, 112, 166, 0.15);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-fast);
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge {
  width: 42px;
  height: 42px;
  background: var(--grad-pink-purple);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 1.4rem;
  color: #FFF;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.logo-text {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.navbar-custom .nav-link {
  color: #CBD5E1;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition-fast);
  position: relative;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: #FFFFFF;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--grad-pink-purple);
  transition: var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 60%;
}

/* Custom Dropdown Style */
.dropdown-menu-dark-custom {
  background: rgba(18, 14, 30, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(157, 112, 166, 0.25);
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.dropdown-menu-dark-custom .dropdown-item {
  color: #E2E8F0;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.dropdown-menu-dark-custom .dropdown-item:hover {
  background: rgba(126, 87, 194, 0.2);
  color: #FFFFFF;
  transform: translateX(4px);
}

/* CTA BUTTONS */
.btn-cta-primary {
  background: var(--grad-pink-purple);
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 25px rgba(236, 72, 153, 0.35);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.btn-cta-primary:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(168, 85, 247, 0.55);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid rgba(157, 112, 166, 0.4);
  font-family: var(--font-primary);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-secondary:hover {
  background: rgba(126, 87, 194, 0.25);
  border-color: var(--french-lilac-light);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero-section {
  padding: 5rem 0 4rem;
  position: relative;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1.2rem;
  background: rgba(31, 17, 38, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #E056FD;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subheading {
  font-size: 1.2rem;
  color: #94A3B8;
  margin-bottom: 2rem;
  max-width: 580px;
  font-weight: 400;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(26, 20, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  width: fit-content;
  margin-bottom: 2rem;
}

.proof-avatars {
  display: flex;
  margin-right: 4px;
}

.proof-avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--dark-navy);
  margin-left: -10px;
  object-fit: cover;
}

.proof-avatars img:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 0.9rem;
  color: #CBD5E1;
  font-weight: 500;
}

.proof-highlight {
  color: var(--french-lilac-light);
  font-weight: 700;
}

/* RIGHT HERO VISUAL STACK */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.hero-founder-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 420px;
  border-radius: 28px;
  background: var(--grad-dark-glass);
  border: 1px solid rgba(168, 85, 247, 0.3);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(126, 87, 194, 0.25);
}

.hero-founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

.hero-founder-card:hover img {
  transform: scale(1.03);
}

/* Guest Rotation Badge */
.guest-rotation-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(18, 14, 30, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition-fast);
}

.guest-avatar-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--deep-lilac);
}

.guest-info h6 {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 700;
}

.guest-info p {
  font-size: 0.78rem;
  color: #94A3B8;
  margin: 0;
}

/* FLOATING STAT CARDS */
.stat-card-float {
  position: absolute;
  background: rgba(26, 20, 38, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  z-index: 5;
  animation: floatAnim 4s ease-in-out infinite alternate;
  transition: var(--transition-fast);
}

.stat-card-float:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(236, 72, 153, 0.6);
  box-shadow: 0 20px 45px rgba(168, 85, 247, 0.4);
}

.stat-card-1 {
  top: 40px;
  left: -20px;
  animation-delay: 0s;
}

.stat-card-2 {
  top: 180px;
  right: -30px;
  animation-delay: 1s;
}

.stat-card-3 {
  bottom: 80px;
  left: -35px;
  animation-delay: 2s;
}

.stat-card-4 {
  bottom: 20px;
  right: -10px;
  animation-delay: 1.5s;
}

.stat-number {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #CBD5E1;
  font-weight: 500;
}

@keyframes floatAnim {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

/* FLOATING SOCIAL DOCK */
.floating-social-dock {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-dock-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(26, 20, 38, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(157, 112, 166, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.social-dock-btn:hover {
  background: var(--grad-pink-purple);
  color: #FFF;
  transform: scale(1.15) translateX(-4px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
}

/* --- SERVICES SECTION --- */
.section-padding {
  padding: 6rem 0;
  position: relative;
}

.section-tag {
  color: #E056FD;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-heading {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.1rem;
  color: #94A3B8;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.service-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-pink-purple);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(126, 87, 194, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #E056FD;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-tagline {
  color: var(--french-lilac-light);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.92rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.service-list li {
  font-size: 0.88rem;
  color: #CBD5E1;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-list li i {
  color: #EC4899;
  font-size: 0.85rem;
  margin-top: 4px;
}

.platform-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.platform-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- MEDIA / PODCASTS SECTION --- */
.media-tab-btn {
  background: rgba(26, 20, 38, 0.7);
  border: 1px solid rgba(157, 112, 166, 0.2);
  color: #94A3B8;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  cursor: pointer;
}

.media-tab-btn:hover,
.media-tab-btn.active {
  background: var(--grad-pink-purple);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.media-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.media-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-glow);
}

.media-thumb-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.media-thumb-wrapper.shorts-aspect {
  aspect-ratio: 9/16;
  max-height: 420px;
}

.media-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover .media-thumb-wrapper img {
  transform: scale(1.05);
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(168, 85, 247, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.2rem;
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
  transition: var(--transition-fast);
}

.media-card:hover .play-btn-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--grad-pink-purple);
}

.media-content {
  padding: 1.5rem;
}

.media-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #EC4899;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.media-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.media-guest {
  font-size: 0.88rem;
  color: #94A3B8;
}

/* --- ABOUT & COMMUNITY SECTION --- */
.community-card {
  background: linear-gradient(135deg, rgba(31, 17, 38, 0.9) 0%, rgba(18, 14, 30, 0.95) 100%);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.community-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #FFF;
  margin-bottom: 1.5rem;
}

.ig-bg {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.wa-bg {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* --- BLOGS SECTION --- */
.blog-tag-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-fast);
  cursor: pointer;
}

.blog-tag-btn:hover,
.blog-tag-btn.active {
  background: rgba(126, 87, 194, 0.3);
  border-color: var(--french-lilac-light);
  color: #FFF;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.78rem;
  color: #64748B;
  margin-bottom: 0.5rem;
  display: block;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-excerpt {
  font-size: 0.88rem;
  color: #94A3B8;
  margin-bottom: 1.25rem;
}

/* --- FOOTER --- */
.footer-custom {
  background: #070A12;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem;
  color: #94A3B8;
}

.footer-logo {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--french-lilac-light);
}

/* --- SOCIAL PROOF TICKER BAR --- */
.proof-ticker-bar {
  background: rgba(18, 14, 30, 0.85);
  border-top: 1px solid rgba(157, 112, 166, 0.15);
  border-bottom: 1px solid rgba(157, 112, 166, 0.15);
  padding: 1.25rem 0;
  backdrop-filter: blur(12px);
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.ticker-val {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
}

.ticker-lbl {
  font-size: 0.82rem;
  color: #94A3B8;
  font-weight: 500;
  line-height: 1.2;
}

/* --- PROBLEM VS SOLUTION COMPARISON --- */
.problem-card {
  background: rgba(30, 15, 20, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  height: 100%;
}

.solution-card {
  background: rgba(20, 35, 30, 0.65);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.1);
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.comparison-list li {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* --- 4-STEP PROCESS TIMELINE --- */
.process-step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--french-lilac-light);
  box-shadow: var(--shadow-glow);
}

.step-number-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad-pink-purple);
  color: #FFF;
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

/* --- FAQ ACCORDION --- */
.faq-item-dark {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-button-dark {
  background: transparent !important;
  color: #FFFFFF !important;
  font-family: var(--font-secondary) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  padding: 1.25rem 1.5rem !important;
  box-shadow: none !important;
}

.faq-button-dark:not(.collapsed) {
  color: var(--french-lilac-light) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-body-dark {
  color: #CBD5E1;
  font-size: 0.95rem;
  padding: 1.25rem 1.5rem;
  line-height: 1.7;
}

/* --- CLOSING CTA BANNER --- */
.closing-cta-banner {
  background: linear-gradient(135deg, rgba(31, 17, 38, 0.95) 0%, rgba(11, 15, 25, 0.98) 100%);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 32px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(168, 85, 247, 0.25);
}

.cta-subtext {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-top: 0.75rem;
}

/* Service Card Booking Button */
.btn-service-cta {
  background: rgba(126, 87, 194, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #FFFFFF;
  border-radius: 50px;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-fast);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.btn-service-cta:hover {
  background: var(--grad-pink-purple);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .stat-card-float {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 12px;
  }
  .hero-visual-wrapper {
    flex-direction: column;
    min-height: auto;
    margin-top: 3rem;
  }
  .floating-social-dock {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .section-heading {
    font-size: 2.1rem;
  }
  .service-card {
    padding: 1.75rem 1.25rem;
  }
}
