:root{
  --bg:#f5f7fa;
  --card:#ffffff;
  --text:#1a2433;
  --muted:#5b6475;

  /* FIX: define brand colors used across buttons/links */
  --brand:#1d4ed8;
  --brand2:#0a2540;

  --radius:18px;
  --shadow-sm:0 8px 22px rgba(0,0,0,.08);
  --shadow-md:0 10px 25px rgba(0,0,0,.10);
  --shadow-lg:0 18px 45px rgba(0,0,0,.20);

  --border:rgba(10,37,64,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:1100px;margin:auto;padding:0 18px}

/* ===== Topbar ===== */
.topbar{
  background:linear-gradient(90deg, rgba(10,37,64,.95), rgba(29,78,216,.90));
  color:#eaf0ff;
  font-size:13px;
}
.topbar .row{
  display:flex;gap:12px;align-items:center;justify-content:space-between;
  padding:10px 0;
}
.topbar .left, .topbar .right{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.badge{
  display:inline-flex;gap:8px;align-items:center;
  padding:6px 10px;border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
}
.topbar b{color:#fff}

/* ===== Navbar ===== */
.nav{
  position:sticky;top:0;z-index:999;
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav .row{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex;align-items:center;gap:12px}
.logo{
  width:77px;height:75px;border-radius:50%;
  overflow:hidden;
  display:flex;place-items:center;
  background:#6dabe9;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}
.logo img{
  width:100%;height:100%;
  object-fit:cover;
  border-radius:50%;
}
.brand .title{line-height:1.1}
.brand .title strong{display:block;font-size:15px;color:#071425}
.brand .title span{display:block;font-size:12px;color:var(--muted)}

.menu{display:flex;gap:16px;align-items:center}
.menu a{
  font-size:14px;
  color:#11233b;
  padding:8px 10px;border-radius:10px;
}
.menu a:hover{
  background:rgba(29,78,216,.08);
  color:var(--brand);
}

.actions{display:flex;gap:10px;align-items:center}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 12px;border-radius:12px;
  border:1px solid rgba(10,37,64,.15);
  background:#fff;color:#0b1220;
  font-weight:700;font-size:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.btn.primary{
  background:linear-gradient(135deg, var(--brand2), var(--brand));
  color:#fff;border:0;
}
.btn.whatsapp{
  background:#25D366;color:#06230f;border:0;
  font-weight:800;
}

/* Mobile Menu */
.hamburger{display:none}
.mobileMenu{display:none;border-top:1px solid var(--border);padding:10px 0 14px}
.mobileMenu .grid{display:grid;gap:8px}
.mobileMenu a{display:block;padding:12px 10px;border-radius:12px;color:#11233b}
.mobileMenu a:hover{background:rgba(29,78,216,.08);color:var(--brand)}

@media (max-width: 900px){
  .menu{display:none}
  .hamburger{
    display:inline-flex;align-items:center;justify-content:center;
    width:44px;height:44px;border-radius:12px;
    border:1px solid rgba(10,37,64,.15);
    background:#fff;cursor:pointer;font-weight:900;
  }
  .hamburger:hover{color:var(--brand)}
}

/* ===== Hero ===== */
/* PERFORMANCE TIP: replace the external URL with a local compressed image:
   background-image: url("assets/hero.webp"); */
.hero{
  position:relative;
  background:
    linear-gradient(120deg, rgba(10,37,64,.88), rgba(29,78,216,.65));
  color:#fff;
  padding:64px 0;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;inset:-80px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.12), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(circle at 60% 85%, rgba(255,255,255,.10), transparent 60%);
  pointer-events:none;
}
.hero .row{
  position:relative;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:center;
}
@media (max-width: 900px){ .hero .row{grid-template-columns:1fr} }

.hero h1{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.1;
  letter-spacing:-.5px;
}
@media (max-width: 520px){ .hero h1{font-size:34px} }

.hero p{
  margin:0 0 18px;
  color:rgba(255,255,255,.92);
  font-size:16px;
  max-width:62ch;
}

.hero .chips{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 18px}
.chip{
  display:inline-flex;gap:8px;align-items:center;
  padding:8px 10px;border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
}
.hero .cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:6px}

/* Hero Card */
.heroCard{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius:22px;
  padding:18px;
  box-shadow:0 22px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}
.heroCard h3{margin:0 0 10px;font-size:16px}
.heroCard .list{display:grid;gap:10px;margin:0;padding:0;list-style:none}
.heroCard .list li{display:flex;gap:10px;align-items:flex-start;font-size:14px;color:rgba(255,255,255,.92)}
.tick{
  width:22px;height:22px;border-radius:8px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
  flex:0 0 auto;
}

/* ===== Sections ===== */
section{padding:52px 0}
h2{text-align:center;color:var(--brand2);margin:0 0 18px;font-size:28px}
.sub{text-align:center;color:var(--muted);margin:-6px auto 20px;max-width:75ch}

/* Cards Grid */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
@media (max-width: 900px){ .grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 560px){ .grid{grid-template-columns:1fr} }

.card{
  background:var(--card);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(10,37,64,.08);
  transition:transform .2s ease, box-shadow .2s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.card b{display:block;margin-top:8px}
.muted{color:var(--muted)}

/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
@media (max-width: 900px){ .gallery{grid-template-columns:repeat(2,1fr)} }
.gallery img{
  width:100%;
  height:210px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:var(--shadow-md);
  border:1px solid rgba(10,37,64,.08);
}

/* Service Areas */
.service-areas{background:var(--bg)}
.areas-grid{
  max-width:1100px;
  margin:26px auto 34px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  padding:0 18px;
}
.area-pill{
  background:#fff;
  border-radius:18px;
  padding:14px 10px;
  text-align:center;
  font-weight:700;
  color:var(--brand2);
  border:1px solid rgba(10,37,64,.10);
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  transition:transform .2s ease, box-shadow .2s ease;
}
.area-pill:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
@media (max-width: 900px){ .areas-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 520px){ .areas-grid{grid-template-columns:1fr} }

.area-map{max-width:1000px;margin:0 auto;padding:0 18px}
.area-map iframe{
  width:100%;
  height:360px;
  border:0;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* FAQ */
.faq-section{background:var(--bg)}
.faq-list{max-width:820px;margin:0 auto}
.faq-list details{
  background:#fff;
  border-radius:16px;
  margin-bottom:14px;
  padding:16px 18px;
  border:1px solid rgba(10,37,64,.10);
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  transition:box-shadow .2s ease;
}
.faq-list details[open]{box-shadow:0 12px 28px rgba(0,0,0,.10)}
.faq-list summary{
  cursor:pointer;
  font-weight:700;
  font-size:15px;
  color:var(--brand2);
  list-style:none;
  position:relative;
  padding-right:28px;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{
  content:"+";
  position:absolute;right:0;top:0;
  font-size:22px;font-weight:700;color:var(--brand);
}
.faq-list details[open] summary::after{content:"–"}
.faq-list p{margin:12px 0 0;font-size:14px;color:#465066;line-height:1.6}

/* Contact */
.contactBox{
  background:#fff;border-radius:22px;
  padding:18px;
  border:1px solid rgba(10,37,64,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  max-width:760px;margin:0 auto;
}
.contactBox label{font-size:13px;color:#465066}
.contactBox input,.contactBox textarea{
  width:100%;
  padding:12px;
  margin:8px 0 14px;
  border-radius:12px;
  border:1px solid rgba(10,37,64,.18);
  outline:none;
  font-size:15px;
}
.contactBox textarea{min-height:110px;resize:vertical}
.contactBox .row2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width:768px){
  .actions .btn{display:none}
  .contactBox .row2{grid-template-columns:1fr}
}
.contactBox .submit{
  width:100%;
  padding:13px 14px;
  border:none;border-radius:14px;
  background:linear-gradient(135deg, var(--brand2), var(--brand));
  color:#fff;font-weight:800;
  cursor:pointer;
}

/* NAP Box */
.nap-box{
  max-width:520px;margin:40px auto;
  padding:22px 26px;
  text-align:center;
  background:linear-gradient(135deg, #ffffff, #f4f7fb);
  border-radius:18px;
  border:1px solid rgba(10,37,64,.12);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.nap-box h3{margin:0 0 8px;font-size:20px;font-weight:800;color:var(--brand2)}
.nap-area{margin:0;font-size:14px;color:var(--muted)}
.nap-phone{margin-top:12px;font-size:16px;font-weight:700}
.nap-phone a{color:var(--brand2)}
.nap-phone a:hover{text-decoration:underline}

/* Footer */
footer{background:var(--brand2);color:#eaf0ff;text-align:center;padding:22px 10px}

/* Floating Buttons */
.float-call{
  position:fixed;bottom:20px;left:20px;
  background:var(--brand2);color:#fff;
  padding:15px 18px;border-radius:50px;
  font-size:18px;
  box-shadow:0 4px 10px rgba(0,0,0,.3);
  z-index:999;
}
.float-whatsapp{
       position:fixed;bottom:24px;right:24px;
      width:50px;height:48px;border-radius:50%;
      background:#25d366;
      display:grid;place-items:center;
      box-shadow:0 6px 20px rgba(37,211,102,.45);
      z-index:999;
      transition:transform .2s,box-shadow .2s;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #cdd8e8;
  transition: background 0.25s, transform 0.2s, border-color 0.25s;
  margin-left: 0;
  text-decoration: none;
}
.footer-social a:hover {
  transform: translateY(-3px);
  text-decoration: none;
}
.footer-social a.fb:hover  { background: #1877f2; border-color: #1877f2; }
.footer-social a.ig:hover  { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); border-color: #dd2a7b; }
.footer-social a.im:hover  { background: #e6581c; border-color: #e6581c; }
.footer-social a.gm:hover  { background: #ea4335; border-color: #ea4335; }
.contactBox select{
  width:100%;
  padding:12px;
  margin:8px 0 14px;
  border-radius:12px;
  border:1px solid rgba(10,37,64,.18);
  outline:none;
  font-size:15px;
  background:#fff;
}