:root{
  --blue:#0b63d6; /* stronger medium blue */
  --blue-dark:#074a9e;
  --muted:#d7e7ff; /* lighter muted for blue backgrounds */
  --bg:#0a2b57; /* overall page background turned deep blue to allow white text everywhere */
  --card-bg:#08345f; /* dark card background for contrast with white text */
  --input-bg: rgba(255,255,255,0.06);
  --max-width:1200px;
  --radius:10px;
}
*{box-sizing:border-box}
.html,body{}
html,body{height:100%;margin:0;font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial;color:#fff;background:var(--bg)}
.container{max-width:var(--max-width);margin:0 auto;padding:1rem}
.site-header{background:var(--blue);box-shadow:0 1px 6px rgba(11,45,100,0.12);position:sticky;top:0;z-index:20}
.site-header{background:rgba(3,20,40,0.55);position:fixed;top:0;left:0;right:0;z-index:60;padding:.10rem 0;backdrop-filter:blur(6px);border-bottom:1px solid rgba(255,255,255,0.04)}
.header-inner{display:flex;align-items:center;gap:1rem;justify-content:space-between}
.brand{font-weight:700;color:#fff;text-decoration:none;font-size:1.1rem}
.main-nav ul{display:flex;gap:1rem;list-style:none;margin:0;padding:0}
.main-nav a{color:#fff;text-decoration:none;font-weight:600}
.header-cta{display:flex;gap:.5rem;align-items:center}
.btn{display:inline-block;padding:.55rem .9rem;border-radius:8px;text-decoration:none;border:1px solid transparent;font-weight:600;cursor:pointer}
.btn-primary{background:#fff;color:var(--blue);border:1px solid rgba(255,255,255,0.08)}
.btn-primary:hover{background:rgba(255,255,255,0.95)}
.btn-outline{background:transparent;border:1px solid rgba(255,255,255,0.18);color:#fff}
.site-header .btn-primary{background:#fff;color:var(--blue);border-radius:10px}
.site-header .btn-outline{background:transparent;color:#fff;border:1px solid rgba(255,255,255,0.18)}
.btn-lg{padding:.85rem 1.25rem;border-radius:12px}
.header-logo img{width:56px;height:56px;object-fit:contain;border-radius:8px}
.header-logo{display:flex;align-items:center;margin-right:0}

/* hamburger square */
.mobile-nav-toggle{background:transparent;border:1px solid rgba(255,255,255,0.18);padding:.45rem;border-radius:8px;color:#fff;display:flex;align-items:center;justify-content:center}
.mobile-nav-toggle .hamburger{display:inline-block;width:28px;height:18px;position:relative}
.mobile-nav-toggle .hamburger span{display:block;height:2px;background:#fff;border-radius:2px;position:absolute;left:0;right:0}
.mobile-nav-toggle .hamburger span:nth-child(1){top:0}
.mobile-nav-toggle .hamburger span:nth-child(2){top:8px}
.mobile-nav-toggle .hamburger span:nth-child(3){bottom:0}

@media(min-width:901px){
  .mobile-nav-toggle{display:none}
}

@media(max-width:600px){
  .header-logo img{width: 120px;height:60px}
  .main-nav{display:none}
}
.hero{padding:4rem 0;background:linear-gradient(180deg,var(--blue) 0%, rgba(11,99,214,0.06) 40%, transparent 100%);color:#fff}
.hero-inner{display:flex;gap:2rem;align-items:center}
.hero-content{flex:1}
/* initial offset to avoid header overlap before JS runs; JS will set exact padding dynamically */
body{padding-top:72px}
@media(max-width:768px){
  body{padding-top:64px}
}
.hero h1{font-size:clamp(1.6rem,3vw,2.6rem);margin:0 0 .5rem;color:#fff}
.lead{color:rgba(255,255,255,0.9);margin-bottom:1rem}
.hero-ctas{display:flex;gap:.75rem;margin-bottom:1rem}
.trust-badges{display:flex;gap:1rem;list-style:none;padding:0;margin:0;color:var(--muted);font-weight:600}
.hero-media{flex:1}
.hero-media img{width:100%;height:auto;border-radius:12px;box-shadow:0 8px 30px rgba(3,30,80,0.25);border:4px solid rgba(255,255,255,0.06)}

.about{padding:2.5rem 0;background:linear-gradient(180deg,transparent,rgba(11,99,214,0.02))}
.about h2{margin-top:0;color:#fff}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.about p{color:rgba(255,255,255,0.9)}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.service{background:var(--card-bg);padding:1rem;border-radius:12px;box-shadow:0 10px 30px rgba(3,20,50,0.18);text-align:left;border:1px solid rgba(255,255,255,0.04)}
.service .icon{font-size:1.6rem;margin-bottom:.5rem}
.service h4{color:#fff}
.service p{color:rgba(255,255,255,0.9)}

/* Gallery section */
.gallery h2{margin-top:0;color:#fff}
.gallery .sub{color:rgba(255,255,255,0.85);margin-bottom:1rem}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0.75rem}
.gallery-item{overflow:hidden;border-radius:10px}
.gallery-item img{width:100%;height:180px;object-fit:cover;display:block;transition:transform .25s ease}
.gallery-item:hover img{transform:scale(1.04)}

/* About images */
.about-top{display:flex;gap:1rem;align-items:center;margin-bottom:1rem}
.about-top p{flex:1}
.about-media{width:220px}
.about-media img{width:100%;height:140px;object-fit:cover;border-radius:10px;box-shadow:0 8px 24px rgba(0,0,0,0.3)}
.about-card{background:transparent;padding:0}
.about-thumb{width:64px;height:64px;object-fit:cover;border-radius:8px;float:left;margin-right:.75rem;box-shadow:0 6px 18px rgba(0,0,0,0.3)}
.about-card h3{margin-top:0}

@media(max-width:900px){
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .about-top{flex-direction:column}
  .about-media{width:100%}
}
@media(max-width:600px){
  .gallery-grid{grid-template-columns:1fr}
  .gallery-item img{height:160px}
  .about-media img{height:120px}
  /* Mobile: make About section look like the reference - compact image at top-right */
  .about-top{position:relative;padding-top:110px}
  .about-top p{font-size:1rem;line-height:1.5;margin:0}
  .about-media{position:absolute;top:12px;right:12px;width:88px;height:88px;z-index:5}
  .about-media img{width:100%;height:100%;object-fit:cover;border-radius:8px}
  .about-card{padding-top:0}
  .about-thumb{width:56px;height:56px}
  .about-card h3{margin-top:0;margin-bottom:.25rem}

  /* Make about cards appear as stacked, padded rows with thumbnail on left */
  .about-grid{display:block}
  .about-card{display:flex;align-items:center;gap:.75rem;background:rgba(255,255,255,0.03);padding:.85rem;border-radius:10px;margin-bottom:.75rem}
  .about-thumb{width:48px;height:48px;flex:0 0 48px;margin:0;border-radius:8px}
  .about-card h3{font-size:1.02rem;margin:0;color:#fff}
  .about-card ul{margin:0;padding-left:1.1rem}
  .about-card p{margin:0;color:rgba(255,255,255,0.92)}
}

.accordion{max-width:900px}
.accordion-item{margin-bottom:1rem;border-radius:8px;overflow:hidden;border:1px solid #edf2f7}
.accordion-toggle{width:100%;text-align:left;padding:1rem;background:transparent;border:0;font-weight:700;cursor:pointer;color:var(--blue) !important}
.faq .accordion-toggle{color:var(--blue) !important}
.accordion-toggle[aria-expanded="true"]{background:rgba(255,255,255,0.03);color:var(--blue-dark) !important}
.accordion-panel{padding:0 1rem 1rem;color:var(--muted)}

.testimonials{padding:2.5rem 0;background:linear-gradient(180deg,rgba(11,99,214,0.02),transparent)}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.review{background:var(--card-bg);padding:1rem;border-radius:10px;color:#fff;box-shadow:0 8px 30px rgba(3,30,80,0.12);border:1px solid rgba(255,255,255,0.04)}
.review footer{margin-top:.75rem;font-weight:700;color:rgba(255,255,255,0.9)}

.map-embed iframe{border-radius:8px;border:2px solid rgba(11,99,214,0.08)}


.contact-grid{display:grid;grid-template-columns:1fr 320px;gap:1.25rem;align-items:start}
.quote-form{background:var(--card-bg);padding:1rem;border-radius:12px;box-shadow:0 10px 30px rgba(3,20,40,0.18);border:1px solid rgba(255,255,255,0.04)}
.quote-form label{display:block;margin-bottom:.5rem;font-weight:500;color:#fff}
.quote-form input,.quote-form textarea,.quote-form select{width:100%;padding:.6rem;border-radius:8px;border:1px solid rgba(255,255,255,0.06);margin-top:.25rem;background:var(--input-bg);color:#fff}
.quote-form textarea{min-height:90px}
.form-actions{display:flex;gap:.5rem;margin-top:.75rem}

.site-footer{background:linear-gradient(180deg,#07305a,#07284f);padding:2rem 0 1rem;margin-top:2rem;color:#fff;border-top:4px solid rgba(255,255,255,0.02)}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:1.25rem;align-items:start}
.footer-grid h4{margin:0 0 .5rem 0;color:#cfe4ff}
.site-footer a{color:#dff1ff}
.site-footer a:hover{color:#fff;text-decoration:underline}
.footer-about .muted{color:rgba(255,255,255,0.85);max-width:320px}
.footer-logo img{width:88px;height:88px;object-fit:contain;border-radius:10px;box-shadow:0 8px 28px rgba(0,0,0,0.4)}
.social{display:flex;gap:.6rem;margin-top:.75rem}
.social-link{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,0.04)}
.footer-links ul{list-style:none;padding:0;margin:0}
.footer-links li{margin-bottom:.4rem}
.footer-contact .contact-line{margin:0 0 .4rem 0}

.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:1rem;border-top:1px solid rgba(255,255,255,0.04);margin-top:1rem}
.footer-bottom .copyright{color:rgba(255,255,255,0.85)}
.footer-bottom .legal-links a{color:rgba(255,255,255,0.7);margin-left:.5rem}
.footer-bottom .legal-links a:hover{color:#fff}

@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr;gap:1rem}
  .footer-bottom{flex-direction:column;gap:.5rem;text-align:center}
}

/* Make all headings and general text white */
h1,h2,h3,h4,h5,h6, p, li, a, label, button, input, select, textarea{color:#fff}



/* Responsive */
@media(max-width:900px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .reviews-grid{grid-template-columns:repeat(2,1fr)}
  .hero-inner{flex-direction:column}
  .about-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  /* mobile navigation */
  .main-nav{display:none}
  .mobile-nav-toggle{display:block;background:transparent;border:0;color:#fff;font-size:1.6rem;padding:.4rem}
  .main-nav.open{display:flex;flex-direction:column;position:absolute;top:84px;left:1rem;right:1rem;background:var(--card-bg);padding:1rem;border-radius:10px;box-shadow:0 12px 30px rgba(3,20,40,0.4)}
  .main-nav.open ul{flex-direction:column}
  .main-nav.open a{padding:.6rem 0;color:#fff}

  /* layout adjustments for small screens */
  .services-grid{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr}
  .header-cta{display:none}
  .hero{padding:2rem 0}
  .hero h1{font-size:1.4rem}
  .hero-ctas{flex-direction:column}
  .hero .btn-lg{width:100%}
  .hero-media img{max-height:220px;object-fit:cover}

  /* form & inputs full width touch targets */
  .quote-form input,.quote-form textarea,.quote-form select{font-size:1rem;padding:.75rem}
  .quote-form .btn{width:100%}
  .form-actions{flex-direction:column}
}

/* improve touch targets and spacing across mobile */
.btn{touch-action:manipulation}
.accordion-toggle{padding:1rem 0.75rem}
.accordion-panel{padding:0 0.75rem 1rem}


/* small helpers */
.sub{color:var(--muted)}
