:root{
  /* Lighter, professional navy + gold */
  --bgTop:#101a33;
  --bg:#172241;
  --panel:#ffffff;
  --panel2:#f6f8ff;
  --card:#ffffff;
  --nav:#0f1833;
  --text:#101426;
  --muted:#4d5a7a;
  --gold:#caa23a;
  --gold2:#e2c46a;
  --line:rgba(16,20,38,.12);
  --shadow: 0 14px 34px rgba(0,0,0,.16);
  --shadow2: 0 8px 22px rgba(0,0,0,.10);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(226,196,106,.22), transparent 60%),
              radial-gradient(900px 420px at 90% 10%, rgba(202,162,58,.18), transparent 60%),
              linear-gradient(180deg, var(--bgTop), var(--bg));
  color: var(--text);
  line-height: 1.6;
}
a{ color: inherit; }
.wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */
header{
  padding: 34px 18px 18px;
  text-align:center;
}
.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.logoDot{ display:none; }
header h1{
  margin:0;
  font-size: 40px;
  letter-spacing:.4px;
  color: #f7f8ff;
}
header p{
  margin: 8px 0 0;
  color: rgba(255,255,255,.82);
}

/* Nav */
nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,24,51,.82);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 12px 10px;
  text-align: center;
}
nav a{
  color: rgba(255,255,255,.92);
  margin: 0 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  opacity: .96;
  white-space: nowrap;
}
nav a:hover{ color: var(--gold2); }

/* Sections */
section{ padding: 54px 0; }
h2{
  margin: 0 0 14px;
  text-align:center;
  font-size: 24px;
  color: #0b1020;
}
.sectionSub{
  text-align:center;
  color: var(--muted);
  margin-top: -6px;
}

/* Panels / Cards */
.panel{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.box{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.box h3{
  margin:0 0 8px;
  color: #0b1020;
}
.box p{ margin:0; color: var(--muted); }

/* Hero */
.hero{ padding: 26px 0 12px; }
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items:stretch;
}
.heroTitle{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .2px;
  color: #0b1020;
}
.badges{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 12px;
}
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(16,20,38,.10);
  background: rgba(246,248,255,.9);
  font-size: 13px;
  color: #2b3551;
  font-weight: 800;
}

/* Buttons */
.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(16,20,38,.14);
  text-decoration:none;
  font-weight: 900;
  background: rgba(246,248,255,.92);
  color: #0b1020;
}
.btn:hover{ transform: translateY(-1px); }
.btn.primary{
  background: linear-gradient(135deg, #fff0b8, var(--gold));
  border: 0;
}
.btn.ghost{
  background: transparent;
  color: #0b1020;
}
.btn.dark{
  background: #0f1833;
  color: #fff;
  border: 0;
}

/* Services grid */
.services{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow2);
}
.card h3{ margin:0 0 6px; color: #0b1020; }
.card p{ margin:0; color: var(--muted); }
.cardTop{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
}
.icon{
  width:38px;height:38px;border-radius:14px;
  background: radial-gradient(circle at 30% 30%, #fff3c6, var(--gold));
  box-shadow: 0 12px 26px rgba(202,162,58,.18);
  border: 1px solid rgba(202,162,58,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: #1a1a1a;
}
.more{
  display:inline-block;
  margin-top: 12px;
  font-weight: 900;
  text-decoration:none;
  color: #0f1833;
}
.more:hover{ text-decoration: underline; color: #0b1020; }

/* Lists */
.list{ display:grid; gap: 10px; margin-top: 10px; }
.item{ display:flex; gap:12px; align-items:flex-start; }
.dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--gold);
  margin-top:7px;
  flex:0 0 auto;
}

/* Gallery placeholders */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.ph{
  border: 1px dashed rgba(16,20,38,.25);
  border-radius: 16px;
  min-height: 120px;
  background: rgba(246,248,255,.75);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(16,20,38,.65);
  font-size: 13px;
  text-align:center;
  padding: 10px;
}

/* FAQ */
.faq details{
  border: 1px solid rgba(16,20,38,.14);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow2);
}
.faq details + details{ margin-top: 10px; }
.faq summary{ cursor:pointer; font-weight: 900; color: #0b1020; }
.faq p{ color: var(--muted); margin: 10px 0 0; }

/* Breadcrumb */
.pageTitle{ text-align:center; margin-top: 6px; }
.breadcrumb{ text-align:center; color: rgba(255,255,255,.75); font-size: 13px; margin-top: 6px; }
.breadcrumb a{ color: rgba(255,255,255,.80); text-decoration: underline; }
.breadcrumb a:hover{ color: var(--gold2); }

/* CTA strip */
.ctaStrip{
  background: linear-gradient(135deg, #fff0b8, var(--gold));
  color: #0b1020;
  text-align: center;
  padding: 46px 18px;
  margin-top: 14px;
}
.ctaStrip h2{ color:#0b1020; margin-bottom: 10px; }
.ctaStrip a{
  background: #0f1833;
  color: #fff;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 900;
  border-radius: 12px;
  display: inline-block;
  margin-top: 12px;
}

/* Footer */
footer{
  text-align:center;
  padding: 24px 18px 40px;
  color: rgba(255,255,255,.78);
}

/* Floating buttons */
.floatWrap{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floatBtn{
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.28);
}
.floatBtn.home{ background: #ffffff; color: #0b1020; }
.floatBtn.home:hover{ background: #fff0b8; }
.floatBtn.whats{ background:#25D366; color:#0b1020; border:0; }
.floatBtn.call{ background: rgba(255,255,255,.12); color:#fff; }

/* Responsive */
@media (max-width: 1020px){
  .services{ grid-template-columns: 1fr 1fr; }
  nav a{ margin: 0 10px; }
}
@media (max-width: 880px){
  .heroGrid{ grid-template-columns: 1fr; }
  .services{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  header h1{ font-size: 34px; }
}

/* Logo image */
.logoImg{
  width: 120px;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}
@media (max-width: 880px){
  .logoImg{ width: 96px; }
}

/* === Logo size upgrade === */
.logoImg{
  width: 180px;       /* desktop */
  max-width: 90%;
  height: auto;
}
@media (max-width: 1024px){
  .logoImg{ width: 160px; }
}
@media (max-width: 768px){
  .logoImg{ width: 140px; }
}
@media (max-width: 480px){
  .logoImg{ width: 120px; }
}

/* === Improve section title contrast === */
h2{
  color: #ffffff !important;
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
}
.sectionSub{
  color: rgba(255,255,255,.85) !important;
}
/* Ensure cards and boxes keep dark text */
.card h3, .box h3{
  color: #0b1020;
}
