/* ===== Base ===== */
:root {
  --nav-icon-closed: #0d6efd;
  --nav-icon-open: #ef4444;
  --color-primary-blue: #0d6efd; /* Added a variable for primary blue */
  --color-dark-text: #333; /* For darker text */
}

html, body { height: 100%; }
body { 
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
  color: #212529; /* Default body text color */ 
}

/* Topbar */
.site-header .topbar { letter-spacing: .2px; }
.topbar .topbar-left { gap: .75rem; }

/* Navbar */
#mainNavbar { transition: box-shadow .2s ease; min-height: 60px; }
#mainNavbar.navbar-scrolled { box-shadow: 0 10px 28px rgba(0,0,0,.08); }
#mainNavbar .nav-link { padding: .65rem .9rem; font-weight: 500; }
#mainNavbar .nav-link.active { font-weight: 600; }
#mainNavbar .btn.btn-primary { padding-inline: 1.1rem; font-weight: 600; }

/* Offcanvas safety */
.offcanvas { display: none; }
.offcanvas.show { display: block; }

/* ===== HERO STYLES (UPGRADED & CORRECTED) ===== */
@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGlowPulse {
  0% { transform: translateX(-50%) scale(0.95); opacity: 0.8; }
  50% { transform: translateX(-50%) scale(1.05); opacity: 1; }
  100% { transform: translateX(-50%) scale(0.95); opacity: 0.8; }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* ★★★ THIS IS THE CHANGE ★★★ */
  padding: 4.5rem 0 5.5rem;
  isolation: isolate;
  overflow: hidden;
  background-color: #f8f9fa; /* Light background for contrast */
}

.hero .hero-bg {
  position: absolute;
  inset: -15rem 0 auto 50%;
  transform: translateX(-50%);
  width: 1600px;
  height: 800px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(800px 400px at 50% 10%, rgba(13,110,253,.15), transparent 70%),
    radial-gradient(300px 200px at 25% 30%, rgba(99,102,241,.12), transparent 70%),
    radial-gradient(350px 250px at 75% 25%, rgba(29, 161, 242, .12), transparent 70%);
  animation: heroGlowPulse 15s ease-in-out infinite;
}

.hero .hero-wrap {
  max-width: 920px;
  z-index: 2; /* Ensure content is above the background glow */
}

.hero-title {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .2px;
  font-size: clamp(2.4rem, 4vw + 1rem, 3.8rem);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInSlideUp 0.6s ease-out forwards;
}

.hero-title span:last-child {
  display: block;
  font-size: clamp(1.5rem, 2.5vw + 1rem, 2.2rem);
  font-weight: 700; /* Made slightly bolder */
  color: var(--color-dark-text); /* Stronger color */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Subtle shadow */
  opacity: 0.85;
  margin-top: 0.25rem;
}

.hero-title .accent {
  background: linear-gradient(90deg, #0d6efd, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 760px;
  margin: 0 auto 2rem; /* Increased bottom margin */
  font-size: clamp(1rem, .6vw + .9rem, 1.15rem);
  line-height: 1.6;
  color: #555; /* Slightly darker for better readability */
  opacity: 0;
  animation: fadeInSlideUp 0.6s ease-out 0.2s forwards;
  animation-fill-mode: forwards;
}

.hero-reviews {
  opacity: 0;
  animation: fadeInSlideUp 0.6s ease-out 0.4s forwards;
  animation-fill-mode: forwards;
  margin-top: 2rem !important; /* Ensure good spacing */
  margin-bottom: 2.5rem !important; /* Ensure good spacing */
}

.review-badge {
  display: flex; /* Ensures content is laid out correctly */
  flex-direction: column; /* Stacks source and stars vertically */
  align-items: flex-start; /* Aligns content to the left */
  gap: 0.5rem; /* Space between source and stars */
  padding: 1rem 1.4rem; /* Generous padding */
  background: rgba(255, 255, 255, 0.75); /* More opaque */
  border: 1px solid rgba(0, 0, 0, 0.08); /* Slightly stronger border */
  border-radius: 16px; /* More rounded corners */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Stronger shadow */
  -webkit-backdrop-filter: blur(10px); /* Increased blur */
  backdrop-filter: blur(10px); /* Increased blur */
  text-align: left;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out; /* Smooth hover */
}

.review-badge:hover {
  transform: translateY(-5px); /* Lift on hover */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.review-badge .d-flex { /* For the source and score lines */
  gap: 0.5rem;
  align-items: center;
}

.review-source { font-weight: 700; font-size: 1rem; color: #333; } /* Stronger source text */
.review-score { font-weight: 800; font-size: 1rem; color: var(--color-dark-text); }
.review-outof { font-size: 0.95rem; color: #666; }
.review-count { font-size: 0.95rem; color: #666; }

.stars { display: inline-flex; gap: 2px; }
.star path { fill: #FFD700; } /* Gold color for stars */

.hero-cta {
  opacity: 0;
  animation: fadeInSlideUp 0.6s ease-out 0.6s forwards;
  animation-fill-mode: forwards;
  margin-top: 2rem !important; /* Ensure good spacing after reviews */
}

.hero-cta .btn-primary {
  font-weight: 700; /* Bolder button text */
  font-size: 1.15rem; /* Slightly larger text */
  padding: 0.9rem 2.2rem; /* Larger padding */
  border-radius: 999px;
  border: none;
  background-color: var(--color-primary-blue); /* Use variable */
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4), 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background-color 0.2s ease-out;
}

.hero-cta .btn-primary:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.5), 0 5px 10px rgba(0,0,0,0.15);
  background-color: #0b5ed7; /* Slightly darker blue on hover */
}

.hero-guarantee {
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  color: #777; /* Softer guarantee text */
}

/* Mobile */
@media (max-width: 768px) { /* Adjusted breakpoint for tablets too */
  .hero { min-height: auto; padding: 3rem 0 4rem; }
  .hero-reviews {
    flex-direction: column; /* Stack badges vertically on small screens */
    align-items: center;
    gap: 1.25rem; /* Space between stacked badges */
  }
  .review-badge { width: 90%; max-width: 320px; text-align: center; align-items: center; } /* Center content within badge */
  .hero-title span:last-child { font-size: clamp(1.3rem, 4vw, 1.8rem); } /* Adjust title size */
  .hero-sub { margin-bottom: 1.5rem; }
  .hero .hero-bg { width: 1000px; height: 500px; } /* Smaller glow for mobile */
}

@media (max-width: 576px) {
  .hero { padding: 2.5rem 0 3.5rem; }
  .hero-reviews { gap: 1rem; } /* Slightly less gap for very small screens */
  .review-badge { width: 100%; }
}

/* =============================
   Footer
============================= */
.site-footer {
  background-color: #0f172a; /* Dark blue/slate background */
  color: #adb5bd; /* Light text color */
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: 1-column */
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

/* Desktop: 3-column grid */
@media (min-width: 768px) {
  .footer-grid {
    /* 1.5fr for brand, 1fr for links, 1fr for links */
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-col .navbar-brand.brand {
  /* Make brand slightly smaller for footer */
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 350px;
  color: #9ca3af; /* Slightly lighter than main text */
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links li a {
  color: #adb5bd; /* Same as footer text */
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links li a:hover,
.footer-links li a:focus {
  color: #fff;
  text-decoration: underline;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-copy p {
  margin-bottom: 0.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-copy p {
    text-align: left;
  }
}
/* =============================
   Features Section
============================= */
.features-section {
  background-color: #ffffff;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.25rem);
  color: var(--color-dark-text, #333);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Feature Cards */
.feature-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px; /* Match hero review badges */
  padding: 2.25rem 1.75rem;
  text-align: center;
  width: 100%; /* Fills the col-lg-4 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e6f0ff; /* Light blue */
  color: var(--color-primary-blue, #0d6efd); /* Main blue */
}

/* Correct icon path stroke inside the icon */
.feature-icon svg path,
.feature-icon svg circle {
  stroke: currentColor;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-dark-text, #333);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

/* =============================
   Why Choose Us (Boxes) Section
============================= */
.why-us-section-boxes {
  background-color: #f8f9fa; /* Light background */
  padding: 5rem 0;
}

/* We can reuse the same .section-title and .section-sub styles */

.why-box {
  width: 100%;
  padding: 2rem 1.5rem;
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-icon {
  margin-bottom: 1.25rem;
  color: #22c55e; /* Green checkmark */
}

.why-icon svg {
  width: 32px;
  height: 32px;
}

.why-box h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-dark-text, #333);
  margin-bottom: 0.5rem;
}

.why-box p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}
/* =============================
   Pricing Section
============================= */
.pricing-section {
  background-color: #ffffff; /* White background */
}

.pricing-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  position: relative; /* For the badge */
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark-text, #333);
  margin-bottom: 0.25rem;
}

.pricing-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  min-height: 40px; /* Aligns heights */
}

.pricing-price {
  font-size: clamp(2.2rem, 8vw, 2.75rem); /* Makes text flexible */
  font-weight: 800;
  color: var(--color-primary-blue, #0d6efd);
  line-height: 1.1;
  margin-bottom: 1.75rem;
  word-break: break-all; /* Prevents overflow */
}

.pricing-currency {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  vertical-align: super;
  margin-left: 4px;
  word-break: normal; /* Keep currency normal */
}

.pricing-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  margin-top: auto; /* Pushes button to bottom */
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #333;
}

.pricing-features li .icon {
  color: #22c55e;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

.pricing-features li.disabled {
  color: #999;
  text-decoration: line-through;
}
.pricing-features li.disabled .icon {
  color: #ef4444; /* Red 'X' */
}

.pricing-card .btn {
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}

/* Popular Card */
.pricing-card.popular {
  border-color: var(--color-primary-blue, #0d6efd);
  border-width: 2px;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
  transform: scale(1.03); /* Make it stand out */
}
.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-6px); /* More hover */
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--color-primary-blue, #0d6efd);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Payment Note */
.payment-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 999px;
  font-size: 1rem;
  color: #333;
}

/* =============================
   How It Works (Roadmap) Section
============================= */
.how-it-works-map-section {
  background-color: #f8f9fa; /* Light background */
  padding: 5rem 0;
  overflow-x: hidden; /* Prevents horizontal scroll from lines */
}

.roadmap-card {
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.roadmap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.roadmap-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e6f0ff; /* Light blue */
  color: var(--color-primary-blue, #0d6efd); /* Main blue */
}

.roadmap-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

.roadmap-step {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-blue, #0d6efd);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.roadmap-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark-text, #333);
  margin-bottom: 0.5rem;
  min-height: 44px; /* Keeps titles aligned */
}

.roadmap-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- The "Map" Connecting Lines (Desktop Only) --- */
@media (min-width: 992px) {
  .roadmap-card {
    /* Make space for the line */
    margin-right: 1.5rem; 
  }
  
  .roadmap-row .col:last-child .roadmap-card {
    margin-right: 0; /* No line/margin on last card */
  }

  .roadmap-card::after {
    content: '';
    position: absolute;
    top: 30px; /* Aligns with icon center */
    right: -2.75rem; /* g-lg-5 is 3rem. Half is 1.5rem. 1.5 + 1.25 = 2.75 */
    width: 2.5rem; /* Width of the line */
    height: 2px;
    /* Dotted line effect */
    background-image: linear-gradient(to right, #9ca3af 60%, transparent 40%);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    z-index: 1;
  }
  
  .roadmap-row .col:last-child .roadmap-card::after {
    display: none; /* No line on last card */
  }
}

/* On mobile, remove all the connecting line styles */
@media (max-width: 991.98px) {
  .roadmap-title {
    min-height: 0; /* Reset min-height */
  }
}
/* =============================
   SEO Overlap Section (v4)
============================= */
.seo-overlap-section {
  background-color: #f8f9fa; /* Light background */
  padding: 5rem 0;
}

/* Center the title */
.seo-overlap-section .section-title {
  color: var(--color-dark-text, #333);
}
.seo-overlap-section .section-sub {
  color: #555;
  font-size: 1.15rem;
}

/* The Image */
.seo-overlap-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  /* This is key for the overlap */
  position: relative;
  z-index: 1;
}

/* The Overlapping Text Box */
.seo-overlap-box {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  /* This is key for the overlap */
  position: relative;
  z-index: 10;
}

.seo-overlap-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary-blue, #0d6efd); /* Use brand color */
  margin-bottom: 1rem;
}

.seo-overlap-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Re-using the checklist style */
.seo-overlap-box .seo-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.seo-overlap-box .seo-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #333;
}
.seo-overlap-box .seo-checklist .icon {
  flex-shrink: 0;
  color: #22c55e;
  width: 22px;
  height: 22px;
  margin-top: 3px;
}
.seo-overlap-box .seo-checklist li strong {
  font-weight: 600;
  color: var(--color-dark-text, #333);
}

/* --- The Magic: Overlap on Desktop --- */
@media (min-width: 992px) {
  .seo-overlap-box {
    /* Pull the box to the left so it overlaps the image column */
    margin-left: -60px; 
  }
}

/* --- Mobile Stack --- */
@media (max-width: 991.98px) {
  .seo-overlap-section {
    padding: 3.5rem 0;
  }
  .seo-overlap-image {
    margin-bottom: 2rem;
  }
}
/* =============================
   Call to Action (CTA) Section (Premium v3)
============================= */
.cta-section {
  /* This is a deep, premium blue gradient */
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: #ffffff;
  padding: 4rem 0; /* A more substantial, premium height */
  
  /* This creates a clean line between it and the footer */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-button {
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  
  /* Button text matches the new blue */
  color: #1e3a8a; 
  background-color: #ffffff;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.cta-button:hover {
  background-color: #ffffff;
  color: #1e3a8a;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}




/* =============================
   Checkout Page (Advanced v3 - No Icons)
============================= */
.checkout-page-new {
  background-color: #ffffff;
}

.checkout-title {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.checkout-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.95rem;
}

.checkout-form .form-control {
  padding: 0.9rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  height: auto;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.checkout-form .form-control:focus {
  border-color: var(--color-primary-blue, #0d6efd);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.checkout-form .input-group-text {
  background-color: #e9ecef;
  font-weight: 600;
  color: #555;
  padding: 0 1rem;
  border-radius: 0.5rem 0 0 0.5rem;
  border: 1px solid #ced4da;
  border-right: none;
}
.checkout-form .input-group .form-control {
  border-radius: 0 0.5rem 0.5rem 0;
}

/* --- WhatsApp Plugin Styles --- */
.checkout-form .iti {
  width: 100%;
}
.checkout-form .iti__tel-input {
  width: 100%;
  padding: 0.9rem 1rem !important;
  font-size: 1rem !important;
  height: calc(1.5em + 1.8rem + 2px) !important;
  border-radius: 0 0.5rem 0.5rem 0 !important;
  border-color: #ced4da;
}
.checkout-form .iti__flag-container {
  border-radius: 0.5rem 0 0 0.5rem;
}
.checkout-form .iti--allow-dropdown.iti--separate-dial-code .iti__selected-flag {
  background-color: #e9ecef;
}
.checkout-form .iti__tel-input:focus {
  border-color: var(--color-primary-blue, #0d6efd);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
/* --- End WhatsApp --- */

/* --- Payment Method Cards --- */
.payment-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.payment-radio {
  display: none;
}
.payment-option-card {
  display: block;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 100%;
  /* Center the text vertically */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.payment-option-card:hover {
  border-color: #adb5bd;
}
.payment-option-card.active {
  border-color: var(--color-primary-blue, #0d6efd);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
  background-color: #f8faff;
}
.payment-option-card h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem; /* Adjusted margin */
}

/* ★★★ ICON CSS REMOVED ★★★ */

.payment-option-card .payment-note-small {
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}
/* --- End Payment Cards --- */

/* --- Order Summary Box --- */
.order-summary-box {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.order-summary-box .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.order-summary-box .summary-value {
  font-weight: 600;
  color: #333;
}
.order-summary-box .summary-item.total {
  font-size: 1.3rem;
  color: #000;
}
.order-summary-box .summary-item.total .summary-value {
  color: #000;
}
.payment-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
}

/* ★★★ ICON CSS REMOVED ★★★ */

.payment-method span {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}
.payment-instructions {
  font-size: 0.9rem;
  color: #555;
  background-color: #fffaf0;
  border: 1px solid #ffeeba;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

/* =============================
   Payment Confirmation Page (PRO)
============================= */
.payment-confirmation-page {
  background-color: #f8f9fa;
}

.confirmation-box {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.confirmation-icon-pro {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #fffbeb; /* Light warning yellow */
  color: #f59e0b; /* Warning yellow */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 4px solid #fef3c7;
}
.confirmation-icon-pro svg {
  width: 32px;
  height: 32px;
}

.confirmation-title {
  font-weight: 800;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.confirmation-sub {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.order-id-box {
  font-size: 1.1rem;
  color: #333;
  background-color: #f8f9fa;
  border: 1px dashed #ced4da;
  padding: 1.25rem;
  border-radius: 12px;
}
.order-id-box span {
  font-weight: 700;
  color: var(--color-primary-blue, #0d6efd);
  font-size: 1.75rem;
  display: block;
  margin-top: 0.25rem;
}

.payment-instructions-box-pro {
  margin-top: 2rem;
  text-align: left;
}

.payment-instructions-box-pro h5 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.payment-instructions-box-pro p {
  text-align: center;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.network-badge {
  display: inline-block;
  background-color: #e0e7ff;
  color: #4338ca;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.wallet-address {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 600;
  font-size: 1.1rem;
  color: #d63384;
  background-color: #fdf2f8;
  padding: 1rem;
  border-radius: 8px;
  word-wrap: break-word;
  text-align: center;
  margin: 1.25rem 0;
  border: 1px dashed #fbcfe8;
}

.payment-note {
  font-size: 0.95rem;
  color: #555;
  background-color: #fffaf0;
  border: 1px solid #ffeeba;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

/* =============================
   Upload Proof Page
============================= */
.upload-proof-page {
  background-color: #f8f9fa;
}

.upload-form-box {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.upload-title {
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.upload-form-box .form-label {
  font-weight: 600;
  color: #333;
}

.upload-form-box .form-control {
  padding: 0.9rem 1rem;
}
.upload-form-box .form-control:disabled {
  background-color: #e9ecef;
  font-weight: 600;
  color: #000;
}

/* =============================
   Thank You Page (Success Icon)
============================= */
.confirmation-icon-success {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #f0fdf4; /* Light success green */
  color: #22c55e; /* Success green */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 4px solid #dcfce7;
}
.confirmation-icon-success svg {
  width: 32px;
  height: 32px;
}

/* =============================
   Click-to-Copy Button (Pro)
============================= */

.wallet-address-copy-wrapper {
  display: flex;
  margin: 1.25rem 0;
  border: 1px dashed #fbcfe8;
  border-radius: 8px;
  overflow: hidden;
}

.wallet-address {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 600;
  font-size: 1.1rem;
  color: #d63384;
  background-color: #fdf2f8;
  padding: 1rem;
  word-wrap: break-word;
  text-align: center;
  flex-grow: 1; /* Takes up most space */
  margin: 0;
  border: none;
}

.btn-copy {
  flex-shrink: 0; /* Won't shrink */
  background-color: #d63384;
  color: #ffffff;
  border: none;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-copy:hover {
  background-color: #a3115a;
}
.btn-copy:disabled {
  background-color: #22c55e; /* Green for success */
  cursor: default;
}
/* =============================
   About Us Page
============================= */

/* --- Hero --- */
.about-hero {
  background-color: #f8f9fa; /* Light background */
  border-bottom: 1px solid #e9ecef;
}
.about-hero .display-4 {
  color: var(--color-dark-text, #333);
}

/* --- Mission Section --- */
.about-mission .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

/* --- Values Section --- */
.about-values {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.value-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e6f0ff; /* Light blue */
  color: var(--color-primary-blue, #0d6efd); /* Main blue */
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-dark-text, #333);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}
/* =============================
   Contact Page (Pro)
============================= */

.contact-page-section {
  background-color: #ffffff;
}

.contact-form-box {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.contact-info-box {
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 16px;
}

.contact-info-title {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-info-sub {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e6f0ff;
  color: var(--color-primary-blue, #0d6efd);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-text strong {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.1rem;
}

.contact-text span {
  font-size: 1rem;
  color: #555;
}
/* =============================
   Legal Page (Privacy Policy)
============================= */

/* Uses the same hero as the 'About' page */


.legal-page-section {
  background-color: #ffffff;
}

.legal-content {
  /* Set a max-width for readability */
  max-width: 750px;
  margin: 0 auto;
}

.legal-content .lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.legal-content h2 {
  font-weight: 700;
  font-size: 1.75rem;
  color: #333;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-weight: 600;
  font-size: 1.25rem;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content ul {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.25rem;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  font-weight: 600;
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}