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

:root {
  --navy: #0d1b2a;
  --navy-light: #1b2d45;
  --navy-mid: #162238;
  --gold: #f0b323;
  --gold-dark: #d9a01e;
  --gold-light: #f5c84c;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --success: #28a745;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-left a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left a:hover {
  color: var(--gold);
}

.top-bar-right {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* ── Header / Nav ── */
.header {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  color: var(--white);
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-light);
  min-width: 200px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 100;
  padding: 8px 0;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: rgba(240,179,35,0.1);
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(240,179,35,0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

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

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(27,45,69,0.85) 50%, rgba(13,27,42,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(240,179,35,0.15);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(240,179,35,0.3);
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 900;
}

.hero h1 .highlight {
  color: var(--gold);
  display: block;
}

.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-small {
  min-height: 350px;
}

.hero-small .hero-content {
  padding: 60px 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-small h1 {
  font-size: 2.5rem;
}

/* ── Info Bar ── */
.info-bar {
  background: var(--gold);
  padding: 14px 0;
}

.info-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
}

.info-item i {
  font-size: 1.1rem;
}

/* ── Section Styles ── */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header h2 .highlight {
  color: var(--gold);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* ── Program Cards ── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--medium-gray);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.program-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.program-card-img i {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.6;
}

.program-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.program-card-body {
  padding: 28px;
}

.program-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.program-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.program-card-body .btn {
  width: 100%;
  justify-content: center;
}

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(240,179,35,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold);
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.feature-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* ── Journey Steps ── */
.journey-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 20px 0;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: var(--medium-gray);
}

.journey-step {
  text-align: center;
  position: relative;
  flex: 1;
  padding: 0 10px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(240,179,35,0.3);
}

.journey-step h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.journey-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--medium-gray);
  position: relative;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
}

.review-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.review-author-info h5 {
  font-size: 0.9rem;
  color: var(--navy);
}

.review-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--medium-gray);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 30px;
}

.google-badge img {
  height: 20px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(240,179,35,0.05);
}

.cta-banner h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-about .logo {
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.footer h4 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 4px;
  min-width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-cards {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--medium-gray);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.contact-info-card i {
  font-size: 1.5rem;
  color: var(--gold);
  min-width: 30px;
  text-align: center;
  margin-top: 2px;
}

.contact-info-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-info-card a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--medium-gray);
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.contact-form > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,179,35,0.15);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--medium-gray);
  margin-top: 20px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ── Program Detail Pages ── */
.program-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.program-main h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.program-main h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 32px 0 16px;
}

.program-main p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.learn-list {
  list-style: none;
  margin: 16px 0 24px;
}

.learn-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--medium-gray);
}

.learn-list li:last-child {
  border-bottom: none;
}

.learn-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.program-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--medium-gray);
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.sidebar-detail {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--medium-gray);
  font-size: 0.9rem;
}

.sidebar-detail:last-child {
  border-bottom: none;
}

.sidebar-detail span:first-child {
  color: var(--text-muted);
}

.sidebar-detail span:last-child {
  font-weight: 600;
  color: var(--navy);
}

.sidebar-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

/* ── Requirements ── */
.requirements-list {
  list-style: none;
  margin: 16px 0;
}

.requirements-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--medium-gray);
}

.requirements-list li:last-child {
  border-bottom: none;
}

.requirements-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 14px;
}

/* ── Instructors ── */
.instructor-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--medium-gray);
  margin-bottom: 30px;
}

.instructor-img {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.instructor-img i {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.5;
}

.instructor-info h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.instructor-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.instructor-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.instructor-stats {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}

.instructor-stat {
  text-align: center;
  padding: 12px 20px;
  background: var(--light-gray);
  border-radius: 8px;
}

.instructor-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
}

.instructor-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── About Page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image i {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--medium-gray);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.value-card h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0);
  transition: background 0.3s;
}

.gallery-item:hover::after {
  background: rgba(13,27,42,0.2);
}

.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 300;
  line-height: 1;
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-nav:hover {
  background: rgba(240,179,35,0.3);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Responsive ── */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-detail {
    grid-template-columns: 1fr;
  }

  .program-sidebar {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .instructor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .instructor-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo img {
    height: 40px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .logo-text span {
    font-size: 0.55rem;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
    position: relative;
  }

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    font-size: 1.05rem;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav .btn-nav {
    margin-top: 20px;
    padding: 16px 28px;
    text-align: center;
    border-bottom: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 4px;
    margin-bottom: 0;
  }

  .nav-dropdown > a {
    pointer-events: none;
    border-bottom: none;
    padding-bottom: 8px;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    padding: 0 0 8px 20px;
    margin: 0;
    background: transparent;
    min-width: unset;
    border-radius: 0;
  }

  .nav-dropdown .dropdown-menu a {
    padding: 10px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    border-bottom: none;
  }

  .nav-dropdown .dropdown-menu a:hover,
  .nav-dropdown .dropdown-menu a.active {
    color: var(--gold);
  }

  .hero {
    min-height: 420px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-small {
    min-height: 280px;
  }

  .hero-small h1 {
    font-size: 1.6rem;
  }

  .hero-small .hero-content {
    padding: 40px 0;
  }

  .hero-content {
    padding: 50px 0;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .hero-sub {
    font-size: 0.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    font-size: 0.85rem;
    padding: 14px 24px;
  }

  .info-bar {
    padding: 10px 0;
  }

  .info-bar .container {
    flex-direction: column;
    gap: 6px;
  }

  .info-item {
    font-size: 0.8rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .programs-grid,
  .reviews-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .program-card-body {
    padding: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .feature-item {
    padding: 20px 12px;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .feature-item h4 {
    font-size: 0.9rem;
  }

  .feature-item p {
    font-size: 0.8rem;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-item {
    padding: 20px 12px;
  }

  .journey-steps {
    flex-direction: column;
    gap: 16px;
  }

  .journey-steps::before {
    display: none;
  }

  .journey-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .map-container iframe {
    height: 220px;
  }

  .cta-banner {
    padding: 40px 0;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }

  .cta-banner p {
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .instructor-card {
    padding: 24px;
  }

  .instructor-img {
    width: 160px;
    height: 160px;
  }

  .instructor-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .instructor-stat {
    padding: 10px 14px;
  }

  .sidebar-card {
    padding: 20px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .gallery-lightbox {
    padding: 16px;
  }

  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 2rem;
  }

  .google-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-small h1 {
    font-size: 1.3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .instructor-img {
    width: 130px;
    height: 130px;
  }

  .instructor-info h3 {
    font-size: 1.2rem;
  }

  .program-card-img {
    height: 160px;
  }

  .value-card {
    padding: 24px 16px;
  }
}
