*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0d2035;
    --green: #2ecc71;
    --green-dark: #27ae60;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --mid-gray: #e8edf2;
    --text-dark: #1a1a2e;
    --text-body: #4a5568;
    --text-light: #718096;
    --section-pad: 80px;
    
  --font-body: 'Glance Sans';
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Glance Sans';
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.6;
  }

  /* ─── NAVBAR ─── */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 70px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img img {
  /* display: block; */
  max-width: 180px; /* Adjust size as needed */
  /* width: 100%; */
  /* height: 80px; */
  object-fit: contain;
}
  .navbar-brand-text {
    font-family: 'Glance Sans';
    font-weight: 800;
    font-size: 16px;
    color: var(--white);
    line-height: 1.1;
  }
  .navbar-brand-text span { color: var(--green); font-size: 11px; font-weight: 400; display: block; letter-spacing: 1px; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    font-family: 'Glance Sans';
  }
  .nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Glance Sans';
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--green); }
  .nav-cta {
    background: #6ca439;
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700 !important;
    font-family: 'Glance Sans';
  }
  .nav-cta:hover { background: #25591f; color: white !important; }
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
  }
  .nav-toggle span {
    display: block; width: 25px; height: 2px; background: white; border-radius: 2px; transition: 0.3s;
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
    padding-top: 70px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/herobg.png') center/cover no-repeat;
    /* opacity: 0.45; */
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgba(13,32,53,0.92) 40%, rgba(13,32,53,0.55) 100%); */
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .hero-left { flex: 0 0 60%; max-width: 700px; }
  .hero-eyebrow {
    font-size: 13px;
    font-family: 'Glance Sans';
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .hero-title {
    font-family: 'Glance Sans';
    font-weight: 900;
    font-size: clamp(32px, 4vw, 50px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .hero-title .highlight { color: #6ca439; }
  .hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.7;
  }
  .hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
  .btn-primary {
    display: inline-block;
    background: #6ca439;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
   font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border: 1px solid #000;
  }
  .btn-primary:hover { background: #6ca439; border-color: var(--green-dark); }
  .btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 30px;
    font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.2s;
  }
  .btn-outline:hover { border-color: #6ca439; color: #6ca439; }
  .hero-right {
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-end;
  }
  .hero-img-wrap {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    border: 3px solid rgba(46,204,113,0.3);
  }
  .hero-img-wrap img { width: 100%; height: auto; display: block; }

  /* ─── HERO BOTTOM BAR ─── */
  .hero-bar {
    background:#6ca439;
    padding: 16px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-bar-left {
   font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    display: flex; align-items: center; gap: 10px;
  }
  .hero-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
  }
  .hero-bar-link {
    background: var(--navy);
    color: var(--white);
    padding: 9px 22px;
    border-radius: 4px;
   font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
  }
  .hero-bar-link:hover { background: rgba(13,32,53,0.8); }
  .hero-bar-phone {
   font-family: 'Glance Sans';
    font-weight: 800;
    font-size: 16px;
    color: var(--navy);
    display: flex; align-items: center; gap: 8px;
  }

  /* ─── SECTION TITLES ─── */
  .section-eyebrow {
   font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6ca439;
    margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Glance Sans';
    font-weight: 900;
    font-size: clamp(26px, 3vw, 40px);
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 15px;
  }
  .section-title .highlight { color: #6ca439; }
  .section-title-white { color: var(--white); }
  .section-title-big {
    font-family: 'Glance Sans';
    font-weight: 900;
    font-size: clamp(36px, 5vw, 50px);
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
  }
  .section-title-big .our { font-size: 0.6em; display: block; font-weight: 400; }
  .section-sub {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 600px;
  }
  .section-sub-white { color: rgba(255,255,255,0.7); }

  /* ─── SAVE TAXES / WHY INVEST SECTION ─── */
  .why-section {
    background: #25591f;
    padding: var(--section-pad) 0;
  }
  .why-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .why-left { flex: 0 0 45%; }
  .why-points { list-style: none; margin: 25px 0 30px; }
  .why-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    font-size: 14px;
  }
  .why-points li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .why-right {
    flex: 1;
    position: relative;
  }
  .why-img-stack {
    position: relative;
    height: 420px;
  }
  .why-img-main {
    width: 72%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    top: 0; right: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }
  .why-img-accent {
    width: 55%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    bottom: 0; left: 0;
    /* box-shadow: 0 20px 50px rgba(0,0,0,0.4); */
    /* border: 4px solid var(--navy); */
  }
  .why-badge {
    position: absolute;
    bottom: 55px;
    left: 43%;
    background: #6ca439;
    color: var(--navy);
    padding: 12px 18px;
    border-radius: 8px;
   font-family: 'Glance Sans';
    font-weight: 800;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46,204,113,0.4);
    z-index: 2;
  }
  .why-badge .num { font-size: 22px; display: block; }

  /* ─── HOW IT WORKS ─── */
  .how-section {
    background: var(--white);
    padding: var(--section-pad) 0;
  }
  .how-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }
  .how-left {
    flex: 0 0 40%;
  }
  @media (min-width: 993px) {
    .how-left {
      position: sticky;
      top: 90px;
      align-self: flex-start;
    }
  }
  .how-img-box {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    margin-top: 30px;
  }
  .how-img-box img { width: 100%; display: block; }
  .how-card-mini {
    background: #25591f;
    color: white;
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 20px;
  }
  .how-card-mini h4 {
    font-family: 'Glance Sans';
    font-weight: 800;
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
  }
  .how-card-mini p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
  .how-right { flex: 1; }
  .how-steps { list-style: none; }
  /* ─── HOW STEPS - Card Background ─── */
.how-step {
  background: #f5f7fa;
  border-radius: 10px;
  padding: 22px 24px;
  border-bottom: none !important;
  margin-bottom: 16px;
  border-left: 4px solid #6ca439;
}
  .step-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #6ca439;
    color: white;
   font-family: 'Glance Sans';
    font-weight: 800;
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .step-body h4 {
   font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .step-body p { font-size: 15px; color: var(--text-body); line-height: 1.6; }
  .step-btn {
    display: inline-block;
    margin-top: 10px;
    background: #6ca439;
    color: white;
    padding: 7px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Glance Sans';
    text-decoration: none;
  }

  /* ─── REVENUE CALCULATOR (dark section) ─── */
  .calc-section {
    background: #25591f;
    padding: var(--section-pad) 0;
  }
  .calc-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .calc-left {
    flex: 0 0 38%;
    display: flex;
    justify-content: center;
  }
  .calc-person-img {
    width: 100%;
    max-width: 470px;
    height: 500px;
    border-radius: 12px;
    display: block;
    margin: auto;
    margin-left: 8px;
    /* margin-left: 30px; */
  }
  .calc-right { flex: 1; }
  .calc-title {
    font-family: 'Glance Sans';
    font-weight: 900;
    font-size: clamp(30px, 3.5vw, 52px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
  }
  .calc-title .accent { color: #6ca439; }
  .calc-table { width: 100%; border-collapse: collapse; }
  .calc-table tr { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .calc-table tr:last-child { border-bottom: none; }
  .calc-table td {
    padding: 14px 16px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
  }
  .calc-table td:first-child { font-weight: 600; color: rgba(255,255,255,0.6); }
  .calc-table td:last-child {
    text-align: right;
   font-family: 'Glance Sans';
    font-weight: 700;
    color: var(--white);
    font-size: 18px;
  }
  .calc-table .total-row { background: rgba(46,204,113,0.12); }
  .calc-table .total-row td { color: #6ca439 !important; font-size: 18px !important; }
  .calc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--green);
    font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.2s;
  }
  .calc-link:hover { gap: 14px; }
  .calc-link .arrow { font-size: 20px; }

  /* ─── SERVICES / MODELS ─── */
  .services-section {
    background:#25591f;
    padding: var(--section-pad) 0;
  }
  .services-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
  }
  .services-left { flex: 0 0 28%; }
  .services-right { flex: 1; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .service-card {
    background: white;
    border-radius: 8px;
    padding: 22px 20px;
    transition: 0.2s;
    border: 1px solid rgba(255,255,255,0.2);
  }
  /* .service-card:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); } */
  .service-icon {
    width: 44px; height: 44px;
    background: var(--navy);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
  }
  .service-card h4 {
    font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .service-card p { font-size: 12px; color: rgba(13,32,53,0.7); line-height: 1.5; }

  /* ─── CURRENT OFFERS (Franchise Models) ─── */
  .offers-section {
    background: var(--white);
    padding: var(--section-pad) 0;
  }
  .offers-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
  }
  .offers-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .offers-nav {
    display: flex;
    gap: 10px;
  }
  .offers-nav-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: 0.2s;
  }
  .offers-nav-btn.prev { background: var(--mid-gray); color: var(--navy); }
  .offers-nav-btn.next { background: var(--green); color: white; }
  .offers-nav-btn:hover { transform: scale(1.1); }
  .offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .offer-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: 0.25s;
    border: 1px solid var(--mid-gray);
  }
  .offer-card:hover { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(0,0,0,0.13); }
  .offer-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
  }
  .offer-body { padding: 18px; }
  .offer-tag {
    font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6ca439;
    margin-bottom: 6px;
  }
  .offer-name {
   font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .offer-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .offer-stat label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }
  .offer-stat span {
    font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 24px;
    color: var(--navy);
    /* margin-top: -20px; */
  }
  .offer-link {
    display: block;
    text-align: center;
    background: #6ca439;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: 0.2s;
  }
  .offer-link:hover { background: #6ca439; color: white; }

  /* ─── CUSTOMER FEEDBACK ─── */
  .feedback-section {
    background: var(--light-gray);
    padding: var(--section-pad) 0;
  }
  .feedback-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
  }
  .feedback-left { flex: 0 0 40%; }
  .feedback-avatars {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
  }
  .avatar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.2s;
  }
  .avatar-card:hover { transform: translateY(-3px); }
  .avatar-img {
    width: 64px; height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--mid-gray);
    transition: 0.2s;
  }
  .avatar-card.active .avatar-img { border-color: var(--green); }
  .avatar-name {
    font-size: 11px;
    font-weight: 600;
   font-family: 'Glance Sans';
    color: var(--navy);
    text-align: center;
  }
  .avatar-role {
    font-size: 10px;
    color: var(--text-light);
    text-align: center;
  }
  .feedback-right {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
  }
  .quote-icon {
    font-size: 80px;
    color: var(--mid-gray);
    font-family: Georgia, serif;
    line-height: 0.7;
    position: absolute;
    top: 30px; right: 30px;
    color: var(--green);
    opacity: 0.2;
  }
  .feedback-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
  }
  .feedback-author {
   font-family: 'Glance Sans';
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
  }
  .feedback-company {
    font-size: 12px;
    color: var(--green-dark);
    margin-top: 3px;
  }

  /* ─── CONTACT ─── */
  .contact-section {
    background: var(--navy);
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
  }
  .contact-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
        ),
        url('https://tarzan-community.anantacore.com/images/img4.png')
        center/cover no-repeat;
}
  .contact-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .contact-title {
   font-family: 'Glance Sans';
    font-weight: 900;
    font-size: clamp(28px, 4vw, 52px);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .contact-sub-line {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #6ca439;
    text-transform: uppercase;
    margin-bottom: 50px;
  }
  .contact-form { text-align: left; }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 5px;
    padding: 13px 16px;
    color: white;
    font-size: 16px;
    font-family: 'Glance Sans';
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--green); }
  .form-group select option { background: var(--navy); color: white; }
  .form-group textarea { height: 120px; resize: vertical; }
  .form-submit-wrap { text-align: center; margin-top: 30px; }
  .btn-submit {
    background: #6ca439;
    color: var(--navy);
    border: none;
    padding: 16px 60px;
    border-radius: 5px;
  font-family: 'Glance Sans';
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.2s;
  }
  .btn-submit:hover { background: #25591f;color: white; transform: translateY(-2px); }

  /* ============ FOOTER ============ */
/* ============ FOOTER ============ */
/* ─── SITE FOOTER ─── */
.site-footer {
  background: #25591f;
  color: var(--white);
  padding-top: 60px;
}

.site-footer .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Centered footer layout */
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}

.footer-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  line-height: 1.75;
  margin: 0 auto;
}

.footer-bottom {
  padding: 22px 24px;
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  max-width: 100%;
}

@media (max-width: 576px) {
  .site-footer {
    padding-top: 44px;
  }
  .footer-logo img {
    max-width: 160px;
  }
  .footer-desc {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 12px;
    padding: 18px 16px;
  }
}

  /* ─── BEFORE/AFTER SECTION ─── */
  .gap-section {
    background: var(--light-gray);
    padding: var(--section-pad) 0;
  }
  .gap-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
  }
  .gap-inner .section-title { text-align: center; }
  .ba-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
  }
  .ba-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
  }
  .ba-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
  }
  .ba-label {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--navy);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
   font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .ba-label.after { background: #6ca439; color: var(--navy); }
  .ba-caption {
    background: white;
    padding: 22px 24px;
  }
  .ba-caption h3 {
  font-family: 'Glance Sans';
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .ba-caption p { font-size: 14px; color: var(--text-body); line-height: 1.6; }

  /* ─── 2560 MAX WIDTH SUPPORT ─── */
  @media (min-width: 1921px) {
    .navbar { padding: 0 120px; }
    .hero-content, .why-inner, .how-inner, .calc-inner, .services-inner,
    .offers-inner, .feedback-inner, .contact-inner, .footer-inner, .gap-inner {
      max-width: 2200px;
    }
    .section-title { font-size: 48px; }
    .hero-title { font-size: 72px; }
    .calc-title { font-size: 60px; }
    .contact-title { font-size: 60px; }
    body { font-size: 16px; }
  }

  /* ─── 1440px ─── */
  @media (max-width: 1440px) {
    .hero-content, .why-inner, .how-inner, .calc-inner, .services-inner,
    .offers-inner, .feedback-inner, .footer-inner, .gap-inner { max-width: 1280px; }
  }

  /* ─── 1280px ─── */
  @media (max-width: 1280px) {
    .navbar { padding: 0 40px; }
    .hero-content, .why-inner, .how-inner, .calc-inner, .services-inner,
    .offers-inner, .feedback-inner, .footer-inner, .gap-inner { padding: 0 40px; }
    .contact-inner { padding: 0 40px; }
    .footer-bottom { padding: 20px 40px; }
    .hero-bar { padding: 16px 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ─── 1024px ─── */
  @media (max-width: 1024px) {
    .navbar { padding: 0 30px; }
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 12px; }
    .hero-content { padding: 60px 30px; gap: 30px; }
    .hero-left { flex: 0 0 55%; }
    .hero-right { flex: 0 0 42%; }
    .why-inner, .how-inner, .calc-inner, .services-inner,
    .offers-inner, .feedback-inner, .footer-inner, .gap-inner { padding: 0 30px; }
    .contact-inner { padding: 0 30px; }
    .footer-bottom { padding: 20px 30px; }
    .hero-bar { padding: 16px 30px; }
    .offers-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
  }

  /* ─── 992px ─── */
  @media (max-width: 992px) {
    :root { --section-pad: 70px; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 70px; left: 0; right: 0;
      background: var(--navy);
      padding: 20px 30px;
      gap: 14px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    /* .nav-toggle { display: flex; } */
    .hero-content {
      flex-direction: column;
      padding: 60px 30px;
      text-align: center;
    }
    .hero-left { flex: 0 0 auto; width: 100%; }
    .hero-right { flex: 0 0 auto; width: 100%; display: flex; justify-content: center; }
    .hero-img-wrap { max-width: 500px; }
    .hero-btns { justify-content: center; }
    .hero-sub { margin: 0 auto 30px; }
    .why-inner { flex-direction: column; gap: 40px; }
    .why-left { flex: 0 0 auto; width: 100%; }
    .why-right { width: 100%; }
    .why-img-stack { height: 350px; }
    .how-inner { flex-direction: column; gap: 40px; }
    .how-left { flex: 0 0 auto; width: 100%; }
    .calc-inner { flex-direction: column; gap: 40px; }
    .calc-left { flex: 0 0 auto; width: 100%; display: flex; justify-content: center; }
    .services-inner { flex-direction: column; gap: 30px; }
    .services-left { flex: 0 0 auto; width: 100%; }
    .ba-cards { grid-template-columns: 1fr 1fr; }
    .feedback-inner { flex-direction: column; gap: 30px; }
    .feedback-left { flex: 0 0 auto; width: 100%; }
  }

  /* ─── 768px ─── */
  @media (max-width: 768px) {
    :root { --section-pad: 60px; }
    .hero-bar { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
    .hero-bar-right { width: 100%; justify-content: center; gap: 15px; }
    .offers-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .footer-brand { grid-column: 1; }
    .ba-cards { grid-template-columns: 1fr; }
    .offers-head { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 15px; }
  }

  /* ─── 576px ─── */
  @media (max-width: 576px) {
    :root { --section-pad: 50px; }
    .navbar { padding: 0 16px; }
    .hero-content { padding: 40px 16px; }
    .why-inner, .how-inner, .calc-inner, .services-inner,
    .offers-inner, .feedback-inner, .footer-inner, .gap-inner { padding: 0 16px; }
    .contact-inner { padding: 0 16px; }
    .footer-bottom { padding: 20px 16px; }
    .hero-bar { padding: 14px 16px; }
    .offers-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-primary, .btn-outline { text-align: center; }
    .why-img-stack { height: 280px; }
    .feedback-right { padding: 24px 20px; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  }

  /* ─── 480px ─── */
  @media (max-width: 480px) {
    :root { --section-pad: 45px; }
    .hero-title { font-size: 28px; }
    .section-title { font-size: 24px; }
    .calc-title { font-size: 26px; }
    .contact-title { font-size: 26px; }
    .why-img-stack { height: 240px; }
    .why-img-main { height: 240px; }
    .why-img-accent { height: 160px; }
    .avatar-img { width: 52px; height: 52px; }
  }

  /* ─── 375px ─── */
  @media (max-width: 375px) {
    :root { --section-pad: 40px; }
    .hero-title { font-size: 24px; }
    .hero-sub { font-size: 14px; }
    .step-num { width: 34px; height: 34px; font-size: 13px; }
    .calc-table td { padding: 10px 10px; font-size: 12px; }
    .feedback-avatars { gap: 10px; }
    .avatar-img { width: 46px; height: 46px; }
  }

  /* ─── 320px ─── */
  @media (max-width: 320px) {
    :root { --section-pad: 35px; }
    .hero-title { font-size: 21px; }
    .section-title { font-size: 20px; }
    .calc-title { font-size: 21px; }
    .footer-phone { font-size: 13px; }
    .feedback-text { font-size: 13px; }
  }

  /*  */

  .service-icon {
  width: 70px;
  height: 70px;
  /* margin: 0 auto 20px; */

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(201,168,104,0.08);
  border: 1px solid rgba(201,168,104,0.25);

  color: #6ca439;
  font-size: 28px;

  transition: all 0.35s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-4px);
  border-color: #25591f;
  box-shadow: 0 12px 30px rgba(201,168,104,0.15);
}



/* ─── MOBILE CENTER ALIGNMENT (≤ 992px) ─── */
@media (max-width: 992px) {

  /* WHY SECTION */
  .why-left .section-eyebrow,
  .why-left .section-title,
  .why-left .section-sub,
  .why-left { text-align: center; }
   .why-points li {
    text-align: left;
    justify-content: flex-start;
    padding-left: 10px;
  }
  .why-left .btn-primary { display: inline-block; }

  /* HOW SECTION */
  .how-left .section-eyebrow,
  .how-left .section-title,
  .how-left .section-sub,
  .how-left { text-align: center; }
  .how-left .section-sub { margin: 0 auto; }

  /* SERVICES SECTION */
  .services-left .section-eyebrow,
  .services-left .section-title,
  .services-left .section-sub,
  .services-left { text-align: center; }
  .services-left .btn-primary { display: inline-block; }


  .service-card { text-align: center; }
  .service-icon { margin: 0 auto 14px; }
  .service-card h4,
  .service-card p { text-align: center; }

}

/* ─── OFFER CARD STATS CENTER (≤ 768px) ─── */
@media (max-width: 768px) {
  .offer-body { text-align: center; }
  .offer-stats { justify-content: center; }
  .offer-tag,
  .offer-name { text-align: center; }
}


/* ─── HOW SECTION - Mobile Center Alignment ─── */
@media (max-width: 992px) {
  .how-right {
    text-align: center;
  }
  .how-right .step-body h4,
  .how-right .step-body p {
    text-align: center;
  }
  .how-step {
    flex-direction: column;
    align-items: center;
  }
  .step-btn {
    display: inline-block;
  }
}

/* ─── CALC SECTION - Mobile Center Alignment ─── */
@media (max-width: 992px) {
  .calc-right {
    text-align: center;
  }
  .calc-title {
    text-align: center;
  }
  .calc-table {
    text-align: left; /* keep table columns aligned */
  }
  .calc-link {
    justify-content: center;
  }
}

/* ─── MOBILE CONTACT BUTTON ─── */
.nav-contact-mobile {
  display: none;
}

@media (max-width: 992px) {
  .nav-contact-mobile {
    display: inline-block;
    background: #6ca439;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: 0.2s;
    margin-left: auto; /* ← pushes button to right */
    /* margin-right: 2px;  */
  }
}

/* ─── MOBILE HERO OVERLAY ─── */
@media (max-width: 992px) {
  

.calc-person-img {
    width: 100%;
    max-width: 470px;
    height: 500px;
    border-radius: 12px;
    display: block;
    margin: auto;
    /* margin-left: 8px; */
    /* margin-left: 30px; */
  }

}

/* ─── MOBILE HERO - Different Background Image ─── */
@media (max-width: 992px) {
  .hero-bg {
    background: url('../images/mobilebg.png') center/cover no-repeat !important;
  }
  .hero {
    align-items: flex-end !important;
  }
  .hero-content {
    padding-bottom: 50px !important;
    padding-top: 0 !important;
  }
}

/* ─── MOBILE HERO - Image Top, Content Bottom ─── */
@media (max-width: 992px) {
  .hero {
    align-items: flex-end !important;
    min-height: 100vh !important;
  }
  .hero-bg {
    background-position: top center !important;
    background-size: cover !important;
  }
  /* .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(13,32,53,0.98) 55%,
      rgba(13,32,53,0.3) 75%,
      rgba(13,32,53,0.0) 100%
    ) !important;
  } */
  .hero-content {
    padding: 0 20px 50px 20px !important;
    width: 100% !important;
  }
  .hero-left {
    width: 100% !important;
    flex: unset !important;
    max-width: 100% !important;
  }
  .hero-eyebrow {
    font-size: 11px !important;
    text-align: center !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 10px !important;
  }
  .hero-title {
    font-size: 26px !important;
    text-align: center !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
  }
  .hero-sub {
    font-size: 13px !important;
    text-align: center !important;
    margin: 0 auto 24px !important;
    line-height: 1.6 !important;
  }
  .hero-btns {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    align-items: center !important;
  }
  .btn-primary,
  .btn-outline {
    width: 100% !important;
    text-align: center !important;
    padding: 16px 20px !important;
    font-size: 14px !important;
    border-radius: 30px !important;
  }
}