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

:root {
  --sky: #4fa8d8;
  --sky-mid: #6dbde8;
  --sky-light: #b8ddf2;
  --sky-pale: #e8f5fc;
  --white: #ffffff;
  --navy: #1a3a4a;
  --text: #2c4a5a;
  --text-light: #5a7a8a;
  --silver-dark: #8fa8b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sky-light);
  padding: 0 5%; display: flex; align-items: center;
  justify-content: space-between; height: 70px;
  box-shadow: 0 2px 20px rgba(79,168,216,0.1);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 50px; width: auto; }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--sky); line-height: 1.2; }
.nav-brand span { display: block; font-size: 0.62rem; font-family: 'Nunito', sans-serif; font-weight: 600; color: var(--silver-dark); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.03em; transition: color 0.2s; position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--sky); transform: scaleX(0); transition: transform 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--sky); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { background: var(--sky) !important; color: white !important; padding: 9px 22px; border-radius: 25px; box-shadow: 0 4px 15px rgba(79,168,216,0.35); transition: all 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,58,74,0.3) !important; }

/* HAMBURGER */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav-mobile { display: none; flex-direction: column; background: white; border-top: 1px solid var(--sky-light); padding: 1rem 5%; }
.nav-mobile a { padding: 0.75rem 0; text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.95rem; border-bottom: 1px solid var(--sky-pale); display: block; }
.nav-mobile a:last-child { border-bottom: none; color: var(--sky); }
.nav-mobile.open { display: flex; }

/* BUTTONS */
.btn-primary { background: var(--sky); color: white; padding: 14px 32px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all 0.25s; box-shadow: 0 6px 25px rgba(79,168,216,0.4); display: inline-block; }
.btn-primary:hover { background: var(--navy); color: white; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(26,58,74,0.25); }
.btn-secondary { background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); color: white; padding: 14px 32px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.4); transition: all 0.25s; display: inline-block; }
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: white; padding: 14px 32px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all 0.25s; box-shadow: 0 6px 25px rgba(26,58,74,0.3); display: inline-block; }
.btn-navy:hover { background: var(--sky); transform: translateY(-2px); }

/* SECTIONS */
section { padding: 6rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky); margin-bottom: 0.75rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 1.25rem; }
.section-sub { font-size: 1rem; line-height: 1.8; color: var(--text-light); max-width: 600px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* PAGE HERO */
.page-hero { min-height: 340px; position: relative; display: flex; align-items: flex-end; padding: 70px 5% 3.5rem; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,58,74,0.82) 0%, rgba(26,58,74,0.6) 60%, rgba(79,168,216,0.25) 100%); z-index: 1; }
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; width: 100%; }
.page-hero-badge { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); color: white; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.3); margin-bottom: 1rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: white; line-height: 1.1; text-shadow: 0 2px 20px rgba(0,0,0,0.3); margin-bottom: 0.75rem; }
.page-hero h1 em { font-style: normal; color: var(--sky-light); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 560px; line-height: 1.7; }

/* STATS BAR */
.stats-bar { background: var(--navy); padding: 1.8rem 5%; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; }
.stat { text-align: center; padding: 0.5rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.1); flex: 1; }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--sky-light); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 5px; }

/* FOOTER */
footer { background: #0f2535; color: rgba(255,255,255,0.65); padding: 3.5rem 5% 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-logo img { height: 52px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: white; }
.footer-brand span { display: block; font-size: 0.6rem; font-family: 'Nunito', sans-serif; color: var(--sky-light); letter-spacing: 0.1em; }
.footer-tagline { font-size: 0.88rem; color: var(--sky-light); font-style: italic; margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-col-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--sky-light); }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.87rem; color: rgba(255,255,255,0.55); }
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--sky-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 4rem 5%; }
  .page-hero { min-height: 260px; }
}
@media (max-width: 580px) {
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.75rem; }
  .stat:last-child { border-bottom: none; }
}
