
:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface-2:#f6f8fb;
  --text:#16202a;
  --muted:#5f6f82;
  --line:#dde6ef;
  --primary:#0e5bd8;
  --primary-dark:#0b46a6;
  --shadow:0 20px 50px rgba(17, 39, 71, 0.10);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}
.narrow{
  width:min(900px, calc(100% - 40px));
  margin:0 auto;
}
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(221,230,239,0.8);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand-mini{
  font-weight:700;
  font-size:0.95rem;
}
.phone-link{
  font-weight:700;
  color:var(--primary);
}
.hero{
  padding:72px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(14,91,216,0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(14,91,216,0.06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:40px;
  align-items:center;
}
.eyebrow, .section-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--primary);
  border-radius:999px;
  font-weight:700;
  font-size:0.9rem;
  margin-bottom:16px;
}
.hero h1{
  font-size:clamp(2.3rem, 5vw, 4.4rem);
  line-height:1.06;
  margin:0 0 18px;
}
.hero-text{
  font-size:1.08rem;
  color:var(--muted);
  max-width:640px;
  margin:0 0 24px;
}
.hero-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:0 0 28px;
}
.hero-list span{
  background:#fff;
  border:1px solid var(--line);
  padding:12px 14px;
  border-radius:16px;
  box-shadow:0 8px 20px rgba(0,0,0,0.04);
  font-weight:600;
}
.hero-actions, .contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:16px;
  font-weight:700;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 14px 30px rgba(14,91,216,0.22);
}
.btn-primary:hover{background:var(--primary-dark)}
.btn-secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
}
.hero-card{
  background:#fff;
  padding:14px;
  border-radius:30px;
  box-shadow:var(--shadow);
  transform:rotate(-1deg);
}
.hero-card img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:22px;
}
.section{
  padding:78px 0;
}
.section-heading{
  margin-bottom:28px;
}
.section-heading.centered,
.centered{text-align:center}
.section-heading h2{
  font-size:clamp(1.8rem, 4vw, 3rem);
  line-height:1.15;
  margin:0 0 10px;
}
.section-heading p, .lead{
  color:var(--muted);
  font-size:1.03rem;
  margin:0;
}
.services{
  background:#fff;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}
.service-card{
  position:relative;
  padding:28px;
  background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border:1px solid var(--line);
  border-radius:24px;
  min-height:180px;
  box-shadow:0 14px 34px rgba(17,39,71,0.06);
}
.service-number{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(14,91,216,0.10);
  color:var(--primary);
  font-weight:800;
  margin-bottom:18px;
}
.service-card h3{
  margin:0;
  font-size:1.28rem;
  line-height:1.28;
}
.gallery-section{
  background:var(--surface-2);
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}
.gallery-item{
  margin:0;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(17,39,71,0.08);
  border:1px solid rgba(221,230,239,0.8);
}
.gallery-item.large{
  grid-column:span 2;
  grid-row:span 2;
}
.gallery-item img{
  width:100%;
  height:100%;
  min-height:260px;
  object-fit:cover;
}
.highlight-grid{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:28px;
  align-items:stretch;
}
.highlight-box, .contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:34px;
}
.highlight-box h2, .contact-card h3{
  margin:0 0 14px;
  font-size:clamp(1.7rem, 3vw, 2.5rem);
  line-height:1.15;
}
.highlight-box p, .contact-card p{
  color:var(--muted);
  margin:0 0 18px;
}
.contact-phone{
  display:block;
  font-size:1.6rem;
  font-weight:800;
  color:var(--primary);
  margin:10px 0 24px;
}
.floating-whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  background:#25D366;
  color:#fff;
  border-radius:999px;
  padding:14px 18px;
  font-weight:800;
  box-shadow:0 18px 30px rgba(37,211,102,0.28);
}
.footer{
  background:#0f1721;
  color:#fff;
  padding:42px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr auto;
  gap:26px;
  align-items:start;
}
.footer h4{
  margin:0 0 10px;
  font-size:1.2rem;
}
.footer p{
  margin:0;
  color:rgba(255,255,255,0.75);
}
.footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
  color:rgba(255,255,255,0.82);
}
.footer-contact a{
  color:#fff;
  font-size:1.2rem;
  font-weight:800;
}

.reveal{
  opacity:1;
  transform:none;
}
.js-enabled .reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
.js-enabled .reveal.visible{
  opacity:1;
  transform:none;
}

@media (max-width: 980px){
  .hero-grid,
  .highlight-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .services-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .hero-card img{
    height:420px;
  }
}
@media (max-width: 720px){
  .container, .narrow{
    width:min(100% - 28px, 100%);
  }
  .topbar-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .hero{
    padding-top:46px;
  }
  .services-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }
  .gallery-item.large{
    grid-column:span 1;
    grid-row:span 1;
  }
  .hero-card img{
    height:320px;
  }
  .floating-whatsapp{
    right:12px;
    bottom:12px;
    padding:12px 16px;
  }
}
