/* ==========================================================================
   VitalForce Fitness - Tech Futuristic Design
   ========================================================================== */

/* CSS Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #f1faee;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  position: relative;
  overflow-x: hidden;
}

/* Futuristic Background Effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(29, 53, 87, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #f1faee;
  text-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: rgba(241, 250, 238, 0.9);
}

a {
  color: #E63946;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ff4757;
  text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

ul {
  list-style: none;
}

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

/* Container
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header & Navigation
   ========================================================================== */
header {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.9) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(230, 57, 70, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(230, 57, 70, 0.5));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  color: #f1faee;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E63946, #ff4757);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E63946;
  background: rgba(230, 57, 70, 0.1);
}

.main-nav a:hover::before {
  width: 80%;
}

/* Mobile Menu Toggle
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(230, 57, 70, 0.6);
}

/* Mobile Menu
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  border-left: 2px solid rgba(230, 57, 70, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #E63946;
  color: #E63946;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #E63946;
  color: #fff;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #f1faee;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(230, 57, 70, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(230, 57, 70, 0.2);
  border-color: #E63946;
  transform: translateX(5px);
}

/* Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #E63946;
  border-color: #E63946;
}

.btn-secondary:hover {
  background: rgba(230, 57, 70, 0.1);
  border-color: #ff4757;
  color: #ff4757;
  transform: translateY(-2px);
}

/* Hero Section
   ========================================================================== */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.3) 0%, rgba(10, 14, 39, 0.5) 100%);
  border-bottom: 1px solid rgba(230, 57, 70, 0.2);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #f1faee 0%, #E63946 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 20px;
  color: rgba(241, 250, 238, 0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  color: #E63946;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections
   ========================================================================== */
section {
  padding: 60px 20px;
  position: relative;
  margin-bottom: 40px;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 40px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: rgba(241, 250, 238, 0.7);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Grid
   ========================================================================== */
.feature-grid,
.service-grid,
.course-grid,
.pricing-grid,
.testimonial-grid,
.team-grid,
.benefits-grid,
.spec-grid,
.facility-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.feature-item,
.service-card,
.course-card,
.pricing-card,
.testimonial-card,
.team-member,
.benefit-item,
.spec-card,
.facility-card,
.contact-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.4) 0%, rgba(10, 14, 39, 0.6) 100%);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.feature-item::before,
.service-card::before,
.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, transparent 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover,
.service-card:hover,
.course-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.team-member:hover,
.benefit-item:hover,
.spec-card:hover,
.facility-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.3);
  border-color: #E63946;
}

.feature-item:hover::before,
.service-card:hover::before,
.course-card:hover::before {
  opacity: 1;
}

.feature-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(230, 57, 70, 0.5));
}

.feature-item h3,
.service-card h3,
.course-card h3 {
  color: #E63946;
  margin-bottom: 12px;
}

.feature-item p,
.service-card p,
.course-card p {
  color: rgba(241, 250, 238, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

/* Pricing Cards
   ========================================================================== */
.pricing-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.pricing-card.featured {
  border: 2px solid #E63946;
  box-shadow: 0 0 40px rgba(230, 57, 70, 0.4);
  transform: scale(1.05);
}

.badge {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-block;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #E63946;
  margin: 16px 0;
  text-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.unit-price {
  font-size: 14px;
  color: rgba(241, 250, 238, 0.6);
  margin-bottom: 16px;
}

.pricing-card ul {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.pricing-card li {
  padding: 8px 0;
  color: rgba(241, 250, 238, 0.8);
  position: relative;
  padding-left: 24px;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
}

.savings {
  color: #E63946;
  font-weight: 600;
  margin-top: 12px;
}

.pricing-note {
  text-align: center;
  color: rgba(241, 250, 238, 0.7);
  font-size: 14px;
  margin-top: 24px;
}

/* Stats Section
   ========================================================================== */
.stats {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(29, 53, 87, 0.2) 100%);
  border-radius: 12px;
  padding: 60px 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat-item h3 {
  font-size: 48px;
  color: #E63946;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.stat-item p {
  font-size: 16px;
  color: rgba(241, 250, 238, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials
   ========================================================================== */
.testimonials {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.6) 0%, rgba(26, 31, 58, 0.4) 100%);
  border-radius: 12px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(241, 250, 238, 0.05) 0%, rgba(29, 53, 87, 0.3) 100%);
  padding: 32px;
  border-left: 4px solid #E63946;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  color: #f1faee;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: #E63946;
  font-style: normal;
  font-size: 14px;
}

.result {
  font-size: 20px;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 12px;
  font-style: normal;
}

/* CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(230, 57, 70, 0.4);
}

.cta-banner h2 {
  color: #fff;
  text-shadow: none;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #E63946;
}

.cta-banner .btn-primary:hover {
  background: #f1faee;
}

.cta-banner .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
  margin-left: 16px;
}

.cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.trust-element {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 24px;
}

/* Location Section
   ========================================================================== */
.location {
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.3) 0%, rgba(10, 14, 39, 0.5) 100%);
  border-radius: 12px;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.location-info {
  flex: 1 1 300px;
}

.location-info p {
  margin-bottom: 12px;
  line-height: 1.8;
}

.location-info strong {
  color: #E63946;
  display: inline-block;
  min-width: 140px;
}

/* About Story Section
   ========================================================================== */
.about-story,
.wellness-intro {
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.2) 0%, rgba(10, 14, 39, 0.3) 100%);
  border-radius: 12px;
}

.values-grid,
.info-grid,
.tips-grid,
.action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.value-item,
.info-item,
.tip-card,
.action-card {
  flex: 1 1 240px;
  max-width: 280px;
  background: linear-gradient(135deg, rgba(241, 250, 238, 0.05) 0%, rgba(29, 53, 87, 0.3) 100%);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(230, 57, 70, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover,
.info-item:hover,
.tip-card:hover,
.action-card:hover {
  border-color: #E63946;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}

.value-item h3,
.info-item h3,
.tip-card h3,
.action-card h3 {
  color: #E63946;
  margin-bottom: 12px;
  font-size: 20px;
}

/* Team Section
   ========================================================================== */
.team-member {
  text-align: center;
}

.team-member h3 {
  color: #E63946;
  margin-bottom: 8px;
}

.team-member p {
  font-size: 14px;
  color: rgba(241, 250, 238, 0.7);
}

/* Facilities List
   ========================================================================== */
.facilities-list,
.benefits-list {
  list-style: none;
  margin-top: 24px;
}

.facilities-list li,
.benefits-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: rgba(241, 250, 238, 0.9);
  border-bottom: 1px solid rgba(230, 57, 70, 0.1);
}

.facilities-list li::before,
.benefits-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
  font-size: 18px;
}

/* Course Schedule
   ========================================================================== */
.course-duration,
.course-schedule {
  color: rgba(241, 250, 238, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
}

.course-schedule {
  color: #E63946;
  font-weight: 600;
}

/* Specializations & Benefits
   ========================================================================== */
.temp,
.capacity {
  color: #E63946;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  display: block;
}

.capacity {
  font-size: 14px;
  margin-top: 16px;
}

.pricing-option {
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.4) 0%, rgba(10, 14, 39, 0.6) 100%);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
}

.pricing-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.3);
  border-color: #E63946;
}

.pricing-option.featured {
  border: 2px solid #E63946;
  box-shadow: 0 0 40px rgba(230, 57, 70, 0.4);
}

.highlight {
  color: #E63946;
  font-weight: 600;
  margin-top: 12px;
  display: block;
}

.included {
  text-align: center;
  color: rgba(241, 250, 238, 0.7);
  font-size: 14px;
  margin-top: 32px;
}

/* Contact Form
   ========================================================================== */
.contact-form-section {
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.3) 0%, rgba(10, 14, 39, 0.5) 100%);
  border-radius: 12px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: #E63946;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 8px;
  background: rgba(10, 14, 39, 0.6);
  color: #f1faee;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #E63946;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

.form-field.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.form-field.checkbox input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.form-field.checkbox label {
  margin: 0;
  text-transform: none;
  font-size: 14px;
  color: rgba(241, 250, 238, 0.8);
}

/* Opening Hours
   ========================================================================== */
.hours-table {
  max-width: 600px;
  margin: 32px auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(230, 57, 70, 0.2);
}

.hours-row span:first-child {
  font-weight: 600;
  color: #E63946;
}

.hours-row span:last-child {
  color: rgba(241, 250, 238, 0.9);
}

.special-note {
  text-align: center;
  color: rgba(241, 250, 238, 0.7);
  font-size: 14px;
  margin-top: 24px;
  font-style: italic;
}

/* Legal Content
   ========================================================================== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  margin-bottom: 40px;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.2) 0%, rgba(10, 14, 39, 0.3) 100%);
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #E63946;
}

.text-section h2 {
  text-align: left;
  font-size: 28px;
  color: #E63946;
  margin-bottom: 16px;
}

.text-section h3 {
  color: #E63946;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.text-section p {
  line-height: 1.8;
  color: rgba(241, 250, 238, 0.9);
}

.text-section a {
  color: #E63946;
  text-decoration: underline;
}

.last-updated {
  color: rgba(241, 250, 238, 0.6);
  font-size: 14px;
  font-style: italic;
}

/* Thank You Page
   ========================================================================== */
.thank-you {
  padding: 100px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.4) 0%, rgba(10, 14, 39, 0.6) 100%);
  padding: 60px 40px;
  border-radius: 12px;
  border: 2px solid #E63946;
  box-shadow: 0 8px 40px rgba(230, 57, 70, 0.4);
}

.checkmark {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  margin: 0 auto 32px;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
  animation: checkmarkPop 0.6s ease;
}

@keyframes checkmarkPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.thank-you h1 {
  margin-bottom: 16px;
}

.subheadline {
  font-size: 18px;
  color: rgba(241, 250, 238, 0.8);
  margin-bottom: 32px;
}

.next-steps {
  text-align: left;
  margin-top: 40px;
  padding: 24px;
  background: rgba(10, 14, 39, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.next-steps h2 {
  text-align: left;
  font-size: 24px;
  margin-bottom: 16px;
}

.next-steps ol {
  list-style: decimal;
  list-style-position: inside;
  margin-bottom: 24px;
}

.next-steps li {
  padding: 8px 0;
  color: rgba(241, 250, 238, 0.9);
}

.contact-info {
  color: rgba(241, 250, 238, 0.7);
  font-size: 14px;
  margin-top: 16px;
}

.additional-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 16px;
}

/* Footer
   ========================================================================== */
footer {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(6, 8, 20, 1) 100%);
  padding: 60px 20px 30px;
  border-top: 2px solid rgba(230, 57, 70, 0.3);
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  color: #E63946;
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: rgba(241, 250, 238, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(241, 250, 238, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background: #E63946;
  bottom: -2px;
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: #E63946;
  padding-left: 8px;
}

.footer-nav a:hover::before {
  width: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(230, 57, 70, 0.2);
}

.footer-bottom p {
  color: rgba(241, 250, 238, 0.5);
  font-size: 14px;
}

/* Cookie Consent Banner
   ========================================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.98) 0%, rgba(6, 8, 20, 0.98) 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  z-index: 1500;
  border-top: 2px solid rgba(230, 57, 70, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent-text {
  flex: 1 1 300px;
}

.cookie-consent-text p {
  color: rgba(241, 250, 238, 0.9);
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent-actions button {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept-all {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #fff;
}

.cookie-accept-all:hover {
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
  transform: translateY(-2px);
}

.cookie-reject-all,
.cookie-settings {
  background: transparent;
  color: #E63946;
  border: 1px solid #E63946;
}

.cookie-reject-all:hover,
.cookie-settings:hover {
  background: rgba(230, 57, 70, 0.1);
}

/* Cookie Settings Modal
   ========================================================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border: 2px solid rgba(230, 57, 70, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #E63946;
  color: #E63946;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #E63946;
  color: #fff;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(29, 53, 87, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  color: #E63946;
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(241, 250, 238, 0.2);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #E63946;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: rgba(241, 250, 238, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-save-settings {
  flex: 1;
  padding: 12px 24px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-save-settings:hover {
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
  transform: translateY(-2px);
}

/* Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  /* Typography */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

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

  /* Sections */
  section {
    padding: 40px 20px;
  }

  /* Grids */
  .feature-grid,
  .service-grid,
  .course-grid,
  .pricing-grid,
  .testimonial-grid,
  .team-grid,
  .benefits-grid,
  .spec-grid,
  .facility-grid,
  .stats-grid,
  .values-grid,
  .info-grid,
  .tips-grid,
  .contact-grid,
  .action-grid {
    gap: 16px;
  }

  .feature-item,
  .service-card,
  .course-card,
  .pricing-card,
  .testimonial-card,
  .team-member,
  .benefit-item,
  .spec-card,
  .facility-card,
  .contact-card,
  .value-item,
  .info-item,
  .tip-card,
  .action-card,
  .pricing-option {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-consent-actions button {
    width: 100%;
  }

  /* Location */
  .location-content {
    flex-direction: column;
  }

  /* CTA Banner */
  .cta-banner .btn-secondary {
    margin-left: 0;
    margin-top: 12px;
  }

  /* Form */
  .form-container {
    padding: 0;
  }

  /* Thank You */
  .thank-you-content {
    padding: 40px 24px;
  }

  .checkmark {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }

  /* Hours Table */
  .hours-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Stats */
  .stat-item h3 {
    font-size: 36px;
  }

  /* Mobile Menu Width */
  .mobile-menu {
    width: 100%;
    max-width: 300px;
  }

  /* Featured Pricing Card */
  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .price {
    font-size: 28px;
  }

  .stat-item h3 {
    font-size: 32px;
  }

  .cookie-modal-content {
    padding: 24px;
  }
}

/* Print Styles
   ========================================================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-banner {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}