  :root {
    --primary: #0d2461;
    --primary-light: #1a3a8f;
    --accent: #f5a623;
    --accent-dark: #e09010;
    --blue-text: #1565c0;
    --light-bg: #f4f7fd;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --success: #2e7d32;
  }

  * {
    box-sizing: border-box;
  }

  body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    font-family: 'Poppins', sans-serif;
  }

  .container {
    max-width: 1250px;
  }

  /* ── NAVBAR ── */
  .navbar {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar-brand {
    max-width: 210px;
  }

  .navbar-brand img {
    width: 100%;
    height: auto;
  }

  .navbar-brand .brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
    line-height: 1.1;
  }

  .navbar-brand .brand-sub {
    font-size: .65rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: .04em;
  }

  .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: #374151;
    padding: 6px 14px !important;
    transition: color .2s;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--accent);
  }

  .navbar-nav .nav-link.active {
    border-bottom: 2px solid var(--accent);
  }

  .btn-book {
    background: var(--primary);
    color: #fff !important;
    border-radius: 35px;
    padding: 11px 24px !important;
    font-weight: 700;
    font-size: 16px;
    transition: background .2s, transform .2s;
  }

  .btn-book:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
    background-image: url('./assets/images/hero-bg.png');
    background-size: cover;
    background-position: center center;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
  }

  .hero::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .12) 0%, transparent 70%);
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
  }

  .hero-title .highlight {
    color: var(--primary);
  }

  .hero-subtitle {
    font-size: .97rem;
    color: #4b5563;
    max-width: 400px;
    line-height: 1.7;
  }

  .btn-primary-cta {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 35px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    text-decoration: none;
  }

  .btn-primary-cta:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
  }

  .btn-outline-cta {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 9px 35px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    text-decoration: none;
  }

  .btn-outline-cta:hover {
    background: var(--primary);
    color: #fff;
  }

  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
  }

  .hero-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 700;
    color: #374151;
  }

  .hero-badge i {
    color: var(--primary);
    font-size: .9rem;
  }

  .hero-badge span.label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: .72rem;
  }

  .powered-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    font-size: .78rem;
    color: #555;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 20px;
    bottom: 30px;
  }

  .powered-card .pname {
    font-weight: 800;
    color: var(--primary);
    font-size: .82rem;
  }

  .hero-img-wrap {
    position: relative;
  }

  .hero-img-wrap img {
    border-radius: 20px;
    width: 100%;
    /* max-width: 520px; */
    object-fit: cover;
  }

  .brd-2 {
    border-left: 2px solid #fff;
  }

  .brd-3 {
    border-right: 2px solid #f4f7fc;
  }

  .brd-4 {
    padding-top: 30px;
    border: 1px solid var(--primary);
    border-radius: 10px;
  }

  .how-it-works-title {
    background: #f4f7fd !important;
    position: relative;
    top: 6px !important;
    max-width: fit-content;
    margin: 0 auto;
    padding: 0px 25px;
  }

  /* ── SECTION SHARED ── */
  section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 2.7rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
  }

  .why-choose-row {
    border: 2px solid #c8d4e7;
    padding-top: 30px;
    border-radius: 10px;
    padding-bottom: 15px;
  }

  .section-title-3 {
    font-size: 40px !important;
    font-weight: 600;
    position: relative;
  }

  .right-img img {
    width: 100%;
  }

  .section-title-2 {
    font-size: 40px !important;
    font-weight: 600;
    position: relative;
    top: 0px;
    background: #fff;
    max-width: fit-content;
    margin: 0 auto;
    padding: 0px 25px;
  }

  .section-title .highlight {
    color: var(--primary);
  }

  .section-title .blue {
    color: var(--blue-text);
  }

  .section-divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 12px auto 28px;
  }

  /* ── WHAT IS PMD ── */
  .what-section {
    background: #F4F7FC;
    padding: 35px 0px;
  }

  .what-section img {
    width: 100%;
  }

  .eye-glow {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #1a3a8f 0%, #0d2461 50%, #000 100%);
    box-shadow: 0 0 60px rgba(21, 101, 192, .4), 0 0 120px rgba(21, 101, 192, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .eye-glow::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, #000 40%, #1a1a1a 100%);
    box-shadow: 0 0 20px rgba(0, 0, 0, .8);
  }

  .eye-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(21, 101, 192, .3);
    border-radius: 50%;
    animation: pulse-ring 3s infinite;
  }

  @keyframes pulse-ring {

    0%,
    100% {
      transform: scale(1);
      opacity: .5;
    }

    50% {
      transform: scale(1.05);
      opacity: 1;
    }
  }

  .feature-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
  }

  .feature-badge .icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .feature-badge .icon-wrap i {
    color: var(--primary);
    font-size: 1rem;
  }

  .feature-badge h6 {
    font-weight: 700;
    font-size: .88rem;
    margin-bottom: 2px;
    color: var(--primary);
  }

  .feature-badge p {
    font-size: .78rem;
    color: #6b7280;
    margin: 0;
  }

  .pmd-desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
  }

  .info-note {
    background: #e8f4fd;
    border-left: 4px solid var(--blue-text);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 15px;
    color: var(--blue-text);
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* ── WHY PARENTS ── */
  .why-section {
    background: #fff;
  }

  .why-card {
    text-align: center;
    padding: 28px 15px;
    border-radius: 16px;

    transition: all .3s;
    height: 100%;
  }

  .why-card:hover {
    box-shadow: 0 8px 30px rgba(13, 36, 97, .1);
    transform: translateY(-4px);
    border-color: var(--primary);
  }

  .why-card .icon-big {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f0fe, #c7d7fc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
  }

  .why-card .icon-big i {
    font-size: 2rem;
    color: var(--primary);
  }

  .why-card h6 {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 8px;
  }

  .why-card p {
    font-size: 16px;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    background: var(--light-bg);
  }

  .step-card {
    text-align: center;
    padding: 30px 20px;
    /* background: #fff; */
    border-radius: 16px;
    /* box-shadow: 0 4px 20px rgba(0,0,0,.06); */
    position: relative;
    height: 100%;
  }

  .step-conuter {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    position: relative;
    max-width: 150px;
    margin: 0 auto 25px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto 14px; */
    position: absolute;
    left: -50px;
  }

  .step-icon {
    width: 75px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step-icon img {
    width: 100%;
  }

  .step-icon i {
    color: var(--primary);
    font-size: 75px;
  }

  .step-card h5 {
    font-weight: 500;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
  }

  .step-card p {
    font-size: .8rem;
    color: #6b7280;
    margin: 0;
  }

  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.0rem;
  }

  /* ── WHAT YOU RECEIVE ── */
  .receive-section {
    background: linear-gradient(135deg, #eef3fc 0%, #fafdff 50%, #ffffff 100%);
    position: relative;
  }

  .receive-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
  }

  .receive-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 36, 97, 0.05);
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(13, 36, 97, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .receive-list li:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 8px 25px rgba(13, 36, 97, 0.07);
    border-color: rgba(245, 166, 35, 0.4);
  }

  .receive-list li i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f0fe, #c7d7fc);
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(13, 36, 97, 0.05);
    transition: all 0.3s ease;
  }

  .receive-list li:hover i {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    transform: scale(1.05);
  }

  .report-card {
    background: var(--primary);
    border-radius: 16px;
    padding: 20px 16px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .report-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
  }

  .report-card h5 {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  .report-card p {
    font-size: .75rem;
    opacity: .8;
    margin: 0;
  }

  .report-card .eye-mini {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #1a3a8f, #000);
    margin: 12px auto;
    box-shadow: 0 0 30px rgba(21, 101, 192, .5);
  }

  .report-card .tag {
    background: var(--accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 4px 14px;
    display: inline-block;
    margin-top: 8px;
  }

  .mini-chart-bar {
    height: 10px;
    border-radius: 5px;
    margin-bottom: 6px;
  }

  .chart-label {
    font-size: .7rem;
    color: #374151;
    margin-bottom: 2px;
    font-weight: 600;
  }

  .chart-mini-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  }

  .chart-mini-card h6 {
    font-size: .8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
  }

  .btn-download {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 11px 24px !important;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-download:hover {
    background: var(--primary);
    color: #fff;
  }

  /* ── PROGRAMS ── */
  .programs-section {
    background: var(--light-bg);
  }

  .programs-section .section-title-3,
  .testimonial-section .section-title-3,
  .safety-section .section-title-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .programs-section .section-title-3::before,
  .programs-section .section-title-3::after,
  .testimonial-section .section-title-3::before,
  .testimonial-section .section-title-3::after,
  .safety-section .section-title-3::before,
  .safety-section .section-title-3::after {
    content: '';
    width: 100px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
  }

  @media (max-width: 768px) {

    .programs-section .section-title-3::before,
    .programs-section .section-title-3::after,
    .testimonial-section .section-title-3::before,
    .testimonial-section .section-title-3::after,
    .safety-section .section-title-3::before,
    .safety-section .section-title-3::after {
      width: 50px;
    }
  }

  @media (max-width: 480px) {

    .programs-section .section-title-3::before,
    .programs-section .section-title-3::after,
    .testimonial-section .section-title-3::before,
    .testimonial-section .section-title-3::after,
    .safety-section .section-title-3::before,
    .safety-section .section-title-3::after {
      display: none;
    }
  }

  .program-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: transform .3s;
    height: 100%;
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    padding: 0px 10px 0px 0px;
  }

  .thumbnail-card {
    height: 100%;
  }

  .program-card-1 {
    border-top: 3px #e65100 solid;
  }

  .program-card-2 {
    border-top: 3px #2e7d32 solid;
  }

  .program-card-3 {
    border-top: 3px #0d47a1 solid;
  }

  .program-card-4 {
    border-top: 3px #6a1b9a solid;
  }

  .program-card:hover {
    transform: translateY(-4px);
  }

  .program-card img {
    width: auto;
    height: 100%;
    object-fit: cover;
    max-width: 130px;
  }

  .program-card .body {
    padding: 16px;
    background: #fff;
  }

  .program-card .age-tag {
    font-size: .75rem;
    font-weight: 800;
    border-radius: 50px;
    padding: 4px 14px;
    display: inline-block;
    margin-bottom: 8px;
  }

  .age-0 {
    background: #fff3e0;
    color: #e65100;
  }

  .age-6 {
    background: #e8f5e9;
    color: #2e7d32;
  }

  .age-11 {
    background: #e3f2fd;
    color: #0d47a1;
  }

  .age-17 {
    background: #f3e5f5;
    color: #6a1b9a;
  }

  .program-card h6 {
    font-weight: 700;
    font-size: .9rem;
    color: var(--primary);
    margin-bottom: 6px;
  }

  .program-card p {
    font-size: .78rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
  }

  /* ── ALLIANCE ── */
  .alliance-wrapper {
    background-color: var(--light-bg);
  }

  .alliance-section {
    background: #011e4a;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 20px;
  }

  .alliance-section h2 span {
    color: var(--accent);
  }

  .alliance-section p,
  .cta-section p {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    line-height: 1.5;
  }

  .stat-item {
    text-align: center;
  }

  .stat-item img {
    max-width: 50px;
    margin: 0px auto 10px;
  }

  .stat-item .number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent);
  }

  .stat-item .label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 600;
  }

  .btn-alliance {
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 11px 24px !important;
    font-weight: 700;
    font-size: 16px;
    background: transparent;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .btn-alliance:hover {
    background: #fff;
    color: var(--primary);
  }

  .network-dots {
    position: relative;
    width: 100%;
    height: 240px;
  }

  .dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .3);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 700;
  }

  .dot.center {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-color: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* ── TESTIMONIALS ── */
  .testimonial-section {
    background: #fff;
  }

  .testi-card {
    background: #f8faff;
    border-radius: 16px;
    padding: 40px 24px;
    border: 1px solid #e5e7eb;
    height: 100%;
    position: relative;
  }

  .testi-card::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--primary);
    opacity: .1;
    position: absolute;
    top: 0;
    left: 16px;
    line-height: 1;
    font-family: Georgia, serif;
  }

  .testi-card p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .testi-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testi-card .avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f0fe, #c7d7fc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    font-size: .9rem;
    flex-shrink: 0;
  }

  .testi-card .name {
    font-weight: 700;
    font-size: .88rem;
    color: var(--primary);
  }

  .testi-card .role {
    font-size: .76rem;
    color: #9ca3af;
  }

  /* ── CTA BANNER ── */
  .cta-section {
    background: #011e4a;
    padding: 30px 20px 0px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
  }

  .cta-section h2 {
    color: #fff;
    font-weight: 500;
    font-size: 37px;
    line-height: 1.3;
  }

  .cta-section img {
    width: 100%;
  }

  .cta-section h2 span {
    color: var(--accent);
  }

  .btn-cta-book {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    width: 100%;
    justify-content: center;
    text-decoration: none;
  }

  .btn-cta-book:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
  }

  .btn-cta-wa {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    width: 100%;
    justify-content: center;
    text-decoration: none;
    margin-top: 12px;
  }

  .btn-cta-wa:hover {
    background: #1ebe5b;
    color: #fff;
  }

  /* ── FOOTER ── */
  footer {
    background: #011e4a;
    color: rgba(255, 255, 255, .8);
    padding: 50px 0 24px;
  }

  .footer-brand {
    max-width: 200px;
    margin-bottom: 20px;
  }

  .footer-brand img {
    width: 100%;
  }

  footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
  }

  footer a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    transition: color .2s;
  }

  footer a:hover {
    color: var(--accent);
  }

  footer .divider {
    border-color: rgba(255, 255, 255, .15);
    margin: 28px 0 16px;
  }

  footer .copy {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
  }

  .social-icons a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    margin-right: 6px;
    transition: background .2s;
  }

  .social-icons a:hover {
    background: var(--accent);
  }

  .footer-brand .brand-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
  }

  .footer-brand .brand-sub {
    font-size: .65rem;
    color: var(--accent);
    font-weight: 600;
  }

  /* ── DECORATIVE FLOATING ICONS ── */
  .floating-icon {
    position: absolute;
    opacity: .07;
    font-size: 4rem;
    color: var(--primary);
    pointer-events: none;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .navbar-brand {
      max-width: 170px;
    }

    .hero {
      padding: 40px 0 30px 10px;
      background-image: unset;
    }

    .btn-primary-cta,
    .btn-outline-cta {
      padding: 10px 7px;
      font-size: 14px;
    }

    .hero-title {
      font-size: 1.8rem;
    }

    .hero-badges {
      gap: 12px;
    }

    .hero-badge {
      width: 48%;
    }

    .section-title,
    .section-title-2,
    .section-title-3 {
      font-size: 2.2rem !important;
    }

    .why-card h6 {
      font-size: 18px;
    }

    .cta-section {
      padding: 30px 20px 30px;
    }

    .powered-card {
      position: static;
      margin-top: 16px;
    }

    .step-arrow {
      transform: rotate(90deg);
      padding: 10px 0;
    }
  }

  .wr-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 36, 97, 0.06);
    background: #fff;
    transition: all 0.3s ease;
  }

  .wr-img img {
    width: 100%;
    display: block;
  }

  .wr-img:hover {
    box-shadow: 0 15px 40px rgba(13, 36, 97, 0.10);
    transform: translateY(-2px);
  }

  /* ── TRUST & SAFETY ── */
  .safety-section {
    background: #ffffff;
    padding: 80px 0;
  }

  .safety-card {
    display: flex;
    gap: 16px;
    background: #f8faff;
    border: 1px solid #eef2f9;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
  }

  .safety-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(13, 36, 97, 0.06);
    border-color: rgba(245, 166, 35, 0.3);
  }

  .safety-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f0fe, #c7d7fc);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .safety-card:hover .icon-box {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
  }

  .safety-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 6px;
  }

  .safety-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
  }

  .safety-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(13, 36, 97, 0.05);
    transition: all 0.3s ease;
    background: #fff;
  }

  .safety-img-wrap img {
    width: 100%;
    display: block;
  }

  .safety-img-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(13, 36, 97, 0.08);
  }

  /* ── CONTACT PAGE ── */
  .contact-hero {
    background: #f4f7fd;
    padding: 60px 0;
  }
  .contact-hero .subtitle {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
  }
  .contact-info-list {
    margin-top: 30px;
  }
  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }
  .contact-info-item .icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  .contact-info-item h6 {
    margin: 0;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
  }
  .contact-info-item p {
    margin: 0;
    color: #4b5563;
    font-size: 0.9rem;
  }
  .contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }
  .contact-form-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .contact-form-card h4 i {
    color: var(--accent);
  }
  .input-icon-wrap {
    position: relative;
    margin-bottom: 20px;
  }
  .input-icon-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .input-icon-wrap.align-top i {
    top: 18px;
    transform: none;
  }
  .input-icon-wrap:focus-within i {
    color: var(--accent);
  }
  .contact-form-card .form-control, .contact-form-card .form-select {
    border-radius: 12px;
    padding: 14px 18px 14px 45px;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  .contact-form-card .form-control:focus, .contact-form-card .form-select:focus {
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.15);
    border-color: var(--accent);
  }
  .btn-send {
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    width: 100%;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  .btn-send:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
  }
  .btn-send:active {
    transform: translateY(0);
  }
  .btn-send.success {
    background: var(--success);
    pointer-events: none;
  }
  .btn-send .fa-check {
    display: none;
  }
  .btn-send.success .fa-check {
    display: inline-block;
    animation: scaleIn 0.3s ease forwards;
  }
  .btn-send.success .btn-text, .btn-send.success .fa-paper-plane {
    display: none;
  }
  @keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
  }
  .connect-section {
    padding: 60px 0;
    background: #fff;
  }
  .connect-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  .connect-title-wrapper .section-title-2 {
    margin: 0;
  }
  .connect-title-wrapper::before, .connect-title-wrapper::after {
    content: "";
    width: 100px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
  }
  @media (max-width: 768px) {
    .connect-title-wrapper::before, .connect-title-wrapper::after {
      width: 50px;
    }
    .connect-title-wrapper h2{
      text-align: center;
    }
  }
  @media (max-width: 480px) {
    .connect-title-wrapper::before, .connect-title-wrapper::after {
      display: none;
    }
  }
  .connect-card {
    border: 1px solid #eef2f9;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
    background: #fff;
  }
  .connect-card:hover {
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.1);
    transform: translateY(-3px);
    border-color: rgba(245, 166, 35, 0.5);
  }
  .connect-card .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .connect-card h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
  }
  .connect-card p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 15px;
    flex-grow: 1;
  }
  .connect-card .btn-outline {
    border: 1.5px solid var(--accent);
    color: var(--accent);
    background: transparent;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
  }
  .connect-card .btn-outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
  }
  
  .icon-call { background: rgba(245, 166, 35, 0.15); color: var(--accent); }
  .icon-whatsapp { background: #e8fbed; color: #25d366; }
  .icon-email { background: rgba(245, 166, 35, 0.15); color: var(--accent); }
  .icon-visit { background: rgba(245, 166, 35, 0.15); color: var(--accent); }
  .icon-book { background: rgba(245, 166, 35, 0.15); color: var(--accent); }

  .split-section {
    padding: 60px 0;
    background: #fff;
  }
  .map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
  }
  .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  .faq-accordion .accordion-item {
    border: 1px solid #eef2f9;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .faq-accordion .accordion-button {
    font-weight: 500;
    color: var(--primary);
    background: #fff;
    box-shadow: none;
    padding: 15px 20px;
  }
  .faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(245, 166, 35, 0.05);
    color: var(--accent);
  }
  .faq-accordion .accordion-button::after {
    background-image: none !important;
    font-family: "Font Awesome 6 Free";
    content: "\2b";
    font-weight: 900;
    background-color: rgba(245, 166, 35, 0.15);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--accent);
    transition: all 0.3s;
  }
  .faq-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background-color: var(--accent);
    color: #fff;
  }
  
  .still-questions-banner {
    background: var(--primary);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
  }
  .still-questions-banner img {
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
  }
  .still-questions-content {
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .still-questions-content h3 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .still-questions-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
  }
  .btn-warning-cta {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
  }
  .btn-warning-cta:hover {
    background: var(--accent-dark);
    color: #fff;
  }
  .btn-outline-light-cta {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
  }
  .btn-outline-light-cta:hover {
    background: var(--accent);
    color: #fff;
  }

  /* ── FLOATING WHATSAPP (Desktop) ── */
  .floating-whatsapp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .floating-whatsapp:hover {
    background-color: #1ebe5d;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  }

  /* ── MOBILE FLOATING ACTIONS ── */
  .mobile-floating-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  .mobile-floating-actions a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    text-decoration: none;
  }
  .btn-float-call {
    background-color: var(--primary);
  }
  .btn-float-wa {
    background-color: #25d366;
  }
  
  /* Add padding to body so the bar doesn't cover content on mobile */
  @media (max-width: 767.98px) {
    body {
      padding-bottom: 50px;
    }
  }

/* ═══════════════════════════════════════════
   FAQ PAGE REDESIGN STYLES (VERSION 2.0)
   ════════════════════════════════════════════ */

/* SECTION 1: HERO */
.faq-hero-wrapper {
  background-color: #eef5ff; /* Light Blue Background */
  padding: 80px 0 40px;
  min-height: 350px;
  position: relative;
}
.faq-h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary); /* Dark Navy */
  margin-bottom: 16px;
}
.faq-sub {
  font-size: 1.15rem;
  color: #4b5563; /* Dark Grey */
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.6;
}
.faq-trust-line {
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
}
.faq-hero-illustration img {
  max-height: 150px;
  object-fit: contain;
}

/* SECTION 2: TRUST STRIP */
.faq-trust-section {
  padding: 0;
  margin-top: -35px; /* Overlap with hero slightly */
  position: relative;
  z-index: 10;
  margin-bottom: 30px; /* Reduced Section Gap */
}
.faq-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04); /* Very Soft Shadow */
  min-height: 80px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
}
.trust-icon i {
  color: var(--success);
  font-size: 1.2rem;
}
.trust-item span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

/* SECTION 3: SEARCH BOX */
.faq-search-section {
  padding: 0;
  margin-bottom: 40px;
}
.faq-search-container {
  width: 70%;
  max-width: 800px;
}
.faq-search-box {
  position: relative;
  width: 100%;
}
.faq-search-input {
  width: 100%;
  padding: 18px 25px 18px 55px;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  font-size: 1.1rem;
  color: #374151;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.faq-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(13, 36, 97, 0.08);
}
.search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
}
.faq-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.suggestion-pill {
  background: #f4f7fd;
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.suggestion-pill:hover {
  background: var(--primary);
  color: #fff;
}

/* SECTION 4 & 5: CATEGORIES & ACCORDION */
.faq-content-section {
  padding: 0;
  margin-bottom: 40px;
}
.faq-cat-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #f9fafb;
  color: #4b5563;
  font-weight: 600;
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}
.faq-cat-nav .nav-link.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 15px rgba(13, 36, 97, 0.15);
}
.cat-icon {
  margin-right: 12px;
  font-size: 1.2rem;
}
.cat-badge {
  background: rgba(0,0,0,0.08);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.faq-cat-nav .nav-link.active .cat-badge {
  background: rgba(255,255,255,0.2);
}

.faq-accordion .accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 16px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.faq-accordion .accordion-button {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  background-color: #fff;
  border-radius: 16px !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #fdfbf7;
  color: var(--accent-dark);
  box-shadow: none;
  border-bottom: 1px solid #f3f4f6;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-body {
  padding: 24px;
  background-color: #fff;
}
.faq-answer p {
  color: #4b5563; /* Dark Grey body text */
  margin-bottom: 10px;
  line-height: 1.6;
}
.faq-direct {
  color: var(--primary);
}
.faq-cta a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

/* SECTION 6: EXPERT TIP */
.expert-tip-section {
  padding: 0;
  margin-bottom: 40px;
}
.expert-tip-box {
  background: #fff9e6; /* Light Yellow */
  border-radius: 16px;
  border-left: 6px solid var(--accent);
  padding: 30px;
  height: 150px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.expert-tip-content h4 {
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 12px;
}
.expert-tip-content p {
  font-size: 1.1rem;
  color: #374151;
  margin: 0;
  font-weight: 500;
}

/* SECTION 7: HELPFUL RESOURCES */
.helpful-resources-section {
  padding: 0;
  margin-bottom: 40px;
}
.resource-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  height: 220px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #f3f4f6;
}
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: #e5e7eb;
}
.resource-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.resource-card h5 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.resource-card p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.resource-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

/* SECTION 8: STILL NEED HELP */
.still-need-help-section {
  padding: 0;
  margin-bottom: 40px;
}
.help-banner {
  background: var(--primary); /* Dark Blue Background */
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
}
.help-banner-img {
  height: 100%;
  position: relative;
}
.help-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.help-banner-text-col {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.help-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.help-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}
.btn-book-action {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px; /* Button Radius */
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-book-action:hover {
  background: var(--accent-dark);
  color: #fff;
}
.btn-wa-action {
  background: #25d366; /* WhatsApp Green */
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px; /* Button Radius */
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-wa-action:hover {
  background: #128c7e;
  color: #fff;
}

@media (max-width: 991px) {
  .faq-search-container {
    width: 90%;
  }
  .help-banner {
    height: auto;
  }
  .help-banner-text-col {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .faq-h1 {
    font-size: 2.2rem;
  }
  .faq-search-container {
    width: 100%;
  }
  .expert-tip-box {
    height: auto;
  }
  .resource-card {
    height: auto;
  }
}

/* Hide footer meta temporarily */
.faq-footer-meta {
  display: none !important;
}

.step-card {
      background: #fff;
      padding: 40px 30px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
      border: 1px solid rgba(0,0,0,0.05);
      margin-top: 30px;
    }
    .step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      border-color: var(--accent);
    }
    .step-number {
      width: 60px;
      height: 60px;
      background: var(--accent);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 800;
      position: absolute;
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 5px 15px rgba(255, 126, 103, 0.4);
    }
    .step-icon {
      font-size: 3.5rem;
      color: var(--primary);
      margin: 20px 0;
    }
    .process-connector {
      display: none;
    }
    @media (min-width: 992px) {
      .process-connector {
        display: block;
        position: absolute;
        top: 35%;
        right: -50%;
        width: 100%;
        height: 2px;
        background: border-box;
        border-top: 2px dashed #ccc;
        z-index: 0;
      }
      .step-card.stagger-up {
        margin-top: 0;
      }
      .step-card.stagger-down {
        margin-top: 60px;
      }
    }


/* ═══════════════════════════════════════════
   HOW IT WORKS REDESIGN STYLES (VERSION 3.0)
   ════════════════════════════════════════════ */

/* Sticky Book Assessment Button */
.sticky-book-btn {
  position: fixed;
  bottom: 20px;
  right: 80px; /* To not overlap with whatsapp */
  background: var(--primary);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}
.sticky-book-btn:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

@media (max-width: 767px) {
  .sticky-book-btn {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    justify-content: center;
    padding: 15px;
    z-index: 1050;
    font-size: 1.1rem;
  }
  .mobile-floating-actions {
    bottom: 54px; /* Push floating actions above the sticky button */
  }
}

/* Timeline Vertical */
.timeline-vertical {
  position: relative;
  padding-left: 30px;
}
.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  opacity: 0.2;
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-icon {
  position: absolute;
  left: -30px;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 0 0 4px #f4f8fe;
}
.timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.timeline-content h5 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 5px;
}

/* Trust Cards (Why Choose Us) */
.trust-card-v3 {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(13, 36, 97, 0.05);
}
.trust-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-color: var(--primary);
}
.trust-card-v3 .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.trust-card-v3 h5 {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Updated 4-Step Process Cards */
.step-card-v3 {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
  text-align: left;
}
.step-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.step-card-v3 .step-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.step-card-v3 h4 {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}
.step-card-v3 .includes-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}
.step-card-v3 .includes-list li {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-card-v3 .includes-list li i {
  color: var(--success);
}

/* Video Header Placeholder */
.video-placeholder {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 4px solid var(--accent);
}
.video-placeholder img {
  width: 100%;
  display: block;
  opacity: 0.8;
  background: #000;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 0 15px rgba(13, 36, 97, 0.3);
  transition: all 0.3s;
  cursor: pointer;
}
.video-placeholder:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
