/* eximpt.com — base stylesheet */

:root {
  --navy: #0b2545;
  --navy-dark: #071a33;
  --teal: #0e7c7b;
  --teal-dark: #0a5f5e;
  --gold: #c9962c;
  --ink: #1c2530;
  --muted: #5b6673;
  --bg: #ffffff;
  --bg-alt: #f4f7fa;
  --border: #e1e7ed;
  --radius: 8px;
  --max-width: 1180px;
  --shadow: 0 2px 10px rgba(11, 37, 69, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 { color: var(--navy); line-height: 1.25; margin: 0 0 .5em; }
h1 { font-size: 2.1rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

ul, ol { padding-left: 1.25em; }

.btn {
  display: inline-block;
  padding: .7em 1.4em;
  border-radius: var(--radius);
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); text-decoration: none; }
.btn-outline { background: transparent; border-color: #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: #b3841f; text-decoration: none; }

/* Topbar */
.topbar {
  background: var(--navy-dark);
  color: #cfe0ee;
  font-size: .85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #cfe0ee; }
.topbar-contact { display: flex; gap: 18px; flex-wrap: wrap; }

/* Header / nav */
header.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
}
.brand span.tagline {
  display: block;
  font-weight: 400;
  font-size: .7rem;
  color: #a9c0d6;
}
.brand svg { flex-shrink: 0; }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav.main-nav a {
  color: #e7eef5;
  font-weight: 600;
  font-size: .95rem;
}
nav.main-nav a:hover { color: var(--gold); text-decoration: none; }
nav.main-nav .dropdown { position: relative; padding-bottom: 14px; margin-bottom: -14px; }
nav.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  margin-top: 0;
}
nav.main-nav .dropdown:hover .dropdown-menu,
nav.main-nav .dropdown:focus-within .dropdown-menu { display: block; }
nav.main-nav .dropdown-menu a {
  color: var(--ink);
  display: block;
  padding: 8px 18px;
  font-weight: 500;
  font-size: .9rem;
}
nav.main-nav .dropdown-menu a:hover { background: var(--bg-alt); color: var(--teal); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 70px 0;
}
.hero .container { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.hero h1 { color: #fff; }
.hero p.lead { color: #cfe0ee; font-size: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.hero-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 24px;
}
.hero-panel h3 { color: #fff; }
.hero-panel ul { list-style: none; padding: 0; margin: 0; }
.hero-panel li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: #dce8f2; }
.hero-panel li:last-child { border-bottom: none; }

/* Section helpers */
section { padding: 60px 0; }
section.alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin: 0 auto 36px; text-align: center; }
.section-head p { color: var(--muted); }

/* Cards */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; }
.card .card-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 14px;
  font-size: 1.4rem;
}
.card a.card-link { font-weight: 600; }

.pillar-card {
  border-top: 4px solid var(--teal);
}

/* Stats */
.stats { background: var(--navy); color: #fff; }
.stats .grid-4 { text-align: center; }
.stats .stat-num { font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.stats .stat-label { color: #cfe0ee; font-size: .9rem; }

/* Service list page */
.service-list a.service-link {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-weight: 600;
  color: var(--navy);
}
.service-list a.service-link:hover { border-color: var(--teal); color: var(--teal); text-decoration: none; }
.service-list .grid { grid-template-columns: repeat(3, 1fr); }

/* Service detail page */
.breadcrumbs { font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumbs a { color: var(--muted); }
.service-meta-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.service-meta-box h4 { margin-top: 0; }
.doc-list li, .process-list li { margin-bottom: .5em; }
.process-list { counter-reset: step; list-style: none; padding: 0; }
.process-list li {
  counter-increment: step;
  position: relative;
  padding-left: 46px;
  margin-bottom: 18px;
}
.process-list li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 32px; height: 32px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}

/* FAQ */
details.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 10px;
  background: #fff;
}
details.faq-item summary {
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
details.faq-item[open] summary { color: var(--teal); }
details.faq-item p { margin-top: 10px; margin-bottom: 0; color: var(--muted); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner .hero-actions { justify-content: center; }

/* Forms */
form.contact-form {
  display: grid;
  gap: 14px;
}
form.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: .9rem;
}
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: .7em .8em;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}
form.contact-form textarea { min-height: 110px; resize: vertical; }
form.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info-item .icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  z-index: 60;
  font-size: 1.6rem;
}
.whatsapp-float:hover { background: #1ebe5b; text-decoration: none; }

/* Footer */
footer.site-footer {
  background: var(--navy-dark);
  color: #b9c9d9;
  padding: 50px 0 20px;
}
footer.site-footer h4 { color: #fff; font-size: 1rem; }
footer.site-footer a { color: #b9c9d9; }
footer.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: .92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 36px;
  padding-top: 18px;
  font-size: .82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .service-list .grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .topbar-contact { display: none; }
  .nav-toggle { display: block; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px 20px;
    gap: 4px;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav .dropdown-menu { position: static; box-shadow: none; margin-top: 4px; display: none; }
  nav.main-nav .dropdown.open .dropdown-menu { display: block; }
  .grid-4, .grid-3, .grid-2, .service-list .grid { grid-template-columns: 1fr; }
  .hero { padding: 44px 0; }
  form.contact-form .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
