:root{
    --navy:#1B2A56;
    --navy-2:#2C4074;
    --navy-deep:#121E42;
    --gold:#CF9C2A;
    --gold-light:#E6BE5C;
    --white:#FFFFFF;
    --offwhite:#F6F7FA;
    --line:#E4E7EE;
    --ink:#1A1D29;
    --gray:#636A7E;
    --radius:10px;
    --shadow:0 10px 30px rgba(27,42,86,0.08);
    --maxw:1180px;
}

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--ink);
    background:var(--white);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
}

/* Continue with the remaining CSS exactly as it appears in your original file */
*{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    color:var(--ink);
    background:var(--white);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{
    font-family:'Poppins', sans-serif;
    color:var(--navy);
    line-height:1.15;
    font-weight:700;
  }
  a{text-decoration:none; color:inherit;}
  ul{list-style:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px;}
  .eyebrow{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:13px;
    letter-spacing:2.5px;
    text-transform:uppercase;
    color:var(--gold);
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
  }
  .eyebrow::before{
    content:"";
    width:8px; height:8px;
    background:var(--gold);
    border-radius:2px;
    display:inline-block;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:14.5px;
    letter-spacing:.3px;
    padding:15px 28px;
    border-radius:6px;
    cursor:pointer;
    border:1px solid transparent;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  }
  .btn:focus-visible{outline:2px solid var(--gold); outline-offset:3px;}
  .btn-primary{background:var(--gold); color:var(--navy-deep);}
  .btn-primary:hover{background:var(--gold-light); transform:translateY(-2px); box-shadow:0 8px 20px rgba(207,156,42,.35);}
  .btn-outline{background:transparent; border-color:rgba(255,255,255,.4); color:var(--white);}
  .btn-outline:hover{background:rgba(255,255,255,.1);}
  .btn-navy{background:var(--navy); color:var(--white);}
  .btn-navy:hover{background:var(--navy-2); transform:translateY(-2px); box-shadow:var(--shadow);}
  .btn-block{width:100%;}

  /* ===== Header ===== */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:14px 24px;
    max-width:var(--maxw); margin:0 auto;
    position:relative;
  }
  .brand{display:flex; align-items:center; gap:12px;}
  .brand img{height:46px; width:auto;}
  .nav-links{
    display:flex; flex-direction:column; align-items:flex-start; gap:2px;
    position:absolute; top:calc(100% + 10px); right:24px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:12px;
    box-shadow:0 16px 40px rgba(27,42,86,.14);
    padding:10px;
    min-width:220px;
    opacity:0; visibility:hidden; transform:translateY(-8px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s;
    z-index:150;
  }
  .nav-links.open{opacity:1; visibility:visible; transform:translateY(0);}
  .nav-links a{
    font-family:'Poppins', sans-serif;
    font-weight:500;
    font-size:14.5px;
    color:var(--navy);
    width:100%;
    padding:11px 14px;
    border-radius:7px;
    transition:background .15s ease;
  }
  .nav-links a:hover{background:var(--offwhite);}
  .nav-cta{display:flex; align-items:center; gap:14px;}
  .nav-phone{
    display:flex; align-items:center; gap:8px;
    font-family:'Poppins', sans-serif; font-weight:600; font-size:14px;
    color:var(--navy);
  }
  .menu-toggle{
    display:flex; background:none; border:1px solid var(--line); cursor:pointer;
    width:42px; height:42px; padding:0;
    align-items:center; justify-content:center;
    flex-direction:column; gap:5px;
    border-radius:8px;
  }
  .menu-toggle:hover{background:var(--offwhite);}
  .menu-toggle span{display:block; width:20px; height:2px; background:var(--navy); border-radius:2px; transition:transform .25s ease, opacity .2s ease;}
  .menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .menu-toggle.open span:nth-child(2){opacity:0;}
  .menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
  .icon{display:inline-flex; align-items:center; justify-content:center; flex:none;}
  .icon svg{width:100%; height:100%;}

  /* ===== Hero ===== */
  .hero{
    position:relative;
    background:var(--navy-deep);
    overflow:hidden;
    padding:70px 0 90px;
  }
  .hero-grid-bg{
    position:absolute; top:-10%; right:-14%;
    width:780px; height:780px;
    opacity:.16;
    pointer-events:none;
  }
  .hero::after{
    content:"";
    position:absolute; inset:0;
    background:radial-gradient(circle at 15% 20%, rgba(207,156,42,.14), transparent 45%);
    pointer-events:none;
  }
  .hero-inner{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:56px;
    align-items:start;
    position:relative; z-index:2;
  }
  .hero h1{
    color:var(--white);
    font-size:46px;
    letter-spacing:-.5px;
    margin-bottom:20px;
  }
  .hero h1 span{color:var(--gold-light);}
  .hero-sub{
    color:rgba(255,255,255,.78);
    font-size:17px;
    max-width:520px;
    margin-bottom:32px;
  }
  .hero-actions{display:flex; gap:16px; margin-bottom:44px; flex-wrap:wrap;}
  .hero-stats{
    display:flex; gap:0;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:26px;
  }
  .hero-stat{padding-right:34px; margin-right:34px; border-right:1px solid rgba(255,255,255,.15);}
  .hero-stat:last-child{border-right:none;}
  .hero-stat .num{
    font-family:'Poppins',sans-serif; font-weight:800; font-size:28px; color:var(--gold-light);
  }
  .hero-stat .label{font-size:12.5px; color:rgba(255,255,255,.65); letter-spacing:.4px; text-transform:uppercase; margin-top:4px;}

  /* Lead form */
  .lead-card{
    background:var(--white);
    border-radius:14px;
    padding:32px;
    box-shadow:0 24px 60px rgba(0,0,0,.35);
    position:relative;
  }
  .lead-card::before{
    content:"";
    position:absolute; top:0; left:0; right:0; height:5px;
    background:linear-gradient(90deg, var(--gold), var(--navy));
    border-radius:14px 14px 0 0;
  }
  .lead-card h3{font-size:20px; margin-bottom:4px;}
  .lead-card p.lead-sub{color:var(--gray); font-size:13.5px; margin-bottom:22px;}
  .field{margin-bottom:16px;}
  .field label{
    display:block; font-family:'Poppins',sans-serif; font-weight:600;
    font-size:12.5px; letter-spacing:.3px; text-transform:uppercase;
    color:var(--navy); margin-bottom:7px;
  }
  .field input, .field select{
    width:100%;
    padding:13px 14px;
    border:1.5px solid var(--line);
    border-radius:7px;
    font-family:'Inter',sans-serif;
    font-size:14.5px;
    color:var(--ink);
    background:var(--offwhite);
    transition:border-color .15s ease, background .15s ease;
  }
  .field input:focus, .field select:focus{
    outline:none; border-color:var(--gold); background:var(--white);
  }
  .field select{appearance:none; background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%231B2A56' stroke-width='1.6' fill='none' fill-rule='evenodd'/></svg>"); background-repeat:no-repeat; background-position:right 14px center;}
  .form-note{font-size:12px; color:var(--gray); margin-top:14px; text-align:center;}
  .form-success{
    display:none; text-align:center; padding:20px 6px;
  }
  .form-success.show{display:block;}
  .form-success .check{
    width:52px; height:52px; border-radius:50%; background:var(--gold);
    display:flex; align-items:center; justify-content:center; margin:0 auto 14px;
    color:var(--navy-deep); font-size:24px; font-weight:800;
  }

  /* ===== Section shell ===== */
  section{padding:88px 0;}
  .section-head{max-width:640px; margin-bottom:52px;}
  .section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
  .section-head h2{font-size:34px; margin-bottom:14px;}
  .section-head p{color:var(--gray); font-size:16px;}
  .alt-bg{background:var(--offwhite);}

  /* ===== About ===== */
  .about{display:grid; grid-template-columns:.9fr 1.1fr; gap:64px; align-items:center;}
  .img-placeholder{
    background:repeating-linear-gradient(45deg, #EDEFF4, #EDEFF4 10px, #F6F7FA 10px, #F6F7FA 20px);
    border:1.5px dashed #C7CCDA;
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    text-align:center;
    color:var(--gray);
    font-family:'Poppins',sans-serif;
    font-weight:500;
    font-size:13px;
    padding:20px;
    min-height:340px;
  }
  .img-placeholder span{max-width:220px;}
  .about-points{margin-top:26px; display:flex; flex-direction:column; gap:16px;}
  .about-point{display:flex; gap:14px; align-items:flex-start;}
  .about-point .dot{
    width:26px; height:26px; border-radius:6px; background:var(--navy);
    color:var(--gold-light); flex:none;
    display:flex; align-items:center; justify-content:center;
    font-size:13px; font-weight:700; font-family:'Poppins',sans-serif;
    margin-top:2px;
  }
  .about-point h4{font-size:15.5px; margin-bottom:3px;}
  .about-point p{font-size:14.5px; color:var(--gray);}

  /* ===== Services ===== */
  .services-grid{display:grid; grid-template-columns:1fr 1fr; gap:28px;}
  .service-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:14px;
    padding:38px 32px;
    position:relative;
    overflow:hidden;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .service-card:hover{transform:translateY(-6px); box-shadow:var(--shadow);}
  .service-mark{
    width:52px; height:52px;
    display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr;
    gap:4px; margin-bottom:22px;
  }
  .service-mark i{border-radius:5px; background:var(--navy);}
  .service-card.gold .service-mark i:nth-child(4){background:var(--gold);}
  .service-card h3{font-size:21px; margin-bottom:10px;}
  .service-card p{color:var(--gray); font-size:14.5px; margin-bottom:20px;}
  .service-list{display:flex; flex-direction:column; gap:9px; margin-bottom:26px;}
  .service-list li{display:flex; gap:9px; align-items:center; font-size:14px; color:var(--ink);}
  .service-list li::before{content:""; width:6px; height:6px; background:var(--gold); border-radius:2px; flex:none;}
  .service-card a.btn{font-size:13.5px; padding:12px 22px;}

  /* ===== Why choose us ===== */
  .why-grid{display:grid; grid-template-columns:repeat(4, 1fr); gap:26px;}
  .why-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:12px;
    padding:28px 22px;
    text-align:left;
  }
  .why-card .ico{
    width:44px; height:44px; border-radius:9px;
    background:var(--offwhite);
    border:1.5px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:16px;
    color:var(--gold);
    font-family:'Poppins',sans-serif; font-weight:700;
  }
  .why-card h4{font-size:15.5px; margin-bottom:6px;}
  .why-card p{font-size:13.5px; color:var(--gray);}

  /* ===== Process ===== */
  .process{display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative;}
  .process-step{position:relative; padding:0 22px;}
  .process-step:not(:first-child)::before{
    content:""; position:absolute; left:0; top:23px;
    width:100%; height:1px; background:var(--line);
    transform:translateX(-50%);
  }
  .process-num{
    width:46px; height:46px; border-radius:50%;
    background:var(--navy); color:var(--gold-light);
    font-family:'Poppins',sans-serif; font-weight:700; font-size:16px;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:18px; position:relative; z-index:2;
  }
  .process-step h4{font-size:15.5px; margin-bottom:7px;}
  .process-step p{font-size:13.5px; color:var(--gray);}

  /* ===== Gallery ===== */
  .gallery-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  .gallery-grid .img-placeholder{min-height:220px;}

  /* ===== FAQ ===== */
  .faq-list{max-width:800px; margin:0 auto;}
  .faq-item{
    border-bottom:1px solid var(--line);
  }
  .faq-item:first-child{border-top:1px solid var(--line);}
  .faq-q{
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    width:100%; text-align:left; background:none; border:none; cursor:pointer;
    padding:22px 4px;
    font-family:'Poppins', sans-serif; font-weight:600; font-size:16px;
    color:var(--navy);
  }
  .faq-q .icon{width:22px; height:22px; color:var(--gold); transition:transform .25s ease;}
  .faq-item.open .faq-q .icon{transform:rotate(45deg);}
  .faq-a{
    max-height:0; overflow:hidden;
    transition:max-height .3s ease, padding .3s ease;
    padding:0 4px;
  }
  .faq-item.open .faq-a{max-height:240px; padding:0 4px 22px;}
  .faq-a p{color:var(--gray); font-size:14.5px; line-height:1.7; max-width:680px;}

  /* ===== Location ===== */
  .location{display:grid; grid-template-columns:.85fr 1.15fr; gap:48px; align-items:stretch;}
  .location-info{background:var(--navy-deep); border-radius:14px; padding:38px 34px; color:var(--white); display:flex; flex-direction:column; justify-content:center;}
  .location-info h3{color:var(--white); font-size:22px; margin-bottom:16px;}
  .location-row{display:flex; gap:14px; margin-bottom:20px; align-items:flex-start;}
  .location-row .ico{
    width:38px; height:38px; border-radius:8px; background:rgba(255,255,255,.08);
    display:flex; align-items:center; justify-content:center; flex:none; color:var(--gold-light);
  }
  .location-row h5{font-size:13.5px; text-transform:uppercase; letter-spacing:.5px; color:var(--gold-light); font-family:'Poppins',sans-serif; margin-bottom:4px;}
  .location-row p, .location-row a{font-size:14.5px; color:rgba(255,255,255,.85);}
  .map-frame{border-radius:14px; overflow:hidden; border:1px solid var(--line); min-height:420px;}
  .map-frame iframe{width:100%; height:100%; min-height:420px; border:0; display:block;}

  /* ===== CTA strip ===== */
  .cta-strip{
    background:linear-gradient(120deg, var(--navy-deep), var(--navy));
    border-radius:18px;
    padding:52px 48px;
    display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  }
  .cta-strip h3{color:var(--white); font-size:26px; margin-bottom:8px;}
  .cta-strip p{color:rgba(255,255,255,.75); font-size:15px;}

  /* ===== Footer ===== */
  footer{background:var(--navy-deep); color:rgba(255,255,255,.75); padding:60px 0 26px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:44px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.1);}
  .footer-brand{display:flex; align-items:center; gap:10px; margin-bottom:16px;}
  .footer-brand img{height:75px; filter:brightness(0) invert(1);}
  .footer-brand span{font-family:'Poppins',sans-serif; font-weight:700; color:var(--white); font-size:16px;}
  footer h5{font-family:'Poppins',sans-serif; color:var(--white); font-size:14px; margin-bottom:18px; letter-spacing:.4px;}
  footer ul li{margin-bottom:11px; font-size:14px;}
  footer ul li a:hover{color:var(--gold-light);}
  .footer-bottom{display:flex; justify-content:space-between; padding-top:22px; font-size:12.5px; flex-wrap:wrap; gap:10px;}

  /* Floating WhatsApp/Call button */
  .float-cta{
    position:fixed; bottom:24px; right:24px; z-index:200;
    display:flex; flex-direction:column; gap:12px;
  }
  .float-btn{
    width:56px; height:56px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 24px rgba(0,0,0,.25);
    color:var(--white); font-size:24px;
  }
  .float-btn.call{background:var(--navy);}
  .float-btn.whatsapp{background:#25D366;}

  /* ===== Responsive ===== */
  @media (max-width:980px){
    .hero-inner{grid-template-columns:1fr;}
    .lead-card{max-width:480px;}
    .about{grid-template-columns:1fr;}
    .services-grid{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr 1fr;}
    .process{grid-template-columns:1fr 1fr; row-gap:36px;}
    .process-step:nth-child(3)::before, .process-step:nth-child(1)::before{display:none;}
    .gallery-grid{grid-template-columns:1fr 1fr;}
    .location{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr; row-gap:30px;}
  }
  @media (max-width:720px){
    .nav-links{
      position:fixed; top:74px; left:0; right:0; bottom:0;
      background:var(--white);
      flex-direction:column; align-items:flex-start;
      padding:30px 24px; gap:8px;
      border-radius:0; border:none; box-shadow:none;
      transform:translateX(100%);
      transition:transform .25s ease;
      opacity:1; visibility:visible;
      min-width:0;
    }
    .nav-links.open{transform:translateX(0);}
    .nav-links a{font-size:16.5px; padding:14px 10px;}
    .nav-phone{display:none;}
    .hero h1{font-size:32px;}
    .hero-stats{flex-wrap:wrap; row-gap:18px;}
    .hero-stat{padding-right:20px; margin-right:20px;}
    .why-grid{grid-template-columns:1fr;}
    .process{grid-template-columns:1fr;}
    .gallery-grid{grid-template-columns:1fr;}
    section{padding:60px 0;}
    .cta-strip{padding:36px 26px;}
    .btn{min-height:46px;}
    .field input, .field select{min-height:46px;}
  }
  @media (max-width:480px){
    .wrap{padding:0 18px;}
    .nav{padding:12px 18px;}
    .brand img{height:38px;}
    .hero{padding:44px 0 60px;}
    .hero h1{font-size:27px;}
    .hero-sub{font-size:15px;}
    .eyebrow{font-size:11.5px; letter-spacing:1.8px;}
    .hero-actions{flex-direction:column; align-items:stretch;}
    .hero-actions .btn{width:100%;}
    .hero-stat{padding-right:14px; margin-right:14px;}
    .hero-stat .num{font-size:22px;}
    .lead-card{padding:22px;}
    .section-head h2{font-size:26px;}
    .cta-strip{flex-direction:column; align-items:flex-start;}
    .cta-strip .btn{width:100%;}
    .location-info{padding:28px 24px;}
    .footer-grid{grid-template-columns:1fr; gap:26px;}
    .footer-bottom{flex-direction:column; align-items:flex-start;}
    .float-cta{bottom:16px; right:16px;}
    .float-btn{width:50px; height:50px;}
  }
  @media (prefers-reduced-motion: reduce){
    *{transition:none !important; scroll-behavior:auto !important;}
  }