:root {
  --navy: #0b1f3a;
  --navy-2: #12325c;
  --gold: #c9a227;
  --gold-2: #e0b93a;
  --silver: #8a93a3;
  --lean: #2f6f5e;
  --bg: #f5f7fb;
  --text: #243247;
  --muted: #667789;
  --white: #ffffff;
  --line: #e5ebf3;
  --shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--navy-2); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

.topbar {
  background: var(--navy);
  color: #dce6f5;
  font-size: 14px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #dce6f5; }
.topbar a:hover { color: var(--gold-2); }
.topbar .sep { margin: 0 8px; opacity: .6; }

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 700;
}
.brand img {
  height: 58px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.brand-text { line-height: 1.25; }
.brand span { display: block; font-size: 12px; color: var(--muted); font-weight: 500; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: var(--navy);
  font-size: 18px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.search-form {
  display: flex;
  gap: 8px;
}
.search-form input {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 140px;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
}
.btn:hover { background: var(--gold-2); color: var(--navy); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--navy);
}
.btn-light {
  border-color: #fff;
  color: #fff;
}
.btn-light:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); color: #fff; }

.hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
}
.hero-slider { position: relative; z-index: 1; min-height: 220px; }
.hero-slide { display: none; animation: fadeIn .6s ease; }
.hero-slide.active { display: block; }
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 12px;
  max-width: 720px;
}
.hero p {
  max-width: 620px;
  color: #d7e2f3;
  font-size: 1.08rem;
}
.hero-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ticker {
  background: #fff8e8;
  border-bottom: 1px solid #f0e0b0;
  padding: 10px 0;
  color: #7a5a00;
  font-size: 14px;
  overflow: hidden;
}
.ticker-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ticker-label {
  flex: 0 0 auto;
  font-weight: 800;
  color: #8a6d00;
}
.ticker-track-wrap {
  overflow: hidden;
  flex: 1;
}
.ticker-track {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  width: max-content;
  animation: tickerMove 28s linear infinite;
}
.ticker-track a { color: #7a5a00; font-weight: 600; }
.ticker-track .dot { opacity: .5; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 60px 0; }
.section.alt { background: #fff; }
.section-title {
  text-align: center;
  margin-bottom: 36px;
}
.section-title h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 2rem;
}
.section-title p { margin: 0; color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11,31,58,.12);
}
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.badge.gold { background: #fff3cd; color: #8a6d00; }
.badge.silver { background: #eef1f5; color: #4d5664; }
.badge.lean { background: #e5f6f0; color: #1f5a4a; }
.card h3 { margin: 0 0 10px; color: var(--navy); }
.card p { color: var(--muted); margin: 0 0 16px; }
.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f3f6fb;
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 14px;
}

.mini-steps { display: grid; gap: 14px; }
.mini-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.mini-step .num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: 0 0 auto;
}
.mini-step p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  background: linear-gradient(180deg, #16385f, var(--navy));
  color: #fff;
  border-radius: 16px;
  padding: 28px 18px;
  text-align: center;
}
.stat .value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-2);
}
.stat .label { color: #c9d7ea; margin-top: 6px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
}
.about-panel {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.about-panel h3 { color: var(--navy); margin-top: 0; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  margin: 0;
}
.testimonial p { color: var(--muted); font-style: italic; }
.testimonial strong { color: var(--navy); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  background: linear-gradient(135deg, #dce7f7, #f7f1dc);
  border-radius: 14px;
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--navy);
  gap: 8px;
}
.gallery-item i { font-size: 22px; color: var(--gold); }

.zed-section { background: #f3faf6; }
.zed-cta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid #d7ebe0;
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.zed-cta-bar p { margin: 4px 0 0; color: var(--muted); }
.zed-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr .7fr;
  gap: 16px;
}
.zed-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  color: var(--navy);
}
.zed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11,31,58,.12);
  color: var(--navy);
}
.zed-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: #fff;
}
.zed-card-small img {
  object-fit: contain;
  padding: 24px;
  height: 260px;
}
.zed-card span {
  display: block;
  padding: 12px 14px;
  font-weight: 700;
  border-top: 1px solid var(--line);
}
.zed-note {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.zed-note a { font-weight: 700; }

.cta-band {
  background: linear-gradient(135deg, #fff8e8, #eef4ff);
}
.cta-band h2 { color: var(--navy); margin-top: 0; }
.cta-band p { color: var(--muted); }

.page-hero {
  background: linear-gradient(135deg, var(--navy), #1b4a7a);
  color: #fff;
  padding: 42px 0;
}
.page-hero h1 { margin: 0; }
.page-hero p { margin: 8px 0 0; color: #d5e2f5; }
.content-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--navy);
}
.faq-item .answer { padding: 0 18px 16px; color: var(--muted); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}
label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(201,162,39,.35);
  border-color: var(--gold);
}
textarea { min-height: 120px; resize: vertical; }
.field-error { color: #8a1f1f; font-size: 13px; margin-top: 4px; }
.alert {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.alert-success { background: #e8f8ef; color: #176b3a; border: 1px solid #b7e4c7; }
.alert-error { background: #fdecec; color: #8a1f1f; border: 1px solid #f2c0c0; }

.footer {
  background: var(--navy);
  color: #d5e0f0;
  padding: 48px 0 20px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.footer h4 { color: #fff; margin-top: 0; }
.footer a { color: #d5e0f0; display: block; margin: 6px 0; }
.footer a:hover { color: var(--gold-2); }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 13px;
  color: #9db0c9;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
  z-index: 200;
}
.whatsapp-float:hover { transform: translateY(-2px); color: #fff !important; }

@media (max-width: 900px) {
  .cards, .testimonials, .about-grid, .footer-grid, .form-grid, .zed-gallery {
    grid-template-columns: 1fr;
  }
  .zed-card img, .zed-card-small img { height: auto; max-height: 360px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 4%;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
  }
  .nav-links.open { display: flex; }
  .search-form { width: 100%; }
  .search-form input { flex: 1; min-width: 0; }
  .brand span { display: none; }
}
