:root{
  --blue:#1f3557;
  --blue2:#234066;
  --green:#3f8d4c;
  --green2:#2f7b3f;
  --text:#1e2a3a;
  --muted:#6b7b8f;
  --shadow: 0 14px 40px rgba(0,0,0,.16);
  --border:#e8eef5;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#eef1f4;
  color:var(--text);
}

a{color:inherit;}
.page{padding:30px 18px 60px;}
.frame{
  max-width:1120px;
  margin:0 auto;
  background:#fff;
  border-radius:2px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

/* Header */
.header{
  background:#fff;
  border-bottom:1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 34px;
  gap:18px;
}

/* ✅ Bigger logo */
.brand-logo{
  height:64px;     /* was ~48px before */
  width:auto;
  display:block;
}

.nav{display:flex;gap:22px;align-items:center;margin-left:10px;}
.nav a{
  font-size:14px;
  color:#2a3a52;
  text-decoration:none;
  font-weight:500;
  padding:8px 6px;
}
.nav a.active{font-weight:600;}
.nav a:hover{opacity:.9;}

.btn-quote{
  display:inline-flex;align-items:center;justify-content:center;
  height:44px;padding:0 26px;border-radius:6px;
  background:var(--green);color:#fff;font-weight:600;text-decoration:none;
  box-shadow:0 8px 18px rgba(63,141,76,.25);
}
.btn-quote:hover{background:var(--green2);}

/* Mobile menu */
.menu-btn{
  display:none;width:44px;height:44px;border:1px solid #e5edf6;background:#fff;
  border-radius:8px;cursor:pointer;padding:10px;
}
.menu-btn span{display:block;height:2px;background:#1f3557;margin:6px 0;border-radius:2px;}

.mobile-nav{
  display:block;
  max-height:0;
  overflow:hidden;
  transition:max-height .2s ease;
  padding:0 22px;
  border-top:1px solid var(--border);
  background:#fff;
}
.mobile-nav.open{
  max-height:420px;
  padding:10px 22px 18px;
}
.mobile-nav a{
  display:block;
  padding:10px 10px;
  text-decoration:none;
  color:#2a3a52;
  font-weight:500;
}
.mobile-cta{
  margin-top:8px;
  background:var(--green);
  color:#fff !important;
  border-radius:8px;
  text-align:center;
  padding:12px 10px !important;
  text-decoration:none;
}

/* Hero */
.hero{position:relative;height:500px;}
.hero-bg{
  position:absolute; inset:0;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  transform: scale(1.02);
  transition: opacity .25s ease;
}
.hero-bg.fade{ opacity: .35; }

.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(8,18,32,.74) 0%, rgba(8,18,32,.44) 58%, rgba(8,18,32,.22) 100%);
}

.hero-content{
  position:relative;z-index:2;height:100%;
  display:flex;flex-direction:column;justify-content:center;
  padding-left:84px;padding-right:40px;max-width:980px;
}
.hero h1{
  margin:0 0 12px;
  color:#fff;
  font-size:56px;
  line-height:1.16;
  font-weight:800;
}
.hero-sub{
  margin:0 0 18px;
  color: rgba(255,255,255,.92);
  max-width: 70ch;
  font-size: 14px;
}

.hero-actions{display:flex; gap:12px; align-items:center; margin-bottom: 18px;}
.hero-btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:48px; padding: 0 22px;
  border-radius:8px;background:var(--green);
  color:#fff;text-decoration:none;font-weight:700;
  box-shadow:0 10px 24px rgba(63,141,76,.28);
}
.hero-btn:hover{background:var(--green2);}
.hero-btn.ghost{
  background: rgba(255,255,255,.14);
  box-shadow:none;
  border: 1px solid rgba(255,255,255,.25);
}
.hero-btn.ghost:hover{background: rgba(255,255,255,.18);}

/* ✅ Clear contact boxes */
.hero-contact{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.hc-item{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  color: #fff;
  min-width: 260px;
}
.hc-item:hover{ background: rgba(255,255,255,.18); }
.hc-ic{
  width: 38px;height: 38px;
  display:grid;place-items:center;
  border-radius: 10px;
  background: rgba(63,141,76,.22);
  border: 1px solid rgba(63,141,76,.35);
  font-size: 16px;
}
.hc-text{display:flex;flex-direction:column;line-height:1.15;}
.hc-title{font-size: 11px; opacity: .9;}
.hc-value{
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .2px;
  word-break: break-word;
}

/* Slider dots */
.hero-dots{
  position:absolute;
  z-index: 3;
  left: 84px;
  bottom: 46px;
  display:flex;
  gap: 8px;
}
.hero-dots .dot{
  width: 9px;height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer;
}
.hero-dots .dot.active{
  background: rgba(63,141,76,.95);
  border-color: rgba(63,141,76,.95);
}

/* Curved wave separator */
.hero-wave{
  position:absolute;left:0;right:0;bottom:-1px;height:130px;background:#fff;z-index:2;
  clip-path: ellipse(120% 86% at 50% 120%);
}

/* Welcome */
.welcome{position:relative;padding:46px 0 56px;background:#fff;}
.welcome-bg{
  position:absolute;right:-120px;top:28px;width:62%;height:420px;
  background:url("assets/about-bg.jpg") right center/cover no-repeat;
  opacity:.16;filter:grayscale(5%) contrast(1.05);pointer-events:none;
}
.welcome-inner{position:relative;z-index:2;padding:0 84px;max-width:1040px;}
.welcome h2{margin:0 0 14px;font-size:36px;line-height:1.15;font-weight:800;color:var(--blue);}
.welcome p{margin:0 0 28px;max-width:560px;font-size:14px;line-height:1.7;color:#637489;}

/* Top service cards */
.service-cards{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:22px;margin-top:10px;max-width:980px;
}
.service-card{
  background:#fff;border-radius:12px;box-shadow:0 10px 22px rgba(16,33,56,.08);
  border:1px solid #edf2f8;height:86px;display:flex;align-items:center;gap:14px;padding:0 18px;
}
.service-card .icon{width:44px;height:44px;display:grid;place-items:center;color:var(--green);}
.service-card svg{width:44px;height:44px;}
.service-card .label{font-size:16px;font-weight:600;color:#2b3b52;}

/* Generic sections */
.section{background:#fff; padding: 62px 0;}
.section.alt{background:#f7f9fc; border-top:1px solid var(--border); border-bottom:1px solid var(--border);}
.section-inner{padding: 0 84px;}
.section-head h3{margin:0; font-size: 28px; color: var(--blue); font-weight: 800;}
.section-head p{margin:10px 0 0; color:#637489; font-size: 14px; max-width: 70ch;}

.grid-3{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-card{
  background:#fff;
  border: 1px solid #edf2f8;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(16,33,56,.07);
  padding: 18px 18px 16px;
}
.info-card h4{margin:0 0 8px; color:#2b3b52; font-size: 16px;}
.info-card p{margin:0 0 10px; color:#637489; font-size: 13px; line-height: 1.7;}
.info-card ul{margin:0; padding-left: 18px; color:#637489; font-size: 13px; line-height: 1.8;}

.why{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
.why-left p{color:#637489; font-size: 14px; line-height: 1.7; margin: 10px 0 0;}
.ticks{margin-top: 12px; display:grid; gap: 8px;}
.tick{color:#2b3b52; font-weight: 600; font-size: 13px;}

.stats{display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px;}
.stat{
  background:#fff;border:1px solid #edf2f8;border-radius:14px;
  padding: 14px; text-align:center; box-shadow: 0 10px 22px rgba(16,33,56,.06);
}
.stat-num{font-weight: 800; color: var(--green); font-size: 18px;}
.stat-label{color:#637489; font-size: 12px; margin-top: 4px;}

.cta-box{
  margin-top: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(63,141,76,.14), rgba(255,255,255,1));
  border: 1px solid rgba(63,141,76,.22);
  padding: 16px;
}
.cta-title{font-weight: 800; color: var(--blue); font-size: 15px;}
.cta-sub{color:#637489; font-size: 13px; margin-top: 6px;}
.cta-actions{display:flex; gap: 10px; margin-top: 12px;}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height: 44px; padding: 0 18px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  text-decoration:none;
  border: 1px solid rgba(0,0,0,0);
}
.btn:hover{background: var(--green2);}
.btn.ghost{
  background: #fff;
  color: var(--blue2);
  border: 1px solid #dfe8f3;
}
.btn.ghost:hover{background:#f1f6fb;}
.btn.full{width:100%; margin-top: 14px;}

/* Gallery */
.gallery{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.shot{
  margin:0;
  background:#fff;
  border:1px solid #e7eef7;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(16,33,56,.06);
}
.shot img{width:100%; height: 170px; object-fit: cover; display:block;}
.shot figcaption{padding: 10px 12px; font-size: 12px; color:#637489;}
.note{margin-top: 14px; color:#637489; font-size: 12px;}

/* Clients */
.clients-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.client{
  background:#fff;
  border:1px solid #e7eef7;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(16,33,56,.06);
  height: 92px;
  display:grid;
  place-items:center;
  padding: 10px;
}
.client img{
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  display:block;
}
.client-fallback{
  display:none;
  text-align:center;
  font-weight: 700;
  color: #2b3b52;
  font-size: 12px;
  line-height: 1.2;
  padding: 0 6px;
}

/* Location + Map */
.location-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}
.location-card{
  background:#fff;
  border: 1px solid #edf2f8;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(16,33,56,.07);
  padding: 18px;
}
.location-card h4{margin:0 0 10px; color:#2b3b52;}
.addr{margin:0 0 14px; color:#637489; line-height: 1.7;}
.contact-list{display:grid; gap: 10px; font-size: 13px; color:#2b3b52;}
.contact-list .row span{color:#6b7b8f; margin-right: 8px;}
.contact-list a{color: var(--blue2); font-weight: 700; text-decoration:none;}
.contact-list a:hover{text-decoration:underline;}

.map-wrap{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid #e7eef7;
  box-shadow: 0 10px 22px rgba(16,33,56,.06);
  background:#fff;
  min-height: 360px;
}
.map-wrap iframe{
  width:100%;
  height:100%;
  border:0;
  min-height: 360px;
}

/* Hiring */
.hire-box{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
.hire-left, .hire-right{
  background:#fff;
  border: 1px solid #edf2f8;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(16,33,56,.07);
  padding: 18px;
}
.hire-left h4{ margin: 0 0 10px; color:#2b3b52; }
.hire-list{ margin: 0; padding-left: 18px; color:#637489; line-height: 1.9; font-size: 13px; }
.hire-note{ margin-top: 12px; color:#2b3b52; font-weight: 600; font-size: 13px; }
.hire-actions{ display:grid; gap: 10px; }

/* Footer */
.footer{background:#f7f9fc;border-top:1px solid var(--border);padding:26px 84px 18px;}
.footer-inner{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;}
.footer-title{font-weight:700;color:var(--blue);}
.footer-sub{margin-top:6px;color:#6b7b8f;font-size:13px;}
.footer-sub.small{font-size:12px;}
.footer-right{display:flex;flex-direction:column;gap:10px;font-size:13px;}
.contact-row a{color:var(--blue2);text-decoration:none;font-weight:600;}
.contact-row a:hover{text-decoration:underline;}
.contact-label{color:#6b7b8f;margin-right:8px;}
.footer-cta{display:flex; gap: 10px; margin-top: 6px; flex-wrap: wrap;}
.footer-bottom{
  margin-top:16px;padding-top:12px;border-top:1px solid var(--border);
  color:#6b7b8f;font-size:12px;
}

/* Responsive */
@media (max-width: 1100px){
  .nav{gap:16px;}
}
@media (max-width: 980px){
  .header-inner{padding:0 18px;}
  .section-inner{padding:0 18px;}
  .welcome-inner{padding:0 18px;}
  .footer{padding:22px 18px 14px;}

  .hero-content{padding-left:28px;}
  .hero h1{font-size:42px;}
  .hero-dots{ left: 28px; }

  .service-cards{grid-template-columns:1fr; max-width: 520px;}
  .grid-3{grid-template-columns: 1fr;}
  .why{grid-template-columns: 1fr;}
  .stats{grid-template-columns: 1fr;}
  .gallery{grid-template-columns: 1fr 1fr;}
  .clients-grid{grid-template-columns: 1fr 1fr;}
  .location-grid{grid-template-columns: 1fr;}
  .hire-box{grid-template-columns: 1fr;}
  .footer-inner{flex-direction:column;}
  .hc-item{min-width: 100%;}
}
@media (max-width: 860px){
  .nav, .btn-quote{display:none;}
  .menu-btn{display:inline-block;}
}
@media (max-width: 520px){
  .gallery{grid-template-columns: 1fr;}
  .clients-grid{grid-template-columns: 1fr;}
}
