:root{
  --blue:#0b4f8c;
  --blue-dark:#08355c;
  --orange:#f2851c;
  --green:#4caf3c;
  --bg:#f4f7fb;
  --card-bg:#ffffff;
  --text:#1b2733;
  --muted:#5b6a7a;
  --shadow:0 20px 45px rgba(11,79,140,0.14);

  --navy:#0a1830;
  --navy-deep:#060f22;
  --gold:#d9a544;
  --gold-light:#f0c674;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Inter','Segoe UI',system-ui,-apple-system,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  width:100%;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.brand-text strong,.logo-halo,.eyebrow{
  font-family:'Poppins','Segoe UI',system-ui,-apple-system,Roboto,Arial,sans-serif;
}
img{max-width:100%;display:block;}
a{color:inherit;}

.section-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

/* ===== HEADER ===== */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  box-shadow:0 2px 14px rgba(11,79,140,0.08);
  border-bottom:3px solid var(--gold);
}
.header-inner{
  max-width:1180px;
  margin:0 auto;
  padding:12px 24px;
  display:flex;
  align-items:center;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
  margin-right:auto;
}
.brand-logo{
  width:44px;
  height:44px;
  object-fit:contain;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}
.brand-text strong{
  font-size:17px;
  color:var(--navy);
  letter-spacing:0.2px;
}
.brand-text small{
  font-size:11px;
  color:var(--muted);
  letter-spacing:0.3px;
}
.nav-desktop{
  display:flex;
  gap:28px;
}
.nav-desktop a{
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  font-size:14.5px;
  position:relative;
  padding:4px 0;
}
.nav-desktop a:hover{ color:var(--gold); }
.nav-desktop a::after{
  content:"";
  position:absolute;
  left:0; bottom:-4px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:width .2s ease;
}
.nav-desktop a:hover::after{ width:100%; }
.header-cta{
  padding:10px 18px !important;
  font-size:13.5px !important;
}
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:34px;
  height:34px;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
}
.nav-toggle span{
  display:block;
  height:2px;
  width:100%;
  background:var(--navy);
  border-radius:2px;
}
.nav-mobile{
  display:none;
  flex-direction:column;
  gap:4px;
  padding:10px 24px 18px;
  background:#fff;
  border-top:1px solid rgba(11,79,140,0.08);
}
.nav-mobile a{
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  font-size:15px;
  padding:10px 0;
  border-bottom:1px solid rgba(11,79,140,0.06);
}
.nav-mobile .btn{
  margin-top:10px;
  text-align:center;
}
.nav-mobile.open{ display:flex; }

/* ===== BUTTONS ===== */
.btn{
  display:inline-block;
  padding:13px 26px;
  border-radius:10px;
  font-weight:700;
  font-size:14.5px;
  text-decoration:none;
  cursor:pointer;
  border:none;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  color:var(--navy-deep);
  box-shadow:0 10px 24px rgba(217,165,68,0.35);
}
.btn-primary:hover{
  box-shadow:0 14px 30px rgba(217,165,68,0.45);
}
.btn-outline-light{
  background:transparent;
  color:#fff;
  border:2px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover{
  background:rgba(255,255,255,0.12);
  border-color:var(--gold-light);
}

/* ===== HERO (full width) ===== */
.hero{
  width:100%;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 85% 15%, rgba(217,165,68,0.16), transparent 45%),
    radial-gradient(circle at 8% 95%, rgba(217,165,68,0.10), transparent 45%);
}
.hero-inner{
  position:relative;
  max-width:1180px;
  margin:0 auto;
  padding:90px 24px;
  display:flex;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}
.hero-text{
  flex:1 1 480px;
}
.eyebrow{
  display:inline-block;
  background:rgba(255,255,255,0.14);
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:0.5px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.eyebrow-dark{
  background:rgba(10,24,48,0.06);
  color:var(--navy);
}
.hero-text h1{
  color:#fff;
  font-size:44px;
  line-height:1.2;
  margin:0 0 18px;
  font-weight:700;
}
.hero-text h1 span{
  color:var(--gold-light);
}
.hero-text p{
  color:#dce8f5;
  font-size:16.5px;
  line-height:1.6;
  max-width:520px;
  margin:0 0 30px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.hero-logo{
  flex:0 0 auto;
  margin-left:auto;
  display:flex;
  justify-content:center;
}
.logo-halo{
  width:230px;
  height:230px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 25px 60px rgba(0,0,0,0.28);
  padding:26px;
}
.logo-halo img{ width:100%; height:100%; object-fit:contain; }

/* ===== ABOUT ===== */
.about{
  width:100%;
  padding:80px 0;
  background:var(--bg);
}
.about-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:50px;
  align-items:start;
}
.about-text h2{
  font-size:30px;
  color:var(--navy);
  margin:8px 0 16px;
  font-weight:700;
}
.about-text p{
  color:var(--muted);
  font-size:15.5px;
  line-height:1.7;
  margin:0 0 20px;
}
.about-points{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.about-points li{
  font-size:14.5px;
  font-weight:600;
  color:var(--text);
}

.contact-card{
  background:var(--card-bg);
  border-radius:18px;
  box-shadow:var(--shadow);
  border:1px solid rgba(11,79,140,0.08);
  padding:28px;
}
.contact-card h3{
  margin:0 0 18px;
  color:var(--navy);
  font-size:18px;
  font-weight:700;
}
.contact-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.contact-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px;
  background:#f7fafd;
  border-radius:12px;
  border:1px solid rgba(11,79,140,0.08);
  transition:transform .15s ease, box-shadow .15s ease;
}
.contact-item:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(11,79,140,0.10);
}
.icon-circle{
  width:38px;
  height:38px;
  min-width:38px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--navy), var(--navy-deep));
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-light);
  font-size:17px;
}
.icon-circle svg{
  width:18px;
  height:18px;
}
.contact-item .label{
  font-size:11.5px;
  text-transform:uppercase;
  letter-spacing:0.5px;
  color:var(--muted);
  margin:0 0 2px;
}
.contact-item a, .contact-item span.value{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  word-break:break-word;
}
.contact-item a:hover{ color:var(--blue); }

/* ===== SERVICES (navy / gold) ===== */
.services{
  width:100%;
  padding:90px 0;
  background:
    radial-gradient(circle at 8% 92%, rgba(217,165,68,0.10), transparent 45%),
    radial-gradient(circle at 95% 8%, rgba(217,165,68,0.08), transparent 40%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-top:1px solid rgba(217,165,68,0.35);
  border-bottom:1px solid rgba(217,165,68,0.35);
  position:relative;
}
.section-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 50px;
}
.section-head .eyebrow-dark{
  background:rgba(217,165,68,0.14);
  color:var(--gold-light);
}
.section-head h2{
  font-size:30px;
  letter-spacing:2px;
  color:var(--gold);
  margin:8px 0 14px;
  text-transform:uppercase;
  font-weight:700;
}
.section-head .divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin:0 0 14px;
}
.section-head .divider span{
  width:70px;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--gold));
}
.section-head .divider span.right{
  background:linear-gradient(90deg, var(--gold), transparent);
}
.section-head .divider .dot{
  width:8px;
  height:8px;
  background:var(--gold);
  transform:rotate(45deg);
}
.section-head .subtitle{
  color:#b9c4d6;
  font-size:15px;
  margin:0;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
}
.service-card{
  background:transparent;
  padding:26px 22px;
  display:flex;
  align-items:center;
  gap:14px;
  border-top:1px solid rgba(217,165,68,0.18);
  border-right:1px solid rgba(217,165,68,0.18);
  transition:background .18s ease;
}
.services-grid .service-card:nth-child(4n){
  border-right:none;
}
.services-grid .service-card:nth-child(-n+4){
  border-top:none;
}
.service-card:hover{
  background:rgba(217,165,68,0.06);
}
.service-icon{
  width:44px;
  height:44px;
  min-width:44px;
  border-radius:0;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:0;
  color:var(--gold);
  background:none !important;
}
.service-icon svg{
  width:30px;
  height:30px;
}
.service-card h3{
  margin:0;
  font-size:15.5px;
  color:#fff;
  font-weight:600;
  line-height:1.35;
}
.service-card p{
  display:none;
}

/* ===== CTA ===== */
.cta{
  width:100%;
  background:linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding:70px 0;
}
.cta-inner{
  text-align:center;
}
.cta h2{
  color:#fff;
  font-size:28px;
  margin:0 0 10px;
  font-weight:700;
}
.cta p{
  color:#dce8f5;
  font-size:15.5px;
  margin:0 0 28px;
}
.cta .hero-actions{
  justify-content:center;
}

/* ===== FOOTER ===== */
.site-footer{
  width:100%;
  background:var(--navy-deep);
  padding:40px 0 24px;
  border-top:1px solid rgba(217,165,68,0.25);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-brand img{
  width:40px;
  height:40px;
  object-fit:contain;
  background:#fff;
  border-radius:50%;
  padding:5px;
}
.footer-brand strong{
  color:#fff;
  font-size:16px;
}
.footer-brand p{
  color:#9fb4c9;
  font-size:12.5px;
  margin:2px 0 0;
}
.footer-links{
  display:flex;
  gap:22px;
}
.footer-links a{
  color:#cfe0ef;
  text-decoration:none;
  font-size:13.5px;
  font-weight:600;
}
.footer-links a:hover{ color:var(--gold-light); }
.footer-copy{
  width:100%;
  text-align:center;
  color:#6f88a0;
  font-size:12.5px;
  margin:20px 0 0;
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width:900px){
  .about-grid{ grid-template-columns:1fr; }
  .hero-logo{ margin-left:0; }
}
@media (max-width:900px){
  .services-grid{ grid-template-columns:repeat(2, 1fr); }
  .services-grid .service-card:nth-child(4n){ border-right:1px solid rgba(217,165,68,0.18); }
  .services-grid .service-card:nth-child(2n){ border-right:none; }
  .services-grid .service-card:nth-child(-n+4){ border-top:1px solid rgba(217,165,68,0.18); }
  .services-grid .service-card:nth-child(-n+2){ border-top:none; }
}
@media (max-width:760px){
  .nav-desktop, .header-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .hero-text h1{ font-size:32px; }
  .logo-halo{ width:170px; height:170px; }
  .hero-inner{ padding:60px 24px; }
  .about, .services{ padding:56px 0; }
}
@media (max-width:520px){
  .services-grid{ grid-template-columns:1fr; }
  .services-grid .service-card{ border-right:none !important; border-top:1px solid rgba(217,165,68,0.18) !important; }
  .services-grid .service-card:first-child{ border-top:none !important; }
}
@media (max-width:480px){
  .hero-text h1{ font-size:27px; }
  .footer-inner{ flex-direction:column; text-align:center; }
  .footer-links{ justify-content:center; }
}
