:root {
  --primary-bg: #0A0A0A;
  --section-alt-bg: #111111;
  --accent-cta: #E8C13A; 
  --accent-secondary: #C0392B; 
  --text-primary: #F5F5F5;
  --text-muted: #9A9A9A;
  --card-bg: #1A1A1A;
  --border-divider: #2A2A2A;
  
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Barlow Condensed', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--primary-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .hero-title, .section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag {
  display: inline-block;
  font-family: var(--font-accent);
  color: var(--accent-cta);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-spacing {
  padding: 5rem 0;
}

.text-center { text-align: center; }
.bg-alt { background-color: var(--section-alt-bg); }
.text-red { color: var(--accent-secondary); }

.icon-inline {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-right: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 700;
  cursor: pointer;
}

.btn i { margin-left: 8px; width: 18px; height: 18px; }

.btn-primary {
  background-color: var(--accent-cta);
  color: #000;
  border: 2px solid var(--accent-cta);
}
.btn-primary:hover {
  background-color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-cta);
  border: 2px solid var(--accent-cta);
}
.btn-outline:hover {
  background-color: var(--accent-cta);
  color: #000;
}

.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover {
  background-color: #fff;
  color: #000;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.3rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-admin-link {
  display: block;
  margin-top: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.btn-admin-link:hover {
  opacity: 1;
  color: var(--accent-cta);
}

/* Animations Overlay */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* SECTION 1 - NAV */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}
.navbar.scrolled {
  padding: 1rem 0;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-divider);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
.logo-icon { margin-right: 12px; }
.logo-img { width: 45px; height: 45px; margin-right: 15px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-cta);
  line-height: 1;
}
.logo-subtitle {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.btn) {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.nav-links a:not(.btn):hover { color: var(--accent-cta); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed; top: 0; left: 100%; width: 100%; height: 100vh;
  background-color: var(--primary-bg);
  z-index: 2000;
  transition: left 0.4s ease-in-out;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.mobile-menu-overlay.active { left: 0; }
.close-menu-btn { position: absolute; top: 2rem; right: 2rem; background: none; border: none; color: #fff; cursor: pointer; }
.mobile-link { display: block; font-size: 2rem; font-family: var(--font-heading); text-transform: uppercase; color: #fff; text-decoration: none; margin: 1rem 0; letter-spacing: 2px; }
.mobile-link:hover { color: var(--accent-cta); }

/* SECTION 2 - HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Offset for nav */
}
.hero-texture {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(232, 193, 58, 0.05) 0%, transparent 70%);
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.hero-label {
  font-family: var(--font-accent);
  color: var(--accent-cta);
  letter-spacing: 3px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; color: #ccc;
}
.hero-trust .divider { color: var(--border-divider); }
.star-icon { color: var(--accent-cta); width: 16px; height: 16px; display: inline-block; vertical-align: text-bottom; }

.hero-visual { position: relative; height: 100%; min-height: 400px; }
.hero-image-placeholder {
  width: 100%; height: 100%; min-height: 500px;
  background: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=800&q=80') center/cover;
  border-radius: 10px;
  position: relative;
  box-shadow: inset 50px 0 100px var(--primary-bg);
}
.hero-gradient-overlay {
  position: absolute; top:0; left:0; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(192,57,43,0.3), transparent);
}

.hero-bottom-bar {
  position: absolute; bottom: 0; left: 0; width: 100%;
  border-top: 1px solid var(--accent-cta);
  border-bottom: 1px solid var(--accent-cta);
  background-color: var(--primary-bg);
  padding: 0.8rem 0;
  overflow: hidden;
}
.marquee-content {
  color: var(--accent-cta);
  font-family: var(--font-accent);
  letter-spacing: 2px;
  font-size: 1rem;
}

/* SECTION 3 - STATS */
.social-proof {
  background-color: #151515;
  border-bottom: 1px solid var(--border-divider);
}
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 3rem 1rem;
  border-right: 1px solid var(--accent-cta);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-cta);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* SECTION 4 - ABOUT */
.section-title { font-size: 2.5rem; margin-bottom: 3rem; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem;
}
.feature-card {
  background-color: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-divider);
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-icon {
  width: 50px; height: 50px;
  background: rgba(232, 193, 58, 0.1);
  color: var(--accent-cta);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.feature-title { font-size: 1.5rem; margin-bottom: 1rem; }
.feature-desc { color: var(--text-muted); font-size: 0.95rem; }

.location-highlight {
  border-left: 3px solid var(--accent-cta);
  padding: 1rem 2rem; background: rgba(232,193,58,0.05); color: #ccc;
}

/* SECTION 5 - PROGRAMS */
.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem;
}
.program-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-top: 3px solid var(--accent-secondary);
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.program-title { font-size: 1.3rem; margin-bottom: 0.5rem; color: #fff; }
.program-desc { color: var(--text-muted); font-size: 0.9rem; }

/* SECTION 6 - PRICING */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto;
}
.pricing-card {
  background-color: var(--card-bg);
  border-top: 4px solid; padding: 2.5rem; border-radius: 8px; position: relative;
}
.gold-border { border-top-color: var(--accent-cta); }
.red-border { border-top-color: var(--accent-secondary); box-shadow: 0 0 20px rgba(192,57,43,0.1); }
.absolute-badge { position: absolute; top: -14px; right: 2rem; }
.badge { display: inline-block; padding: 4px 10px; font-size: 0.75rem; font-weight: 700; border-radius: 4px; letter-spacing: 1px; }
.gold-badge { background-color: var(--accent-cta); color: #000; }
.red-badge { background-color: var(--accent-secondary); color: #fff; }

.pricing-card-title { font-size: 1.8rem; margin-bottom: 1.5rem; text-align: center; }
.pricing-table { width: 100%; border-collapse: collapse; text-align: left; }
.pricing-table th, .pricing-table td { padding: 1rem 0.5rem; border-bottom: 1px solid var(--border-divider); }
.pricing-table th { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; text-transform: uppercase; }
.highlight-row { background-color: rgba(232, 193, 58, 0.05); }

.military-banner {
  background-color: var(--accent-secondary); color: #fff;
  padding: 1.5rem; text-align: center; border-radius: 8px; margin-top: 3rem;
}

/* SECTION 7 - TESTIMONIALS */
.rating-summary { margin-bottom: 3rem; font-size: 1.1rem; }
.stars { color: var(--accent-cta); margin-right: 10px; }
.testimonials-carousel {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; margin-bottom: 2rem;
}
.testimonial-card {
  background-color: var(--card-bg); padding: 1.5rem; border-left: 3px solid var(--accent-cta);
  border-radius: 4px; transition: transform 0.3s, box-shadow 0.3s; min-width: 300px; scroll-snap-align: start;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 5px 15px rgba(232, 193, 58, 0.05); }

.review-header { display: flex; align-items: center; margin-bottom: 1rem; }
.avatar {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 20px; font-weight: bold; border: 2px solid; margin-right: 15px; flex-shrink: 0;
}
/* AVATAR COLORS SPECIFIED IN PROMPT */
.bg-sp { background-color: #1E1A0A; color: #E8C13A; border-color: #E8C13A; box-shadow: inset 0 0 10px rgba(232,193,58,0.2); }
.bg-jp { background-color: #1A0E0E; color: #C0392B; border-color: #C0392B; box-shadow: inset 0 0 10px rgba(192,57,43,0.2); }
.bg-nm { background-color: #0E1A0E; color: #E8C13A; border-color: #E8C13A; box-shadow: inset 0 0 10px rgba(232,193,58,0.2); }
.bg-nn { background-color: #1A1A0A; color: #C0392B; border-color: #C0392B; box-shadow: inset 0 0 10px rgba(192,57,43,0.2); }
.bg-aj { background-color: #0A0E1A; color: #E8C13A; border-color: #E8C13A; box-shadow: inset 0 0 10px rgba(232,193,58,0.2); }
.bg-mp { background-color: #1A0A0E; color: #C0392B; border-color: #C0392B; box-shadow: inset 0 0 10px rgba(192,57,43,0.2); }
.bg-jb { background-color: #0A1A1A; color: #E8C13A; border-color: #E8C13A; box-shadow: inset 0 0 10px rgba(232,193,58,0.2); }
.bg-as { background-color: #1A0E1A; color: #C0392B; border-color: #C0392B; box-shadow: inset 0 0 10px rgba(192,57,43,0.2); }
.border-gold { border-color: #E8C13A; }
.border-red { border-color: #C0392B; }

.reviewer-name { font-weight: bold; font-size: 1rem; color: #fff; }
.review-stars { color: var(--accent-cta); }
.review-stars i { width: 14px; height: 14px; }
.review-text { color: #ccc; font-style: italic; font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.5; }
.review-footer { color: var(--accent-cta); font-size: 0.8rem; font-family: var(--font-accent); text-transform: uppercase; }

.hide-desktop { display: none; }
.link-muted { color: var(--accent-cta); text-decoration: none; opacity: 0.8; font-size: 0.9rem; }
.link-muted:hover { opacity: 1; text-decoration: underline; }

/* SECTION 8 - LOCATION */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.info-card { background-color: var(--card-bg); padding: 3rem; border-radius: 8px; border: 1px solid var(--border-divider); position: relative; }
.info-card-title { font-size: 1.5rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border-divider); padding-bottom: 1rem; }
.day-group { margin-bottom: 1.5rem; }
.day-label { font-weight: bold; margin-bottom: 0.5rem; font-size: 1.1rem; }
.time-row { padding-left: 1rem; margin-bottom: 0.5rem; color: #ccc;}
.time-highlight { color: var(--accent-cta); font-weight: 500; }
.muted-note { color: var(--text-muted); font-size: 0.85rem; font-style: italic; }

.status-badge {
  position: absolute; top: 3rem; right: 3rem;
  padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-family: var(--font-accent); letter-spacing: 1px;
}
.status-open { background-color: rgba(46, 204, 113, 0.1); color: #2ecc71; border: 1px solid #2ecc71; }
.status-closed { background-color: rgba(192, 57, 43, 0.1); color: #e74c3c; border: 1px solid #e74c3c; }

.address-content { margin-bottom: 1.5rem; color: #ccc; line-height: 1.8; }
.contact-info { margin-bottom: 2rem; color: #fff; }
.contact-row { display: flex; align-items: center; margin-bottom: 0.5rem; }
.contact-row i { margin-right: 10px; color: var(--accent-cta); width: 18px; height: 18px; }
.location-actions { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.map-container { border-radius: 8px; overflow: hidden; border: 1px solid var(--border-divider); }

/* SECTION 9 - CTA */
.final-cta { padding: 6rem 0; position: relative; border-top: 1px solid var(--accent-cta); }
.cta-texture {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(45deg, rgba(232, 193, 58, 0.05) 25%, transparent 25%, transparent 50%, rgba(232, 193, 58, 0.05) 50%, rgba(232, 193, 58, 0.05) 75%, transparent 75%, transparent);
  background-size: 20px 20px; z-index: -1;
}
.cta-title { font-size: 3.5rem; margin-bottom: 1rem; line-height: 1.1; }
.cta-subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-note { color: var(--text-muted); font-size: 0.9rem; }

/* SECTION 10 - FOOTER */
.footer { background-color: #080808; padding-top: 4rem; margin-top: auto; border-top: 1px solid #1a1a1a; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; text-decoration: none; display: inline-flex; align-items: center; margin-bottom: 1rem; }
.footer-logo i { margin-right: 10px; }
.footer-tagline { color: var(--text-muted); font-size: 0.95rem; }
.links-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 0.8rem; transition: color 0.3s; }
.links-col a:hover { color: var(--accent-cta); }
.info-col p { display: flex; align-items: start; color: var(--text-muted); margin-bottom: 1rem; font-size: 0.9rem; }
.info-col i { color: var(--accent-cta); margin-right: 10px; margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--accent-cta); padding: 1.5rem 0; font-size: 0.85rem; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { min-height: 300px; margin-top: 2rem; }
  .social-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--accent-cta); }
  .features-grid, .programs-grid, .pricing-grid, .location-grid, .footer-grid { grid-template-columns: 1fr; }
  .pricing-card { margin-bottom: 2rem; }
  .status-badge { position: relative; top: 0; right: 0; display: inline-block; margin-top: 1rem; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 3rem); }
  .section-title { font-size: 2rem; }
  .cta-title { font-size: 2.2rem; }
  .testimonials-carousel { overflow-x: auto; scrollbar-width: none; }
  .testimonials-carousel::-webkit-scrollbar { display: none; }
  .hide-desktop { display: flex; justify-content: center; gap: 8px; margin-top: 1rem; }
  .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-divider); cursor: pointer; }
  .carousel-dot.active { background: var(--accent-cta); }
  .hide-mobile { display: none !important; }
}
