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

:root {
  --navy: #0b1c2c;
  --navy2: #122333;
  --teal: #1a8fa0;
  --teal-light: #22b8cc;
  --gold: #c8a84b;
  --gold-light: #e0c060;
  --light: #f2f6f9;
  --white: #ffffff;
  --text: #1e2d3d;
  --muted: #5a6e82;
  --border: #dde6ef;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 68px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; padding: 0.4rem 0; }
.nav-logo img { height: 44px; width: auto; display: block; object-fit: contain; flex-shrink: 0; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 1.35rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1.1; }
.nav-logo-sub { color: rgba(255,255,255,0.45); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.06em; padding: 0 0.9rem;
  height: 68px; display: flex; align-items: center;
  transition: color 0.2s, background 0.2s; text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(255,255,255,0.04); }
.dropdown {
  display: none; position: absolute; top: 68px; left: 0;
  background: var(--navy2); min-width: 230px;
  border-top: 2px solid var(--teal); z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.dropdown a { height: auto; padding: 0.7rem 1.3rem; font-size: 0.76rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-links > li:hover .dropdown { display: block; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #153347 70%, var(--teal) 100%);
  padding: 4rem 2.5rem 3.5rem; position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); font-weight: 700; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-top: 0.5rem; max-width: 560px; }
.breadcrumb { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

/* ── SECTION ── */
section { padding: 5rem 2.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 0.4rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 0.75rem; line-height: 1.2; }
.section-lead { color: var(--muted); font-size: 0.97rem; max-width: 640px; margin-bottom: 2.5rem; }
.gold-bar { width: 48px; height: 3px; background: var(--gold); margin-bottom: 2rem; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--teal); padding: 2rem 1.8rem; border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(0,0,0,0.12); }
.card-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 0.6rem; }
.card p, .card li { font-size: 0.88rem; color: var(--muted); }
.card ul { list-style: none; }
.card ul li { padding: 0.22rem 0; display: flex; align-items: flex-start; gap: 0.5rem; }
.card ul li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }

/* ── DARK SECTION ── */
.dark-section { background: var(--navy); }
.dark-section .section-tag { color: var(--gold); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-lead { color: rgba(255,255,255,0.6); }
.dark-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--gold); padding: 2rem 1.5rem; border-radius: 3px;
}
.dark-card h3 { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; }
.dark-card ul { list-style: none; }
.dark-card ul li { color: rgba(255,255,255,0.72); font-size: 0.86rem; padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }

/* ── LIGHT SECTION ── */
.light-section { background: var(--light); }

/* ── BUTTON ── */
.btn {
  display: inline-block; padding: 0.8rem 2rem; border-radius: 2px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: all 0.2s; border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-light); transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: #06111c; color: rgba(255,255,255,0.55); }
.footer-top { padding: 3.5rem 2.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; max-width: 1100px; margin: 0 auto; }
.footer-brand .nav-logo-text { font-size: 1.5rem; display: block; margin-bottom: 0.25rem; }
.footer-brand p { font-size: 0.83rem; line-height: 1.7; margin-top: 0.75rem; color: rgba(255,255,255,0.45); }
.footer-col h4 { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.2rem 2.5rem; max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; font-size: 0.78rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: var(--gold); color: var(--navy); }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  color: var(--text); transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,143,160,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── TABLE ── */
.styled-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.styled-table th { background: var(--navy); color: var(--gold); text-align: left; padding: 0.9rem 1rem; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.styled-table td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); color: var(--muted); }
.styled-table tr:hover td { background: var(--light); }

/* ── ACCORDION ── */
.accordion-item { border: 1px solid var(--border); border-radius: 3px; margin-bottom: 0.75rem; overflow: hidden; }
.accordion-header { padding: 1.1rem 1.3rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--white); font-weight: 600; font-size: 0.92rem; color: var(--navy); transition: background 0.2s; }
.accordion-header:hover { background: var(--light); }
.accordion-header.open { background: var(--navy); color: var(--gold); }
.accordion-body { padding: 0 1.3rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.accordion-body.open { max-height: 500px; padding: 1rem 1.3rem; }
.accordion-body p, .accordion-body li { font-size: 0.88rem; color: var(--muted); }
.accordion-body ul { padding-left: 1rem; }

/* ── STAT BAR ── */
.stat-bar { background: var(--teal); padding: 2.5rem 2.5rem; }
.stat-bar-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--white); font-weight: 700; line-height: 1; }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.3rem; }

/* ── TWO-COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.img-block { border-radius: 4px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
.img-block img { width: 100%; display: block; }
.img-placeholder { background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%); height: 320px; display: flex; align-items: center; justify-content: center; }
.img-placeholder span { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: rgba(255,255,255,0.3); }

/* ── HIGHLIGHT BOX ── */
.highlight-box { background: linear-gradient(135deg, var(--navy) 0%, #153347 100%); color: var(--white); padding: 2.5rem; border-radius: 4px; border-left: 4px solid var(--gold); }
.highlight-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 0.75rem; }
.highlight-box p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.animate { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* ── RESPONSIVE ── */
@media(max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 640px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 3rem 1.25rem; }
  .footer-top { grid-template-columns: 1fr; padding: 2rem 1.25rem; }
  .footer-bottom { padding: 1rem 1.25rem; flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
}
