/* ===== Design System ===== */
:root {
  --navy: #1B2A4A;
  --navy-dark: #111D35;
  --gold: #E8A824;
  --gold-light: #F5C04A;
  --red: #C41E2A;
  --white: #FFFFFF;
  --light-bg: #F5F5F5;
  --dark-text: #1A1A1A;
  --gray-text: #666666;
  --border-color: #E0E0E0;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.18);
  --radius: 8px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  color: var(--navy);
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray-text);
  margin-top: 20px;
  font-size: 1.1rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,168,36,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

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

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,42,74,0.4);
}

/* ===== Header / Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  transition: height 0.3s ease;
}

.header.scrolled .container {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.logo-icon {
  flex-shrink: 0;
  transition: var(--transition);
}

.logo-icon img {
  height: 90px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .logo-icon img {
  height: 52px;
}

.logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.4;
  transition: var(--transition);
}

.header.scrolled .logo span {
  font-size: 0.85rem;
  letter-spacing: 1px;
}

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

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-links .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.hero-video-bg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(17, 29, 53, 0.7) 0%,
    rgba(17, 29, 53, 0.5) 50%,
    rgba(17, 29, 53, 0.8) 100%
  );
  z-index: 1;
}

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

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content .hero-logo {
  height: 280px;
  width: auto;
  margin: 0 auto 25px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== About Section ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  color: var(--navy);
  margin-bottom: 20px;
}

.about-text h2 span {
  color: var(--gold);
}

.about-text p {
  color: var(--gray-text);
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-text .highlight-box {
  background: var(--light-bg);
  border-left: 4px solid var(--gold);
  padding: 20px 25px;
  margin: 25px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-text .highlight-box p {
  color: var(--navy);
  font-weight: 500;
  margin: 0;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border: 4px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

/* ===== Programs Section ===== */
.programs {
  padding: 100px 0;
  background: var(--light-bg);
}

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

.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.program-card-icon {
  background: var(--navy);
  padding: 30px;
  text-align: center;
  position: relative;
}

.program-card-icon i {
  font-size: 2.5rem;
  color: var(--gold);
}

.program-card-icon::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid var(--navy);
}

.program-card-body {
  padding: 35px 25px 25px;
  text-align: center;
}

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

.program-card-body p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.program-card-body .card-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 15px;
}

/* ===== Gallery Section ===== */
.gallery {
  padding: 100px 0;
  background: var(--navy-dark);
}

.gallery .section-title h2 {
  color: var(--white);
}

.gallery .section-title h2::after {
  background: var(--gold);
}

.gallery .section-title p {
  color: rgba(255,255,255,0.6);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

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

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27,42,74,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

.gallery-item.video-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(232,168,36,0.9);
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item.video-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  border-left: 18px solid var(--white);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  z-index: 3;
}

/* ===== Why Choose Us ===== */
.why-us {
  padding: 100px 0;
  padding-bottom: 150px;
  background: var(--light-bg);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.why-us-item {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-us-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.why-us-item h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-us-item p {
  color: var(--gray-text);
  line-height: 1.8;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .why-us {
    padding: 60px 0;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

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

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border: 60px solid rgba(232,168,36,0.08);
  border-radius: 50%;
}

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

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Stats Bar ===== */
.stats {
  padding: 60px 0;
  background: var(--gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--navy);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer .logo-icon img {
  height: 55px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}

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

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

.footer-col ul li a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
  font-size: 0.85rem;
}

/* ===== Gear Section ===== */
.gear-section {
  padding: 100px 0;
}

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

.gear-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.gear-card-image {
  background: var(--light-bg);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  overflow: hidden;
}

.gear-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gear-card-body {
  padding: 25px;
}

.gear-card-body h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.gear-card-body p {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.gear-price {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.btn-block {
  display: block;
  text-align: center;
  width: 100%;
  padding: 12px;
}

/* Gear Carousel */
.gear-carousel {
  position: relative;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-track img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-track img.active {
  opacity: 1;
  position: relative;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(27,42,74,0.7);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(27,42,74,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dots .dot.active {
  background: var(--gold);
}

.gear-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: var(--light-bg);
  border-radius: var(--radius);
}

.gear-cta p {
  color: var(--gray-text);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .gear-section { padding: 60px 0; }
  .gear-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gear-colours-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== Page Banner ===== */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border: 40px solid rgba(232,168,36,0.08);
  border-radius: 50%;
}

.page-banner::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  border: 30px solid rgba(232,168,36,0.06);
  border-radius: 50%;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2.8rem;
  text-transform: uppercase;
}

.page-banner .breadcrumb {
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  font-size: 0.95rem;
}

.page-banner .breadcrumb a {
  color: var(--gold);
}

.page-banner .breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== FAQ Section ===== */
.faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  gap: 15px;
}

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

.faq-question h3 {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}

.faq-question .faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--navy);
}

.faq-item.active .faq-question .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 20px 25px 20px;
  color: var(--gray-text);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ===== Contact Section ===== */
.contact {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  color: var(--navy);
  margin-bottom: 15px;
}

.contact-info > p {
  color: var(--gray-text);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--light-bg);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(5px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.contact-card h4 {
  color: var(--navy);
  margin-bottom: 5px;
}

.contact-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

.wechat-card {
  flex-wrap: wrap;
}

.wechat-qr {
  width: 100%;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.wechat-qr img {
  max-width: 160px;
  height: auto;
  border-radius: var(--radius);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--light-bg);
}

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

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

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

.contact-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
}

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

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

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

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

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  z-index: 10000;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

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

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }

  /* Mobile Header & Logo */
  .header .container {
    height: 80px;
  }
  .header.scrolled .container {
    height: 64px;
  }
  .logo-icon img {
    height: 65px;
  }
  .header.scrolled .logo-icon img {
    height: 44px;
  }
  .logo span {
    font-size: 1.1rem;
  }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 500px;
  }

  .hero-content .hero-logo {
    height: 180px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* About */
  .about {
    padding: 60px 0;
  }

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

  .about-image::after {
    display: none;
  }

  /* Programs */
  .programs {
    padding: 60px 0;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Gallery */
  .gallery {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* CTA */
  .cta-banner {
    padding: 60px 0;
  }

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

  /* Contact */
  .contact {
    padding: 60px 0;
  }

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

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Page Banner */
  .page-banner {
    padding: 120px 0 60px;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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