:root {
  --navy: #0c1e3c;
  --navy-light: #152a4a;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --white: #ffffff;
  --cream: #f8f6f1;
  --text: #5a6a7e;
  --text-dark: #2c3e50;
  --shadow: 0 25px 60px rgba(12, 30, 60, 0.12);
  --radius: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', serif;
  color: var(--navy);
  line-height: 1.2;
}

/* Navbar */
.navbar {
  padding: 1.25rem 0;
  transition: all 0.4s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(12, 30, 60, 0.08);
}

.navbar-brand {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy) !important;
}

.navbar-brand span { color: var(--gold); }

.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  font-size: 0.9rem;
  margin: 0 0.5rem;
}

.btn-navy {
  background: var(--navy);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.btn-navy:hover {
  background: var(--navy-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  padding: 0.8rem 2rem;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: white;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1200&q=80') center/cover no-repeat;
  opacity: 0.12;
}

.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--gold); }

.hero-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
section { padding: 100px 0; }

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

/* Areas */
.area-card {
  background: white;
  border: 1px solid #e8ecf0;
  padding: 2.5rem 2rem;
  transition: all 0.4s;
  height: 100%;
  border-top: 3px solid transparent;
}

.area-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.area-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.area-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* About */
.about { background: var(--cream); }

.about-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-list {
  list-style: none;
  margin-top: 2rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e8ecf0;
}

.about-list li i { color: var(--gold); }

/* Team */
.team-card {
  text-align: center;
  background: white;
  border: 1px solid #e8ecf0;
  overflow: hidden;
  transition: all 0.4s;
}

.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s;
}

.team-card:hover img { filter: grayscale(0%); }

.team-body { padding: 1.75rem; }

.team-body h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }

.team-role {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-oab {
  font-size: 0.8rem;
  color: var(--text);
  margin-top: 0.5rem;
}

/* Stats */
.stats-bar {
  background: var(--navy);
  padding: 4rem 0;
  color: white;
}

.stat-item { text-align: center; }

.stat-item .num {
  font-family: 'Libre Baskerville', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.stat-item .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* Why */
.why-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.why-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  min-width: 40px;
}

/* Testimonials */
.testimonial-card {
  background: var(--cream);
  padding: 2.5rem;
  border-left: 4px solid var(--gold);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* FAQ */
.faq-item {
  border: 1px solid #e8ecf0;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: white;
  border: none;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
}

.faq-question:hover { background: var(--cream); }

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  display: none;
  color: var(--text);
}

.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* CTA */
.cta-block {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 4rem 3rem;
  color: white;
  text-align: center;
}

.cta-block h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

/* Contact */
.contact-form {
  background: white;
  border: 1px solid #e8ecf0;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-control, .form-select {
  border: 2px solid #e8ecf0;
  border-radius: 0;
  padding: 0.85rem 1.25rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(12, 30, 60, 0.08);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.25rem;
}

/* Footer */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
}

footer h5 {
  color: white;
  font-family: 'Libre Baskerville', serif;
  margin-bottom: 1.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover { color: var(--gold); }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 576px) {
  section { padding: 70px 0; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .cta-block { padding: 3rem 1.5rem; }
}
