/* =================================================================
   CyberRift Node - Gradient Modern Design Style
   Premium Radsportclub Berlin
   ================================================================= */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1D3557;
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1D3557;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #1D3557;
}

h3 {
  font-size: 24px;
  color: #1D3557;
}

h4 {
  font-size: 18px;
  color: #1D3557;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #1D3557;
}

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

a:hover {
  color: #C41E2A;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #1D3557;
}

strong {
  font-weight: 600;
  color: #1D3557;
}

em {
  font-style: italic;
  color: #457B9D;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header */
header {
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.15);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #F1FAEE;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 24px;
  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.1);
  box-shadow: 0 6px 25px rgba(230, 57, 70, 0.5);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(230, 57, 70, 0.2);
  color: #F1FAEE;
  border: 2px solid #E63946;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #F1FAEE;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(241, 250, 238, 0.05);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
  background: linear-gradient(135deg, #C41E2A 0%, #A01620 100%);
}

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

.btn-secondary:hover {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.btn-link {
  background: transparent;
  color: #E63946;
  padding: 8px 16px;
  box-shadow: none;
  font-weight: 500;
}

.btn-link:hover {
  color: #C41E2A;
  transform: translateX(5px);
  box-shadow: none;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241, 250, 238, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
}

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

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero-subtitle {
  font-size: 18px;
  color: #F1FAEE;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.trust-badge {
  margin-top: 32px;
  font-size: 14px;
  color: #F1FAEE;
  font-weight: 500;
  opacity: 0.9;
}

/* Hero Inner */
.hero-inner {
  background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
  color: white;
  padding: 80px 20px 60px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-inner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner h1 {
  color: white;
  background: linear-gradient(135deg, #F1FAEE 0%, #E63946 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-inner p {
  color: #F1FAEE;
  font-size: 18px;
}

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E63946 0%, #C41E2A 100%);
  border-radius: 2px;
}

/* Value Grid */
.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E63946 0%, #C41E2A 100%);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.15);
  border-color: rgba(230, 57, 70, 0.2);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card h3 {
  color: #E63946;
  margin-bottom: 12px;
}

.value-card p {
  color: #1D3557;
  margin-bottom: 0;
}

/* Membership Grid */
.membership-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.membership-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
}

.membership-card.featured {
  border: 2px solid #E63946;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.membership-card.featured::before {
  content: '★ BELIEBT ★';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.membership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.2);
}

.membership-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1D3557;
}

.membership-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 16px;
  font-family: 'Rajdhani', sans-serif;
}

.membership-card p {
  color: #457B9D;
  margin-bottom: 0;
}

/* Process Steps */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(29, 53, 87, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E63946 0%, #C41E2A 100%);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
}

.step:hover::before {
  opacity: 1;
}

.step h3 {
  color: #E63946;
  font-size: 20px;
  margin-bottom: 12px;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.service-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(29, 53, 87, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  border-left-color: #E63946;
}

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

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
  padding: 60px 20px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  border-left: 4px solid #E63946;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(230, 57, 70, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.15);
}

.testimonial-card p {
  color: #1D3557;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  color: #457B9D;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
}

.trust-metrics {
  text-align: center;
  color: #1D3557;
  font-weight: 600;
  font-size: 16px;
  margin-top: 32px;
}

/* Location Section */
.location {
  background: white;
  padding: 60px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
  text-align: center;
}

.location h2 {
  margin-bottom: 24px;
}

.location p {
  font-size: 16px;
  margin-bottom: 12px;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

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

.final-cta h2 {
  color: white;
  margin-bottom: 16px;
}

.final-cta h2::after {
  background: linear-gradient(90deg, #F1FAEE 0%, #E63946 100%);
}

.final-cta p {
  color: #F1FAEE;
  font-size: 18px;
  margin-bottom: 32px;
}

.urgency-note {
  margin-top: 24px;
  font-size: 14px;
  color: #F1FAEE;
  font-weight: 500;
  opacity: 0.9;
}

/* Membership Details Page */
.membership-details {
  padding: 60px 20px;
}

.membership-option {
  background: white;
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  margin-bottom: 40px;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.membership-option:hover {
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.15);
}

.membership-option.featured {
  border: 2px solid #E63946;
  background: linear-gradient(135deg, #ffffff 0%, #FFF5F6 100%);
}

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

.membership-option h2 {
  text-align: left;
  margin-bottom: 16px;
}

.membership-option h2::after {
  display: none;
}

.membership-option .price {
  font-size: 36px;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 24px;
  font-family: 'Rajdhani', sans-serif;
}

.membership-option ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.membership-option ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #1D3557;
  border-bottom: 1px solid rgba(29, 53, 87, 0.1);
}

.membership-option ul li:last-child {
  border-bottom: none;
}

.membership-option ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
  font-size: 18px;
}

.savings {
  background: rgba(230, 57, 70, 0.1);
  color: #E63946;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  margin: 16px 0;
}

.membership-benefits {
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
  padding: 60px 20px;
}

.membership-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.membership-benefits li {
  background: white;
  padding: 20px 24px 20px 56px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(29, 53, 87, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.membership-benefits li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.15);
}

.membership-benefits li::before {
  content: '★';
  position: absolute;
  left: 20px;
  color: #E63946;
  font-size: 20px;
}

/* FAQ Section */
.faq {
  padding: 60px 20px;
}

.faq-item {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(29, 53, 87, 0.08);
  margin-bottom: 24px;
  border-left: 4px solid #E63946;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.15);
  transform: translateY(-2px);
}

.faq-item h3 {
  color: #1D3557;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #457B9D;
  margin-bottom: 0;
}

/* Trial CTA */
.trial-cta {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
}

.trial-cta h2 {
  color: white;
  margin-bottom: 16px;
}

.trial-cta h2::after {
  background: linear-gradient(90deg, #F1FAEE 0%, #ffffff 100%);
}

.trial-cta p {
  color: white;
  font-size: 18px;
}

.note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  font-style: italic;
}

/* Service Detail Pages */
.services-intro {
  padding: 40px 20px;
  text-align: center;
}

.service-detail {
  background: white;
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  margin-bottom: 40px;
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 24px;
  color: #1D3557;
}

.service-detail h2::after {
  display: none;
}

.service-detail .price {
  font-size: 36px;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 8px;
  font-family: 'Rajdhani', sans-serif;
}

.service-detail .duration {
  color: #457B9D;
  font-size: 16px;
  margin-bottom: 24px;
}

.service-detail h3 {
  color: #1D3557;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-detail ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.service-detail ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #1D3557;
  border-bottom: 1px solid rgba(29, 53, 87, 0.1);
}

.service-detail ul li:last-child {
  border-bottom: none;
}

.service-detail ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #E63946;
  font-size: 12px;
}

.discount {
  background: rgba(230, 57, 70, 0.1);
  color: #E63946;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  margin: 16px 0;
  display: inline-block;
}

.package-deal {
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
  padding: 16px 24px;
  border-radius: 12px;
  border-left: 4px solid #E63946;
  margin: 24px 0;
  font-weight: 600;
  color: #1D3557;
}

/* Service Packages */
.service-packages {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
}

.package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.package-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
  border-color: rgba(230, 57, 70, 0.3);
}

.package-card h3 {
  color: #1D3557;
  margin-bottom: 12px;
}

.package-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  margin: 16px 0;
  font-family: 'Rajdhani', sans-serif;
}

.old-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

/* Booking Process */
.booking-process {
  padding: 60px 20px;
}

.member-benefits {
  background: white;
  padding: 60px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
}

.member-benefits ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  max-width: 800px;
  margin: 24px auto;
}

.member-benefits li {
  padding: 16px 24px 16px 56px;
  position: relative;
  color: #1D3557;
  margin-bottom: 12px;
  background: rgba(230, 57, 70, 0.05);
  border-radius: 8px;
}

.member-benefits li::before {
  content: '+';
  position: absolute;
  left: 20px;
  color: #E63946;
  font-size: 24px;
  font-weight: 700;
}

/* Training Pages */
.training-philosophy {
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
  margin-bottom: 60px;
}

.training-philosophy ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.training-philosophy li {
  padding: 16px 24px 16px 56px;
  position: relative;
  color: #1D3557;
  margin-bottom: 12px;
  border-left: 3px solid #E63946;
}

.training-philosophy li::before {
  content: '▸';
  position: absolute;
  left: 20px;
  color: #E63946;
  font-size: 20px;
}

/* Weekly Schedule */
.weekly-schedule {
  padding: 60px 20px;
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 32px;
}

.schedule-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(29, 53, 87, 0.08);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.schedule-item:hover {
  border-left-color: #E63946;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.15);
}

.schedule-item h3 {
  color: #E63946;
  margin: 0;
  font-size: 18px;
  min-width: 150px;
}

.schedule-item p {
  color: #1D3557;
  margin: 0;
  flex: 1;
}

/* Training Categories */
.training-categories {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(29, 53, 87, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #E63946;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
}

.category-card h3 {
  color: #E63946;
  margin-bottom: 12px;
}

.category-card p {
  color: #1D3557;
  margin-bottom: 8px;
}

.category-card em {
  color: #457B9D;
  font-size: 14px;
}

/* Level Programs */
.level-programs {
  padding: 60px 20px;
}

.program {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(29, 53, 87, 0.08);
  margin-bottom: 24px;
  border-left: 4px solid #E63946;
  transition: all 0.3s ease;
}

.program:hover {
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.15);
  transform: translateY(-2px);
}

.program h3 {
  color: #1D3557;
  margin-bottom: 16px;
}

.program p {
  margin-bottom: 8px;
}

/* Workshops */
.workshops {
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
  padding: 60px 20px;
}

.workshops ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  max-width: 800px;
  margin: 24px auto;
}

.workshops li {
  background: white;
  padding: 20px 24px 20px 56px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(29, 53, 87, 0.08);
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.workshops li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.15);
}

.workshops li::before {
  content: '📚';
  position: absolute;
  left: 20px;
  font-size: 20px;
}

/* Training Tech */
.training-tech {
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
}

.training-tech ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.training-tech li {
  padding: 16px 24px 16px 56px;
  position: relative;
  color: #1D3557;
  margin-bottom: 12px;
  background: rgba(230, 57, 70, 0.05);
  border-radius: 8px;
}

.training-tech li::before {
  content: '⚡';
  position: absolute;
  left: 20px;
  font-size: 20px;
}

/* Membership CTA */
.membership-cta {
  background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
}

.membership-cta h2 {
  color: white;
  margin-bottom: 24px;
}

.membership-cta h2::after {
  background: linear-gradient(90deg, #F1FAEE 0%, #E63946 100%);
}

.membership-cta ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  text-align: left;
  max-width: 600px;
  margin: 24px auto;
}

.membership-cta li {
  color: #F1FAEE;
  padding: 12px 0;
  border-bottom: 1px solid rgba(241, 250, 238, 0.2);
}

.membership-cta li:last-child {
  border-bottom: none;
}

/* About Us Page */
.brand-story {
  padding: 60px 20px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.milestone {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(29, 53, 87, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #E63946;
}

.milestone:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
}

.milestone h3 {
  font-size: 36px;
  color: #E63946;
  margin-bottom: 12px;
  font-family: 'Rajdhani', sans-serif;
}

.milestone p {
  color: #1D3557;
  margin-bottom: 0;
}

/* Mission Vision */
.mission-vision {
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
  padding: 60px 20px;
}

.content-block {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(29, 53, 87, 0.08);
  margin-bottom: 32px;
  border-left: 4px solid #E63946;
}

.content-block h3 {
  color: #E63946;
  margin-bottom: 16px;
}

.content-block ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.content-block li {
  padding: 12px 0;
  color: #1D3557;
  border-bottom: 1px solid rgba(29, 53, 87, 0.1);
}

.content-block li:last-child {
  border-bottom: none;
}

/* Facilities */
.facilities {
  padding: 60px 20px;
}

.facility-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.facility-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(29, 53, 87, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #E63946;
}

.facility-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
}

.facility-item h3 {
  color: #E63946;
  margin-bottom: 12px;
  font-size: 18px;
}

.facility-item p {
  color: #1D3557;
  margin-bottom: 0;
}

/* Achievements */
.achievements {
  background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
  color: white;
  padding: 60px 20px;
  border-radius: 16px;
}

.achievements h2 {
  color: white;
  margin-bottom: 32px;
}

.achievements h2::after {
  background: linear-gradient(90deg, #F1FAEE 0%, #E63946 100%);
}

.achievements ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.achievements li {
  color: #F1FAEE;
  padding: 16px 24px 16px 56px;
  position: relative;
  margin-bottom: 16px;
  background: rgba(241, 250, 238, 0.05);
  border-radius: 8px;
}

.achievements li::before {
  content: '🏆';
  position: absolute;
  left: 20px;
  font-size: 20px;
}

/* Community Impact */
.community-impact {
  padding: 60px 20px;
}

.impact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.impact-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(29, 53, 87, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #E63946;
}

.impact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
}

.impact-item h3 {
  color: #E63946;
  margin-bottom: 12px;
}

/* Contact Page */
.contact-options {
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-option {
  flex: 1 1 300px;
  max-width: 380px;
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #E63946;
}

.contact-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.contact-option h3 {
  color: #E63946;
  margin-bottom: 12px;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
  padding: 60px 20px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-field label {
  font-weight: 600;
  color: #1D3557;
  font-size: 14px;
}

.field-placeholder {
  background: #F1FAEE;
  padding: 14px 16px;
  border-radius: 8px;
  border: 2px solid transparent;
  color: #457B9D;
  font-size: 14px;
  transition: all 0.3s ease;
}

.field-placeholder:hover {
  border-color: rgba(230, 57, 70, 0.3);
}

.form-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}

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

/* Trial Booking */
.trial-booking {
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
  margin-bottom: 60px;
}

.trial-booking h3 {
  color: #1D3557;
  margin-top: 24px;
  margin-bottom: 16px;
}

.trial-booking ul {
  list-style: none;
  margin: 16px 0 32px;
  padding: 0;
}

.trial-booking li {
  padding: 12px 24px 12px 40px;
  position: relative;
  color: #1D3557;
  margin-bottom: 8px;
}

.trial-booking li::before {
  content: '✓';
  position: absolute;
  left: 10px;
  color: #E63946;
  font-weight: 700;
  font-size: 16px;
}

/* Location Details */
.location-details {
  padding: 60px 20px;
}

.location-details h3 {
  color: #1D3557;
  margin-top: 32px;
  margin-bottom: 16px;
}

.location-details p {
  color: #1D3557;
  line-height: 1.8;
}

/* Opening Hours */
.opening-hours {
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
}

.opening-hours h3 {
  color: #E63946;
  margin-top: 32px;
  margin-bottom: 16px;
}

.opening-hours p {
  color: #1D3557;
  line-height: 1.8;
}

/* Quick FAQ */
.quick-faq {
  padding: 60px 20px;
}

/* Legal Pages */
.legal-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  color: #1D3557;
  margin-bottom: 24px;
}

.legal-page h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-page h2::after {
  display: none;
}

.legal-page p {
  line-height: 1.8;
  margin-bottom: 16px;
}

.last-updated {
  color: #457B9D;
  font-style: italic;
  margin-bottom: 32px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: white;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}

.thank-you h1 {
  color: #1D3557;
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: #457B9D;
  max-width: 600px;
  margin: 0 auto 48px;
}

.next-steps {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: left;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 24px;
}

.next-steps ol {
  margin: 0;
  padding-left: 24px;
}

.next-steps li {
  color: #1D3557;
  padding: 12px 0;
  border-bottom: 1px solid rgba(29, 53, 87, 0.1);
}

.next-steps li:last-child {
  border-bottom: none;
}

/* Suggestions */
.suggestions {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
}

.suggestion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.suggestion-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.suggestion-card h3 {
  color: #E63946;
  margin-bottom: 12px;
}

/* Testimonials Mini */
.testimonials-mini {
  padding: 60px 20px;
}

/* Alternative Contact */
.alternative-contact {
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
  text-align: center;
}

.alternative-contact p {
  color: #1D3557;
  margin-bottom: 8px;
}

/* Return Nav */
.return-nav {
  padding: 40px 20px;
  text-align: center;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0D1B2A 0%, #1D3557 100%);
  color: #F1FAEE;
  padding: 60px 20px 30px;
  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;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #E63946;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #F1FAEE;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: #F1FAEE;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.copyright {
  text-align: center;
  color: rgba(241, 250, 238, 0.7);
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid rgba(241, 250, 238, 0.2);
  margin-top: 30px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  color: white;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: #F1FAEE;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

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

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal h2 {
  text-align: left;
  margin-bottom: 24px;
  color: #1D3557;
}

.cookie-modal h2::after {
  display: none;
}

.cookie-category {
  padding: 20px;
  background: #F1FAEE;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #E63946;
}

.cookie-category h3 {
  color: #1D3557;
  margin-bottom: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #457B9D;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grids */
  .value-grid,
  .membership-grid,
  .services-grid,
  .category-grid,
  .facility-grid,
  .impact-grid,
  .contact-grid,
  .package-grid,
  .suggestion-grid {
    flex-direction: column;
  }
  
  .value-card,
  .membership-card,
  .service-item,
  .category-card,
  .facility-item,
  .impact-item,
  .contact-option,
  .package-card,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .membership-card.featured {
    transform: scale(1);
  }
  
  /* Schedule */
  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .schedule-item h3 {
    min-width: auto;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
  
  /* Forms */
  .form-wrapper {
    padding: 32px 24px;
  }
  
  /* Service Details */
  .service-detail,
  .membership-option {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Typography */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
  }
  
  /* Hero */
  .hero {
    padding: 50px 16px;
  }
  
  /* Cards */
  .value-card,
  .membership-card,
  .service-item,
  .testimonial-card,
  .step {
    padding: 24px 20px;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  section {
    page-break-inside: avoid;
  }
}

/* Smooth Scrolling and Animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}