 :root{
    --navy:#152a52;
    --navy-deep:#0e1d3d;
    --green:#5fae28;
    --green-bright:#7ed321;
    --cream:#f6f7f4;
    --ink:#1a1a1a;
    --line:#dfe3e0;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Segoe UI', system-ui, -apple-system, sans-serif;
    color:var(--ink);
    background:var(--cream);
    line-height:1.5;
  }
  h1,h2,h3,h4{
    font-family:'Arial Black','Helvetica Neue', sans-serif;
    letter-spacing:0.5px;
    color:var(--navy);
  }
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}

  /* HEADER */
  header{
    background:var(--navy);
    color:#fff;
    position:sticky;
    top:0;
    z-index:100;
    border-bottom:4px solid var(--green);
  }
  .nav-wrap{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 24px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
  }
  .brand-text .top{
    font-size:1.3rem;
    font-weight:900;
    letter-spacing:1px;
  }
  .brand-text .top .green{color:var(--green-bright);}
  .brand-text .sub{
    font-size:0.6rem;
    letter-spacing:3px;
    color:#cdd6e8;
    font-weight:600;
  }
  .logo-img{
    width:54px;
    height:54px;
    object-fit:cover;
    border-radius:50%;
    border:2px solid var(--green-bright);
    background:#fff;
  }
  nav ul{
    display:flex;
    gap:28px;
    list-style:none;
    font-weight:600;
    font-size:0.92rem;
  }
  nav a{
    transition:color 0.2s;
    padding:6px 0;
    border-bottom:2px solid transparent;
  }
  nav a:hover, nav a:focus-visible{
    color:var(--green-bright);
    border-bottom-color:var(--green-bright);
  }
  .nav-cta{
    display:none;
  }
  .menu-toggle{display:none;}

  /* HERO */
  .hero{
    position:relative;
    background:var(--navy-deep);
    overflow:hidden;
  }
  .hero-inner{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    align-items:center;
    gap:40px;
    padding:48px 24px 0;
  }
  .hero-copy{
    color:#fff;
    padding-bottom:48px;
  }
  .eyebrow{
    display:inline-block;
    background:var(--green);
    color:#fff;
    font-weight:800;
    font-size:0.78rem;
    letter-spacing:2px;
    padding:6px 14px;
    border-radius:3px;
    margin-bottom:18px;
    text-transform:uppercase;
  }
  .hero-copy h1{
    font-size:clamp(2.2rem, 5vw, 3.4rem);
    color:#fff;
    line-height:1.08;
    margin-bottom:18px;
  }
  .hero-copy h1 .accent{
    color:var(--green-bright);
    display:block;
  }
  .hero-copy p{
    color:#c6cde0;
    font-size:1.05rem;
    max-width:480px;
    margin-bottom:28px;
  }
  .btn-row{display:flex;gap:14px;flex-wrap:wrap;}
  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 28px;
    border-radius:4px;
    font-weight:800;
    font-size:0.95rem;
    letter-spacing:0.5px;
    transition:transform 0.15s, box-shadow 0.15s;
  }
  .btn-primary{
    background:var(--green-bright);
    color:var(--navy-deep);
  }
  .btn-secondary{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,0.35);
  }
  .btn:hover{transform:translateY(-2px);box-shadow:0 6px 18px rgba(0,0,0,0.25);}

  .hero-photo{
    position:relative;
  }
  .hero-photo img{
    border-radius:8px;
    width:100%;
    box-shadow:0 20px 50px rgba(0,0,0,0.45);
  }
  .hero-banner{
    background:linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
    padding:18px 24px;
    text-align:center;
  }
  .hero-banner h2{
    color:#fff;
    font-size:clamp(1.1rem, 3vw, 1.8rem);
    margin:0;
    text-shadow:0 2px 6px rgba(0,0,0,0.15);
  }

  /* SECTION GENERAL */
  section{padding:64px 24px;}
  .container{max-width:1200px;margin:0 auto;}
  .section-head{
    text-align:center;
    margin-bottom:44px;
  }
  .section-head .tag{
    color:var(--green);
    font-weight:800;
    font-size:0.8rem;
    letter-spacing:3px;
    text-transform:uppercase;
  }
  .section-head h2{
    font-size:clamp(1.7rem, 4vw, 2.4rem);
    margin-top:8px;
  }
  .section-head h2 .green-text{color:var(--green);}

  /* WHY CHOOSE / FEATURE GRID */
  .why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
  }
  .feature-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:8px;
    padding:28px 22px;
    text-align:left;
    transition:transform 0.2s, border-color 0.2s;
  }
  .feature-card:hover{
    transform:translateY(-4px);
    border-color:var(--green);
    box-shadow:0 10px 24px rgba(21,42,82,0.08);
  }
  .feature-icon{
    width:54px;height:54px;
    border-radius:50%;
    background:var(--navy);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:16px;
    color:var(--green-bright);
    font-size:1.5rem;
  }
  .feature-card h3{font-size:1.05rem;margin-bottom:8px;}
  .feature-card p{color:#555;font-size:0.93rem;}

  /* DUAL CONTROL CALLOUT */
  .callout{
    background:#fff;
    border:2px solid var(--green);
    border-radius:8px;
    padding:24px 28px;
    display:flex;
    align-items:center;
    gap:20px;
    max-width:1200px;
    margin:0 auto 0;
  }
  .callout .check{
    background:var(--green);
    color:#fff;
    border-radius:50%;
    width:44px;height:44px;
    display:flex;align-items:center;justify-content:center;
    font-size:1.4rem;
    flex-shrink:0;
  }
  .callout h4{margin-bottom:4px;font-size:1.05rem;}
  .callout h4 .green-text{color:var(--green);}
  .callout p{color:#555;font-size:0.93rem;}

  /* PRICING */
  .pricing-bg {background:var(--navy-deep);}
  .pricing-bg .section-head .tag{color:var(--green-bright);}
  .pricing-bg .section-head h2{color:#fff;}
  .pricing-bg .section-head h2 .green-text{color:var(--green-bright);}
  .pricing-bg .section-head p.lead{color:#aeb8d0;max-width:560px;margin:14px auto 0;}

  .pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .price-card{
    background:#fff;
    border-radius:10px;
    padding:0;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:transform 0.2s;
  }
  .price-card:hover{transform:translateY(-6px);}
  .price-card.featured{
    border:3px solid var(--green-bright);
    transform:scale(1.03);
  }
  .price-head{
    background:var(--navy);
    color:#fff;
    text-align:center;
    padding:14px;
    font-weight:800;
    letter-spacing:1px;
    font-size:0.9rem;
    text-transform:uppercase;
  }
  .price-card.featured .price-head{background:var(--green);}
  .price-body{
    padding:32px 26px;
    text-align:center;
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .price-amount{
    font-size:3rem;
    font-weight:900;
    color:var(--navy);
    line-height:1;
  }
  .price-amount span{font-size:1.3rem;vertical-align:top;}
  .price-duration{
    color:var(--green);
    font-weight:800;
    font-size:0.9rem;
    letter-spacing:1px;
    margin:6px 0 18px;
    text-transform:uppercase;
  }
  .price-body p.desc{
    color:#555;
    font-size:0.95rem;
    margin-bottom:24px;
  }
  .price-body .btn{margin-top:auto;}

  /* HOW TO BOOK */
  .booking-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
    margin-top:8px;
  }
  .booking-step{
    text-align:center;
    position:relative;
  }
  .step-num{
    width:46px;height:46px;
    border-radius:50%;
    background:var(--green);
    color:#fff;
    font-weight:900;
    font-size:1.3rem;
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 14px;
  }
  .step-icon{
    width:70px;height:70px;
    border-radius:50%;
    background:var(--navy);
    color:#fff;
    display:flex;align-items:center;justify-content:center;
    font-size:1.8rem;
    margin:0 auto 16px;
  }
  .booking-step h3{font-size:1.05rem;color:var(--green);margin-bottom:6px;}
  .booking-step .phone{font-weight:900;font-size:1.2rem;color:var(--navy);}
  .booking-step p{color:#555;font-size:0.93rem;}

  /* WHY CHOOSE LIST */

  .why-us{
    background:var(--navy);
    color:#fff;
    border-radius:10px;
    padding:36px;
  }
  .why-us h3{color:#fff;font-size:1.3rem;margin-bottom:18px;}
  .why-us h3 .green-text{color:var(--green-bright);}
  .why-us ul{list-style:none;display:grid;gap:14px;}
  .why-us li{display:flex;align-items:center;gap:12px;font-weight:600;}
  .why-us li .tick{
    width:24px;height:24px;border-radius:50%;
    background:var(--green-bright);color:var(--navy-deep);
    display:flex;align-items:center;justify-content:center;
    font-size:0.8rem;flex-shrink:0;font-weight:900;
  }

  .two-col{
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:32px;
    align-items:start;
  }
  .book-steps-wrap{
    background:#fff;
    border:1px solid var(--line);
    border-radius:10px;
    padding:36px;
  }

  /* FOOTER / CTA BAR */
  .cta-bar{
    background:var(--navy);
    color:#fff;
    padding:0;
  }
  .cta-inner{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:24px;
    padding:28px 24px;
  }
  .cta-call{
    display:flex;
    align-items:center;
    gap:16px;
  }
  .cta-call .phone-icon{
    width:54px;height:54px;border-radius:50%;
    background:var(--green-bright);
    color:var(--navy-deep);
    display:flex;align-items:center;justify-content:center;
    font-size:1.6rem;
    flex-shrink:0;
  }
  .cta-call .label{
    color:var(--green-bright);
    font-weight:700;
    font-style:italic;
    font-size:0.95rem;
  }
  .cta-call .number{
    font-size:1.7rem;
    font-weight:900;
    letter-spacing:1px;
  }
  .cta-badges{
    display:flex;
    gap:32px;
    flex-wrap:wrap;
  }
  .cta-badge{
    text-align:center;
    font-size:0.78rem;
    font-weight:700;
    color:#cdd6e8;
    max-width:90px;
  }
  .cta-badge .icon{
    width:46px;height:46px;border-radius:50%;
    border:2px solid rgba(255,255,255,0.25);
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 8px;
    font-size:1.2rem;
    color:#fff;
  }

  footer{
    background:var(--navy-deep);
    color:#8c9ab8;
    text-align:center;
    padding:24px;
    font-size:0.85rem;
  }

  /* WHATSAPP FAB */
  .whatsapp-fab{
    position:fixed;
    bottom:24px;
    right:24px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 20px rgba(0,0,0,0.3);
    z-index:200;
    transition:transform 0.2s, box-shadow 0.2s;
    animation:fab-pulse 2.4s infinite;
  }
  .whatsapp-fab:hover{
    transform:scale(1.08);
    box-shadow:0 8px 26px rgba(0,0,0,0.4);
  }
  @keyframes fab-pulse{
    0%,100%{box-shadow:0 6px 20px rgba(37,211,102,0.4);}
    50%{box-shadow:0 6px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.15);}
  }

  /* RESPONSIVE */
  @media (max-width:900px){
    .hero-inner{grid-template-columns:1fr;}
    .hero-photo{order:-1;}
    .why-grid{grid-template-columns:repeat(2,1fr);}
    .pricing-grid{grid-template-columns:1fr;}
    .price-card.featured{transform:none;}
    .booking-grid{grid-template-columns:1fr;gap:40px;}
    .two-col{grid-template-columns:1fr;}
    nav ul{display:none;}
    .menu-toggle{display:block;background:none;border:none;color:#fff;font-size:1.6rem;cursor:pointer;}
    nav.open ul{
      display:flex;
      flex-direction:column;
      position:absolute;
      top:74px;left:0;right:0;
      background:var(--navy);
      padding:20px 24px;
      gap:16px;
      border-bottom:3px solid var(--green);
    }
  }
  @media (max-width:600px){
    .why-grid{grid-template-columns:1fr;}
    .cta-inner{flex-direction:column;align-items:flex-start;}
    .cta-badges{gap:20px;}
  }