@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #0A2463;
  --accent: #E84855;
  --gold: #F4A261;
  --light-bg: #F7F9FC;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --card-shadow: 0 4px 24px rgba(10,36,99,0.10);
  --radius: 14px;
  --nav-h: 72px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; }

h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--primary);
  height: var(--nav-h);
  display: flex; align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-inner { display: flex; align-items: center; gap: 32px; width: 100%; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 40px; height: 40px; background: var(--accent);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 18px; font-weight: 800; color: white;
}
.logo-text { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: white; }
.logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.12); }
.nav-cta {
  background: var(--accent) !important; color: white !important;
  padding: 9px 20px !important; border-radius: 8px !important;
}
.nav-cta:hover { background: #c73040 !important; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 10px; font-family: var(--font-body);
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s;
  border: none;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: #c73040; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,72,85,0.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--gold); color: var(--primary); transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 12px; }

/* ─── SECTION HEADERS ─── */
.section-tag {
  display: inline-block; background: rgba(10,36,99,0.08);
  color: var(--primary); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); color: var(--primary); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--muted); max-width: 560px; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-subtitle { margin: 0 auto; }

/* ─── CARDS ─── */
.card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--card-shadow); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,36,99,0.16); }

/* ─── BADGE ─── */
.badge {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 600;
}
.badge-red { background: #fef2f2; color: #991b1b; }
.badge-blue { background: #eff6ff; color: var(--primary); }
.badge-gold { background: #fffbeb; color: #92400e; }
.badge-green { background: #f0fdf4; color: #166534; }

/* ─── FOOTER ─── */
.footer { background: var(--primary); color: white; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.55); font-size: 13px; }

/* ─── STAR RATING ─── */
.stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }

/* ─── FORM INPUTS ─── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: var(--font-body); font-size: 15px;
  color: var(--text); background: white; transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
}

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.gap-4 { gap: 4px; }
.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ─── RESPONSIVE ─── */
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
