:root{
  --navy:#0f1b33;
  --blue:#2563eb;
  --light:#f5f7fa;
  --text:#1e293b;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:#fff;
  color:var(--text);
}
a{text-decoration:none;color:inherit}

/* HEADER */
header{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
  position:sticky;
  top:0;
  z-index:1000;
}
.header-wrap{
  max-width:1200px;
  margin:auto;
  padding:14px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo{height:46px}
.nav{display:flex;gap:26px}
.nav a{font-weight:600;font-size:15px}
.hamburger{display:none;font-size:26px;cursor:pointer}

/* 🔹 HEADER ACCENT ALIGNMENT (APPROVED) */
.nav a:hover,
.nav a.active{
  color:var(--blue);
}

/* MOBILE NAV */
.mobile-nav{
  display:none;
  background:#fff;
  border-top:1px solid #e5e7eb
}
.mobile-nav a{
  display:block;
  padding:14px 20px;
  border-bottom:1px solid #e5e7eb;
  font-weight:600;
}

/* HERO */
.hero{padding:50px 18px}
.hero-inner{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}
.hero-card{
  background:#fff;
  padding:36px;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}
.hero-card h1{font-size:34px;margin:0 0 12px}
.hero-card p{color:#475569;margin-bottom:26px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}

/* BUTTONS */
.btn{
  padding:14px 20px;
  border-radius:8px;
  font-weight:700;
  font-size:15px;
}
.btn-primary{background:var(--blue);color:#fff}
.btn-secondary{background:#e5e7eb}
.btn-outline-primary{
  border:2px solid var(--blue);
  color:var(--blue);
  background:#fff;
}

/* TRUST */
.trust-strip{background:var(--light);padding:24px 18px}
.trust-inner{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  text-align:center;
  font-weight:600;
}

/* SERVICES */
section{max-width:1200px;margin:auto;padding:70px 18px}
section h2{text-align:center;font-size:28px;margin-bottom:40px}
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
}
.service{
  background:#fff;
  padding:22px;
  border-radius:12px;
  text-align:center;
  font-weight:600;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
}

/* FOOTER */
footer{
  background:var(--navy);
  color:#cbd5f5;
  padding:60px 18px 30px;
}
.footer-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}
footer h4{color:#fff;margin-bottom:14px}
footer a{
  color:#cbd5f5;
  display:block;
  margin-bottom:8px;
  font-size:14px;
}
.socials{
  display:flex;
  gap:12px;
  margin-top:10px;
}
.socials img{width:26px;height:auto}
.map iframe{
  width:100%;
  height:180px;
  border:0;
  border-radius:10px;
}
.copy{
  text-align:center;
  margin-top:40px;
  font-size:13px;
  color:#94a3b8;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
}
.whatsapp img{width:56px}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr}
  .trust-inner{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav{display:none}
  .hamburger{display:block}
  .footer-grid{grid-template-columns:1fr;text-align:center}
  .socials{justify-content:center}
}

/* ==============================
   INNER PAGE LAYOUT (LOCKED)
   ============================== */

.page-hero{
  background: var(--light);
  padding: 48px 18px 32px;
}

.page-hero .container{
  max-width:1200px;
  margin:auto;
}

.page-title{
  font-size:32px;
  font-weight:700;
  margin:0;
  color:var(--text);
}

.page-wrap{
  background: var(--light);
  padding: 40px 18px 70px;
}

.page-wrap .container{
  max-width:1200px;
  margin:auto;
}

.content-card{
  background:#fff;
  border-radius:14px;
  padding:28px;
  box-shadow:0 10px 30px rgba(10,20,40,0.06);
}

.content-card h2{
  margin-top:32px;
}

.content-card h2:first-child{
  margin-top:0;
}

.content-card ul{
  padding-left:18px;
}

/* ABOUT PAGE — PROFESSIONAL POLISH (LOCKED) */

.page-hero{
  background: linear-gradient(180deg, #f3f6fb 0%, #eef2f8 100%);
  padding: 56px 18px 40px;
}

.page-title{
  font-size:34px;
  letter-spacing:-0.3px;
}

.content-card{
  padding:34px;
}

.content-card p{
  font-size:16px;
  line-height:1.75;
  margin-bottom:18px;
  color:#334155;
}

.content-card p strong{
  color:#0f1b33;
}

.content-card h2{
  font-size:24px;
  margin-top:42px;
  margin-bottom:14px;
  color:#0f1b33;
}

.content-card ul{
  margin-top:10px;
}

.content-card li{
  margin-bottom:10px;
  line-height:1.6;
}

/* Mobile polish */
@media(max-width:768px){
  .page-title{font-size:28px}
  .content-card{padding:22px}
}
/* ==================================================
   HOMEPAGE FINAL COSMETIC POLISH (CSS ONLY)
   Header & Footer UNTOUCHED
   ================================================== */

/* ---------- HERO POLISH ---------- */
.hero{
  padding: 70px 18px;
}

.hero-card h1{
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.hero-card p{
  font-size: 17px;
  line-height: 1.65;
}

/* CTA rhythm */
.hero-actions{
  margin-top: 28px;
}

/* ---------- SECTION RHYTHM ---------- */
section{
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ---------- TRUST STRIP POLISH ---------- */
.trust-strip{
  padding: 36px 18px;
}

.trust-inner{
  gap: 24px;
}

/* ---------- CTA CONSISTENCY ---------- */
.btn-primary{
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

/* ---------- MOBILE POLISH ---------- */
@media(max-width:768px){

  .hero{
    padding: 54px 18px;
  }

  .hero-card{
    padding: 28px;
  }

  .hero-card h1{
    font-size: 30px;
  }

  .hero-card p{
    font-size: 16px;
  }

  section{
    padding-top: 60px;
    padding-bottom: 60px;
  }

}
