:root{
    --navy:#131F3A;
    --navy-deep:#0E1830;
    --yellow:#F0B429;
    --cream:#F7F5F0;
    --grey:#6B7280;
    --line:#E7E4DC;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  body{font-family:'Poppins',Arial,sans-serif;}
  .page{
    width:1240px;
    max-width:100%;
    margin:0 auto;
    position:relative;
    background:#fff;
  }

  /* ---------- NAV ---------- */
  .nav{
    height:104px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 64px;
    border-bottom:1px solid var(--line);
    background:#fff;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:16px;
  }
  .brand img{
    height:52px;
    width:auto;
    object-fit:contain;
  }
  .brand-text .name{
    font-size:22px;
    font-weight:700;
    color:var(--navy);
    letter-spacing:0.2px;
    line-height:1.1;
  }
  .brand-text .tag{
    font-size:11.5px;
    font-weight:600;
    letter-spacing:2px;
    color:var(--grey);
    margin-top:3px;
  }
  .nav-links{
    display:flex;
    align-items:center;
    gap:54px;
  }
  .nav-links a{
    font-size:16.5px;
    font-weight:600;
    color:var(--navy);
    text-decoration:none;
    position:relative;
    padding-bottom:6px;
    transition:color 0.2s ease;
  }
  .nav-links a:hover{
    color:#B8860B;
  }
  .nav-links a.active{
    color:var(--navy);
  }
  .nav-links a.active::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:-34px;
    height:3px;
    background:var(--yellow);
    border-radius:2px;
  }

  /* ---------- HERO ---------- */
  .hero{
    background:linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    padding:88px 64px 90px 64px;
    position:relative;
  }
  .pill{
    display:inline-block;
    background:rgba(240,180,41,0.14);
    border:1px solid rgba(240,180,41,0.4);
    color:var(--yellow);
    font-size:12px;
    font-weight:600;
    letter-spacing:1.5px;
    padding:8px 18px;
    border-radius:20px;
    margin-bottom:28px;
  }
  .hero-grid{
    display:flex;
    gap:60px;
    align-items:center;
  }
  .hero-copy{
    flex:1.1;
  }
  .hero h1{
    font-size:46px;
    line-height:1.2;
    color:#fff;
    font-weight:600;
    max-width:560px;
  }
  .hero h1 span{
    color:var(--yellow);
  }
  .hero p{
    color:#C7CCDA;
    font-size:16.5px;
    line-height:1.7;
    margin-top:24px;
    max-width:480px;
  }
  .hero-quote{
    margin-top:20px;
    font-style:italic;
    color:var(--yellow);
    font-size:15px;
  }
  .hero-actions{
    margin-top:38px;
    display:flex;
    gap:18px;
  }
  .btn-primary{
    background:var(--yellow);
    color:var(--navy-deep);
    font-weight:600;
    font-size:15.5px;
    padding:17px 34px;
    border-radius:30px;
    text-decoration:none;
    display:inline-block;
  }
  .btn-outline{
    border:1.5px solid rgba(255,255,255,0.5);
    color:#fff;
    font-weight:500;
    font-size:15.5px;
    padding:17px 34px;
    border-radius:30px;
    text-decoration:none;
    display:inline-block;
  }
  .hero-img-wrap{
    flex:1;
    position:relative;
  }
  .hero-img-card{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 30px 60px rgba(0,0,0,0.35);
    height:400px;
    position:relative;
  }
  .hero-img-card img{
    width:100%;height:100%;object-fit:cover;
    display:block;
    filter:saturate(0.85) brightness(1.05);
  }
  .hero-img-card::after{
    content:"";
    position:absolute;inset:0;
    background:linear-gradient(160deg, rgba(19,31,58,0.32) 0%, rgba(19,31,58,0.06) 45%, rgba(255,255,255,0.10) 100%);
    pointer-events:none;
  }
  .float-badge{
    position:absolute;
    left:-24px;
    bottom:-22px;
    background:#fff;
    border-radius:14px;
    padding:16px 22px;
    box-shadow:0 16px 30px rgba(0,0,0,0.18);
    display:flex;
    align-items:center;
    gap:12px;
  }
  .float-badge .dot{
    width:38px;height:38px;border-radius:50%;
    background:var(--yellow);
    display:flex;align-items:center;justify-content:center;
    font-size:18px;
  }
  .float-badge .txt b{
    display:block;font-size:13.5px;color:var(--navy);
  }
  .float-badge .txt span{
    font-size:11.5px;color:var(--grey);
  }

  /* ---------- INTRO STRIP ---------- */
  .intro-strip{
    background:var(--cream);
    padding:60px 120px;
    text-align:center;
  }
  .intro-strip p{
    font-size:17px;
    line-height:1.8;
    color:#3A3F4B;
  }
  .intro-strip b{color:var(--navy);}

  /* ---------- SECTION HEADERS ---------- */
  .section-head{
    text-align:center;
    max-width:640px;
    margin:0 auto 48px auto;
  }
  .kicker{
    display:inline-block;
    background:var(--navy);
    color:var(--yellow);
    font-size:11.5px;
    font-weight:700;
    letter-spacing:1.8px;
    padding:7px 16px;
    border-radius:16px;
    margin-bottom:18px;
  }
  .section-head h2{
    font-size:32px;
    color:var(--navy);
    font-weight:600;
    margin-bottom:12px;
  }
  .section-head p{
    color:var(--grey);
    font-size:15.5px;
    line-height:1.6;
  }

  /* ---------- WHY CHOOSE (light navy) ---------- */
  .why-section{
    background:#EBF0F8;
    padding:74px 64px;
  }
  .why-inner{
    max-width:1000px;
    margin:0 auto;
  }
  .why-inner .section-head{
    max-width:880px;
  }
  .why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    max-width:1000px;
    margin:0 auto;
  }
  .why-item{
    background:#fff;
    border-radius:14px;
    padding:26px 28px;
    display:flex;
    align-items:flex-start;
    gap:18px;
  }
  .why-item .ic{
    width:42px;height:42px;flex-shrink:0;
    background:var(--yellow);
    border-radius:10px;
    display:flex;align-items:center;justify-content:center;
    font-size:18px;
  }
  .why-item h4{
    font-size:16.5px;color:var(--navy);font-weight:600;margin-bottom:4px;
  }
  .why-item p{
    font-size:13.5px;color:var(--grey);line-height:1.5;
  }

  /* ---------- CTA BAND ---------- */
  .cta-band{
    background:var(--navy-deep);
    text-align:center;
    padding:64px;
  }
  .cta-band h3{
    color:#fff;font-size:26px;font-weight:600;margin-bottom:10px;
  }
  .cta-band p{
    color:#B9C0D1;font-size:14.5px;margin-bottom:28px;
  }

  /* ---------- FOOTER ---------- */
  .footer{
    background:var(--navy-deep);
    padding:52px 64px 30px 64px;
    border-top:1px solid rgba(255,255,255,0.08);
  }
  .footer-grid{
    display:flex;
    justify-content:space-between;
    gap:40px;
  }
  .footer-brand{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
  }
  .footer-brand img{height:38px;}
  .footer-brand .name{color:#fff;font-weight:700;font-size:17px;}
  .footer-tag{color:var(--yellow);font-size:13px;font-style:italic;margin-bottom:8px;}
  .footer-desc{color:#9BA3B5;font-size:12.5px;line-height:1.7;max-width:280px;}
  .footer-col h5{color:#fff;font-size:13.5px;font-weight:600;margin-bottom:16px;}
  .footer-col a{display:block;color:#9BA3B5;font-size:12.5px;margin-bottom:10px;text-decoration:none;}
  .footer-bottom{
    margin-top:36px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex;flex-direction:column;align-items:center;gap:6px;
    color:#6E7690;font-size:11.5px;
    text-align:center;
  }

  /* ---------- PAGE HEADER (banner) ---------- */
  .page-header{
    background:linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    padding:56px 64px 62px 64px;
  }
  .crumb{color:#8791AC;font-size:12px;letter-spacing:1px;margin-bottom:16px;}
  .crumb span{color:var(--yellow);}
  .page-header h1{color:#fff;font-size:38px;font-weight:600;margin-bottom:12px;}
  .page-header p{color:#C7CCDA;font-size:15.5px;max-width:520px;line-height:1.6;}

  /* ---------- SERVICES DETAIL BLOCKS ---------- */
  .service-block{
    display:flex;
    gap:56px;
    align-items:center;
    padding:60px 64px;
  }
  .service-block.reverse{
    flex-direction:row-reverse;
    background:#F5F7FB;
  }
  .service-block-img{
    flex:1;
    border-radius:16px;
    overflow:hidden;
    height:280px;
    box-shadow:0 20px 40px rgba(20,30,60,0.12);
    position:relative;
  }
  .service-block-img img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(0.88) brightness(1.04);}
  .service-block-img::after{
    content:"";
    position:absolute;inset:0;
    background:linear-gradient(160deg, rgba(19,31,58,0.16) 0%, rgba(255,255,255,0.10) 55%, rgba(255,255,255,0.18) 100%);
    pointer-events:none;
  }
  .service-block-copy{flex:1.1;}
  .num-tag{
    color:var(--yellow);
    font-weight:700;
    font-size:12.5px;
    letter-spacing:1.5px;
    margin-bottom:12px;
  }
  .service-block-copy h2{
    font-size:26px;color:var(--navy);font-weight:600;margin-bottom:10px;
  }
  .service-block-copy > p{
    color:var(--grey);font-size:14.5px;margin-bottom:18px;line-height:1.6;
  }
  .check-list{list-style:none;}
  .check-list li{
    font-size:13.5px;color:#3A3F4B;
    padding-left:26px;
    position:relative;
    margin-bottom:11px;
  }
  .check-list li::before{
    content:"✓";
    position:absolute;left:0;top:0;
    width:18px;height:18px;
    background:var(--navy);
    color:var(--yellow);
    font-size:11px;
    border-radius:5px;
    display:flex;align-items:center;justify-content:center;
  }

  /* ---------- CONTACT PAGE ---------- */
  .contact-header{
    background:linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    padding:80px 64px 88px 64px;
    text-align:center;
  }
  .contact-header .crumb{text-align:left;max-width:1112px;margin:0 auto 24px auto;}
  .contact-header h1{color:#fff;font-size:44px;font-weight:600;margin-bottom:16px;}
  .contact-header p{color:#C7CCDA;font-size:17px;max-width:560px;margin:0 auto;line-height:1.7;}

  .contact-wrap{
    padding:70px 64px;
    position:relative;
  }
  .contact-card{
    background:var(--navy-deep);
    border-radius:24px;
    padding:64px;
    display:flex;
    align-items:center;
    gap:64px;
    box-shadow:0 40px 80px rgba(20,30,60,0.28);
  }
  .contact-details{flex:1;}
  .contact-details h2{color:#fff;font-size:28px;font-weight:600;margin-bottom:12px;}
  .contact-details > p{color:#B9C0D1;font-size:14.5px;margin-bottom:34px;}
  .contact-row{
    display:flex;align-items:flex-start;gap:16px;margin-bottom:26px;
  }
  .contact-row .ic{
    width:44px;height:44px;background:var(--yellow);border-radius:10px;
    display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;
  }
  .contact-row .lbl{color:#8791AC;font-size:11px;letter-spacing:1px;font-weight:600;margin-bottom:3px;}
  .contact-row .val{color:#fff;font-size:16px;font-weight:500;}
  .contact-row a.val{text-decoration:none;transition:color 0.2s ease;}
  .contact-row a.val:hover{color:var(--yellow);}
  .note-box{
    background:rgba(240,180,41,0.12);
    border:1px solid rgba(240,180,41,0.3);
    border-radius:12px;
    padding:18px 22px;
    color:#F3D98B;
    font-size:13px;
    margin-top:10px;
  }
  .contact-image{
    flex:1;
    aspect-ratio:600/480;
    height:auto;
    margin-top:0;
    border-radius:16px;
    overflow:hidden;
    position:relative;
    background:#FAFAF8;
    display:block;
    cursor:pointer;
    transition:box-shadow 0.2s ease;
  }
  .contact-image:hover{
    box-shadow:0 0 0 3px rgba(240,180,41,0.35) inset;
  }
  .contact-image svg{width:100%;height:100%;display:block;transition:transform 0.3s ease;}
  .contact-image:hover svg{transform:scale(1.02);}
  .contact-image .pin-label{
    position:absolute;
    bottom:26px;left:50%;transform:translateX(-50%);
    background:rgba(19,31,58,0.85);
    color:#fff;
    font-size:12px;
    padding:8px 16px;
    border-radius:20px;
    white-space:nowrap;
  }
  .contact-cta-band{
    background:var(--navy-deep);
    text-align:center;
    padding:76px 64px;
    margin-top:80px;
  }
  .contact-cta-band h3{color:#fff;font-size:30px;font-weight:600;margin-bottom:12px;}
  .contact-cta-band p{color:#B9C0D1;font-size:15.5px;margin-bottom:32px;}
  /* ============ RESPONSIVE (tablet & mobile) ============ */
  @media (max-width: 900px) {
    .nav{ padding:14px 24px; height:auto; flex-wrap:wrap; row-gap:12px; }
    .nav-links{ gap:18px; }
    .nav-links a{ font-size:14px; }
    .nav-links a.active::after{ bottom:-14px; }

    .hero{ padding:48px 24px 56px 24px; }
    .hero-grid{ flex-direction:column; gap:32px; }
    .hero h1{ font-size:32px; max-width:100%; }
    .hero p{ font-size:15px; max-width:100%; }
    .hero-actions{ flex-direction:column; align-items:stretch; }
    .hero-actions a{ text-align:center; }
    .hero-img-card{ height:240px; }
    .float-badge{ left:12px; right:auto; bottom:-18px; padding:12px 16px; }

    .intro-strip{ padding:40px 24px; }
    .intro-strip p{ font-size:15px; }

    .section-head{ padding:0; }
    .section-head h2{ font-size:26px; }

    .why-section{ padding:48px 24px; }
    .why-inner .section-head{ max-width:100%; }
    .why-grid{ grid-template-columns:1fr; max-width:100%; }
    .cards-row{ flex-direction:column; }

    .cta-band{ padding:44px 24px; }
    .cta-band h3{ font-size:22px; }

    .footer{ padding:40px 24px 24px 24px; }
    .footer-grid{ flex-direction:column; gap:28px; }

    .page-header{ padding:40px 24px 44px 24px; }
    .page-header h1{ font-size:28px; }

    .service-block, .service-block.reverse{ flex-direction:column; padding:40px 24px; gap:26px; }
    .service-block-img{ height:220px; }

    .contact-header{ padding:48px 24px 56px 24px; }
    .contact-header h1{ font-size:28px; }
    .contact-header .crumb{ max-width:100%; }
    .contact-wrap{ padding:32px 20px; }
    .contact-card{ flex-direction:column; padding:28px; gap:32px; border-radius:20px; }
    .contact-image{ height:260px; width:100%; margin-top:0; }
    .contact-cta-band{ padding:48px 24px; margin-top:40px; }
    .contact-cta-band h3{ font-size:24px; }
  }

  @media (max-width: 480px) {
    .brand-text .name{ font-size:18px; }
    .brand-text .tag{ font-size:10px; letter-spacing:1.4px; }
    .nav-links{ gap:12px; }
    .nav-links a{ font-size:13px; }
    .hero h1{ font-size:27px; }
    .hero-quote{ font-size:14px; }
    .page-header h1{ font-size:24px; }
    .contact-header h1{ font-size:24px; }
    .contact-card{ padding:22px; }
    .footer-grid{ gap:22px; }
  }
