:root{
  --navy: #132a4d;
  --navy-deep: #0b1c36;
  --navy-soft: rgba(19,42,77,0.06);
  --gold: #c9a227;
  --gold-light: #e3c15c;
  --gold-dim: rgba(201,162,39,0.14);
  --white: #ffffff;
  --paper: #faf9f6;
  --text: #23241f;
  --muted: rgba(35,36,31,0.62);
  --border: rgba(19,42,77,0.12);

  --display: 'Playfair Display', serif;
  --body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---------- Utility top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-info a:hover { color: var(--gold-light); }
.topbar-tag { font-family: var(--display); font-style: italic; color: var(--gold-light); letter-spacing: 0.02em; }

/* ---------- Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
nav.site-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-name span { color: var(--gold); }
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201,162,39,0.3); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(19,42,77,0.25); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Page hero band (inner pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 76px 0 84px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 20px; top: 40px;
  width: 160px; height: 160px;
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 50%;
}
.page-eyebrow {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3rem);
  max-width: 18ch;
  position: relative; z-index: 1;
}
.page-hero p {
  margin-top: 16px;
  max-width: 52ch;
  color: rgba(255,255,255,0.75);
  font-size: 1.02rem;
  position: relative; z-index: 1;
}
.breadcrumb {
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  position: relative; z-index: 1;
}
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Section basics ---------- */
section { position: relative; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.bg-paper { background: var(--paper); }
.bg-navy { background: var(--navy); color: var(--white); }

.eyebrow {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.02rem;
  margin-bottom: 10px;
}
.bg-navy .eyebrow { color: var(--gold-light); }

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.18;
}
.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
}
.bg-navy .section-head p { color: rgba(255,255,255,0.7); }

/* ---------- Buttons row ---------- */
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ================= HOME HERO ================= */
.hero {
  position: relative;
  color: var(--white);
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,28,54,0.94) 0%, rgba(11,28,54,0.82) 42%, rgba(11,28,54,0.45) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 90px 0; max-width: 620px; }
.hero-eyebrow {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
}
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero .lede {
  margin-top: 22px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
}
.hero .btn-row { margin-top: 34px; }
.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.hero-stats div b {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--gold-light);
}
.hero-stats div span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}

/* ================= INTRO ================= */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-media { position: relative; }
.intro-media img { border-radius: 3px; width: 100%; height: 460px; object-fit: cover; }
.intro-media .badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 20px 26px;
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(19,42,77,0.18);
}
.intro-media .badge b { display: block; font-family: var(--display); font-size: 1.8rem; }
.intro-media .badge span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.intro-text h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.intro-text p { color: var(--muted); margin-bottom: 16px; }
.intro-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.intro-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.intro-list li svg { flex-shrink: 0; margin-top: 3px; }

/* ================= WHY CHOOSE US ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.why-card {
  background: var(--white);
  padding: 34px 26px;
  text-align: left;
}
.why-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: 50%;
  margin-bottom: 18px;
}
.why-card h3 { font-family: var(--display); font-size: 1.08rem; margin-bottom: 8px; }
.why-card p { font-size: 0.87rem; color: var(--muted); }

/* ================= SERVICES GRID ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(19,42,77,0.12); }
.service-media { height: 190px; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 24px 24px 28px; }
.service-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.service-body h3 { font-family: var(--display); font-size: 1.18rem; margin-bottom: 8px; }
.service-body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { color: var(--gold); }

/* ================= TESTIMONIALS ================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: 3px;
  position: relative;
}
.testi-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p.quote { font-size: 0.96rem; color: var(--text); margin-bottom: 22px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
}
.testi-person b { display: block; font-size: 0.9rem; }
.testi-person span { font-size: 0.78rem; color: var(--muted); }

/* ================= CTA BAND ================= */
.cta-band {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 64px 0;
}
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  max-width: 18ch;
}
.cta-band p { margin-top: 8px; font-size: 0.95rem; opacity: 0.85; }

/* ================= CONTACT PREVIEW / BLOCKS ================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 30px 26px;
  border-radius: 3px;
  text-align: center;
}
.contact-icon {
  width: 50px; height: 50px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-card h3 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 6px; }
.contact-card p { font-size: 0.9rem; color: var(--muted); }
.contact-card a { color: var(--navy); font-weight: 600; }
.contact-card a:hover { color: var(--gold); }

/* ================= FORM ================= */
.form-wrap {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 3px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 0.92rem;
  border-radius: 2px;
  color: var(--text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 14px; }
.form-success {
  display: none;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  color: var(--navy);
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 0.9rem;
  margin-top: 18px;
}
.form-success.show { display: block; }

/* ================= MAP ================= */
.map-frame {
  width: 100%;
  height: 380px;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ================= VALUES / MISSION (About) ================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 30px 18px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
}
.value-card .value-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.value-card h3 { font-family: var(--display); font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.83rem; color: var(--muted); }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card {
  background: var(--navy);
  color: var(--white);
  padding: 40px;
  border-radius: 3px;
}
.mv-card .mv-icon { color: var(--gold-light); margin-bottom: 18px; }
.mv-card h3 { font-family: var(--display); font-size: 1.35rem; margin-bottom: 14px; }
.mv-card p { color: rgba(255,255,255,0.78); font-size: 0.95rem; }

/* ================= SERVICE DETAIL (Services page) ================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-media { order: 2; }
.service-detail.reverse .service-detail-text { order: 1; }
.service-detail-media img { width: 100%; height: 340px; object-fit: cover; border-radius: 3px; }
.service-detail-text .service-tag {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.service-detail-text h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin-bottom: 16px;
}
.service-detail-text p { color: var(--muted); margin-bottom: 20px; }
.service-detail-text ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.service-detail-text ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; }
.service-detail-text ul li svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

/* ================= FOOTER ================= */
footer.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .brand-mark { width: 36px; height: 36px; }
.footer-brand-name { font-family: var(--display); font-weight: 700; color: var(--white); font-size: 1.1rem; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--display);
  font-size: 0.98rem;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col p { font-size: 0.88rem; margin-bottom: 10px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ================= WHATSAPP FLOAT ================= */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  z-index: 200;
  color: var(--white);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 26px rgba(0,0,0,0.25), 0 0 0 10px rgba(37,211,102,0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(1, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 30px; padding: 48px 0; }
  .service-detail.reverse .service-detail-media,
  .service-detail.reverse .service-detail-text { order: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .topbar-info { font-size: 0.76rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  nav.site-nav { padding: 12px 20px; }
}

/* Nav mobile panel */
.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 150;
  padding: 90px 32px 32px;
}
.mobile-panel.open { display: flex; flex-direction: column; gap: 26px; }
.mobile-panel a { color: var(--white); font-family: var(--display); font-size: 1.4rem; }
.mobile-panel .btn { align-self: flex-start; margin-top: 10px; }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none; color: var(--white);
  font-size: 1.6rem; cursor: pointer;
}
