/* ============================================
   APEX COMBAT ACADEMY - MMA STUDIO TEMPLATE
   Aesthetic: Raw, Powerful & Elite
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Barlow:wght@400;500;600;700&display=swap');

/* CSS Custom Properties */
:root {
  /* Colors */
  --primary: #D4AF37;
  --primary-dark: #B8960C;
  --primary-light: #E5C865;
  --secondary: #DC2626;
  --secondary-dark: #B91C1C;
  --accent: #DC2626;
  --black: #0A0A0A;
  --carbon: #171717;
  --charcoal: #262626;
  --steel: #404040;
  --gray: #737373;
  --gray-light: #A3A3A3;
  --white: #FAFAFA;
  --off-white: #E5E7EB;

  /* Typography */
  --font-heading: 'Teko', sans-serif;
  --font-body: 'Barlow', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
  --shadow-red: 0 0 30px rgba(220, 38, 38, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--off-white);
  background-color: var(--black);
}

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

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

a:hover {
  color: var(--primary-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-light);
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.gold-text {
  color: var(--primary);
}

.red-text {
  color: var(--secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

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

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

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--black);
}

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

.btn-red:hover {
  background: var(--secondary-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--charcoal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.logo span {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

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

.header-cta {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

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

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--black) 0%, var(--carbon) 50%, var(--black) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--charcoal);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Octagon Decoration */
.octagon-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  opacity: 0.03;
  pointer-events: none;
}

.octagon-bg svg {
  width: 100%;
  height: 100%;
}

.octagon-bg.left {
  left: -200px;
  top: 20%;
}

.octagon-bg.right {
  right: -200px;
  bottom: 10%;
}

/* Programs Section */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.program-card {
  background: var(--carbon);
  border: 1px solid var(--charcoal);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform var(--transition-normal);
}

.program-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.program-card:hover::before {
  transform: scaleY(1);
}

.program-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.program-card h3 {
  margin-bottom: 1rem;
}

.program-card p {
  margin-bottom: 1.5rem;
}

.program-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.program-link:hover {
  color: var(--primary-light);
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--black);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.feature h4 {
  margin-bottom: 0.75rem;
}

.feature p {
  font-size: 0.95rem;
}

/* Fighters Section */
.fighters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fighter-card {
  background: var(--carbon);
  border: 1px solid var(--charcoal);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.fighter-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.fighter-image {
  height: 300px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--steel) 100%);
  position: relative;
}

.fighter-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--carbon), transparent);
}

.fighter-info {
  padding: 1.5rem;
}

.fighter-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.fighter-discipline {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.fighter-record {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--charcoal);
}

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

.record-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.record-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
}

/* Testimonials */
.testimonials {
  background: var(--carbon);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--black);
  border: 1px solid var(--charcoal);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--charcoal);
  border: 2px solid var(--primary);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--black) 0%, var(--carbon) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-offer {
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--black);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  max-width: 300px;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-light);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray);
  margin: 0;
}

.footer-bottom a {
  color: var(--gray);
}

.footer-bottom a:hover {
  color: var(--primary);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* Page Hero */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--black) 0%, var(--carbon) 100%);
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  height: 500px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--steel) 100%);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--primary);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--carbon);
  border: 1px solid var(--charcoal);
  padding: 2.5rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.value-card:hover {
  border-color: var(--primary);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.value-card h3 {
  margin-bottom: 1rem;
}

/* Coaches Grid */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.coach-card {
  background: var(--carbon);
  border: 1px solid var(--charcoal);
  overflow: hidden;
}

.coach-image {
  height: 350px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--steel) 100%);
}

.coach-info {
  padding: 2rem;
}

.coach-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.coach-title {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.coach-credentials {
  list-style: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--charcoal);
}

.coach-credentials li {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.coach-credentials li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Facility Section */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.facility-card {
  background: var(--carbon);
  border: 1px solid var(--charcoal);
  padding: 2rem;
}

.facility-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.facility-list {
  list-style: none;
}

.facility-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--charcoal);
  color: var(--gray-light);
}

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

/* Services Page */
.programs-section {
  padding: 5rem 0;
}

.program-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--charcoal);
}

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

.program-detail-image {
  height: 300px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--steel) 100%);
}

.program-detail-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.program-detail-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.program-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-light);
}

.highlight::before {
  content: '>';
  color: var(--primary);
  font-weight: bold;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: var(--carbon);
  border: 1px solid var(--charcoal);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.5rem;
}

.pricing-card:hover {
  border-color: var(--primary);
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
}

.price-period {
  font-size: 1rem;
  color: var(--gray);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--charcoal);
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

/* Schedule Table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.schedule-table th,
.schedule-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--charcoal);
}

.schedule-table th {
  background: var(--carbon);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.schedule-table td {
  color: var(--gray-light);
}

.schedule-table tr:hover td {
  background: rgba(212, 175, 55, 0.05);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: var(--carbon);
  border: 1px solid var(--charcoal);
  padding: 3rem;
}

.contact-form h3 {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--off-white);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--black);
  border: 1px solid var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

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

.contact-info h3 {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--charcoal);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-content h4 {
  margin-bottom: 0.5rem;
}

.info-content p {
  margin: 0;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
  background: var(--carbon);
  border: 1px solid var(--charcoal);
  padding: 2rem;
}

.faq-item h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.faq-item p {
  margin: 0;
}

/* Map Placeholder */
.map-section {
  height: 400px;
  background: var(--carbon);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--charcoal);
}

.map-placeholder {
  text-align: center;
  color: var(--gray);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .about-image {
    height: 400px;
  }

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

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    gap: 0;
    z-index: 99;
    border-bottom: 1px solid var(--charcoal);
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-link {
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }

  .nav-link::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .stat {
    flex: 1 1 40%;
  }

  .programs-grid,
  .fighters-grid,
  .values-grid,
  .coaches-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid,
  .faq-grid,
  .facility-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .schedule-table {
    font-size: 0.9rem;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

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

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

  .hero-buttons .btn {
    width: 100%;
  }

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

  .price-amount {
    font-size: 2.5rem;
  }
}
