:root{
  --bg:#0B2F2E;
  --bg2:#0F3B3A;
  --gold:#C6A15B;
  --gold2:#B8924A;
  --soft:#F3F6F6;
  --text:#0B2F2E;
  --muted:#9FB5B3;
  --line: rgba(198,161,91,0.35);
  --card:#ffffff;
  --radius:16px;
  --shadow:0 12px 30px rgba(0,0,0,0.12);
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: "Segoe UI", Arial, sans-serif;
  background:var(--soft);
  color:var(--text);
}
.container{ width:min(1120px, 92%); margin:0 auto; }
a{ color:inherit; }

.muted{ color:var(--muted); }
.small{ font-size:13px; }
.lead{ font-size:18px; line-height:1.6; color:#214241; }

.topbar{
  background:#082625;
  color:var(--muted);
  font-size:13px;
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  padding:10px 0;
}

.navbar{
  background:var(--bg);
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}
.brand{
  display:flex; gap:12px; align-items:center;
  text-decoration:none;
}
.brand img{ height:44px; border-radius:10px; }
.brand-name{ color:#fff; font-weight:800; letter-spacing:0.2px; }
.brand-sub{ color:#cfe3e1; font-size:12px; margin-top:2px; }
.brand-text{ display:flex; flex-direction:column; line-height:1; }

.nav a{
  color:#E8EFEF;
  text-decoration:none;
  margin-left:18px;
  padding:10px 12px;
  border-radius:12px;
  font-weight:600;
  font-size:14px;
}
.nav a:hover{ color:var(--gold); background:rgba(255,255,255,0.06); }
.nav-cta{
  border:1px solid var(--line);
  color:var(--gold) !important;
}
.nav-cta:hover{ background:rgba(198,161,91,0.12); }

.hero{
  background:var(--bg);
  color:#fff;
  padding:90px 0 80px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:40px;
  align-items:center;
}
.badge{
  display:inline-block;
  padding:8px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--gold);
  font-size:13px;
  margin-bottom:16px;
}
.hero h1{
  font-size:52px;
  line-height:1.05;
  margin:0 0 16px;
}
.hero p{
  color:#CFE3E1;
  font-size:18px;
  line-height:1.7;
  margin:0 0 26px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
}
.btn.primary{
  background:var(--gold);
  color:#082625;
}
.btn.primary:hover{ background:var(--gold2); }
.btn.ghost{
  border:1px solid rgba(255,255,255,0.25);
  color:#fff;
}
.btn.ghost:hover{ border-color:rgba(198,161,91,0.6); color:var(--gold); }

.hero-card{
  background: rgba(255,255,255,0.06);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:22px;
  max-width: 460px;
  margin-left:auto;
}
.hero-card h3{ margin:0 0 12px; color:var(--gold); }
.checklist{ margin:0; padding-left:18px; line-height:1.7; color:#E8EFEF; }
.hero-card-footer{
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid rgba(255,255,255,0.12);
  margin-top:16px; padding-top:12px;
}

.section{ padding:86px 0; }
.section-head{ max-width:760px; margin-bottom:22px; }
.section-head h2{ font-size:36px; margin:0 0 10px; }
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.card{
  background:var(--card);
  border-radius: var(--radius);
  padding:22px;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
}
.card h3{ margin:0 0 10px; }
.card p{ margin:0 0 12px; line-height:1.7; color:#1f3433; }

.card-accent{
  border:1px solid var(--line);
  background:
    radial-gradient(600px 260px at 20% 0%, rgba(198,161,91,0.18), transparent 60%),
    #fff;
}
.mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:16px;
}
.mini div{
  border:1px solid rgba(0,0,0,0.06);
  border-radius:14px;
  padding:12px;
}
.mini strong{ display:block; }
.mini span{ display:block; color:#6f8b89; font-size:13px; margin-top:4px; }

.dark{
  background:var(--bg2);
  color:#fff;
}
.dark-lead{ color:#CFE3E1; }
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.service{
  border-radius: var(--radius);
  padding:18px;
  border:1px solid rgba(198,161,91,0.22);
  background: rgba(255,255,255,0.04);
}
.service h3{ margin:0 0 8px; color:var(--gold); font-size:16px; }
.service p{ margin:0; color:#E8EFEF; line-height:1.6; font-size:14px; }

.cta-panel{
  margin-top:18px;
  border-radius: var(--radius);
  padding:18px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.step{
  background:#fff;
  border-radius: var(--radius);
  padding:20px;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
}
.step-no{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--gold);
  font-weight:900;
  margin-bottom:10px;
}

.soft{ background:#EEF3F3; }
.contact-wrap{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:16px;
}
.contact-form{
  background:#fff;
  border-radius: var(--radius);
  padding:22px;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
}
label{ display:block; font-weight:800; margin:10px 0 6px; }
input, textarea{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.10);
  font-family:inherit;
}
textarea{ min-height:120px; }
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.dark-check{ color:#1f3433; }

.footer{
  background:var(--bg);
  color:#CFE3E1;
  padding:26px 0 18px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.footer-brand{ color:#fff; font-weight:900; }
.footer-links a{
  color:#CFE3E1;
  text-decoration:none;
  margin-left:12px;
}
.footer-links a:hover{ color:var(--gold); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.10);
  padding-top:14px;
  margin-top:14px;
}

@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-card{ margin-left:0; max-width:100%; margin-top:28px; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .two-col{ grid-template-columns:1fr; }
  .contact-wrap{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .hero h1{ font-size:40px; }
}
@media (max-width: 720px){
  .grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
}
.form-success{
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(198,161,91,0.35);
  background: rgba(198,161,91,0.10);
  color: #0B2F2E;
  font-weight: 700;
}

.form-error{
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(180,0,0,0.25);
  background: rgba(180,0,0,0.08);
  color: #3a0b0b;
  font-weight: 700;
}
/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {

  /* Center hero buttons */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}
