/* ===================================
   BRIGHT EXPLORE - CREATIVE ARTISTIC DESIGN
   Premium Fitness & Sport - Frankfurt
   Style: Creative, Vibrant, Energetic
   =================================== */

/* 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.7;
  color: #1D3557;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* CREATIVE ARTISTIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1D3557;
  letter-spacing: -0.5px;
}

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: 36px;
  color: #1D3557;
  position: relative;
  padding-bottom: 16px;
}

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

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

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

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

a:hover {
  color: #C41E2A;
}

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

ul {
  list-style: none;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CREATIVE BUTTON STYLES */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 50px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

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

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

.btn-secondary {
  background: #FFFFFF;
  color: #E63946;
  border: 3px solid #E63946;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
}

.btn-secondary:hover {
  background: #E63946;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E63946, #C41E2A);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #1D3557 0%, #0D1B2A 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.mobile-nav a {
  display: block;
  padding: 18px 20px;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #E63946;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(230, 57, 70, 0.1);
  padding-left: 30px;
  color: #E63946;
}

.mobile-nav a:hover::before {
  transform: translateX(0);
}

/* HEADER STYLES */
.site-header {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #E63946;
}

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

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1D3557;
  position: relative;
  padding: 8px 0;
}

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

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

/* HERO SECTION - CREATIVE ARTISTIC */
.hero {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 50%, #1D3557 100%);
  padding: 100px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 20px;
  color: #F1F5F9;
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: slideInUp 1s ease-out 0.5s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-badge {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

/* HERO PAGE VARIANT */
.hero-page {
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(230,57,70,0.3)"/></svg>');
  opacity: 0.3;
}

.hero-page h1 {
  color: #FFFFFF;
  font-size: 48px;
  position: relative;
  z-index: 2;
}

.hero-page .hero-subtitle {
  color: #F1F5F9;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

/* BENEFITS SECTION */
.benefits {
  padding: 60px 20px;
  background: #F1F5F9;
  margin-bottom: 60px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(29, 53, 87, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E63946, #C41E2A);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.3);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 10px rgba(230, 57, 70, 0.3));
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1D3557;
}

.benefit-card p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
}

/* SERVICES SECTION */
.services-preview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #64748B;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(29, 53, 87, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, #E63946, #C41E2A);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #E63946;
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.25);
}

.service-card:hover::after {
  opacity: 0.05;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #E63946;
}

.service-card p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #E63946;
  margin: 0;
}

/* STATS SECTION */
.stats {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  margin-bottom: 60px;
  text-align: center;
}

.stats h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.stats h2::after {
  background: linear-gradient(90deg, #E63946, #FFFFFF);
  left: 50%;
  transform: translateX(-50%);
}

.stats .section-subtitle {
  color: #F1F5F9;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
}

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(230, 57, 70, 0.2);
  border-color: #E63946;
  transform: translateY(-5px);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #E63946;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(230, 57, 70, 0.5);
}

.stat-item p:last-child {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}

/* TESTIMONIALS SECTION */
.testimonials {
  padding: 60px 20px;
  background: #F1F5F9;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

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

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

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

.testimonial-card > p:first-of-type {
  font-size: 16px;
  font-style: italic;
  color: #1D3557;
  margin-bottom: 20px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #1D3557;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #E63946;
  font-size: 18px;
  margin: 0;
}

/* CTA BANNER */
.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-banner h2::after {
  display: none;
}

.cta-banner p {
  color: #F1F5F9;
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #E63946;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary:hover {
  background: #1D3557;
  color: #FFFFFF;
}

.urgency {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  z-index: 2;
}

/* LOCATION SECTION */
.location {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.location h2 {
  text-align: center;
  margin-bottom: 40px;
}

.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.address, .hours {
  flex: 1 1 300px;
  background: #F1F5F9;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #E63946;
}

.address p, .hours p {
  margin-bottom: 8px;
  color: #1D3557;
}

/* SERVICE DETAIL PAGE */
.services-intro {
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.intro-text {
  font-size: 18px;
  color: #64748B;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-detail {
  padding: 50px 20px;
  margin-bottom: 40px;
}

.service-content {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(29, 53, 87, 0.1);
  border-top: 5px solid #E63946;
}

.service-tagline {
  font-size: 20px;
  color: #E63946;
  font-weight: 600;
  margin-bottom: 20px;
}

.price-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #E63946;
  margin: 30px 0;
  padding: 20px;
  background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 100%);
  border-radius: 15px;
  display: inline-block;
}

.feature-list {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-list li {
  padding: 15px 15px 15px 50px;
  background: #F1F5F9;
  border-radius: 10px;
  position: relative;
  font-size: 16px;
  color: #1D3557;
  transition: all 0.3s ease;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: #E63946;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.feature-list li:hover {
  background: #E63946;
  color: #FFFFFF;
  transform: translateX(5px);
}

.feature-list li:hover::before {
  background: #FFFFFF;
  color: #E63946;
}

/* COURSES PAGE */
.courses {
  padding: 50px 20px;
  margin-bottom: 40px;
}

.courses h2 {
  margin-bottom: 40px;
}

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

.course-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(29, 53, 87, 0.1);
  border-left: 5px solid #E63946;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

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

.course-card .duration {
  font-size: 14px;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 8px 15px;
  background: #F1F5F9;
  border-radius: 20px;
  display: inline-block;
}

.course-card .schedule {
  font-size: 14px;
  color: #1D3557;
  font-weight: 600;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #F1F5F9;
}

/* PRICING PAGE */
.pricing-intro {
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.guarantee {
  font-size: 16px;
  color: #E63946;
  font-weight: 600;
  margin-top: 20px;
}

.pricing-cards {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.pricing-cards h2 {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 10px 35px rgba(29, 53, 87, 0.1);
  border: 3px solid #F1F5F9;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(230, 57, 70, 0.25);
  border-color: #E63946;
}

.pricing-card.popular {
  border-color: #E63946;
  border-width: 4px;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.07);
}

.pricing-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E63946, #C41E2A);
  color: #FFFFFF;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1D3557;
}

.pricing-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #E63946;
  margin-bottom: 10px;
}

.pricing-card .price span {
  font-size: 18px;
  font-weight: 600;
  color: #64748B;
}

.pricing-card .tagline {
  font-size: 16px;
  color: #64748B;
  margin-bottom: 30px;
  font-weight: 600;
}

.pricing-card .features {
  text-align: left;
  margin: 30px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card .features li {
  padding: 12px 12px 12px 35px;
  position: relative;
  font-size: 15px;
  color: #1D3557;
  line-height: 1.6;
}

.pricing-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  background: #E63946;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.pricing-card .btn {
  margin-top: 20px;
}

/* SINGLE SERVICES LIST */
.single-services {
  padding: 60px 20px;
  background: #F1F5F9;
  margin-bottom: 60px;
}

.single-services h2 {
  text-align: center;
  margin-bottom: 50px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(29, 53, 87, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  transition: all 0.3s ease;
  border-left: 5px solid #E63946;
}

.service-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.service-item h3 {
  flex: 1 1 200px;
  margin-bottom: 0;
  color: #1D3557;
}

.service-item .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #E63946;
  margin: 0;
}

.service-item .price span {
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
}

.service-item .discount {
  font-size: 14px;
  color: #64748B;
  font-weight: 600;
  margin: 8px 0 0 0;
  width: 100%;
}

/* CONTACT PAGE */
.contact-options {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.option-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(29, 53, 87, 0.1);
  border: 3px solid transparent;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

.option-card img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 10px rgba(230, 57, 70, 0.3));
}

.option-card h3 {
  color: #E63946;
  margin: 0;
}

.option-card p {
  color: #64748B;
  font-size: 15px;
}

.contact-info {
  padding: 60px 20px;
  background: #F1F5F9;
  margin-bottom: 60px;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 50px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.info-item {
  flex: 1 1 300px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(29, 53, 87, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.info-item img {
  width: 60px;
  height: 60px;
}

.info-item h3 {
  color: #E63946;
  margin: 0;
}

.info-item p {
  color: #1D3557;
  margin: 0;
  line-height: 1.8;
}

.location-details {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.location-details h2 {
  text-align: center;
  margin-bottom: 50px;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.address-box, .transport-box {
  flex: 1 1 400px;
  background: #FFFFFF;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(29, 53, 87, 0.1);
  border-left: 5px solid #E63946;
}

.address-box h3, .transport-box h3 {
  color: #E63946;
  margin-bottom: 20px;
}

.address-box p, .transport-box p {
  color: #1D3557;
  line-height: 1.8;
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(29, 53, 87, 0.1);
}

.text-section h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-section h2:first-child {
  margin-top: 0;
}

.text-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.text-section li {
  list-style: disc;
  margin-bottom: 10px;
  color: #1D3557;
  line-height: 1.8;
}

.last-updated {
  font-size: 14px;
  color: #64748B;
  font-style: italic;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #F1F5F9;
}

/* TEAM SECTION */
.mission, .story {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
}

.value-card {
  flex: 1 1 220px;
  max-width: 280px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.5);
}

.value-card h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 10px;
}

.value-card p {
  color: #F1F5F9;
  font-size: 14px;
  margin: 0;
}

.team {
  padding: 60px 20px;
  background: #F1F5F9;
  margin-bottom: 60px;
}

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team .section-subtitle {
  text-align: center;
  margin-bottom: 50px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
  max-width: 400px;
  background: #FFFFFF;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(29, 53, 87, 0.1);
  text-align: center;
  border-top: 5px solid #E63946;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.25);
}

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

.team-member .role {
  font-size: 16px;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-member p:last-child {
  color: #1D3557;
  font-size: 15px;
  line-height: 1.7;
}

.facilities {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.facilities h2 {
  text-align: center;
  margin-bottom: 50px;
}

.facilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.facility-item {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  max-width: 350px;
  background: #F1F5F9;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.facility-item:hover {
  border-color: #E63946;
  background: #FFFFFF;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
}

.facility-item img {
  width: 60px;
  height: 60px;
}

.facility-item p {
  color: #1D3557;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-hero h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 20px;
}

.thank-you-hero .subtitle {
  color: #F1F5F9;
  font-size: 18px;
  margin-bottom: 30px;
}

.confirmation-details {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.confirmation-details h2 {
  text-align: center;
  margin-bottom: 50px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(29, 53, 87, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-top: 4px solid #E63946;
}

.step-card img {
  width: 70px;
  height: 70px;
}

.step-card h3 {
  color: #E63946;
  margin: 0;
}

.step-card p {
  color: #64748B;
  font-size: 15px;
  margin: 0;
}

.next-steps, .quick-links {
  padding: 60px 20px;
  background: #F1F5F9;
  margin-bottom: 60px;
}

.next-steps h2, .quick-links h2 {
  text-align: center;
  margin-bottom: 50px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.action-card {
  flex: 1 1 350px;
  max-width: 450px;
  background: #FFFFFF;
  padding: 40px 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(29, 53, 87, 0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.action-card:hover {
  border-color: #E63946;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.25);
}

.action-card h3 {
  color: #E63946;
  margin: 0;
}

.action-card p {
  color: #64748B;
  font-size: 15px;
  margin: 0;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.link-card {
  flex: 1 1 220px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  color: #1D3557;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(29, 53, 87, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #E63946;
  color: #E63946;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.25);
}

.urgent-contact {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.urgent-contact h2 {
  text-align: center;
  margin-bottom: 20px;
}

.urgent-contact > p {
  text-align: center;
  color: #64748B;
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-method {
  flex: 1 1 350px;
  background: #F1F5F9;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-method img {
  width: 50px;
  height: 50px;
}

.contact-method p {
  color: #1D3557;
  line-height: 1.8;
  margin: 0;
}

.social-proof {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  margin-bottom: 60px;
}

.social-proof h2 {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 50px;
}

.social-proof h2::after {
  background: linear-gradient(90deg, #E63946, #FFFFFF);
  left: 50%;
  transform: translateX(-50%);
}

.quick-actions {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.quick-actions h2 {
  text-align: center;
  margin-bottom: 50px;
}

.quick-actions .actions-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.quick-actions .action-card {
  text-align: center;
  color: #1D3557;
}

.quick-actions .action-card h3 {
  color: #E63946;
  font-size: 22px;
}

/* FOOTER STYLES */
.site-footer {
  background: linear-gradient(180deg, #1D3557 0%, #0D1B2A 100%);
  color: #F1F5F9;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  flex: 1 1 220px;
  min-width: 220px;
}

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

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

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

.footer-nav a {
  color: #F1F5F9;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-nav a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
  transition: left 0.3s ease;
}

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

.footer-nav a:hover::before {
  left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  color: rgba(241, 245, 249, 0.7);
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  color: #FFFFFF;
  padding: 25px 20px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #E63946;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 15px;
  line-height: 1.6;
  color: #F1F5F9;
}

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

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

.cookie-btn {
  padding: 12px 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #E63946;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: #E63946;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background: #C41E2A;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: #FFFFFF;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #E63946;
}

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

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px 35px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: slideInUp 0.4s ease;
}

.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: #F1F5F9;
  color: #1D3557;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-modal-content h2 {
  color: #1D3557;
  margin-bottom: 25px;
}

.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  background: #F1F5F9;
  border-radius: 15px;
  border-left: 4px solid #E63946;
}

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

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

.cookie-category p {
  color: #64748B;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #CBD5E1;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

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

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

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-menu { display: block; }
  
  /* Hero */
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  
  /* Sections */
  .section { padding: 30px 15px; margin-bottom: 40px; }
  
  /* Benefits Grid */
  .benefits-grid { gap: 20px; }
  .benefit-card { flex: 1 1 100%; max-width: 100%; }
  
  /* Services Grid */
  .services-grid { gap: 20px; }
  .service-card { flex: 1 1 100%; min-width: 100%; }
  
  /* Stats */
  .stats { padding: 50px 20px; }
  .stats-grid { gap: 20px; }
  .stat-item { flex: 1 1 calc(50% - 10px); }
  .stat-number { font-size: 36px; }
  
  /* Testimonials */
  .testimonials-grid { gap: 20px; }
  .testimonial-card { flex: 1 1 100%; }
  
  /* Pricing */
  .pricing-grid { gap: 25px; }
  .pricing-card { flex: 1 1 100%; max-width: 100%; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-10px) scale(1.02); }
  
  /* Courses */
  .courses-grid { gap: 20px; }
  .course-card { flex: 1 1 100%; min-width: 100%; }
  
  /* Contact */
  .options-grid { gap: 20px; }
  .option-card { flex: 1 1 100%; max-width: 100%; }
  .info-grid { gap: 20px; }
  .info-item { flex: 1 1 100%; max-width: 100%; }
  
  /* Team */
  .team-grid { gap: 20px; }
  .team-member { flex: 1 1 100%; max-width: 100%; }
  
  /* Footer */
  .footer-content { gap: 30px; }
  .footer-section { flex: 1 1 100%; }
  
  /* Cookie Consent */
  .cookie-content { flex-direction: column; }
  .cookie-text { flex: 1 1 100%; }
  .cookie-buttons { width: 100%; flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
  
  /* Text Image Sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Service Detail */
  .service-content { padding: 30px 20px; }
  .price-tag { font-size: 24px; }
  
  /* Location */
  .location-info { gap: 20px; }
  .address, .hours { flex: 1 1 100%; }
  
  /* Thank You */
  .steps-grid { gap: 20px; }
  .step-card { flex: 1 1 100%; max-width: 100%; }
  .actions-grid { gap: 20px; }
  .action-card { flex: 1 1 100%; max-width: 100%; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container { padding: 0 30px; }
  
  /* Grids */
  .benefits-grid { gap: 25px; }
  .services-grid { gap: 25px; }
  .service-card { flex: 1 1 calc(50% - 12.5px); }
  .courses-grid { gap: 25px; }
  .pricing-grid { gap: 25px; }
  .pricing-card { flex: 1 1 calc(50% - 12.5px); max-width: 450px; }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

/* Smooth Scrolling */
html { scroll-behavior: smooth; }

/* Focus Styles for Accessibility */
a:focus, button:focus {
  outline: 3px solid #E63946;
  outline-offset: 3px;
}

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