:root {
  --primary: #072b61;
  --accent: #ff7a00;
  --white: #ffffff;
  --light: #f8f9fa;
  --text: #1f2a37;
  --muted: #6b7280;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(7, 43, 97, 0.12);
  --shadow-hover: 0 15px 35px rgba(7, 43, 97, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

section {
  padding: 88px 0;
}

.section-light {
  background: var(--light);
}

.section-title {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto 38px;
  color: var(--muted);
}

.topbar {
  background: var(--primary);
  color: #d8e5ff;
  font-size: 0.92rem;
  padding: 8px 0;
}

.topbar i {
  color: var(--accent);
  margin-right: 6px;
}

.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: var(--white);
  transition: box-shadow 0.3s ease;
}

.navbar-wrap.scrolled {
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.12);
}

.navbar-brand {
  color: var(--primary) !important;
  font-weight: 800;
}

.nav-link {
  color: #1e293b !important;
  font-weight: 500;
}

.btn-call {
  background: var(--accent);
  color: var(--white);
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  border: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn-call:hover {
  background: #e86f00;
  color: var(--white);
  transform: translateY(-2px);
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 43, 97, 0.86), rgba(7, 43, 97, 0.65)),
    url("../images/hero-banner.jpg") center/cover no-repeat;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero p {
  max-width: 680px;
  color: #e8efff;
  font-size: 1.05rem;
  margin-bottom: 26px;
}

.btn-primary-main {
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  color: var(--white);
  border-radius: 30px;
  border: none;
  padding: 12px 26px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn-primary-main:hover {
  color: var(--white);
  background: #e86f00;
  transform: translateY(-2px);
}

.btn-outline-main {
  display: inline-block;
  text-decoration: none;
  border: 2px solid #ffffffcf;
  color: var(--white);
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-outline-main:hover {
  background: var(--white);
  color: var(--primary);
}

.feature-badges {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.badge-card {
  height: 100%;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  padding: 14px 16px;
  transition: transform 0.25s ease;
}

.badge-card i {
  color: #22c55e;
  margin-right: 6px;
}

.badge-card:hover {
  transform: translateY(-5px);
}

.about-img,
.service-thumb,
.support-img,
.service-hero-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.stat-card {
  background: var(--white);
  border: 1px solid #eaf0fa;
  border-radius: 16px;
  text-align: center;
  padding: 20px 14px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.stat-value {
  display: block;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 800;
}

.card-premium {
  background: var(--white);
  border: 1px solid #e7edf7;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-thumb {
  height: 200px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eff4ff;
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.btn-link-main {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}

.btn-link-main:hover {
  color: #cc6300;
}

.why-box {
  background: var(--white);
  border: 1px solid #ebf0f8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.why-box i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff1e5;
  color: var(--accent);
  flex-shrink: 0;
}

.process-wrap {
  position: relative;
}

.process-wrap::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 44px;
  border-top: 2px dashed #c9d6ef;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: var(--shadow);
}

.step-no {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-item {
  flex: 0 0 calc(100% / 3);
  padding: 0 12px;
}

.testimonial-card {
  height: 100%;
  background: var(--white);
  border: 1px solid #edf1f9;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.stars {
  color: #fbbf24;
  margin-bottom: 10px;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.client img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.accordion-item {
  border: 1px solid #e5eaf4;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 10px;
}

.accordion-button {
  font-weight: 600;
  color: var(--primary);
}

.accordion-button:not(.collapsed) {
  background: #f0f5ff;
  color: var(--primary);
}

.emergency-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 32px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.emergency-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -90px;
  bottom: -90px;
  background: rgba(255, 255, 255, 0.08);
}

.support-img {
  height: 220px;
  margin-top: 18px;
}

.form-card {
  background: var(--white);
  border: 1px solid #edf2fa;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  height: 100%;
}

.form-control,
.form-select {
  border-radius: 10px;
  min-height: 46px;
  border: 1px solid #d8e0ef;
}

.form-control:focus,
.form-select:focus {
  border-color: #9ab7ea;
  box-shadow: 0 0 0 0.25rem rgba(7, 43, 97, 0.12);
}

.error-text {
  color: #dc2626;
  font-size: 0.84rem;
  margin-top: 5px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #e5ebf7;
  color: var(--primary);
  background: var(--white);
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.area-pill i {
  color: var(--accent);
}

.area-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-hero-ads {
  color: var(--white);
  padding: 96px 0 84px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.battery-page .service-hero-ads {
  background-image: linear-gradient(120deg, rgba(7, 43, 97, 0.88), rgba(7, 43, 97, 0.7)), url("../images/battery-jump-start.jpg");
}

.repair-page .service-hero-ads {
  background-image: linear-gradient(120deg, rgba(7, 43, 97, 0.88), rgba(7, 43, 97, 0.7)), url("../images/car-repairing.jpg");
}

.towing-page .service-hero-ads {
  background-image: linear-gradient(120deg, rgba(7, 43, 97, 0.88), rgba(7, 43, 97, 0.7)), url("../images/car-towing.jpg");
}

.locking-page .service-hero-ads {
  background-image: linear-gradient(120deg, rgba(7, 43, 97, 0.88), rgba(7, 43, 97, 0.7)), url("../images/key-locking.jpg");
}

.fuel-page .service-hero-ads {
  background-image: linear-gradient(120deg, rgba(7, 43, 97, 0.88), rgba(7, 43, 97, 0.7)), url("../images/fuel-delivery.jpg");
}

.breakdown-page .service-hero-ads {
  background-image: linear-gradient(120deg, rgba(7, 43, 97, 0.88), rgba(7, 43, 97, 0.7)), url("../images/car-breakdown.jpg");
}

.tyre-page .service-hero-ads {
  background-image: linear-gradient(120deg, rgba(7, 43, 97, 0.88), rgba(7, 43, 97, 0.7)), url("../images/flat-tyre-services.jpg");
}

.garage-page .service-hero-ads {
  background-image: linear-gradient(120deg, rgba(7, 43, 97, 0.88), rgba(7, 43, 97, 0.7)), url("../images/nearby-auto-garage.jpg");
}

.service-hero-ads h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.hero-benefits {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 22px;
}

.hero-benefits li {
  margin-bottom: 8px;
  font-weight: 500;
  color: #ebf2ff;
}

.hero-benefits i {
  color: #34d399;
  margin-right: 8px;
}

.hero-query-card {
  background: var(--white);
  color: var(--text);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.25);
  border: 1px solid #e6edf8;
  padding: 24px;
}

.hero-query-card h4 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 5px;
}

.hero-query-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.btn-submit-hero {
  width: 100%;
  background: var(--accent);
  border: none;
  color: var(--white);
  border-radius: 10px;
  font-weight: 600;
  padding: 11px 16px;
}

.btn-submit-hero:hover {
  background: #e86f00;
  color: var(--white);
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  margin-bottom: 10px;
}

.check-list i {
  color: #22c55e;
  margin-right: 8px;
}

footer {
  background: #041b3f;
  color: #c9d8f3;
  padding-top: 70px;
}

.footer-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-link {
  color: #c9d8f3;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: var(--accent);
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  text-decoration: none;
  margin-right: 8px;
}

.socials a:hover {
  background: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 25px;
  padding: 16px 0;
  font-size: 0.92rem;
}

.floating-cta {
  position: fixed;
  right: 18px;
  z-index: 1080;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-hover);
}

.floating-cta:hover {
  color: var(--white);
}

.floating-call {
  bottom: 94px;
  background: var(--accent);
}

.floating-whatsapp {
  bottom: 26px;
  background: #25d366;
}

.mobile-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1070;
  display: none;
  gap: 8px;
  padding: 8px;
  background: var(--white);
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-bar a {
  flex: 1;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.mobile-call {
  background: var(--accent);
}

.mobile-wa {
  background: #25d366;
}

.modal-content {
  border-radius: 18px;
  border: none;
  overflow: hidden;
}

.popup-head {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
}

.popup-body {
  padding: 20px;
}

.popup-contact {
  display: block;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}
    :root {
      --primary: #072B61;
      --accent: #FF7A00;
      --white: #FFFFFF;
      --light: #F8F9FA;
      --text: #1f2a37;
      --muted: #6b7280;
      --radius: 18px;
      --shadow: 0 10px 30px rgba(7, 43, 97, 0.12);
      --shadow-hover: 0 15px 35px rgba(7, 43, 97, 0.2);
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    section {
      padding: 90px 0;
    }

    .section-light {
      background: var(--light);
    }

    .section-title {
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 12px;
    }

    .section-subtitle {
      color: var(--muted);
      max-width: 750px;
      margin: 0 auto 40px;
    }

    .topbar {
      background: var(--primary);
      color: #dce7ff;
      font-size: 0.92rem;
      padding: 8px 0;
    }

    .topbar i {
      color: var(--accent);
      margin-right: 6px;
    }

    .navbar-wrap {
      position: sticky;
      top: 0;
      z-index: 1040;
      transition: all 0.3s ease;
      background: var(--white);
    }

    .navbar-wrap.scrolled {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .navbar-brand {
      font-weight: 800;
      color: var(--primary) !important;
    }

    .nav-link {
      font-weight: 500;
      color: #1e293b !important;
    }

    .btn-call {
      background: var(--accent);
      color: var(--white);
      border-radius: 30px;
      padding: 10px 22px;
      font-weight: 600;
      border: none;
      transition: 0.3s ease;
    }

    .btn-call:hover {
      transform: translateY(-2px);
      background: #e66f00;
      color: var(--white);
    }

    .hero {
      min-height: 85vh;
      display: flex;
      align-items: center;
      position: relative;
      color: var(--white);
      background:
        linear-gradient(120deg, rgba(7, 43, 97, 0.86), rgba(7, 43, 97, 0.65)),
        url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
    }

    .hero h1 {
      font-weight: 800;
      font-size: clamp(2rem, 5vw, 3.5rem);
      line-height: 1.15;
      margin-bottom: 15px;
    }

    .hero p {
      color: #e9efff;
      max-width: 720px;
      font-size: 1.05rem;
      margin-bottom: 28px;
    }

    .btn-primary-main {
      background: var(--accent);
      border: none;
      color: var(--white);
      padding: 12px 26px;
      border-radius: 30px;
      font-weight: 600;
      transition: 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary-main:hover {
      background: #e66f00;
      color: var(--white);
      transform: translateY(-2px);
    }

    .btn-outline-main {
      border: 2px solid #ffffffcf;
      color: var(--white);
      padding: 10px 24px;
      border-radius: 30px;
      font-weight: 600;
      transition: 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-outline-main:hover {
      background: var(--white);
      color: var(--primary);
    }

    .feature-badges {
      margin-top: -35px;
      position: relative;
      z-index: 2;
    }

    .badge-card {
      background: var(--white);
      border-radius: 14px;
      box-shadow: var(--shadow);
      padding: 14px 16px;
      text-align: center;
      font-weight: 600;
      color: var(--primary);
      transition: 0.3s ease;
      height: 100%;
    }

    .badge-card i {
      color: #22c55e;
      margin-right: 6px;
    }

    .badge-card:hover {
      transform: translateY(-6px);
    }

    .about-img,
    .service-img {
      border-radius: var(--radius);
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .stat-card {
      background: var(--white);
      border-radius: 16px;
      padding: 20px 14px;
      box-shadow: var(--shadow);
      text-align: center;
      border: 1px solid #eef2ff;
      transition: 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }

    .stat-value {
      color: var(--accent);
      font-size: 1.4rem;
      font-weight: 800;
      display: block;
    }

    .card-premium {
      border: 1px solid #e7edf7;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      height: 100%;
      transition: 0.3s ease;
      background: var(--white);
    }

    .card-premium:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }

    .service-thumb {
      height: 200px;
      object-fit: cover;
      width: 100%;
    }

    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #eef4ff;
      color: var(--primary);
      font-size: 1.2rem;
      margin-bottom: 12px;
    }

    .btn-link-main {
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
    }

    .btn-link-main:hover {
      color: #cc6300;
    }

    .why-box {
      background: var(--white);
      border-radius: 14px;
      padding: 18px 16px;
      border: 1px solid #ebf0f8;
      display: flex;
      align-items: center;
      gap: 12px;
      height: 100%;
      transition: 0.3s ease;
    }

    .why-box i {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #fff1e5;
      color: var(--accent);
      flex-shrink: 0;
    }

    .why-box:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .process-wrap {
      position: relative;
    }

    .process-wrap::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 43px;
      border-top: 2px dashed #c9d6ef;
      z-index: 0;
    }

    .step-card {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 10px 14px;
    }

    .step-icon {
      width: 86px;
      height: 86px;
      border-radius: 50%;
      margin: 0 auto 12px;
      display: grid;
      place-items: center;
      background: var(--primary);
      color: var(--white);
      font-size: 1.5rem;
      box-shadow: var(--shadow);
    }

    .step-no {
      color: var(--accent);
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    .testimonial-slider {
      overflow: hidden;
      position: relative;
      padding-bottom: 10px;
    }

    .testimonial-track {
      display: flex;
      transition: transform 0.6s ease;
    }

    .testimonial-item {
      flex: 0 0 calc(100% / 3);
      padding: 0 12px;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: 16px;
      padding: 24px;
      box-shadow: var(--shadow);
      height: 100%;
      border: 1px solid #edf1f9;
    }

    .stars {
      color: #fbbf24;
      margin-bottom: 10px;
    }

    .client {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 14px;
    }

    .client img {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
    }

    .accordion-item {
      border: 1px solid #e5eaf4;
      border-radius: 12px !important;
      overflow: hidden;
      margin-bottom: 10px;
      box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
    }

    .accordion-button {
      font-weight: 600;
      color: var(--primary);
    }

    .accordion-button:not(.collapsed) {
      background: #f0f5ff;
      color: var(--primary);
    }

    .emergency-card {
      background: var(--primary);
      color: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow-hover);
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .emergency-card::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      right: -90px;
      bottom: -90px;
    }

    .support-img {
      width: 100%;
      border-radius: 14px;
      margin-top: 18px;
      height: 220px;
      object-fit: cover;
    }

    .form-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
      border: 1px solid #edf2fa;
      height: 100%;
    }

    .form-control,
    .form-select {
      border-radius: 10px;
      min-height: 46px;
      border: 1px solid #d8e0ef;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: #9ab7ea;
      box-shadow: 0 0 0 0.25rem rgba(7, 43, 97, 0.12);
    }

    .area-pill {
      background: var(--white);
      border: 1px solid #e5ebf7;
      border-radius: 999px;
      padding: 10px 16px;
      font-weight: 600;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 6px;
      transition: 0.3s ease;
    }

    .area-pill i {
      color: var(--accent);
    }

    .area-pill:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    footer {
      background: #041b3f;
      color: #c9d8f3;
      padding-top: 70px;
    }

    .footer-title {
      color: var(--white);
      font-weight: 700;
      margin-bottom: 14px;
    }

    .footer-link {
      color: #c9d8f3;
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
      transition: 0.3s ease;
    }

    .footer-link:hover {
      color: var(--accent);
      transform: translateX(4px);
    }

    .socials a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
      margin-right: 8px;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .socials a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      margin-top: 25px;
      padding: 16px 0;
      font-size: 0.92rem;
    }

    .floating-cta {
      position: fixed;
      right: 18px;
      z-index: 1080;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--white);
      text-decoration: none;
      box-shadow: var(--shadow-hover);
      transition: 0.3s ease;
    }

    .floating-cta:hover {
      transform: scale(1.06);
      color: var(--white);
    }

    .floating-call {
      bottom: 94px;
      background: var(--accent);
    }

    .floating-whatsapp {
      bottom: 26px;
      background: #25d366;
    }

    .mobile-sticky-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1070;
      display: none;
      background: var(--white);
      box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
      padding: 8px;
      gap: 8px;
    }

    .mobile-sticky-bar a {
      flex: 1;
      text-align: center;
      padding: 10px;
      border-radius: 10px;
      text-decoration: none;
      color: var(--white);
      font-weight: 600;
      font-size: 0.92rem;
    }

    .mobile-call {
      background: var(--accent);
    }

    .mobile-wa {
      background: #25d366;
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    .modal-content {
      border-radius: 18px;
      border: none;
      overflow: hidden;
    }

    .popup-head {
      background: var(--primary);
      color: var(--white);
      padding: 16px 20px;
    }

    .popup-body {
      padding: 20px;
    }

    .popup-contact {
      display: block;
      color: var(--primary);
      font-weight: 700;
      text-decoration: none;
      margin-bottom: 8px;
    }

    @media (max-width: 991px) {
      section {
        padding: 75px 0;
      }

      .process-wrap::before {
        display: none;
      }

      .testimonial-item {
        flex: 0 0 50%;
      }
    }

    @media (max-width: 767px) {
      .hero {
        min-height: 76vh;
      }

      .feature-badges {
        margin-top: -20px;
      }

      .testimonial-item {
        flex: 0 0 100%;
      }

      .mobile-sticky-bar {
        display: flex;
      }

      .floating-cta {
        bottom: 74px;
      }

      .floating-call {
        right: 18px;
      }

      .floating-whatsapp {
        right: 18px;
        bottom: 140px;
      }
    }
    *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f7f7f7;
    color:#222;
}

.membership-section{
    padding:70px 20px;
    background:#fff;
}

.container{
    max-width:1350px;
    margin:auto;
}

.heading{
    text-align:center;
    margin-bottom:50px;
}

.heading h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.heading p{
    color:#666;
    font-size:20px;
}

.pricing-wrapper{
    display:grid;
    grid-template-columns:1fr 520px 1fr;
    gap:35px;
    align-items:center;
}

.side-box{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.feature-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    padding:28px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
}

.icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff4ed;
    color:#ff6a00;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
}

.feature-card h4{
    font-size:28px;
    margin-bottom:10px;
}

.feature-card p{
    color:#666;
    line-height:1.6;
    font-size:18px;
}

.plan-card{
    background:#fff;
    border:2px solid #ff8a00;
    border-radius:30px;
    padding:45px;
    text-align:center;
    position:relative;
    box-shadow:0 15px 35px rgba(255,136,0,.12);
}

.badge{
    position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(90deg,#ff8a00,#ff5a00);
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
}

.plan-card h5{
    color:#ff7b00;
    font-size:22px;
    letter-spacing:3px;
    margin-bottom:20px;
}

.plan-card h1{
    font-size:70px;
    font-weight:700;
}

.plan-card h1 span{
    font-size:28px;
    color:#ff7b00;
}

.month{
    color:#666;
    margin:18px 0;
    font-size:20px;
}

.plan-card hr{
    margin:25px 0;
    border:none;
    border-top:1px solid #eee;
}

.plan-card ul{
    list-style:none;
    text-align:left;
}

.plan-card ul li{
    padding:12px 0;
    font-size:22px;
}

.plan-card ul i{
    color:#ff7b00;
    margin-right:12px;
}

.plan-icons{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin:30px 0;
}

.plan-icons div{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.plan-icons i{
    font-size:35px;
    color:#0b49c8;
    margin-bottom:12px;
}

.plan-icons span{
    font-size:16px;
    line-height:1.4;
}

.membership-btn{
    display:block;
    text-decoration:none;
    background:linear-gradient(90deg,#ff8a00,#ff5a00);
    color:#fff;
    padding:18px;
    border-radius:12px;
    font-size:24px;
    font-weight:700;
    margin-top:25px;
    transition:.3s;
}

.membership-btn:hover{
    transform:translateY(-3px);
}

.validity{
    margin-top:18px;
    color:#666;
}

.bottom-strip{
    margin-top:60px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.strip-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:30px;
    border-right:1px solid #eee;
}

.strip-item:last-child{
    border-right:none;
}

.strip-item i{
    font-size:35px;
    color:#ff7a00;
}

.strip-item h4{
    font-size:22px;
    margin-bottom:8px;
}

.strip-item p{
    color:#666;
}

@media(max-width:1200px){

.pricing-wrapper{
grid-template-columns:1fr;
}

.plan-card{
order:1;
}

.side-box{
order:2;
}

.bottom-strip{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.heading h2{
font-size:34px;
}

.heading p{
font-size:16px;
}

.plan-card{
padding:30px 20px;
}

.plan-card h1{
font-size:50px;
}

.plan-icons{
grid-template-columns:repeat(2,1fr);
}

.bottom-strip{
grid-template-columns:1fr;
}

.feature-card{
padding:20px;
}

.feature-card h4{
font-size:22px;
}

.feature-card p{
font-size:15px;
}

.strip-item{
padding:20px;
}

}
