/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Color Palette - Luxury Dark */
  --bg-dark: #07080a;
  --bg-dark-accent: #11131a;
  --bg-dark-card: rgba(22, 26, 36, 0.6);
  --border-dark: rgba(212, 175, 55, 0.15);
  --border-dark-hover: rgba(212, 175, 55, 0.4);
  
  /* Color Palette - Contrast Light */
  --bg-light: #ffffff;
  --bg-light-accent: #f8f9fc;
  --bg-light-card: #ffffff;
  --border-light: rgba(0, 0, 0, 0.06);
  --text-dark: #12141d;
  --text-dark-muted: #4e5564;
  
  /* Accent Colors */
  --gold-primary: #d4af37;
  --gold-secondary: #aa7c11;
  --gold-accent: #ffdf73;
  --gold-gradient: linear-gradient(135deg, #ffdf73 0%, #d4af37 50%, #aa7c11 100%);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.35);
  
  /* Text Light Colors */
  --text-light: #f3f4f6;
  --text-light-muted: #9ca3af;
  
  /* Functional Colors */
  --success: #10b981;
  --success-glow: 0 0 15px rgba(16, 185, 129, 0.4);
  
  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Syne', sans-serif;
  
  /* Layout */
  --container-max-width: 1200px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-secondary);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* Core Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-dark { color: var(--text-dark) !important; }
.text-dark-muted { color: var(--text-dark-muted) !important; }
.align-center { align-items: center; }
.align-stretch { align-items: stretch; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ==========================================================================
   PREMIUM UTILITIES & EFFECTS
   ========================================================================== */
.glass-panel {
  background: var(--bg-dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-dark-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.05);
}

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

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.light-bg-tag {
  color: var(--gold-secondary);
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 0.25rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light-muted);
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--gold-primary);
}

.btn-secondary:hover {
  background: var(--gold-gradient);
  color: #000000;
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-glow:hover {
  animation: glow-pulse 1.5s infinite alternate;
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.icon-right {
  margin-left: 0.75rem;
  transition: transform 0.25s ease;
}

.btn:hover .icon-right {
  transform: translateX(5px);
}

/* Progress bar top screen */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold-gradient);
  width: 0%;
  z-index: 2000;
  transition: width 0.1s ease-out;
}

/* ==========================================================================
   STICKY NAVBAR
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 8, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 0.5rem 0;
  background: rgba(7, 8, 10, 0.9);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

.main-header.scrolled .navbar-container {
  height: 65px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-light-muted);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-fast);
}

/* Mobile Overlay Menu */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark-accent);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.open {
  right: 0;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-link {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light-muted);
  transition: var(--transition-fast);
}

.mobile-link:hover {
  color: var(--gold-accent);
  transform: scale(1.05);
}

.mobile-btn {
  margin-top: 1.5rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 12rem 0 10rem 0;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.08) 0%, rgba(7, 8, 10, 0) 60%);
  pointer-events: none;
}

/* Glow Orbs */
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.orb-1 {
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: var(--gold-primary);
  animation: float-slow 20s infinite alternate;
}

.orb-2 {
  bottom: 20%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: #2a3447;
  animation: float-slow 25s infinite alternate-reverse;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-wrapper {
  margin-bottom: 2.5rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-light-muted);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.trust-badge i {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.hero-headline {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 950px;
  margin-bottom: 2rem;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--text-light-muted);
  max-width: 800px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.hero-subheadline strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.hero-trust-signals {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.signal-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.signal-item i {
  color: var(--success);
}

/* Floating Stats Panel */
.stats-outer-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: 4rem;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(17, 19, 26, 0.7);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-num-container {
  display: flex;
  align-items: baseline;
}

.stat-prefix, .stat-suffix {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-accent);
}

.stat-num {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
  margin-top: 0.5rem;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 223, 115, 0.15);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: 10rem 0;
  position: relative;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual .image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1.15;
  border-radius: 20px;
  padding: 1rem;
}

/* Premium Placeholder Image / Profile Mockup */
.placeholder-avatar {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #181b24, #0b0c10);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.02);
}

.placeholder-avatar i {
  font-size: 6rem;
  color: rgba(212, 175, 55, 0.15);
  margin-bottom: 1rem;
  animation: glow-pulse 3s infinite alternate;
}

.avatar-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Live Indicator Inside Photo Box */
.live-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(7, 8, 10, 0.8);
  border: 1px solid var(--border-dark);
  padding: 0.5rem 1.25rem;
  z-index: 5;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(5px);
  white-space: nowrap;
}

.ping-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  position: relative;
}

.ping-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--success);
  border-radius: 50%;
  animation: ping 1.5s infinite ease-out;
}

.experience-badge-overlay {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--gold-gradient);
  color: #000000;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(212,175,55,0.3);
  transform: rotate(8deg);
  z-index: 5;
}

.experience-badge-overlay .num {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
}

.experience-badge-overlay .txt {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.1;
}

.storytelling-text p {
  color: var(--text-light-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.storytelling-text strong {
  color: #ffffff;
}

.about-achievements {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.achievement-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.ach-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ach-icon i {
  color: var(--gold-primary);
  font-size: 1.25rem;
}

.achievement-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.achievement-item p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 10rem 0;
  background: radial-gradient(circle at 50% 80%, rgba(21, 25, 36, 0.6) 0%, rgba(7, 8, 10, 0) 70%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.service-card {
  padding: 3rem 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.service-icon-wrap i {
  color: var(--gold-primary);
  font-size: 1.75rem;
  transition: var(--transition-smooth);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.service-card p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
}

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Hover effects for Services */
.hover-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 25px rgba(212, 175, 55, 0.15);
}

.hover-card:hover .service-icon-wrap {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  transform: scale(1.05);
}

.hover-card:hover .service-icon-wrap i {
  color: #000000;
}

/* ==========================================================================
   CASE STUDIES / BRAND SECTION (Contrasting White Background)
   ========================================================================== */
.case-studies-section {
  padding: 10rem 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.case-studies-section .section-subtitle {
  margin-bottom: 6rem;
}

.case-studies-container {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.case-study-row {
  align-items: center;
}

.case-study-visual {
  position: relative;
}

.case-image-mock {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.08);
}

/* Fallback Gradients for Mocks if user doesn't upload images */
.client-adivasi {
  background-image: url('assets/smd_adivasi_yellow_shirt.jpg');
}

.client-mahekh {
  background-image: url('assets/attar_white_shirt.jpg');
}

.client-virat {
  background-image: url('assets/real_estate_project.jpg');
  aspect-ratio: 1 / 1.25 !important;
}

.case-overlay-metrics {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  gap: 1.5rem;
}

.metric-badge {
  background: rgba(7, 8, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  flex: 1;
  text-align: center;
}

.metric-badge .m-val {
  display: block;
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-accent);
  line-height: 1.1;
}

.metric-badge .m-lbl {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light-muted);
  margin-top: 0.25rem;
}

.case-study-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-secondary);
  margin-bottom: 0.75rem;
}

.case-study-info h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.case-desc {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.case-results-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.case-results-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.case-results-list li i {
  color: var(--gold-secondary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.case-author-quote {
  border-left: 3px solid var(--gold-primary);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--text-dark-muted);
  font-size: 1rem;
}

/* Alternate Rows */
.case-reverse {
  direction: ltr;
}

/* ==========================================================================
   WHY CHOOSE ME SECTION (Contrasting Light Theme)
   ========================================================================== */
.why-choose-me {
  padding: 10rem 0;
  background-color: var(--bg-light-accent);
  color: var(--text-dark);
  border-top: 1px solid var(--border-light);
}

.why-lead-text {
  font-size: 1.25rem;
  color: var(--text-dark-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Accordion for Why Choose Me */
.benefits-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.benefit-item.open {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.benefit-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}

.benefit-number {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-secondary);
  margin-right: 1.5rem;
}

.benefit-header h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  flex-grow: 1;
}

.benefit-toggle {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  transition: transform 0.3s ease;
}

.benefit-item.open .benefit-toggle {
  transform: rotate(180deg);
  color: var(--gold-secondary);
}

.benefit-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-item.open .benefit-body {
  max-height: 200px; /* Safe upper bound */
}

.benefit-body p {
  padding: 0 2rem 1.5rem 4.5rem;
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* Methodology Card (Dark Panel inside Light Section) */
.methodology-card {
  background: var(--bg-dark-accent);
  color: #ffffff;
  padding: 3.5rem 3rem;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  border: 1px solid var(--border-dark);
}

.methodology-card h3 {
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: -0.01em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.m-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-num-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-gradient);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(212,175,55,0.25);
}

.step-info h5 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: #ffffff;
}

.step-info p {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 10rem 0;
  background: linear-gradient(to bottom, var(--bg-dark) 0%, var(--bg-dark-accent) 100%);
  position: relative;
}

.testimonials-slider-container {
  max-width: 800px;
  margin: 4rem auto 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 300%; /* Space for 3 slides */
}

.testimonial-card {
  width: 33.333%; /* Each takes 1 slider width */
  flex-shrink: 0;
  padding: 4rem 3.5rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  opacity: 0.3;
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--border-dark-hover);
}

.client-rating {
  margin-bottom: 1.5rem;
}

.client-rating i {
  color: var(--gold-accent);
  font-size: 1rem;
  margin-right: 0.25rem;
}

.client-quote {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  font-style: italic;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
}

.client-profile h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.client-profile p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--gold-gradient);
  color: #000000;
  border-color: var(--gold-primary);
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--gold-primary);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================================================
   BOOKING & INTERACTIVE SCHEDULER SECTION
   ========================================================================== */
.booking-section {
  padding: 10rem 0;
  background-color: var(--bg-dark);
  position: relative;
}

.booking-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-intro {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.booking-bullets {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bb-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.bb-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.bb-icon i {
  font-size: 0.85rem;
}

.bb-item h5 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.bb-item p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

/* Scheduler Card Container */
.scheduler-card {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  overflow: hidden;
}

.scheduler-header {
  padding: 2rem;
  background: rgba(17, 19, 26, 0.9);
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sch-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sch-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
}

.sch-profile h4 {
  font-size: 1rem;
  color: #ffffff;
}

.sch-duration {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  margin-top: 0.15rem;
}

.live-pulse {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--success);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: ping 1.5s infinite ease-out;
}

.scheduler-body {
  padding: 2.5rem 2rem;
  background: rgba(22, 26, 36, 0.4);
}

.scheduler-body.hidden {
  display: none !important;
}

.scheduler-step-title {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Month Navigation */
.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.calendar-nav h5 {
  font-size: 1rem;
  color: #ffffff;
}

.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cal-nav-btn:hover {
  background: var(--gold-secondary);
  border-color: var(--gold-primary);
}

/* Calendar Days */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.cal-day-header {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light-muted);
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.calendar-days-container {
  display: contents; /* Allows child items to align directly to grid parent */
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light-muted);
  border-radius: 8px;
  cursor: not-allowed;
  transition: var(--transition-fast);
  opacity: 0.25;
}

.cal-day.active {
  cursor: pointer;
  opacity: 1;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255,255,255,0.05);
}

.cal-day.active:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.cal-day.selected {
  background: var(--gold-gradient) !important;
  color: #000000 !important;
  font-weight: 700;
  border-color: var(--gold-primary) !important;
  box-shadow: var(--gold-glow);
}

/* Time Slots */
.time-slots-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  display: none;
}

.time-slots-section.show {
  display: block;
}

.slots-title {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  margin-bottom: 1rem;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.time-slot-btn {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.time-slot-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.time-slot-btn.selected {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-accent);
  font-weight: 600;
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.1);
}

#scheduler-next-btn {
  margin-top: 1rem;
}

/* Scheduler Step 2: Form */
.sch-back-btn {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.sch-back-btn:hover {
  color: #ffffff;
}

.selected-details-summary {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  color: var(--gold-accent);
  font-weight: 600;
}

.scheduler-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light-muted);
}

.form-group input, .form-group select, .form-group textarea {
  background: rgba(7, 8, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition-fast);
  width: 100%;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group select option {
  background-color: var(--bg-dark-accent);
  color: #ffffff;
}

/* Success Screen Styles */
.success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1.5rem;
  animation: glow-pulse-green 2s infinite alternate;
}

.scheduler-body h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.success-msg {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.success-checklist {
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
}

.success-checklist h5 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.success-checklist ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.success-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-light-muted);
}

.success-checklist li i {
  color: var(--gold-primary);
  margin-top: 0.25rem;
  font-size: 0.65rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faqs-section {
  padding: 10rem 0;
  background-color: var(--bg-dark-accent);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.35);
}

.faq-header {
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 2rem;
}

.faq-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.faq-icon {
  font-size: 1rem;
  color: var(--gold-primary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-body {
  max-height: 300px; /* Safe upper limit */
}

.faq-body p {
  padding: 0 2rem 2rem 2rem;
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
  position: relative;
  padding: 10rem 0;
  background-color: var(--bg-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, rgba(7, 8, 10, 0) 65%);
  pointer-events: none;
}

.cta-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.cta-subtext {
  font-size: 1.25rem;
  color: var(--text-light-muted);
  max-width: 750px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-sub-badge {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   STICKY FOOTER
   ========================================================================== */
.main-footer {
  background-color: #040507;
  padding: 6rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-top {
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand .logo {
  align-items: flex-start;
}

.footer-about-text {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

.footer-socials a:hover {
  background: var(--gold-secondary);
  color: #000000;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.footer-links-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #ffffff;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--text-light-muted);
}

.footer-links-col a:hover {
  color: var(--gold-accent);
  padding-left: 5px;
}

.footer-contact-info {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-live-status {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--success);
}

.footer-bottom {
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   FLOATING WHATSAPP CHAT WIDGET
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 998;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  background: rgba(7, 8, 10, 0.85);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 1.25rem 0.5rem 0.5rem;
  border-radius: 100px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.whatsapp-badge {
  width: 50px;
  height: 50px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  position: relative;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-badge i {
  z-index: 2;
}

.whatsapp-text-callout {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.chat-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.chat-status {
  font-size: 0.72rem;
  color: var(--text-light-muted);
  margin-top: 0.1rem;
}

.active-badge-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  border: 2px solid #25D366;
  z-index: 3;
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.5);
  border-radius: 50%;
  animation: ping 1.8s infinite ease-out;
  z-index: 1;
}

/* Hover Expand WhatsApp */
.whatsapp-widget:hover .whatsapp-btn {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(7, 8, 10, 0.95);
  box-shadow: 0 15px 45px rgba(0,0,0,0.6), 0 0 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-widget:hover .whatsapp-text-callout {
  max-width: 200px;
  opacity: 1;
}

/* ==========================================================================
   ANIMATIONS KEYFRAMES & REVEALS
   ========================================================================== */
@keyframes float-slow {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(90deg); }
  100% { transform: translateY(0) rotate(180deg); }
}

@keyframes ping {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes glow-pulse {
  0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
  100% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.6); }
}

@keyframes glow-pulse-green {
  0% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.2); }
  100% { box-shadow: 0 0 25px rgba(16, 185, 129, 0.6); }
}

/* Reveal classes handled by Intersection Observer */
.reveal-fade-up, .reveal-fade-left, .reveal-fade-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up {
  transform: translateY(40px);
}

.reveal-fade-left {
  transform: translateX(-40px);
}

.reveal-fade-right {
  transform: translateX(40px);
}

.reveal-fade-up.revealed, .reveal-fade-left.revealed, .reveal-fade-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Add delays for stagger reveals */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE, TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 3.5rem;
  }
  .grid-2 {
    gap: 3rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .hero-headline {
    font-size: 2.8rem;
  }
  .hero-section {
    padding: 10rem 0 6rem 0;
  }
  .stats-grid {
    flex-direction: column;
    gap: 2.5rem;
    padding: 2.5rem 1.5rem;
  }
  .stat-divider {
    width: 60%;
    height: 1px;
  }
  .nav-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  
  /* Manage header layout on mobile */
  .nav-actions .btn-secondary {
    display: none; /* Hide free audit button from navbar, keep main menu toggle */
  }
  
  /* Mobile menu active states */
  .mobile-nav-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .case-study-row {
    grid-template-columns: 1fr;
  }
  .case-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .why-choose-me .grid-2 {
    display: flex;
    flex-direction: column;
  }
  
  .testimonial-card {
    padding: 2.5rem 1.5rem;
  }
  .client-quote {
    font-size: 1.2rem;
  }
  
  .scheduler-card {
    border-radius: 12px;
  }
  .scheduler-body {
    padding: 1.5rem 1rem;
  }
  .calendar-grid {
    gap: 0.25rem;
  }
  .cal-day {
    font-size: 0.85rem;
  }
  .slots-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-headline {
    font-size: 2.4rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .whatsapp-widget {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* ==========================================================================
   SUBPAGES STYLING
   ========================================================================== */
.subpage-hero {
  padding: 10rem 0 3rem 0;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.05) 0%, rgba(7, 8, 10, 0) 50%);
}

.subpage-body {
  padding: 4rem 0 8rem 0;
  background-color: var(--bg-dark);
}

.subpage-card {
  padding: 4rem 3rem;
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-light-muted);
}

.subpage-card h2, .subpage-card h3 {
  color: #ffffff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-headings);
  font-weight: 700;
}

.subpage-card h2 {
  font-size: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

.subpage-card h3 {
  font-size: 1.4rem;
}

.subpage-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.subpage-card ul, .subpage-card ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.subpage-card li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.subpage-card strong {
  color: #ffffff;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .subpage-card {
    padding: 2.5rem 1.5rem;
  }
}
