/* ==========================================================================
   AmarNothi - Premium Design System & Modern Styling
   Colors: Primary Blue (#0D2B6B), Gold (#F4A300), Light (#F8FAFC), Success (#22C55E)
   Fonts: Poppins (Headings), Inter (Body), Hind Siliguri (Bengali)
   ========================================================================== */

:root {
  --primary-blue: #0D2B6B;
  --primary-blue-dark: #06163A;
  --primary-blue-light: #163B8C;
  --primary-blue-glow: rgba(13, 43, 107, 0.25);
  
  --premium-gold: #F4A300;
  --premium-gold-dark: #D98E00;
  --premium-gold-light: #FFC038;
  --premium-gold-glow: rgba(244, 163, 0, 0.35);
  
  --bg-light: #F8FAFC;
  --card-bg-light: #FFFFFF;
  --card-border-light: rgba(226, 232, 240, 0.8);
  
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  
  --success-green: #22C55E;
  --success-bg: rgba(34, 197, 94, 0.12);
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-bengali: 'Hind Siliguri', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(13, 43, 107, 0.05);
  --shadow-md: 0 8px 24px rgba(13, 43, 107, 0.08);
  --shadow-lg: 0 16px 40px rgba(13, 43, 107, 0.12);
  --shadow-gold: 0 10px 30px rgba(244, 163, 0, 0.3);
  --shadow-glow: 0 0 35px rgba(13, 43, 107, 0.2);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Comprehensive Overrides */
[data-theme="dark"] {
  --bg-light: #060D1A;
  --card-bg-light: #0D172A;
  --card-border-light: rgba(255, 255, 255, 0.1);
  --text-dark: #F8FAFC;
  --text-muted: #94A3B8;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] body {
  background-color: #060D1A;
  color: #F8FAFC;
}

[data-theme="dark"] .section-title,
[data-theme="dark"] .hero-headline,
[data-theme="dark"] .service-title,
[data-theme="dark"] .pricing-card h3,
[data-theme="dark"] .why-feature-card h4,
[data-theme="dark"] .faq-header,
[data-theme="dark"] .modal-card h2 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .stats-section,
[data-theme="dark"] .how-it-works-section,
[data-theme="dark"] .faq-section,
[data-theme="dark"] .live-activity-bar {
  background-color: #0B132B !important;
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .stat-item,
[data-theme="dark"] .why-feature-card,
[data-theme="dark"] .how-step-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .modal-card {
  background-color: #0F172A !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .search-box input,
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background-color: #1E293B !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .tab-btn {
  background-color: #1E293B;
  color: #F8FAFC;
  border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .tab-btn.active {
  background-color: var(--premium-gold);
  color: #0D2B6B;
}

/* Official Bengali Font System (Hind Siliguri) */
body[lang="bn"],
body[lang="bn"] *,
[lang="bn"] h1,
[lang="bn"] h2,
[lang="bn"] h3,
[lang="bn"] h4,
[lang="bn"] h5,
[lang="bn"] h6,
[lang="bn"] .font-heading,
[lang="bn"] p,
[lang="bn"] span,
[lang="bn"] a,
[lang="bn"] button,
[lang="bn"] input,
[lang="bn"] select,
[lang="bn"] textarea,
[lang="bn"] div {
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif !important;
}

body[lang="bn"] h1,
body[lang="bn"] h2,
body[lang="bn"] h3,
body[lang="bn"] .hero-headline,
body[lang="bn"] .section-title,
body[lang="bn"] .font-heading {
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.01em;
}

body[lang="bn"] p,
body[lang="bn"] span,
body[lang="bn"] button,
body[lang="bn"] a {
  font-weight: 500;
  line-height: 1.7;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 76px; /* Offset for fixed header */
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--premium-gold) 0%, #E09400 100%);
  color: #0D2B6B;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFC038 0%, var(--premium-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(244, 163, 0, 0.45);
}

.btn-secondary {
  background: var(--primary-blue);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--primary-blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

[data-theme="dark"] .btn-outline {
  border-color: var(--premium-gold);
  color: var(--premium-gold);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
}

/* ==========================================================================
   Header & Navbar FIXED
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(13, 43, 107, 0.06);
  transition: var(--transition);
}

[data-theme="dark"] .site-header {
  background: rgba(6, 13, 26, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}

[data-theme="dark"] .nav-link {
  color: #F8FAFC;
}

.nav-link:hover {
  color: var(--primary-blue);
}

[data-theme="dark"] .nav-link:hover {
  color: var(--premium-gold);
}

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

.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(13, 43, 107, 0.06);
  border: 1px solid rgba(13, 43, 107, 0.12);
  border-radius: var(--radius-full);
  padding: 3px;
}

[data-theme="dark"] .lang-switch {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.lang-btn {
  padding: 0.3rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--primary-blue);
  color: #FFFFFF;
}

[data-theme="dark"] .lang-btn.active {
  background: var(--premium-gold);
  color: #0D2B6B;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 43, 107, 0.06);
  color: var(--primary-blue);
  transition: var(--transition);
  font-size: 1.1rem;
}

[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.1);
  color: var(--premium-gold);
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
}

[data-theme="dark"] .mobile-nav-toggle {
  color: #FFFFFF;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  background: radial-gradient(circle at 10% 20%, rgba(13, 43, 107, 0.04) 0%, rgba(244, 163, 0, 0.05) 90%);
  overflow: hidden;
}

[data-theme="dark"] .hero-section {
  background: radial-gradient(circle at 10% 20%, rgba(13, 43, 107, 0.3) 0%, rgba(6, 13, 26, 0.95) 90%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-headline {
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--primary-blue);
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup-img {
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

/* Floating Cards in Hero */
.floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-blue);
  animation: float 4s ease-in-out infinite alternate;
  z-index: 10;
}

[data-theme="dark"] .floating-tag {
  background: rgba(15, 23, 42, 0.95);
  color: #FFFFFF;
}

.tag-1 { top: 8%; left: -20px; animation-delay: 0s; }
.tag-2 { bottom: 15%; left: -30px; animation-delay: 1s; }
.tag-3 { top: 20%; right: -20px; animation-delay: 2s; }
.tag-4 { bottom: 8%; right: -10px; animation-delay: 1.5s; }

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

/* Ticker Banner */
.live-counter-bar {
  background: var(--primary-blue);
  color: #FFFFFF;
  padding: 0.75rem 0;
  overflow: hidden;
  font-size: 0.9rem;
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 500;
}

.ticker-pulse {
  width: 10px;
  height: 10px;
  background: var(--success-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success-green);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: #FFFFFF;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 1.8rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--card-bg-light);
  border: 1px solid var(--card-border-light);
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-blue);
  font-family: var(--font-heading);
  line-height: 1.1;
  display: inline-block;
  will-change: transform;
}

[data-theme="dark"] .stat-number {
  color: var(--premium-gold) !important;
}

.stat-item.counting-active {
  animation: statGlow 1.8s ease-out;
}

@keyframes statGlow {
  0% { box-shadow: 0 0 0 rgba(13, 43, 107, 0); }
  50% { box-shadow: 0 12px 32px rgba(13, 43, 107, 0.18); }
  100% { box-shadow: var(--shadow-sm); }
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.4rem;
}

.stat-loader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(13, 43, 107, 0.08);
}

[data-theme="dark"] .stat-loader-bar {
  background: rgba(255, 255, 255, 0.1);
}

.stat-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-blue), var(--premium-gold));
  border-radius: 2px;
  transition: width 2s cubic-bezier(0.1, 0.5, 0.1, 1);
}

[data-theme="dark"] .stat-progress {
  background: linear-gradient(90deg, var(--premium-gold), var(--success-green));
}

.trust-badges-bar {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

[data-theme="dark"] .badge-item {
  color: #F8FAFC;
}

/* Popular Services Section */
.section-padding {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: 2.4rem;
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.service-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.search-box {
  width: 100%;
  max-width: 560px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3.2rem;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--card-border-light);
  background: var(--card-bg-light);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: var(--transition);
}

.search-box i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
}

.category-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--card-bg-light);
  color: var(--text-dark);
  border: 1px solid var(--card-border-light);
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
  border-color: var(--primary-blue);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.8rem;
}

.service-card {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(13, 43, 107, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
}

[data-theme="dark"] .service-icon-box {
  background: rgba(244, 163, 0, 0.15);
  color: var(--premium-gold);
}

.service-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(244, 163, 0, 0.15);
  color: #D98E00;
}

[data-theme="dark"] .service-badge {
  color: var(--premium-gold);
}

.service-title {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--card-border-light);
}

.price-amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-blue);
}

[data-theme="dark"] .price-amount {
  color: var(--premium-gold);
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Track Application Section */
.track-section {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
  color: #FFFFFF;
  padding: 5rem 0;
}

.track-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.track-input-group {
  display: flex;
  gap: 0.8rem;
  margin: 2rem 0 1rem;
  flex-wrap: wrap;
}

.track-input-group input {
  flex: 1;
  min-width: 280px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  font-size: 1rem;
  outline: none;
}

/* Timeline Stepper */
.timeline-stepper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.timeline-stepper::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: rgba(226, 232, 240, 0.8);
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.timeline-node {
  position: absolute;
  left: -2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
}

.timeline-step.completed .timeline-node {
  background: var(--success-green);
  border-color: var(--success-green);
  color: #FFFFFF;
}

.timeline-step.active .timeline-node {
  background: var(--premium-gold);
  border-color: var(--premium-gold);
  color: #0D2B6B;
}

/* Why Choose Us Split Section */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.why-feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--card-bg-light);
  border: 1px solid var(--card-border-light);
  transition: var(--transition);
}

.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(244, 163, 0, 0.15);
  color: #D98E00;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: #D98E00;
  fill: none;
  stroke-width: 2.2;
  display: block;
}

[data-theme="dark"] .why-icon {
  background: rgba(244, 163, 0, 0.22);
}

[data-theme="dark"] .why-icon svg {
  stroke: var(--premium-gold);
}

/* How It Works Timeline Horizontal */
.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.how-step-card {
  text-align: center;
  padding: 2rem 1rem;
}

.how-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--premium-gold);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

/* Mobile App Section */
.app-section {
  background: radial-gradient(circle at 90% 10%, rgba(244, 163, 0, 0.08) 0%, rgba(13, 43, 107, 0.03) 80%);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-feat-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.app-feat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}

.app-store-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--primary-blue);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

/* Pricing Breakdown Section */
.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--card-border-light);
  font-size: 1.05rem;
}

.pricing-row.total {
  border-bottom: none;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-blue);
  padding-top: 1.5rem;
}

/* FAQ Accordion */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--card-border-light);
  transition: var(--transition);
  cursor: pointer;
}

.faq-header {
  width: 100%;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  color: var(--primary-blue);
  cursor: pointer;
}

[data-theme="dark"] .faq-header {
  color: #FFFFFF;
}

.faq-icon-badge {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 50%;
  background: rgba(13, 43, 107, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

[data-theme="dark"] .faq-icon-badge {
  background: rgba(244, 163, 0, 0.18);
  color: var(--premium-gold);
}

.faq-item.active .faq-icon-badge {
  transform: rotate(45deg);
  background: var(--primary-blue);
  color: #FFFFFF;
}

[data-theme="dark"] .faq-item.active .faq-icon-badge {
  background: var(--premium-gold);
  color: #0D2B6B;
}

.faq-content {
  display: none;
  padding: 0 1.8rem;
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.8;
}

[data-theme="dark"] .faq-content {
  color: #E2E8F0;
}

.faq-item.active .faq-content {
  display: block !important;
  padding: 0.8rem 1.8rem 1.6rem;
  border-top: 1px dashed var(--card-border-light);
}

/* Final CTA Banner */
.final-cta-section {
  background: linear-gradient(135deg, #071941 0%, var(--primary-blue) 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 6rem 0;
}

.final-cta-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.final-cta-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Footer */
.site-footer {
  background: #06163A;
  color: #94A3B8;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin: 1.2rem 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  margin: 0;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2.2;
  display: block;
}

/* Official Brand Colors */
.social-fb {
  background: #1877F2 !important;
}

.social-fb:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.55);
}

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

.social-insta:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 22px rgba(220, 39, 67, 0.55);
}

.social-yt {
  background: #FF0000 !important;
}

.social-yt:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 22px rgba(255, 0, 0, 0.55);
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a:hover {
  color: var(--premium-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.88rem;
}

/* ==========================================================================
   Floating Action Widgets NO OVERLAP
   ========================================================================== */
.floating-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column-reverse; /* Stacks cleanly: top button on top, whatsapp at bottom */
  gap: 14px;
  align-items: center;
  z-index: 9999;
  pointer-events: none;
}

.float-btn {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
  margin: 0;
  border: none;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.float-btn svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.float-whatsapp { background: #25D366; color: #FFFFFF; }
.float-call { background: var(--primary-blue); color: #FFFFFF; }
.float-chat { background: var(--premium-gold); color: #0D2B6B; }
.float-top { background: rgba(15, 23, 42, 0.9); color: #FFFFFF; display: none; }

/* Modal Styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 22, 58, 0.75);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 620px;
  background: var(--card-bg-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border-light);
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.95rem;
  outline: none;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-grid,
  .why-grid,
  .app-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 68px;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--card-bg-light);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-menu.active {
    clip-path: circle(140% at 100% 0);
  }

  .mobile-nav-toggle {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .how-steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .floating-widgets {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    font-size: 1.2rem;
  }
}
