/* ===================================
   BRIGHT WINDS YOGA & FITNESS
   Playful Dynamic Design System
   ================================== */

/* CSS RESET & BASE */
* {
  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: #2D2D2D;
  background: linear-gradient(135deg, #FFF5F0 0%, #E8F5F4 100%);
  overflow-x: hidden;
}

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;
}

/* TYPOGRAPHY - PLAYFUL DYNAMIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2D5F5D;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
  animation: bounceIn 0.8s ease-out;
}

h2 {
  font-size: 36px;
  color: #E8956C;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E8956C, #FFB88C);
  border-radius: 10px;
  animation: slideIn 0.6s ease-out;
}

h3 {
  font-size: 24px;
  color: #2D5F5D;
}

p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #444;
}

/* ANIMATIONS - PLAYFUL & ENERGETIC */
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3) translateY(-50px); }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideIn {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

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

/* HEADER - BRIGHT & ENERGETIC */
header {
  background: linear-gradient(135deg, #2D5F5D 0%, #3A7572 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(229, 149, 108, 0.3);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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.1) rotate(5deg);
  animation: wiggle 0.5s ease;
}

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

.main-nav a {
  color: #F4EBE8;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 149, 108, 0.3), transparent);
  transition: left 0.5s ease;
}

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover {
  background: rgba(232, 149, 108, 0.2);
  transform: translateY(-3px);
  color: #FFB88C;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #E8956C, #FFB88C);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 149, 108, 0.4);
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(232, 149, 108, 0.2);
  color: #F4EBE8;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #F4EBE8;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 25px;
  background: rgba(232, 149, 108, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(232, 149, 108, 0.3);
  transform: translateX(10px) scale(1.05);
  color: #FFB88C;
}

/* BUTTONS - VIBRANT & PLAYFUL */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #E8956C 0%, #FFB88C 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(232, 149, 108, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(232, 149, 108, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #2D5F5D 0%, #3A7572 100%);
  color: #F4EBE8;
  box-shadow: 0 6px 20px rgba(45, 95, 93, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(45, 95, 93, 0.5);
  background: linear-gradient(135deg, #3A7572 0%, #2D5F5D 100%);
}

/* HERO SECTION - ENERGETIC ENTRANCE */
.hero {
  background: linear-gradient(135deg, #FFE5D9 0%, #D5F2F0 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(232, 149, 108, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(45, 95, 93, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero h1 {
  font-size: 56px;
  color: #2D5F5D;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(232, 149, 108, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badge {
  margin-top: 24px;
  font-size: 14px;
  color: #E8956C;
  font-weight: 600;
  background: rgba(232, 149, 108, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
}

/* SECTION STYLING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

/* BENEFITS GRID - PLAYFUL CARDS */
.benefits {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F4EBE8 0%, #FFF5F0 100%);
}

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

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

.benefit-card {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(232, 149, 108, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before {
  content: '✨';
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 32px;
  opacity: 0;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(232, 149, 108, 0.3);
  border-color: #E8956C;
}

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

.benefit-card h3 {
  color: #E8956C;
  margin-bottom: 16px;
  font-size: 22px;
}

.benefit-card p {
  color: #555;
  line-height: 1.8;
}

/* SERVICES PREVIEW */
.services-preview {
  padding: 60px 20px;
  background: linear-gradient(135deg, #D5F2F0 0%, #E8F5F4 100%);
}

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

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

.service-card {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 6px 20px rgba(45, 95, 93, 0.15);
  transition: all 0.3s ease;
  border-left: 5px solid #E8956C;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 35px rgba(45, 95, 93, 0.25);
  border-left-width: 8px;
}

.service-card h3 {
  color: #2D5F5D;
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-card .price {
  display: block;
  color: #E8956C;
  font-weight: 700;
  font-size: 20px;
  margin-top: 16px;
}

.services-preview .highlight {
  text-align: center;
  background: linear-gradient(135deg, #FFB88C, #E8956C);
  color: white;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  margin: 32px auto;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(232, 149, 108, 0.4);
  animation: pulse 2s infinite;
}

.services-preview .btn {
  display: block;
  margin: 32px auto 0;
  max-width: 300px;
}

/* TESTIMONIALS - BRIGHT & TRUSTWORTHY */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F0 0%, #FFE5D9 100%);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2D5F5D;
}

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

.testimonial-card {
  background: white;
  padding: 32px 28px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(232, 149, 108, 0.2);
  border-top: 4px solid #E8956C;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: rgba(232, 149, 108, 0.2);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(232, 149, 108, 0.3);
}

.testimonial-card p {
  color: #333;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-card cite {
  color: #E8956C;
  font-weight: 700;
  font-style: normal;
  display: block;
  margin-top: 16px;
}

.testimonials .rating {
  text-align: center;
  font-size: 18px;
  color: #2D5F5D;
  font-weight: 600;
  margin-top: 32px;
}

/* PRICING PREVIEW */
.pricing-preview {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F5F4 0%, #D5F2F0 100%);
}

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

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

.pricing-card {
  background: white;
  padding: 36px 28px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(45, 95, 93, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 40px rgba(45, 95, 93, 0.3);
  border-color: #2D5F5D;
}

.pricing-card.popular {
  border-color: #E8956C;
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E8956C, #FFB88C);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(232, 149, 108, 0.4);
}

.pricing-card h3 {
  color: #2D5F5D;
  margin-bottom: 20px;
  font-size: 24px;
}

.pricing-card .price {
  font-size: 42px;
  color: #E8956C;
  font-weight: 700;
  margin: 20px 0;
  display: block;
}

.pricing-card .billing {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
}

.pricing-card p {
  color: #666;
  margin-bottom: 12px;
}

.pricing-preview .highlight {
  text-align: center;
  color: #2D5F5D;
  font-size: 16px;
  margin: 32px 0;
  font-weight: 600;
}

.pricing-preview .btn {
  display: block;
  margin: 0 auto;
  max-width: 350px;
}

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

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 38px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-banner p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .guarantee {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
}

/* LOCATION INFO */
.location-info {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F4EBE8 0%, #FFF5F0 100%);
  text-align: center;
}

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

.location-info .address {
  font-size: 20px;
  color: #2D5F5D;
  font-weight: 700;
  margin-bottom: 16px;
}

.location-info p {
  color: #666;
  margin-bottom: 12px;
}

/* FOOTER - VIBRANT */
footer {
  background: linear-gradient(135deg, #2D5F5D 0%, #1F4442 100%);
  color: #F4EBE8;
  padding: 60px 20px 20px;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

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

.footer-section p {
  color: #C8E6E5;
  margin-bottom: 12px;
  font-size: 14px;
}

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

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

.footer-nav a:hover {
  color: #FFB88C;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(232, 149, 108, 0.2);
  color: #C8E6E5;
  font-size: 14px;
}

/* TEXT IMAGE SECTION */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-section {
  flex: 1 1 400px;
  min-width: 300px;
}

/* STORY PAGE */
.story {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F0 0%, #FFE5D9 100%);
}

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

.milestone {
  background: white;
  padding: 24px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(232, 149, 108, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.milestone:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 10px 30px rgba(232, 149, 108, 0.25);
}

.milestone .year {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #E8956C;
  margin-bottom: 12px;
}

.milestone p {
  color: #555;
  font-size: 14px;
}

/* PHILOSOPHY */
.philosophy {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F5F4 0%, #D5F2F0 100%);
}

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

.value-card {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 6px 20px rgba(45, 95, 93, 0.15);
  transition: all 0.3s ease;
  border-top: 5px solid #2D5F5D;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(45, 95, 93, 0.25);
  border-top-width: 8px;
}

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

/* TEAM */
.team {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F0 0%, #F4EBE8 100%);
}

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

.team-member {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(232, 149, 108, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(232, 149, 108, 0.3);
}

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

.team-member .role {
  color: #E8956C;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 16px;
}

.team-member p {
  color: #666;
  font-size: 14px;
}

/* FACILITIES */
.facilities {
  padding: 60px 20px;
  background: linear-gradient(135deg, #D5F2F0 0%, #E8F5F4 100%);
}

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

.facility {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 6px 20px rgba(45, 95, 93, 0.15);
  transition: all 0.3s ease;
  border-left: 5px solid #E8956C;
  margin-bottom: 20px;
}

.facility:hover {
  transform: translateX(10px) translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 95, 93, 0.25);
  border-left-width: 8px;
}

.facility h3 {
  color: #2D5F5D;
  margin-bottom: 12px;
  font-size: 20px;
}

.facility ul {
  margin-top: 12px;
  color: #666;
}

.facility li {
  margin-bottom: 6px;
}

/* SERVICES LIST */
.services-list {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F0 0%, #FFE5D9 100%);
}

.service-detailed {
  background: white;
  padding: 36px 28px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 8px 25px rgba(232, 149, 108, 0.15);
  transition: all 0.3s ease;
  border-left: 6px solid #E8956C;
}

.service-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(232, 149, 108, 0.25);
  border-left-width: 10px;
}

.service-detailed h3 {
  color: #2D5F5D;
  margin-bottom: 12px;
  font-size: 26px;
}

.service-meta {
  color: #888;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.benefits-list li {
  flex: 1 1 calc(50% - 12px);
  min-width: 200px;
  color: #555;
  padding-left: 24px;
  position: relative;
}

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

.service-detailed .price {
  display: inline-block;
  background: linear-gradient(135deg, #E8956C, #FFB88C);
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 20px;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(232, 149, 108, 0.3);
}

.service-detailed .schedule {
  color: #2D5F5D;
  font-weight: 600;
  margin-top: 12px;
  font-size: 14px;
}

.service-detailed .note {
  background: rgba(232, 149, 108, 0.1);
  padding: 12px 20px;
  border-radius: 15px;
  margin-top: 16px;
  color: #E8956C;
  font-weight: 600;
  display: inline-block;
}

/* TRIAL OFFER */
.trial-offer {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFB88C 0%, #E8956C 100%);
  text-align: center;
  color: white;
}

.trial-offer h2 {
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.trial-offer p {
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
}

.trial-offer .highlight {
  background: rgba(255, 255, 255, 0.3);
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  margin: 24px auto;
  display: inline-block;
  animation: pulse 2s infinite;
}

.trial-offer .guarantee {
  font-size: 14px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
}

/* SCHEDULE */
.schedule {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F5F4 0%, #D5F2F0 100%);
}

.schedule-day {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(45, 95, 93, 0.15);
  transition: all 0.3s ease;
}

.schedule-day:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 95, 93, 0.25);
}

.schedule-day h3 {
  color: #E8956C;
  margin-bottom: 20px;
  font-size: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(232, 149, 108, 0.3);
}

.class-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  margin-bottom: 12px;
  background: rgba(232, 149, 108, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  flex-wrap: wrap;
}

.class-item:hover {
  background: rgba(232, 149, 108, 0.15);
  transform: translateX(10px);
}

.class-item .time {
  font-weight: 700;
  color: #2D5F5D;
  font-size: 16px;
  min-width: 60px;
}

.class-item .class-name {
  flex: 1;
  color: #333;
  font-weight: 600;
  min-width: 150px;
}

.class-item .instructor {
  color: #E8956C;
  font-weight: 600;
  min-width: 80px;
}

.class-item .duration {
  color: #888;
  font-size: 14px;
  min-width: 60px;
}

/* BOOKING INFO */
.booking-info {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F0 0%, #F4EBE8 100%);
}

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

.booking-info ol {
  margin: 20px 0 20px 24px;
}

.booking-info li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.7;
}

.booking-info ul {
  margin: 20px 0 32px 24px;
}

/* PRICING PAGE */
.pricing {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F5F4 0%, #D5F2F0 100%);
}

.pricing .note {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 32px;
  font-style: italic;
}

.pricing-card .savings {
  background: rgba(232, 149, 108, 0.1);
  color: #E8956C;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
}

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

.pricing-card .features li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #555;
}

.pricing-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8956C;
  font-weight: 700;
  font-size: 16px;
}

.pricing-card .ideal-for {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 149, 108, 0.2);
}

/* SPECIAL OFFERS */
.special-offers {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFE5D9 0%, #FFB88C 100%);
}

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

.offer-card {
  background: white;
  padding: 32px 28px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(232, 149, 108, 0.2);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 20px;
}

.offer-card:hover {
  transform: translateY(-12px) scale(1.03) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(232, 149, 108, 0.4);
}

.offer-card h3 {
  color: #E8956C;
  margin-bottom: 16px;
  font-size: 24px;
}

.offer-card p {
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* FAQ */
.faq {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F4EBE8 0%, #FFF5F0 100%);
}

.faq-item {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(45, 95, 93, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #2D5F5D;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(45, 95, 93, 0.2);
  border-left-width: 8px;
}

.faq-item h3 {
  color: #E8956C;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #555;
  line-height: 1.8;
}

/* GALLERY PAGE */
.studio-features {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F5F4 0%, #D5F2F0 100%);
}

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

.feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(45, 95, 93, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(45, 95, 93, 0.25);
}

.feature-card h3 {
  color: #E8956C;
  margin-bottom: 12px;
  font-size: 22px;
}

.feature-card .capacity {
  background: rgba(232, 149, 108, 0.1);
  color: #E8956C;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-top: 12px;
}

.feature-card ul {
  margin-top: 12px;
  list-style: none;
}

.feature-card li {
  padding: 4px 0 4px 24px;
  position: relative;
  color: #555;
}

.feature-card li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #E8956C;
  font-size: 20px;
}

/* ATMOSPHERE */
.atmosphere {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFE5D9 0%, #FFF5F0 100%);
}

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

.atmosphere-card {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 6px 20px rgba(232, 149, 108, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid #E8956C;
  margin-bottom: 20px;
}

.atmosphere-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(232, 149, 108, 0.25);
  border-top-width: 6px;
}

.atmosphere-card h3 {
  color: #2D5F5D;
  margin-bottom: 12px;
}

/* COMMUNITY */
.community {
  padding: 60px 20px;
  background: linear-gradient(135deg, #D5F2F0 0%, #E8F5F4 100%);
}

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

.community-card {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(45, 95, 93, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 20px;
}

.community-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 12px 35px rgba(45, 95, 93, 0.25);
}

.community-card h3 {
  color: #E8956C;
  margin-bottom: 12px;
  font-size: 20px;
}

/* LOCATION */
.location {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F0 0%, #FFE5D9 100%);
  text-align: center;
}

.transport-info {
  background: white;
  padding: 32px 28px;
  border-radius: 20px;
  margin: 32px auto;
  max-width: 600px;
  box-shadow: 0 8px 25px rgba(232, 149, 108, 0.15);
}

.transport-info h3 {
  color: #2D5F5D;
  margin-bottom: 16px;
}

.transport-info ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.transport-info li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #555;
}

.transport-info li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #E8956C;
  font-weight: 700;
}

/* CONTACT PAGE */
.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F5F4 0%, #D5F2F0 100%);
}

.contact-form-placeholder {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(45, 95, 93, 0.15);
}

.form-note {
  background: rgba(232, 149, 108, 0.1);
  padding: 20px;
  border-radius: 15px;
  color: #555;
  margin-bottom: 24px;
  border-left: 5px solid #E8956C;
}

.contact-fields-info {
  margin: 24px 0;
}

.contact-fields-info ul {
  margin-top: 12px;
  list-style: none;
}

.contact-fields-info li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: #555;
}

.contact-fields-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8956C;
  font-weight: 700;
}

.response-time {
  text-align: center;
  color: #2D5F5D;
  font-weight: 600;
  margin-top: 24px;
}

/* CONTACT INFO */
.contact-info {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F0 0%, #FFE5D9 100%);
}

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

.contact-item {
  background: white;
  padding: 32px 28px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  box-shadow: 0 6px 20px rgba(232, 149, 108, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(232, 149, 108, 0.25);
}

.contact-item h3 {
  color: #E8956C;
  margin-bottom: 16px;
  font-size: 22px;
}

.contact-item a {
  color: #2D5F5D;
  font-weight: 600;
}

.contact-item a:hover {
  color: #E8956C;
}

.contact-item .note {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-top: 8px;
}

/* LOCATION MAP */
.location-map {
  padding: 60px 20px;
  background: linear-gradient(135deg, #D5F2F0 0%, #E8F5F4 100%);
}

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

.direction-item {
  background: white;
  padding: 24px 20px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(45, 95, 93, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.direction-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 30px rgba(45, 95, 93, 0.25);
}

.direction-item h3 {
  color: #E8956C;
  margin-bottom: 12px;
  font-size: 20px;
}

.landmarks {
  text-align: center;
  margin-top: 32px;
  color: #666;
  font-style: italic;
}

/* QUICK ACTIONS */
.quick-actions {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFE5D9 0%, #FFF5F0 100%);
}

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

.action-card {
  background: white;
  padding: 32px 28px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(232, 149, 108, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 20px;
}

.action-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 40px rgba(232, 149, 108, 0.3);
}

.action-card h3 {
  color: #2D5F5D;
  margin-bottom: 12px;
  font-size: 22px;
}

.action-card p {
  color: #666;
  margin-bottom: 24px;
}

/* BOOKING PROCESS */
.booking-process {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F4EBE8 0%, #FFF5F0 100%);
}

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

.step {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(232, 149, 108, 0.15);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(232, 149, 108, 0.25);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: linear-gradient(135deg, #E8956C, #FFB88C);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(232, 149, 108, 0.3);
}

.step p {
  color: #555;
  line-height: 1.6;
}

.what-to-bring {
  text-align: center;
  margin-top: 32px;
  background: rgba(232, 149, 108, 0.1);
  padding: 16px 24px;
  border-radius: 15px;
  color: #555;
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F0 0%, #F4EBE8 100%);
}

.legal-content .text-section {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(45, 95, 93, 0.1);
}

.legal-content h2 {
  color: #2D5F5D;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content h3 {
  color: #E8956C;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 22px;
}

.legal-content p {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul, .legal-content ol {
  margin: 16px 0 16px 24px;
  color: #555;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.last-updated {
  text-align: center;
  color: #888;
  font-size: 14px;
  font-style: italic;
}

.related-links {
  max-width: 800px;
  margin: 32px auto 0;
  background: rgba(232, 149, 108, 0.1);
  padding: 24px;
  border-radius: 15px;
}

.related-links h3 {
  color: #2D5F5D;
  margin-bottom: 16px;
}

.related-links ul {
  list-style: none;
}

.related-links li {
  margin-bottom: 10px;
}

.related-links a {
  color: #E8956C;
  font-weight: 600;
}

.related-links a:hover {
  color: #2D5F5D;
  text-decoration: underline;
}

.acceptance-note {
  background: rgba(232, 149, 108, 0.1);
  padding: 20px;
  border-radius: 15px;
  margin-top: 32px;
  border-left: 5px solid #E8956C;
}

/* THANK YOU PAGE */
.success-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: linear-gradient(135deg, #E8956C, #FFB88C);
  color: white;
  border-radius: 50%;
  font-size: 48px;
  margin: 0 auto 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(232, 149, 108, 0.4);
  animation: bounceIn 0.8s ease-out;
}

.confirmation {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F5F4 0%, #D5F2F0 100%);
}

.next-steps {
  margin-top: 48px;
}

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

.step-card {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  box-shadow: 0 6px 20px rgba(45, 95, 93, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(45, 95, 93, 0.25);
}

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

/* WHILE WAITING */
.while-waiting {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F0 0%, #FFE5D9 100%);
}

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

.suggestion-card {
  background: white;
  padding: 32px 28px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(232, 149, 108, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 20px;
}

.suggestion-card:hover {
  transform: translateY(-12px) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(232, 149, 108, 0.3);
}

.suggestion-card h3 {
  color: #2D5F5D;
  margin-bottom: 12px;
  font-size: 22px;
}

.suggestion-card p {
  color: #666;
  margin-bottom: 24px;
}

/* CONTACT URGENT */
.contact-urgent {
  padding: 60px 20px;
  background: linear-gradient(135deg, #D5F2F0 0%, #E8F5F4 100%);
}

.contact-options {
  background: white;
  padding: 32px 28px;
  border-radius: 20px;
  max-width: 600px;
  margin: 24px auto 0;
  box-shadow: 0 8px 25px rgba(45, 95, 93, 0.15);
}

.contact-options p {
  color: #555;
  margin-bottom: 12px;
  font-size: 16px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D5F5D 0%, #3A7572 100%);
  color: #F4EBE8;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-banner p {
  color: #F4EBE8;
  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);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 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 {
  color: #2D5F5D;
  margin-bottom: 24px;
}

.cookie-category {
  background: rgba(232, 149, 108, 0.05);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
  border-left: 4px solid #E8956C;
}

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

.cookie-category p {
  color: #555;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #E8956C;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .pricing-card,
  .value-card,
  .team-member,
  .facility,
  .feature-card,
  .atmosphere-card,
  .community-card,
  .contact-item,
  .direction-item,
  .action-card,
  .step,
  .offer-card,
  .step-card,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .milestone {
    flex: 1 1 calc(50% - 24px);
  }
  
  .class-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .class-item .time,
  .class-item .class-name,
  .class-item .instructor,
  .class-item .duration {
    min-width: auto;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .benefits-list li {
    flex: 1 1 100%;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .milestone {
    flex: 1 1 100%;
  }
}

/* TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .value-card,
  .facility,
  .feature-card,
  .atmosphere-card,
  .community-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .pricing-card,
  .team-member,
  .offer-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .milestone {
    flex: 1 1 calc(50% - 24px);
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-banner,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .hero,
  .section {
    page-break-inside: avoid;
  }
}