/* Root Variables - Matching Flutter App Theme */
:root {
  /* Primary Colors */
  --primary: #1C3D5A;
  --primary-dark: #0f293d;
  --primary-light: #2c5270;
  --accent: #F59E0B;
  --accent-dark: #d97706;
  
  /* Light Theme */
  --light-bg: #F8FAFC;
  --light-card: #FFFFFF;
  --light-text-primary: #0F172A;
  --light-text-secondary: #64748B;
  --light-border: #E2E8F0;
  
  /* Dark Theme */
  --dark-bg: #0F172A;
  --dark-card: #1E293B;
  --dark-text-primary: #F1F5F9;
  --dark-text-secondary: #94A3B8;
  --dark-border: #334155;
  
  /* Status Colors */
  --success: #16A34A;
  --warning: #F59E0B;
  --error: #DC2626;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1C3D5A 0%, #2c5270 100%);
  --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #d97706 100%);
  --gradient-teal: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--light-bg);
  color: var(--light-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.highlight {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-outline-dark {
  background: transparent;
  color: var(--light-text-primary);
  border: 2px solid var(--light-text-primary);
}

.btn-outline-dark:hover {
  background: var(--light-text-primary);
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Navigation */
.navbar {
  background: var(--light-card);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  color: var(--light-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 15px;
}

.nav-link:hover {
  color: var(--primary);
}

.language-dropdown {
  position: relative;
}

.lang-btn {
  background: none;
  border: 1px solid var(--light-border);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  list-style: none;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.lang-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu li a {
  display: block;
  padding: 12px 16px;
  color: var(--light-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.lang-menu li a:hover {
  background: var(--light-bg);
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 80px 0;  /* Changed from 100px 0 */
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--accent);
}

.hero-title {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--light-text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  width: 100%; /* Ensures container spans full available width */
}

.hero-buttons .btn {
  flex: 1; /* Key fix: forces each button to take exactly 50% of the row */
  justify-content: center; /* Centers text/icons inside the button */
  min-width: 0; /* Prevents flex overflow issues on smaller screens */
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat p {
  color: var(--light-text-secondary);
  font-size: 14px;
}

.hero-trust {
  padding-top: 32px;
  border-top: 1px solid var(--light-border);
}

.hero-trust p {
  color: var(--light-text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
}

.store-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: var(--light-text-primary);
  color: white;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.store-badge i {
  font-size: 24px;
}

.store-badge div {
  display: flex;
  flex-direction: column;
}

.store-badge span {
  font-size: 11px;
}

.store-badge strong {
  font-size: 16px;
}

/* App Slider - Desktop Default */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-slider {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.phone-mockup {
  position: relative;
  background: var(--primary);
  padding: 10px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.app-screenshot {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.slide-caption {
  text-align: center;
  padding: 20px;
  background: var(--light-card);
  border-radius: var(--radius-lg);
  margin-top: 16px;
  box-shadow: var(--shadow-md);
}

.slide-caption h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 18px;
}

.slide-caption p {
  color: var(--light-text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: white;
  border: 2px solid var(--light-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: -22px;
}

.slider-btn.next {
  right: -22px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
}

.dot:hover {
  transform: scale(1.2);
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: rgba(28, 61, 90, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Problem Section */
.problem-section {
  padding: var(--section-padding);
  background: var(--light-card);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--light-text-secondary);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon i {
  font-size: 36px;
  color: white;
}

.problem-card h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--light-text-secondary);
  margin-bottom: 20px;
}

.problem-stat {
  padding: 16px;
  background: var(--light-card);
  border-radius: var(--radius-md);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--error);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--light-text-secondary);
}

/* Features Section */
.features-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--light-card);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card.featured {
  background: var(--gradient-primary);
  color: white;
}

.feature-card.featured h3,
.feature-card.featured p,
.feature-card.featured .feature-list li {
  color: white;
}

.feature-card.featured .feature-icon {
  background: rgba(255, 255, 255, 0.2);
}

.feature-card.featured .feature-list i {
  color: var(--accent);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon i {
  font-size: 32px;
  color: white;
}

.feature-card h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--light-text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--light-text-primary);
  font-size: 14px;
}

.feature-list i {
  color: var(--success);
  font-size: 14px;
}

/* How It Works */
.how-it-works {
  padding: var(--section-padding);
  background: var(--light-card);
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.step {
  text-align: center;
  max-width: 280px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step-icon {
  width: 100px;
  height: 100px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid var(--accent);
}

.step-icon i {
  font-size: 40px;
  color: var(--accent);
}

.step h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 12px;
}

.step p {
  color: var(--light-text-secondary);
  margin-bottom: 16px;
}

.step-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--light-border);
}

.step-detail span {
  font-size: 13px;
  color: var(--light-text-secondary);
}

.step-detail i {
  color: var(--success);
  margin-right: 6px;
}

.step-connector {
  font-size: 40px;
  color: var(--accent);
  margin-top: 60px;
}

.workflow-video {
  margin-top: 60px;
  text-align: center;
}

.video-placeholder {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  color: white;
}

.video-placeholder i {
  font-size: 80px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.video-placeholder h4 {
  font-size: 32px;
  margin-bottom: 12px;
}

.video-placeholder p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* Screenshots Showcase */
.screenshots-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.screenshots-showcase {
  margin-top: 60px;
}

.showcase-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-slide {
  min-width: 100%;
  display: flex;
  gap: 60px;
  align-items: center;
}

.showcase-phone {
  flex: 0 0 350px;
}

.showcase-phone img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 8px solid var(--primary);
}

.showcase-info {
  flex: 1;
}

.showcase-info h3 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
}

.showcase-info p {
  color: var(--light-text-secondary);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.showcase-info ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.showcase-info ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--light-text-primary);
  font-size: 15px;
}

.showcase-info ul li i {
  color: var(--success);
}

.showcase-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.showcase-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-card);
  border: 2px solid var(--light-border);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.showcase-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.showcase-dots {
  display: flex;
  gap: 8px;
}

/* Testimonials */
.testimonials {
  padding: var(--section-padding);
  background: var(--light-card);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--light-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.testimonial-rating {
  color: var(--accent);
  margin-bottom: 20px;
}

.testimonial-text {
  color: var(--light-text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  color: var(--primary);
  margin-bottom: 4px;
}

.testimonial-author p {
  color: var(--light-text-secondary);
  font-size: 14px;
}

/* Pricing Section */
.pricing-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--light-border);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.save-badge {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--light-card);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid var(--light-border);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--accent);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.price {
  margin: 24px 0;
}

.currency {
  font-size: 24px;
  vertical-align: top;
}

.amount {
  font-size: 56px;
  font-weight: 700;
}

.period {
  font-size: 18px;
  color: var(--light-text-secondary);
}

.pricing-card.featured .period {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-header p {
  color: var(--light-text-secondary);
  margin-bottom: 32px;
}

.pricing-card.featured .pricing-header p {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features i.fa-check {
  color: var(--success);
}

.pricing-features i.fa-times {
  color: var(--error);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 14px;
  opacity: 0.8;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 14px;
}

.cta-feature i {
  color: var(--accent);
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: white;
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  color: white;
}

.footer-col p {
  color: var(--dark-text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--dark-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  margin-bottom: 24px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--dark-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--dark-border);
  color: var(--dark-text-secondary);
}

.footer-bottom i {
  color: var(--error);
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ========================================== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {

  .hero {
    padding: 60px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image {
    order: 2; /* Slider second on tablet */
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-slide {
    flex-direction: column;
    text-align: center;
  }
  
  .showcase-info ul {
    grid-template-columns: 1fr;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--light-card);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
    gap: 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 16px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Hero Section - Mobile Optimized */
  .hero {
    padding: 40px 0 30px;  /* Reduced from 60px 0 40px */
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  
  /* TEXT FIRST ON MOBILE */
  .hero-text {
    order: 1;
    width: 100%;
  }
  
  /* SLIDER SECOND ON MOBILE */
  .hero-image {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .hero-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
    margin-bottom: 32px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .hero-trust {
    padding-top: 20px;
  }
  
  /* Slider sizing for mobile */
  .app-slider {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
  
  .slider-btn.prev {
    left: 10px;
  }
  
  .slider-btn.next {
    right: 10px;
  }
  
  /* Sections */
  .section-header h2 {
    font-size: 32px;
  }
  
  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .steps-container {
    flex-direction: column;
  }
  
  .step-connector {
    transform: rotate(90deg);
    margin: 20px 0;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-phone {
    flex: 0 0 260px;
  }
  
  .showcase-info h3 {
    font-size: 24px;
  }
  
  .showcase-info p {
    font-size: 16px;
  }

  .store-badges {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    justify-content: center;
    gap: 12px; /* Reduced gap for mobile */
    margin-top: 24px;
  }
  
  .store-badge {
    flex: 0 1 auto; /* Allow shrinking */
    padding: 8px 16px; /* Smaller padding on mobile */
    min-width: 0; /* Prevent overflow */
  }
  
  .store-badge i {
    font-size: 20px; /* Smaller icon */
  }
  
  .store-badge strong {
    font-size: 14px; /* Smaller text */
  }
  
  .store-badge span {
    font-size: 10px; /* Smaller subtitle */
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {

.hero {
padding: 30px 0 20px;  /* Even less on very small screens */
}
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .app-slider {
    max-width: 240px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .stat h3 {
    font-size: 28px;
  }

  .app-slider {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
}

/* RTL Support for Urdu */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .nav-menu {
  text-align: right;
}

[dir="rtl"] .feature-list li,
[dir="rtl"] .pricing-features li {
  flex-direction: row-reverse;
}

[dir="rtl"] .step-connector i {
  transform: rotate(180deg);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Swiper Customization */
.app-slider .swiper {
  width: 100%;
  padding-bottom: 40px !important;
}

.app-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-slider .swiper {
  width: 100%;
  padding-bottom: 50px !important;
}

.showcase-slider .swiper-slide {
  height: auto;
}

/* Customize Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary) !important;
  background: white;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--light-border);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
  color: white !important;
  border-color: var(--primary);
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

/* Position navigation for app slider */
.app-slider .swiper-button-prev {
  left: -22px !important;
}

.app-slider .swiper-button-next {
  right: -22px !important;
}

/* Customize pagination dots */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid var(--primary);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* Showcase slider navigation positioning */
.showcase-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.showcase-slider .swiper-button-prev,
.showcase-slider .swiper-button-next {
  position: static !important;
  width: 50px !important;
  height: 50px !important;
  margin: 0 !important;
}

.showcase-slider .swiper-pagination {
  position: static !important;
  display: flex;
  gap: 8px;
  justify-content: center;
}

/* Responsive adjustments for swiper */
@media (max-width: 768px) {
  .app-slider .swiper-button-prev {
    left: 10px !important;
  }
  
  .app-slider .swiper-button-next {
    right: 10px !important;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px !important;
  }
}