/* ===================================
   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', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ===================================
   GRADIENT MODERN DESIGN SYSTEM
   =================================== */

:root {
  --primary-gradient: linear-gradient(135deg, #065770 0%, #0A7EA4 100%);
  --secondary-gradient: linear-gradient(135deg, #0A7EA4 0%, #00D4AA 100%);
  --accent-gradient: linear-gradient(135deg, #00D4AA 0%, #0CE8B8 100%);
  --warm-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --hero-gradient: linear-gradient(135deg, rgba(6, 87, 112, 0.95) 0%, rgba(10, 126, 164, 0.95) 100%);
  
  --color-primary: #065770;
  --color-secondary: #0A7EA4;
  --color-accent: #00D4AA;
  --color-dark: #1a202c;
  --color-light: #f7fafc;
  --color-text: #2d3748;
  --color-text-light: #4a5568;
  
  --shadow-sm: 0 2px 8px rgba(6, 87, 112, 0.1);
  --shadow-md: 0 4px 16px rgba(6, 87, 112, 0.15);
  --shadow-lg: 0 8px 32px rgba(6, 87, 112, 0.2);
  --shadow-glow: 0 0 30px rgba(0, 212, 170, 0.3);
  
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: var(--color-text);
}

.subheadline {
  font-size: 18px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid transparent;
  border-image: var(--secondary-gradient) 1;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 32px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(10, 126, 164, 0.3));
}

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

.main-nav a {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--secondary-gradient);
  transition: var(--transition);
  border-radius: 3px;
}

.main-nav a:hover {
  color: var(--color-secondary);
}

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

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--secondary-gradient);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  background: var(--hero-gradient);
  color: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="rgba(255,255,255,0.1)" d="M0,0 Q300,60 600,30 T1200,50 L1200,120 L0,120 Z"></path></svg>') bottom center no-repeat;
  background-size: cover;
  opacity: 0.3;
}

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

.hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero .subheadline {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 32px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--secondary-gradient);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: white;
  color: var(--color-primary);
  border-color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
}

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

/* ===================================
   SECTIONS
   =================================== */

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

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
}

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

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

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-gradient);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

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

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

.benefit-card p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-preview,
.programs {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-bottom: 60px;
}

.services-preview h2,
.programs h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card,
.program-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid transparent;
}

.service-card:hover,
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.service-card h3,
.program-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.service-card .price,
.program-card .price {
  font-size: 28px;
  font-weight: 700;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.service-card p,
.program-card p {
  color: var(--color-text-light);
  flex-grow: 1;
}

.service-card ul,
.program-card ul {
  width: 100%;
  padding-left: 20px;
  color: var(--color-text-light);
}

.service-card li,
.program-card li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.service-card .btn,
.program-card .btn {
  width: 100%;
  margin-top: 16px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(6, 87, 112, 0.05) 0%, rgba(10, 126, 164, 0.05) 100%);
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid transparent;
  border-image: var(--secondary-gradient) 1;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 64px;
  font-family: Georgia, serif;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card p {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--color-primary);
  margin-top: auto;
  margin-bottom: 0;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  padding: 80px 20px;
  background: var(--hero-gradient);
  color: white;
  text-align: center;
  margin-bottom: 60px;
  border-radius: var(--border-radius);
}

.cta-section h2 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

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

.cta-section .btn {
  font-size: 18px;
  padding: 16px 48px;
}

.phone-cta {
  margin-top: 24px;
  font-size: 16px;
}

.phone-cta a {
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: underline;
}

.phone-cta a:hover {
  color: white;
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-tiers {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
}

.pricing-tiers h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.pricing-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  max-width: 380px;
  padding: 40px 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 2px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-accent);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

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

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.pricing-card ul {
  width: 100%;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.pricing-card li {
  padding: 12px 0;
  color: var(--color-text-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  font-size: 18px;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ===================================
   SERVICES PRICING
   =================================== */

.services-pricing {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-bottom: 60px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.service-item:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-accent);
  transform: translateX(8px);
}

.service-item h3 {
  flex: 1 1 auto;
  margin: 0;
}

.service-item .price {
  font-size: 24px;
  font-weight: 700;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.service-item .package {
  flex: 1 1 100%;
  color: var(--color-text-light);
  font-size: 14px;
  margin: 8px 0 0;
}

.service-item .note {
  flex: 1 1 100%;
  color: var(--color-accent);
  font-size: 14px;
  font-style: italic;
  margin: 4px 0 0;
}

/* ===================================
   DISCOUNTS SECTION
   =================================== */

.discounts {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
}

.discounts h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.discount-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  padding: 32px;
  background: var(--accent-gradient);
  color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  margin-bottom: 20px;
  position: relative;
}

.discount-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.discount-card h3 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  font-size: 20px;
  margin-bottom: 12px;
}

.discount-card p {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

/* ===================================
   GUARANTEE SECTION
   =================================== */

.guarantee {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(10, 126, 164, 0.1) 100%);
  border-radius: var(--border-radius);
  margin-bottom: 60px;
  text-align: center;
}

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

.guarantee p {
  font-size: 18px;
  margin-bottom: 32px;
}

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

.guarantee li {
  padding: 16px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.guarantee li::before {
  content: '✓';
  background: var(--accent-gradient);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

/* ===================================
   SCHEDULE SECTION
   =================================== */

.schedule {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
}

.schedule h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.schedule-day {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 20px;
  position: relative;
}

.schedule-day::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-gradient);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.schedule-day:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.schedule-day h3 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.schedule-day ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule-day li {
  padding: 12px;
  margin-bottom: 8px;
  background: white;
  border-radius: 8px;
  color: var(--color-text);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.schedule-day li:hover {
  border-left-color: var(--color-accent);
  transform: translateX(4px);
}

/* ===================================
   CLASS DESCRIPTIONS
   =================================== */

.class-descriptions {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-bottom: 60px;
}

.class-descriptions h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.class-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 24px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 20px;
  position: relative;
}

.class-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.class-card h3 {
  margin-bottom: 12px;
}

.class-card p {
  color: var(--color-text-light);
  margin: 0;
}

/* ===================================
   BOOKING SECTION
   =================================== */

.booking {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
  text-align: center;
}

.booking h2 {
  margin-bottom: 32px;
}

.booking ol {
  list-style-position: inside;
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking li {
  padding: 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 8px;
  border-left: 4px solid transparent;
  border-image: var(--secondary-gradient) 1;
}

.booking .policy {
  color: var(--color-text-light);
  font-size: 14px;
  margin: 24px 0;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */

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

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

.contact-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  margin-bottom: 16px;
}

.contact-card a {
  color: var(--color-secondary);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--color-accent);
}

.contact-card .hours,
.contact-card .note {
  color: var(--color-text-light);
  font-size: 14px;
  margin-top: 12px;
}

/* ===================================
   CONTACT FORM SECTION
   =================================== */

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-bottom: 60px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.form-note {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
}

.form-note p {
  text-align: left;
  margin-bottom: 16px;
}

.form-note a {
  color: var(--color-secondary);
  font-weight: 600;
}

.form-note a:hover {
  color: var(--color-accent);
}

/* ===================================
   QUICK ACTIONS
   =================================== */

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

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

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

.action-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.action-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.action-card p {
  color: var(--color-text-light);
  flex-grow: 1;
}

.action-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ===================================
   LOCATION SECTION
   =================================== */

.location {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-bottom: 60px;
}

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

.location-info {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.location-info h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.location-info ul {
  list-style: none;
  padding: 0;
}

.location-info li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.location-info strong {
  color: var(--color-primary);
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-content {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 24px;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--color-text-light);
}

.legal-content a {
  color: var(--color-secondary);
  font-weight: 600;
}

.legal-content a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.last-updated,
.effective-date {
  color: var(--color-text-light);
  font-size: 14px;
  font-style: italic;
}

/* ===================================
   TEAM SECTION
   =================================== */

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

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

.team .intro {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 48px;
}

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

.team-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card h3 {
  margin-bottom: 8px;
}

.team-card .role {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.team-card p {
  color: var(--color-text-light);
  font-size: 14px;
  margin: 0;
}

/* ===================================
   PHILOSOPHY SECTION
   =================================== */

.philosophy {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(6, 87, 112, 0.05) 0%, rgba(10, 126, 164, 0.05) 100%);
  margin-bottom: 60px;
}

.philosophy h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.philosophy-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  padding: 32px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.philosophy-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 0 0 4px 4px;
}

.philosophy-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.philosophy-item h3 {
  margin-top: 16px;
  margin-bottom: 12px;
}

.philosophy-item p {
  color: var(--color-text-light);
  margin: 0;
}

/* ===================================
   MISSION & STORY SECTIONS
   =================================== */

.mission,
.story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.mission {
  background: white;
}

.story {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission h2,
.story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.mission-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(6, 87, 112, 0.05) 0%, rgba(10, 126, 164, 0.05) 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  position: relative;
}

.mission-item h3 {
  margin-bottom: 16px;
}

.mission-item p {
  color: var(--color-text-light);
  margin: 0;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.hero.thank-you {
  padding: 100px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-glow);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.confirmation {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
  text-align: center;
}

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

.confirmation ol {
  list-style-position: inside;
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

.confirmation li {
  padding: 12px;
  margin-bottom: 8px;
}

.next-steps {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-bottom: 60px;
}

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

.next-steps > .container > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 48px;
}

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

.step-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  padding: 32px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--color-text-light);
  flex-grow: 1;
  margin-bottom: 16px;
}

.step-card .btn {
  width: 100%;
}

.urgent-contact {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
  text-align: center;
}

.urgent-contact h2 {
  margin-bottom: 24px;
}

.urgent-contact p {
  margin-bottom: 16px;
}

.urgent-contact a {
  color: var(--color-secondary);
  font-weight: 600;
}

.urgent-contact a:hover {
  color: var(--color-accent);
}

.contact-options {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-bottom: 60px;
  text-align: center;
}

.contact-options h2 {
  margin-bottom: 24px;
}

.contact-options p {
  margin-bottom: 16px;
}

.contact-options a {
  color: var(--color-secondary);
  font-weight: 600;
}

.contact-options a:hover {
  color: var(--color-accent);
}

/* ===================================
   RIGHTS & CONSENT SECTIONS
   =================================== */

.rights,
.contact-dpo,
.consent-forms,
.cookie-types,
.cookie-settings,
.rules-summary,
.download {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
}

.rights h2,
.contact-dpo h2,
.consent-forms h2,
.cookie-types h2,
.cookie-settings h2,
.rules-summary h2,
.download h2 {
  text-align: center;
  margin-bottom: 32px;
}

.rights p,
.contact-dpo p,
.consent-forms p,
.cookie-settings p,
.download p {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}

.rights ul,
.rules-summary ul,
.consent-forms ul,
.cookie-settings ul {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.rights li,
.rules-summary li,
.consent-forms li,
.cookie-settings li {
  padding: 16px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 8px;
  border-left: 4px solid transparent;
  border-image: var(--secondary-gradient) 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rights li::before,
.rules-summary li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.cookies-table {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-row {
  padding: 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 20px;
  position: relative;
}

.cookie-row:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.cookie-info h3 {
  margin-bottom: 12px;
}

.cookie-info p {
  color: var(--color-text-light);
  margin-bottom: 8px;
  text-align: left;
}

.cookie-info strong {
  color: var(--color-primary);
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 60px 20px 20px;
  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 h3 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--color-accent);
}

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

.footer-nav a {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(6, 87, 112, 0.98) 0%, rgba(10, 126, 164, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
  color: white;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--accent-gradient);
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.cookie-btn-reject {
  background: transparent;
  color: white;
  border-color: white;
}

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

.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: white;
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-header {
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-modal-header h2 {
  margin: 0;
  font-size: 24px;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text-light);
  transition: var(--transition);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: var(--color-primary);
  transform: rotate(90deg);
}

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

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 8px;
  border-left: 4px solid transparent;
}

.cookie-category.essential {
  border-left-color: var(--color-primary);
}

.cookie-category.analytics {
  border-left-color: var(--color-secondary);
}

.cookie-category.marketing {
  border-left-color: var(--color-accent);
}

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

.cookie-category h3 {
  margin: 0;
  font-size: 18px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: var(--transition);
}

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

.cookie-toggle input {
  display: none;
}

.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle {
  background: var(--accent-gradient);
}

.cookie-toggle input:checked + .cookie-toggle .cookie-toggle-slider {
  transform: translateX(24px);
}

.cookie-category p {
  color: var(--color-text-light);
  font-size: 14px;
  margin: 0;
}

.cookie-modal-footer {
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.trust-indicator,
.trust-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 212, 170, 0.1);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.note,
.policy,
.visit-info {
  font-size: 14px;
  color: var(--color-text-light);
  font-style: italic;
}

.rating {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
  text-align: center;
  margin-top: 32px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero .subheadline {
    font-size: 16px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Layout adjustments */
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 16px;
    margin-bottom: 40px;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .program-card,
  .testimonial-card,
  .pricing-card,
  .discount-card,
  .schedule-day,
  .class-card,
  .contact-card,
  .action-card,
  .team-card,
  .philosophy-item,
  .mission-item,
  .step-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Grids */
  .benefits-grid,
  .services-grid,
  .programs-grid,
  .testimonials-grid,
  .pricing-grid,
  .discounts-grid,
  .schedule-table,
  .classes-grid,
  .contact-grid,
  .actions-grid,
  .team-grid,
  .philosophy-grid,
  .mission-content,
  .steps-grid {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Service items */
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .service-item .price {
    font-size: 20px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-text {
    flex: 1 1 100%;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  /* Pricing cards mobile adjustment */
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-4px) scale(1);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .discount-card,
  .schedule-day,
  .contact-card,
  .team-card,
  .philosophy-item,
  .mission-item {
    flex: 1 1 calc(50% - 12px);
  }
  
  .service-card,
  .program-card,
  .testimonial-card,
  .class-card,
  .action-card,
  .step-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .pricing-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-section,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
  }
  
  .hero {
    background: none;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black !important;
    background: none !important;
    -webkit-text-fill-color: black !important;
  }
}