/* --- THEME & DESIGN OVERHAUL --- */
:root {
  /* --- LIGHT MODE (High Contrast) --- */
  --color-background: #f7fafc;
  --color-surface: #ffffff;
  --color-text: #1A202C;
  --color-text-secondary: #2D3748;
  --color-primary: #2c5aa0;
  --color-primary-hover: #2a4d8d;
  --color-primary-active: #1e3a5f;
  --color-btn-primary-text: #ffffff;
  --color-border: rgba(45, 55, 72, 0.15);
  --color-success: #2f855a;
  --color-warning: #d69e2e;
  --color-danger: #e53e3e;
  --color-hero-bg: #edf2f7;
  --color-focus-ring: rgba(44, 90, 160, 0.5);
  --color-accent: #38b2ac;
  --color-muted: #718096;

  /* Shadows with better contrast */
  --shadow-sm: 0 1px 3px rgba(45, 55, 72, 0.12), 0 1px 2px rgba(45, 55, 72, 0.08);
  --shadow-md: 0 4px 6px rgba(45, 55, 72, 0.1), 0 2px 4px rgba(45, 55, 72, 0.08);
  --shadow-lg: 0 10px 15px rgba(45, 55, 72, 0.15), 0 4px 6px rgba(45, 55, 72, 0.1);
}

body.dark-mode {
  /* --- DARK MODE (High Contrast) --- */
  --color-background: #1a202c;
  --color-surface: #2d3748;
  --color-text: #FFFFFF;
  --color-text-secondary: #E2E8F0;
  --color-primary: #4299e1;
  --color-primary-hover: #63b3ed;
  --color-primary-active: #3182ce;
  --color-btn-primary-text: #1a202c;
  --color-border: rgba(255, 255, 255, 0.16);
  --color-success: #48bb78;
  --color-warning: #ed8936;
  --color-danger: #f56565;
  --color-hero-bg: #2d3748;
  --color-focus-ring: rgba(66, 153, 225, 0.6);
  --color-accent: #38b2ac;
  --color-muted: #a0aec0;

  /* Enhanced shadows for Dark Mode */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4), 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* --- BASE STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@700&family=Poppins:wght@400;500;700&display=swap');

html {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body { margin: 0; padding-top: 80px; }
body.menu-open { overflow: hidden; }
*, *::before, *::after { box-sizing: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: "Lexend Deca", sans-serif; font-weight: 700; line-height: 1.2; color: var(--color-text); }
h1 { font-size: 3.5rem; } h2 { font-size: 2.5rem; } h3 { font-size: 1.5rem; }
p { margin: 0 0 16px 0; color: var(--color-text-secondary); }
a { color: var(--color-primary); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-primary-hover); }

/* --- HEADER --- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000; height: 80px;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.header--hidden { transform: translateY(-100%); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__brand { display: flex; align-items: center; gap: 12px; color: var(--color-text); }
.nav__logo-img { height: 55px; }
.nav__logo { font-size: 1.25rem; color: var(--color-text); margin: 0; }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__action-btn {
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none;
  color: var(--color-text); cursor: pointer;
  padding: 8px; border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav__action-btn:hover { background-color: var(--color-border); }
.nav__action-btn svg { width: 24px; height: 24px; }
.nav__phone-desktop { font-weight: 500; padding: 8px 16px; border-radius: 99px; }
.nav__phone-mobile { display: none; }

/* --- THEME TOGGLE --- */
.theme-toggle {
  background: transparent; border: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0; border-radius: 50%;
  transition: background-color 0.3s ease;
}
.theme-toggle:hover { background-color: var(--color-border); }
.theme-toggle svg { width: 22px; height: 22px; color: var(--color-text); }
.theme-toggle .moon-icon { display: none; }
body.dark-mode .theme-toggle .sun-icon { display: none; }
body.dark-mode .theme-toggle .moon-icon { display: block; }

/* --- NAVIGATION (DESKTOP) --- */
.nav__menu--desktop { display: block; }
.nav__list--desktop { display: flex; list-style: none; margin: 0; padding: 0; gap: 32px; }
.nav__link { color: var(--color-text); font-weight: 500; position: relative; padding: 8px 0; }
.nav__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--color-primary); transition: width 0.3s ease; }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* --- NAVIGATION (MOBILE) --- */
.nav__toggle { display: none; }
.nav__menu--mobile { display: none; }

/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero__slide.active {
  opacity: 1;
  visibility: visible;
}

.hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7);
  transition: transform 0.8s ease;
}

.hero__slide.active .hero__bg-image {
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.8) 0%, rgba(42, 111, 151, 0.6) 100%);
}

.hero__container { 
  position: relative; 
  z-index: 2; 
  text-align: center;
  color: white;
}

.hero__title { 
  max-width: 800px; 
  margin: 0 auto 24px; 
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  color: white;
  animation: fadeInUp 1s ease-out;
}

.hero__title .highlight { 
  color: #a8dadc;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero__subtitle { 
  font-size: 1.2rem; 
  max-width: 700px; 
  margin: 0 auto 32px; 
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 32px 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
  animation: pulse 2s infinite;
}

.stat__label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.feature {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.city-selector {
  margin: 32px 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.city-selector h3 {
  color: white;
  margin-bottom: 16px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.city-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.city-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.city-btn:hover,
.city-btn.active {
  background: rgba(168, 218, 220, 0.9);
  border-color: #a8dadc;
  color: #1d3557;
  transform: translateY(-2px);
}

.hero__buttons { 
  display: flex; 
  gap: 16px; 
  justify-content: center; 
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 3;
}

.hero__nav-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero__nav-btn:hover {
  background: rgba(168, 218, 220, 0.9);
  border-color: #a8dadc;
  color: #1d3557;
  transform: scale(1.1);
}

.hero__indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #a8dadc;
  transform: scale(1.2);
}

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 9999px; font-size: 1rem;
  font-weight: 500; cursor: pointer; transition: all 0.3s ease;
  border: 2px solid transparent; text-decoration: none; min-height: 48px;
}
.btn--primary { background: var(--color-primary); color: var(--color-btn-primary-text); }
.btn--primary:hover { background: var(--color-primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { 
  background: transparent; 
  border-color: rgba(255, 255, 255, 0.8); 
  color: rgba(255, 255, 255, 0.95); 
}
.btn--outline:hover { 
  background: rgba(255, 255, 255, 0.15); 
  border-color: rgba(255, 255, 255, 1);
  color: #ffffff; 
  transform: translateY(-2px);
  backdrop-filter: blur(10px);
}

/* Outline button for non-hero sections */
.btn--outline:not(.hero .btn--outline) {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}
.btn--outline:not(.hero .btn--outline):hover {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
  backdrop-filter: none;
}
.btn--lg { padding: 16px 32px; font-size: 1.125rem; }
.btn--full-width { width: 100%; }

/* --- SECTIONS --- */
.section__header { text-align: center; margin-bottom: 48px; }
.section__title { position: relative; display: inline-block; padding-bottom: 8px; }
.section__title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: var(--color-primary); border-radius: 9999px; }
.section__subtitle { max-width: 600px; margin: 0 auto; color: var(--color-text-secondary); }
.benefits, .pricing, .testimonials, .contact { padding: 80px 0; }
.benefits { background: var(--color-surface); }
.pricing { background: var(--color-background); } /* Alternating bg */
.testimonials { background: var(--color-surface); } /* Alternating bg */
.contact { background: var(--color-background); } /* Alternating bg */


/* --- CARDS (Benefits, Pricing, Testimonials) --- */
.benefit__card, .package__card, .testimonial__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.benefit__card:hover, .package__card:hover, .testimonial__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.benefit__card { text-align: center; }
.benefit__icon { font-size: 2.5rem; margin-bottom: 16px; color: var(--color-primary); }
.benefit__title { font-size: 1.25rem; margin-bottom: 12px; }

/* --- PRICING --- */
.packages__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.package__card { display: flex; flex-direction: column; text-align: center; }
.package__card.popular { border-width: 2px; }
.package__popular { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--color-primary); color: var(--color-btn-primary-text); padding: 4px 16px; border-radius: 9999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.package__description { flex-grow: 1; min-height: 48px; }
.package__price-details { display: flex; justify-content: space-around; gap: 16px; margin: 24px 0; padding: 16px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.price-label { display: block; font-size: 12px; color: var(--color-text-secondary); margin-bottom: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.price-value { display: block; font-size: 2rem; font-weight: 700; color: var(--color-primary); }
.package__savings { color: var(--color-success); font-weight: 500; margin-bottom: 24px; font-size: 1rem; }
.package__card .btn { margin-top: auto; }

/* --- TESTIMONIALS --- */
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 32px; }
.testimonial__card { padding: 0; overflow: hidden; }
.testimonial__image-container { width: 100%; height: 280px; overflow: hidden; }
.testimonial__image { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s ease; }
.testimonial__card:hover .testimonial__image { transform: scale(1.05); }
.testimonial__image-placeholder { 
  width: 100%; 
  height: 100%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background: var(--color-border); 
  color: var(--color-text-secondary); 
  font-size: 4rem;
}
.testimonial__review-section { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.testimonial__rating { text-align: center; margin-bottom: 16px; }
.testimonial__stars { color: #f5b32e; font-size: 1.25rem; letter-spacing: 2px; }
.testimonial__content { flex-grow: 1; margin-bottom: 24px; }
.testimonial__text { line-height: 1.7; color: var(--color-text-secondary); text-align: center; margin: 0; position: relative; padding: 16px; background: var(--color-background); border-radius: 8px; border-left: 4px solid var(--color-primary); font-style: italic; }
.testimonial__footer { text-align: center; padding-top: 16px; border-top: 1px solid var(--color-border); margin-top: auto; }
.testimonial__author { font-weight: 700; margin-bottom: 4px; font-size: 1.125rem; }
.testimonial__area { font-size: 0.875rem; }

/* --- CONTACT --- */
.contact__content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; margin-top: 48px; }
.contact__info h3 { 
  margin-bottom: 24px; 
  color: var(--color-text);
}
.contact__item { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 16px;
  color: var(--color-text-secondary);
}
.contact__item strong {
  color: var(--color-text);
  font-weight: 600;
}
.contact__item a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}
.contact__item a:hover {
  color: var(--color-primary-hover);
}
.business__hours h3 {
  color: var(--color-text);
  margin-bottom: 16px;
}
.hours__list { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
  margin-top: 16px; 
}
.hours__item { 
  display: flex; 
  justify-content: space-between; 
  padding: 8px 0; 
  border-bottom: 1px dashed var(--color-border);
  color: var(--color-text-secondary);
}
.hours__item span:first-child {
  color: var(--color-text);
  font-weight: 500;
}
.contact__form { background: var(--color-surface); padding: 32px; border-radius: 16px; border: 1px solid var(--color-border); }
.form-group { margin-bottom: 24px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.875rem; color: var(--color-text); }
.form-control { 
  display: block; 
  width: 100%; 
  padding: 14px 16px; 
  font-size: 1rem; 
  color: var(--color-text); 
  background-color: var(--color-background); 
  border: 2px solid var(--color-border); 
  border-radius: 8px; 
  transition: all 0.3s ease; 
  min-height: 52px;
  font-family: inherit;
}
.form-control:focus { 
  border-color: var(--color-primary); 
  outline: none; 
  box-shadow: 0 0 0 3px var(--color-focus-ring);
  background-color: var(--color-background);
}
.form-control::placeholder {
  color: var(--color-muted);
  opacity: 1;
}
textarea.form-control { resize: vertical; }

/* --- QUICK CONTACT SECTION --- */
.quick-contact {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  padding: 60px 0;
  text-align: center;
}

.quick-contact__content {
  max-width: 800px;
  margin: 0 auto;
}

.quick-contact__title {
  color: white;
  margin-bottom: 16px;
  font-size: 2.5rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.quick-contact__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.quick-contact__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
}

.quick-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.quick-btn svg {
  margin-bottom: 12px;
  width: 32px;
  height: 32px;
}

.quick-btn span {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.quick-btn small {
  font-size: 0.9rem;
  opacity: 0.9;
}

.quick-btn--whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

.quick-btn--phone:hover {
  background: #007bff;
  border-color: #007bff;
}

.quick-contact__hours {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
}

/* --- PRICING CITY SELECTOR --- */
.pricing-city-selector {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  margin: 32px 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.pricing-city-selector h3 {
  color: var(--color-text);
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.pricing-city-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.pricing-city-btn {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  color: var(--color-text);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.pricing-city-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
  transform: translateY(-2px);
}

.pricing-city-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-btn-primary-text);
  box-shadow: var(--shadow-md);
}

.selected-city-display {
  color: var(--color-text-secondary);
  font-size: 1rem;
  margin: 0;
}

.current-city-pricing {
  color: var(--color-primary);
  font-weight: 600;
}

/* --- FOOTER --- */
.footer { 
  background: var(--color-primary); 
  color: var(--color-btn-primary-text); 
  padding: 48px 0; 
  transition: background-color 0.3s ease, color 0.3s ease;
}
body.dark-mode .footer { 
  background: var(--color-surface); 
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}
.footer__content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer__title, .footer__subtitle { 
  color: var(--color-btn-primary-text); 
  transition: color 0.3s ease;
}
body.dark-mode .footer__title,
body.dark-mode .footer__subtitle { 
  color: var(--color-text); 
}
.footer__description, .footer__links a, .social__link, .footer__bottom p, .footer__link { 
  color: rgba(255, 255, 255, 0.8); 
  transition: color 0.3s ease;
}
body.dark-mode .footer__description,
body.dark-mode .footer__links a,
body.dark-mode .social__link,
body.dark-mode .footer__bottom p,
body.dark-mode .footer__link { 
  color: var(--color-text-secondary); 
}
.footer__links a:hover, .social__link:hover, .footer__link:hover { 
  color: var(--color-btn-primary-text); 
}
body.dark-mode .footer__links a:hover,
body.dark-mode .social__link:hover,
body.dark-mode .footer__link:hover { 
  color: var(--color-primary); 
}
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 8px; }
.social__links { display: flex; gap: 16px; }
.footer__bottom { 
  padding-top: 24px; 
  border-top: 1px solid rgba(255, 255, 255, 0.2); 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 16px; 
  font-size: 0.875rem; 
}
body.dark-mode .footer__bottom {
  border-top: 1px solid var(--color-border);
}

/* --- FLOATING ACTION BUTTONS --- */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
}

.call__float, .whatsapp__float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.call__float {
  background: #007bff;
  color: white;
}

.call__float:hover {
  background: #0056b3;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.whatsapp__float {
  background: #25d366;
  color: white;
}

.whatsapp__float:hover {
  background: #1ea952;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  
  .call__float, .whatsapp__float {
    width: 52px;
    height: 52px;
  }
  
  .call__float svg {
    width: 20px;
    height: 20px;
  }
  
  .whatsapp__float svg {
    width: 24px;
    height: 24px;
  }
}

/* --- MOBILE RESPONSIVE STYLES --- */
@media (max-width: 992px) {
  body { padding-top: 70px; }
  .header { height: 70px; }
  .nav__logo-img { height: 45px; }
  .nav__logo { font-size: 1.1rem; }
  .nav__menu--desktop { display: none; }
  .nav__phone-desktop { display: none; }
  .nav__phone-mobile { display: flex; }

  /* Hamburger Toggle */
  .nav__toggle {
    display: flex; flex-direction: column; justify-content: center;
    cursor: pointer; gap: 5px; padding: 8px;
    width: 40px; height: 40px;
    border: none; background: none; z-index: 1001;
  }
  .nav__toggle span {
    width: 24px; height: 2px;
    background: var(--color-text);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
  }
  .nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile Menu Overlay */
  .nav__menu--mobile {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: -100%;
    width: 100%; height: 100%;
    background-color: var(--color-surface);
    padding: 100px 24px 40px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
  }
  .nav__menu--mobile.active { right: 0; }
  .nav__list--mobile {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column;
    gap: 16px; flex-grow: 1;
  }
  .nav__link-mobile {
    display: block;
    color: var(--color-text);
    font-size: 1.75rem;
    font-weight: 700;
    padding: 8px 0;
  }
  .nav__menu-footer {
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }
  .contact__content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { padding-top: 65px; }
  .header { height: 65px; }
  .container { padding: 0 16px; }
  
  /* Typography scaling */
  h1 { font-size: 2.2rem; line-height: 1.2; } 
  h2 { font-size: 1.8rem; } 
  h3 { font-size: 1.3rem; }
  
  /* Hero adjustments */
  .hero { min-height: 500px; max-height: 700px; }
  .hero__stats { 
    flex-direction: row; 
    flex-wrap: wrap;
    gap: 16px; 
    justify-content: center;
  }
  .stat { min-width: 120px; }
  .stat__number { font-size: 1.8rem; }
  .stat__label { font-size: 0.8rem; }
  .hero__buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero__buttons .btn { width: 100%; max-width: 280px; padding: 14px 24px; }
  .hero__nav { display: none; }
  
  /* City selectors */
  .city-buttons { gap: 8px; }
  .city-btn { padding: 8px 12px; font-size: 0.85rem; }
  .pricing-city-buttons { gap: 8px; }
  .pricing-city-btn { padding: 8px 12px; font-size: 0.85rem; }
  .pricing-city-selector { padding: 20px; margin: 24px 0; }
  
  /* Contact section */
  .quick-contact__buttons { flex-direction: column; align-items: center; gap: 16px; }
  .quick-contact__title { font-size: 1.8rem; }
  .quick-btn { min-width: 200px; padding: 20px 24px; }
  
  /* Grid adjustments */
  .packages__grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 20px; }
  .benefits__grid { grid-template-columns: 1fr; gap: 20px; }
  
  /* Footer */
  .footer__bottom { flex-direction: column; text-align: center; gap: 12px; }
  
  /* Form improvements */
  .contact__content { gap: 24px; }
  .form-control { font-size: 16px; } /* Prevents zoom on iOS */
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  
  /* Even smaller typography for tiny screens */
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  
  /* Hero compact mode */
  .hero { min-height: 450px; }
  .hero__title { margin-bottom: 16px; }
  .hero__subtitle { font-size: 1rem; margin-bottom: 24px; }
  .hero__stats { flex-direction: column; gap: 12px; }
  .stat__number { font-size: 1.5rem; }
  
  /* Compact city buttons */
  .city-btn, .pricing-city-btn { 
    padding: 6px 10px; 
    font-size: 0.8rem; 
    min-width: auto;
  }
  .city-buttons, .pricing-city-buttons { 
    justify-content: center; 
    gap: 6px;
  }
  
  /* Compact cards */
  .package__card, .benefit__card, .testimonial__card { 
    padding: 20px; 
  }
  
  /* Quick contact adjustments */
  .quick-contact__title { font-size: 1.6rem; }
  .quick-btn { padding: 16px 20px; min-width: 180px; }
  .quick-btn span { font-size: 1.1rem; }
  .quick-btn svg { width: 28px; height: 28px; }
  
  /* Mobile menu adjustments */
  .nav__menu--mobile { padding: 80px 16px 32px; }
  .nav__link-mobile { font-size: 1.5rem; }
  
  /* Section spacing */
  .benefits, .pricing, .testimonials, .contact { padding: 60px 0; }
  .section__header { margin-bottom: 32px; }
}

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

/* --- ANIMATIONS --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- ACCESSIBILITY IMPROVEMENTS --- */
@media (prefers-reduced-motion: reduce) {
  .fade-in, .hero__slide, .hero__bg-image, .btn, .package__card, .testimonial__card {
    transition: none !important;
    animation: none !important;
  }
  .hero__slide.active .hero__bg-image {
    transform: none !important;
  }
}

/* Focus improvements */
.btn:focus,
.city-btn:focus,
.pricing-city-btn:focus,
.nav__link:focus,
.hero__nav-btn:focus,
.indicator:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* High contrast support */
@media (prefers-contrast: high) {
  :root {
    --color-border: rgba(45, 55, 72, 0.3);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  body.dark-mode {
    --color-border: rgba(255, 255, 255, 0.3);
  }
}

/* --- THEORY CLASSES SECTION --- */
.theory-classes {
  padding: 4rem 0;
  background: var(--color-background);
}

.theory-intro {
  margin-bottom: 3rem;
  text-align: center;
}

.theory-intro__content {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.theory-intro h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.theory-intro p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.theory-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.theory-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.theory-stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.theory-stat__label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.theory-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.theory-package__card {
  position: relative;
  background: var(--color-surface);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  text-align: center;
}

.theory-package__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.theory-package__card.popular {
  border: 2px solid var(--color-primary);
  transform: scale(1.02);
}

.theory-package__popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.theory-package__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.theory-package__details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--color-background);
  border-radius: 8px;
}

.theory-package__duration,
.theory-package__sessions {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.theory-package__price {
  margin-bottom: 2rem;
}

.theory-package__currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.theory-package__amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
}

.theory-package__features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.theory-package__features li {
  padding: 0.5rem 0;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}

.theory-package__features li:last-child {
  border-bottom: none;
}

.theory-features {
  margin: 3rem 0;
}

.theory-features h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.theory-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.theory-feature {
  text-align: center;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.theory-feature__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.theory-feature h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.theory-feature p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- THEORY SECTION - MATCHING WEBSITE DESIGN --- */
.theory-classes {
  padding: 80px 0;
  background: var(--color-background);
}

.theory-simple-section {
  margin-bottom: 48px;
}

.theory-intro-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.theory-intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

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

.theory-intro__badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.theory-intro__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.theory-intro__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.theory-intro__price-section {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.theory-price-item {
  text-align: center;
}

.theory-price-label {
  display: block;
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.theory-price-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.theory-intro__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 32px 0;
}

.theory-feature-card {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.theory-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary);
}

.theory-feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.theory-feature-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.theory-feature-card__description {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.theory-intro__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.theory-intro__actions .btn {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 180px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.theory-intro__actions .btn:hover {
  transform: translateY(-2px);
}

.theory-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.theory-stat {
  text-align: center;
  padding: 20px;
  background: var(--color-background);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.theory-stat__number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
  animation: pulse 2s infinite;
}

.theory-stat__label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* --- COMBO PACKAGES STYLING --- */
.packages-section {
  margin: 3rem 0;
}

.packages-section__title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
  position: relative;
}

.packages-section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.combo-package__card {
  position: relative;
  background: var(--color-surface);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  text-align: center;
}

.combo-package__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.combo-package__card.popular {
  border: 2px solid var(--color-primary);
  transform: scale(1.02);
}

.combo-package__popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.combo-package__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.combo-package__description {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.combo-package__components {
  background: var(--color-background);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.combo-component {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.combo-component:last-child {
  margin-bottom: 0;
}

.component-label {
  font-weight: 600;
  color: var(--color-primary);
  min-width: 70px;
}

.component-value {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  text-align: right;
  flex: 1;
  margin-left: 1rem;
}

.combo-package__pricing {
  margin-bottom: 2rem;
}

.price-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.price-option {
  background: var(--color-background);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.price-details {
  margin-bottom: 0.5rem;
}

.original-price {
  display: block;
  font-size: 0.9rem;
  color: var(--color-muted);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.combo-price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.savings {
  display: inline-block;
  background: var(--color-success);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.combo-package__features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.combo-package__features li {
  padding: 0.5rem 0;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.combo-package__features li:last-child {
  border-bottom: none;
}

/* --- INSTRUCTOR PROGRAM SECTION --- */
.instructor-program {
  padding: 4rem 0;
  background: var(--color-surface);
}

.instructor-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.instructor-hero__content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.instructor-hero__content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.instructor-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.highlight-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.highlight-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.highlight-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.instructor-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.instructor-requirements,
.instructor-benefits {
  background: var(--color-background);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.instructor-requirements h3,
.instructor-benefits h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.requirements-list,
.benefits-list {
  list-style: none;
}

.requirement-item,
.benefit-item {
  padding: 1rem 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
  line-height: 1.5;
}

.requirement-item:last-child,
.benefit-item:last-child {
  border-bottom: none;
}

.instructor-process {
  margin: 3rem 0;
}

.instructor-process h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  padding: 2rem;
  background: var(--color-background);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.process-step__number {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.process-step__content {
  flex: 1;
}

.process-step__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.process-step__description {
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.process-step__duration {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.instructor-cta {
  background: linear-gradient(135deg, var(--color-background) 0%, var(--color-surface) 100%);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.instructor-cta__content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.instructor-cta__content p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.instructor-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- RESPONSIVE DESIGN FOR NEW SECTIONS --- */
@media (max-width: 768px) {
  .theory-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .theory-classes {
    padding: 60px 0;
  }
  
  .theory-simple-section {
    margin-bottom: 32px;
  }
  
  .theory-intro-card {
    margin: 0 16px;
    padding: 24px 20px;
  }
  
  .theory-intro__title {
    font-size: 1.5rem;
  }
  
  .theory-intro__price-section {
    flex-direction: column;
    gap: 12px;
  }
  
  .theory-price-item {
    padding: 8px 0;
  }
  
  .theory-price-value {
    font-size: 1.5rem;
  }
  
  .theory-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .theory-stat {
    padding: 16px 12px;
  }
  
  .theory-stat__number {
    font-size: 1.4rem;
  }
  
  .theory-intro__features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
  }
  
  .theory-feature-card {
    padding: 20px;
  }
  
  .theory-feature-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .theory-feature-card__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .theory-intro__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
  
  .theory-intro__actions .btn {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
  }
  
  .theory-packages {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .theory-package__card.popular,
  .combo-package__card.popular {
    transform: none;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .packages-section__title {
    font-size: 1.5rem;
  }
  
  .price-breakdown {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .combo-component {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .component-value {
    text-align: left;
    margin-left: 0;
  }
  
  .instructor-highlight {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .instructor-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .process-step__number {
    margin: 0 auto 1rem;
  }
  
  .instructor-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .instructor-hero {
    padding: 2rem 1rem;
  }
  
  .instructor-hero__content h3 {
    font-size: 2rem;
  }
}
