:root {
  --primary: #7c63e3;
  --secondary: #1a0057;
  --green: #06d6a0;
  --dark-bg: #f8fafc;
  --dark-card: #ffffff;
  --footer-bg: #150b2e;
  --light-bg: #f8fafc;
  --light-card: #ffffff;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --text-light-100: #d7dbe2;
  --accent-yellow: #ffd166;
  --accent-red: #ef476f;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --gradient-primary: linear-gradient(135deg, var(--primary), #9d87f5);
  --gradient-secondary: linear-gradient(135deg, var(--primary), var(--primary));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  margin: 1rem 0;
}

/* Header & Navigation */
header {
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  box-shadow: var(--shadow);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.logo .logo_img {
  width: 48px;
  height: 48px;
  background-image: url("../images/primary_logo.svg");
  background-size: 32px 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.logo .logo_img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.logo span {
  color: var(--primary);
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-links .cta-button:hover::after,
.nav-links .cta-button:focus::after {
  width: 0 !important;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary);
}

.nav-links .cta-button {
  color: white !important;
}
.cta-button {
  background: var(--gradient-primary);

  border: none;
  padding: 0.875rem 2rem !important;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}
.services-cta .cta-button,
.hero-buttons .cta-button {
  color: white;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #9d87f5, var(--primary));
}

.cta-button:active {
  transform: translateY(0);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Hero Section with clip-path */
.hero {
  margin: auto;
  padding: 12rem 0 10rem;
  background-size: 60px;
  background-position: center;
  background-repeat: repeat;
  background-image: url("../images/batthern.png");
  clip-path: url(#heroClip);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero-text {
  flex: 1;
  animation: fadeIn 0.9s ease-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
  padding-right: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.hero h1 span {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  border: 2px solid rgba(30, 41, 59, 0.15);
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.secondary-button:hover {
  border-color: var(--primary);
  color: #163b75;
  background: rgba(124, 99, 227, 0.12);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 560px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.9s ease-out 0.5s forwards;
  filter: drop-shadow(var(--shadow));
}

/* Keyframe animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Statistics Section */
.statistics {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.statistics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/batthern.png") repeat;
  opacity: 0.1;
  z-index: -1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #ffffff, #f0f8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  opacity: 0.9;
}

/* How It Works Section */
.how-it-works {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--dark-card) 0%, #f1f5f9 100%);
  color: var(--text-light);
  clip-path: url(#waveClip);
  position: relative;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/batthern.png") repeat;
  opacity: 0.03;
  z-index: -1;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
}

.step {
  background: var(--light-card);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124, 99, 227, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow);
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary), var(--primary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #e2e8f0 100%);
  color: var(--text-dark);
  clip-path: url(#reverseWaveClip);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/batthern.png") repeat;
  opacity: 0.02;
  z-index: -1;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary));
  display: block;
  margin: 0.75rem auto 0;
  border-radius: 50px;
  opacity: 0.95;
}

.section-title h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(145deg, #ffffff, #f8faff);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 18px 30px -18px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(135, 150, 179, 0.17);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124, 99, 227, 0.28);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-icon:hover {
  transform: scale(1.1);
}

.airtime {
  background: var(--gradient-primary);
}
.data {
  background: var(--gradient-secondary);
}
.tv {
  background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
}
.electricity {
  background: linear-gradient(135deg, var(--accent-yellow), #ffd93d);
  color: var(--text-dark);
}
.exam {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}
.betting {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(124, 99, 227, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(124, 99, 227, 0.2);
}

/* About Us Section */
.about-us {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--dark-card) 0%, #f8fafc 100%);
  color: var(--text-dark);
  clip-path: url(#diagonalClip);
  position: relative;
}

.about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/batthern.png") repeat;
  opacity: 0.02;
  z-index: -1;
}

.about-us-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 4rem;
  align-items: center;
}

.about-image {
  flex: 1;
  flex-basis: 400px;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Why Choose Us Section */
.why-us {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #e2e8f0 100%);
  clip-path: url(#curvedClip);
  position: relative;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/batthern.png") repeat;
  opacity: 0.02;
  z-index: -1;
}

.why-us .section-title h2 {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.feature {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--light-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 214, 160, 0.2);
}

.feature i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.feature p {
  color: var(--text-light);
  line-height: 1.6;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.feature p {
  color: #64748b;
}

/* Testimonials Section */
.testimonials {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--dark-card) 0%, #f1f5f9 100%);
  clip-path: url(#waveClip);
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/batthern.png") repeat;
  opacity: 0.02;
  z-index: -1;
}

.testimonials .section-title h2 {
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--light-card);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: rgba(124, 99, 227, 0.1);
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124, 99, 227, 0.2);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1.125rem;
  padding-left: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.25rem;
  box-shadow: var(--shadow);
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-author p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* FAQ Section */
.faq {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #f1f5f9 100%);
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/batthern.png") repeat;
  opacity: 0.02;
  z-index: -1;
}

.faq-container {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  background: var(--light-card);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-question {
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(124, 99, 227, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-question i {
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  margin: 1rem 0 0;
  color: var(--text-light);
  line-height: 1.6;
}

/* Supported Networks Section */
.networks {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--dark-card) 0%, #1e293b 100%);
  color: white;
  position: relative;
}

.networks::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/batthern.png") repeat;
  opacity: 0.03;
  z-index: -1;
}

.networks .section-title h2 {
  color: white;
}

.networks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.network-category {
  text-align: center;
}

.network-category h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary);
  font-weight: 600;
}

.network-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}

.network-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.network-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.network-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.network-item span {
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  text-align: center;
  padding: 2rem;
}

.trust-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.trust-item h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Location Map Section */
.location-map {
  padding: 8rem 0;
  background-color: var(--light-bg);
  color: var(--text-dark);
  text-align: center;
  clip-path: url(#reverseWaveClip);
}
.location-map h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.location-map p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2rem;
}
.map-content {
  position: relative;
  height: 500px;
  border-radius: var(--border-radius);
  overflow: visible;
}
.map-icon {
  position: absolute;
  top: -20%;
  right: -20px;
  transform: scaleX(-1);
  width: 30%;
}
.map-icon img {
  width: 100%;
}
.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
}
iframe {
  width: 100%;
  height: 100%;
}

/* Mobile App Section */
.mobile-app {
  padding: 10rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.mobile-app::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/batthern.png") repeat;
  opacity: 0.02;
  z-index: -1;
}

.app-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.app-text {
  flex: 1;
}

.app-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-text p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.app-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-feature i {
  color: var(--primary);
  font-size: 1.5rem;
  width: 40px;
}

.app-feature span {
  font-weight: 500;
  color: var(--text-dark);
}

.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-download {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.app-download:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.google-play {
  background: #000;
  color: white;
}

.google-play:hover {
  background: #333;
}

.app-store {
  background: #007aff;
  color: white;
}

.app-store:hover {
  background: #0056cc;
}

.app-download i {
  font-size: 2rem;
}

.app-download div {
  display: flex;
  flex-direction: column;
}

.app-download small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.app-download span {
  font-size: 1rem;
  font-weight: 600;
}

.app-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-image img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(var(--shadow-lg));
}

/* CTA Section with clip-path */
.cta-section {
  padding: 10rem 0;
  background: var(--gradient-primary);
  clip-path: url(#ctaClip);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/batthern.png") repeat;
  opacity: 0.1;
  z-index: -1;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-bg) 100%);
  color: white;
  text-align: center;
  clip-path: url(#newsletterClip);
  position: relative;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/batthern.png") repeat;
  opacity: 0.05;
  z-index: -1;
}

.newsletter-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.newsletter-text h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.newsletter-text p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

.newsletter-form {
  flex: 1;
  max-width: 500px;
}

.form-group {
  display: flex;
  gap: 0.5rem;
  background: white;
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.form-group:focus-within {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.form-group input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
  color: var(--text-dark);
}

.form-group input::placeholder {
  color: var(--text-light);
}

.form-group button {
  border-radius: 25px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--gradient-primary);
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.form-group button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  padding: 5rem 0 3rem;
  clip-path: url(#footerClip);
  color: white;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/batthern.png") repeat;
  opacity: 0.02;
  z-index: -1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

.footer-column .logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-column p {
  color: var(--text-light-100);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light-100);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-links i {
  font-size: 0.875rem;
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-card);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  inset: auto 1.25rem 1.25rem auto;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 2000;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1 !important;
  visibility: visible !important;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.back-to-top:active {
  transform: translateY(-2px) scale(1.02);
}

.back-to-top i {
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
  z-index: 1;
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.2s linear;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
}

.back-to-top.show .progress-ring__circle {
  stroke: #fff;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }

  .hero-content {
    gap: 3rem;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.nav-active {
    transform: translateX(0);
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .nav-links a {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group input {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 8rem 0 6rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .steps-container,
  .services-grid,
  .features,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-us-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }

  .app-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .app-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .app-buttons {
    justify-content: center;
  }

  .networks-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-container {
    margin-top: 2rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .secondary-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .service-card,
  .step,
  .feature,
  .testimonial-card {
    padding: 1.5rem;
  }

  .app-content {
    padding: 2rem 1rem;
  }

  .app-content h2 {
    font-size: 1.5rem;
  }

  .app-content p {
    font-size: 0.9rem;
  }

  .app-features {
    grid-template-columns: 1fr;
  }

  .app-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .app-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .networks-section {
    padding: 3rem 1rem;
  }

  .networks-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .network-card {
    padding: 1.5rem;
  }

  .network-card h3 {
    font-size: 1.1rem;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-item {
    padding: 1rem;
  }

  .trust-item h4 {
    font-size: 0.9rem;
  }

  .faq-section {
    padding: 3rem 1rem;
  }

  .faq-container {
    margin-top: 2rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }

  .stats-section {
    padding: 3rem 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
  .networks-logos {
    gap: 2rem;
  }

  .network-logo {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
  }
  header.scrolled .nav-links,
  header.scrolled .mobile-menu-btn {
    color: var(--text-dark);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.4s ease-in-out;
    z-index: -1;
  }
  .nav-links.nav-active {
    transform: translateY(0);
  }

  .mobile-menu-btn {
    display: block;
    z-index: 10;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .form-group {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .form-group input {
    background: white;
    margin-bottom: 1rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons button,
  .hero-buttons a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .services,
  .why-us,
  .testimonials,
  .cta-section,
  .how-it-works {
    padding: 5rem 0;
  }
  nav .cta-button {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 8rem 0 6rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .services-grid,
  .features,
  .testimonials-grid,
  .steps-container {
    grid-template-columns: 1fr;
  }

  .network-logo {
    width: 80px;
    height: 80px;
  }
}
