@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07930;
  --navy: #1B3A5C;
  --navy-dark: #0F2540;
  --navy-light: #2A5080;
  --cream: #FAF6EE;
  --warm-white: #FFFDF7;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --border: #E5D9C0;
  --shadow: 0 4px 24px rgba(27,58,92,0.10);
  --shadow-lg: 0 12px 48px rgba(27,58,92,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,37,64,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(15,37,64,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem; text-decoration: none;
}
.nav-logo svg { width: 44px; height: 44px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--gold-light); line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.7rem; color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem; list-style: none;
}
.nav-links a {
  display: block; padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  border-radius: 6px; transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  background: rgba(201,168,76,0.12);
}
.burger {
  display: none; background: none; border: none;
  color: white; cursor: pointer; padding: 0.5rem;
}
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(15,37,64,0.98); z-index: 999;
  flex-direction: column; padding: 2rem 1.5rem; gap: 0.5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-size: 1.1rem; font-weight: 500;
  padding: 1rem 1.25rem; border-radius: 10px;
  border: 1px solid rgba(201,168,76,0.15);
  transition: all 0.2s ease;
}
.mobile-nav a:hover {
  background: rgba(201,168,76,0.12);
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.35);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 120px 1.5rem 60px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light); padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white; font-weight: 700; line-height: 1.2;
  max-width: 700px; margin: 0 auto 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.7); font-size: 1.05rem;
  max-width: 600px; margin: 0 auto;
}

/* SECTIONS */
.section { padding: 80px 1.5rem; }
.section-alt { background: var(--cream); }
.container { max-width: 1160px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold-dark); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy-dark); font-weight: 700; line-height: 1.25;
  margin-bottom: 1.5rem;
}
.section-desc {
  color: var(--text-muted); font-size: 1rem; line-height: 1.7;
  max-width: 700px; margin-bottom: 2.5rem;
}

/* CARDS */
.card {
  background: white; border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden; transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}
.card-body { padding: 1.75rem; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.4rem; margin-bottom: 1.25rem;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy-dark); margin-bottom: 0.6rem;
}
.card-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* DIVIDER */
.gold-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px; margin-bottom: 2rem;
}

/* BADGE */
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.75rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
}
.badge-gold { background: rgba(201,168,76,0.12); color: var(--gold-dark); border: 1px solid rgba(201,168,76,0.3); }
.badge-navy { background: rgba(27,58,92,0.08); color: var(--navy); border: 1px solid rgba(27,58,92,0.15); }
.badge-green { background: rgba(34,197,94,0.08); color: #15803d; border: 1px solid rgba(34,197,94,0.2); }

/* BUTTON */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white; box-shadow: 0 4px 15px rgba(27,58,92,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,58,92,0.4); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: white; box-shadow: 0 4px 15px rgba(160,121,48,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(160,121,48,0.45); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy); 
}
.btn-outline:hover { background: var(--navy); color: white; }

/* FOOTER */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 1.5rem 30px;
}
.footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: white; margin-bottom: 0.75rem;
}
.footer-brand-text { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--gold); color: white; border-color: var(--gold); }
.footer-col-title { font-size: 0.8rem; font-weight: 700; color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.6rem; }
.footer-contact-item i { color: var(--gold-light); margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 0.5rem;
}

/* SCROLL TOP */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy); color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
  display: none; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-lg);
  transition: all 0.25s ease; font-size: 1rem;
}
#scrollTop.visible { display: flex; }
#scrollTop:hover { background: var(--gold-dark); color: white; transform: translateY(-3px); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 60px 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
