@import url('https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --navy:       #1C2E5E;
  --navy-dark:  #111E42;
  --navy-light: #E8EDF8;
  --gold:       #C8893A;
  --gold-light: #F5ECD8;
  --white:      #FFFFFF;
  --grey-100:   #F4F6FA;
  --grey-200:   #E2E7F0;
  --grey-400:   #9AA3B8;
  --grey-700:   #3D4560;
  --text:       #1A1F36;

  --font-title: 'Chelsea Market', cursive;
  --font-body:  'Outfit', sans-serif;

  --radius:     6px;
  --shadow-sm:  0 2px 8px rgba(28,46,94,.08);
  --shadow-md:  0 4px 20px rgba(28,46,94,.13);
  --transition: .2s ease;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-title);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding: 36px 0 56px;
}
.main-content {}
.sidebar      {}

/* ── TOP BAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar a { color: rgba(255,255,255,.7); }
.topbar a:hover { color: var(--white); }
.topbar-right { display: flex; gap: 20px; align-items: center; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  height: 52px;
  width: auto;
}
.logo-text .logo-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}
.logo-text .logo-sub {
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--grey-700);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--navy-light);
  color: var(--navy);
}
.site-nav a.nav-contact {
  background: var(--navy);
  color: var(--white);
  margin-left: 8px;
}
.site-nav a.nav-contact:hover { background: var(--gold); color: var(--white); }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  background: var(--grey-100);
  border-bottom: 1px solid var(--grey-200);
  font-size: .8rem;
  padding: 9px 0;
  color: var(--grey-400);
}
.breadcrumb a { color: var(--navy); }
.breadcrumb span { margin: 0 6px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,30,66,.88) 0%, rgba(28,46,94,.6) 60%, rgba(28,46,94,.3) 100%);
}
.hero-inner {
  position: relative;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: #a86e28; border-color: #a86e28; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--white); }

/* ── SECTION HEADING ─────────────────────────────────────── */
.section-head {
  border-left: 4px solid var(--gold);
  padding-left: 14px;
  margin-bottom: 24px;
}
.section-head h2 { margin-bottom: 4px; }
.section-head p  { color: var(--grey-400); font-size: .9rem; margin: 0; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-body { padding: 20px; }
.card-title { font-family: var(--font-title); font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.card-text  { font-size: .88rem; color: var(--grey-700); line-height: 1.6; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* ── CONTENT BLOCKS ──────────────────────────────────────── */
.content-block {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.content-block + .content-block { margin-top: 0; }

.gold-block {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.gold-block p { color: var(--grey-700); }

.navy-block {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.navy-block h2,
.navy-block h3 { color: var(--white); }
.navy-block p  { color: rgba(255,255,255,.8); }

/* ── CHECKLIST ───────────────────────────────────────────── */
.checklist { margin: 16px 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-200);
  font-size: .93rem;
  color: var(--grey-700);
}
.checklist li:last-child { border-bottom: none; }
.checklist li svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

/* ── STEPS ───────────────────────────────────────────────── */
.steps { margin: 24px 0; }
.step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-200);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1rem;
  flex-shrink: 0;
}
.step-body h3 { margin-bottom: 6px; }
.step-body p  { font-size: .9rem; color: var(--grey-700); margin: 0; }

/* ── SIDEBAR ─────────────────────────────────────────────── */
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-box-head {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-title);
  font-size: .95rem;
  padding: 12px 18px;
}
.sidebar-box-body { padding: 18px; }
.sidebar-box-body p,
.sidebar-box-body li { font-size: .88rem; color: var(--grey-700); }
.sidebar-box-body li { padding: 6px 0; border-bottom: 1px solid var(--grey-100); }
.sidebar-box-body li:last-child { border-bottom: none; }
.sidebar-box-body a { color: var(--navy); font-weight: 500; }
.sidebar-box-body a:hover { color: var(--gold); }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .88rem;
}
.contact-info-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.contact-info-item strong { display: block; color: var(--navy); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: 20px; }

/* ── FORM ────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.alert {
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 18px;
}
.alert-success { background: #edf7ed; color: #2d6a2d; border-left: 4px solid #4caf50; }
.alert-error   { background: #fdecea; color: #8b1a1a; border-left: 4px solid #e53935; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding: 52px 0 0;
  margin-top: 56px;
  font-size: .85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text .logo-name { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo-text .logo-sub  { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,.5); margin-top: 14px; font-size: .82rem; line-height: 1.65; }

.footer-col h4 {
  font-family: var(--font-title);
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col li { padding: 4px 0; }
.footer-col a  { color: rgba(255,255,255,.6); font-size: .83rem; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--white); }

/* ── HAMBURGER (mobile) ──────────────────────────────────── */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle svg { display: block; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar   { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    padding: 12px 0;
    border-top: 1px solid var(--grey-200);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ── WHATSAPP WIDGET ─────────────────────────────────────── */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-bubble {
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  border: none;
}
.wa-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.55);
  color: white;
}
.wa-bubble svg { display: block; }

.wa-tooltip {
  background: var(--navy);
  color: white;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.wa-widget:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse animation */
.wa-bubble::after {
  content: '';
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

@media (max-width: 640px) {
  .wa-widget { bottom: 18px; right: 18px; }
  .wa-bubble  { width: 52px; height: 52px; }
}