/* ================================================
   TURBOFIT HOME - COMPREHENSIVE CSS STYLES
   Warm & Friendly Design Style
   ================================================ */

/* ================================================
   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, Arial, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #FFF8F3;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #E63946;
}

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

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

strong {
  font-weight: 700;
  color: #2d2d2d;
}

em {
  font-style: italic;
  color: #666;
}

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

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

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

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

header {
  background: linear-gradient(135deg, #FFE8E0 0%, #FFF8F3 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

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

header img {
  height: 50px;
  width: auto;
}

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

header nav a {
  font-weight: 600;
  color: #1D3557;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 16px;
}

header nav a:hover {
  background-color: #FFD4CC;
  color: #E63946;
  transform: translateY(-2px);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #E63946;
  color: white;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #d12a36;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #FFE8E0 0%, #FFF8F3 100%);
  z-index: 1002;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E63946;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 20px;
  background: white;
  border-radius: 12px;
  color: #1D3557;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #FFD4CC;
  color: #E63946;
  transform: translateX(8px);
}

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

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, #d12a36 0%, #b91f2a 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

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

.btn-secondary:hover {
  background: #E63946;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}

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

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

.hero {
  background: linear-gradient(135deg, #FFE8E0 0%, #FFCEC4 50%, #FFF8F3 100%);
  padding: 80px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(230, 57, 70, 0.15);
}

.hero .container {
  text-align: center;
}

.hero h1 {
  color: #E63946;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero p {
  font-size: 18px;
  color: #1D3557;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  align-items: center;
}

.trust-badges span {
  background: white;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  color: #1D3557;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.hero-internal {
  background: linear-gradient(135deg, #FFE8E0 0%, #FFCEC4 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 40px;
}

.hero-internal .container {
  text-align: center;
}

.breadcrumb {
  color: #1D3557;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* ================================================
   CARDS & GRIDS
   ================================================ */

.benefits-grid,
.services-grid,
.plans-grid,
.types-grid,
.trainers-grid,
.categories-grid,
.features-grid,
.team-grid,
.stats-grid,
.methods-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.benefit-item,
.service-card,
.plan-card,
.type-card,
.trainer-card,
.category-card,
.feature-item,
.team-member,
.stat-item,
.method-card,
.action-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
}

.benefit-item:hover,
.service-card:hover,
.plan-card:hover,
.type-card:hover,
.trainer-card:hover,
.category-card:hover,
.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.2);
}

.benefit-item h3,
.service-card h3,
.plan-card h3,
.type-card h3,
.trainer-card h3,
.category-card h3 {
  color: #1D3557;
  margin-bottom: 12px;
}

.service-card.featured,
.plan-card.featured {
  border: 3px solid #F4A261;
  background: linear-gradient(135deg, white 0%, #FFF8F3 100%);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #F4A261;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  margin: 16px 0;
}

.plan-card ul,
.type-card ul {
  margin: 20px 0;
  padding-left: 0;
}

.plan-card li,
.type-card li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #4a4a4a;
}

.plan-card li:before,
.type-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
  font-size: 18px;
}

/* ================================================
   STEPS & PROCESS
   ================================================ */

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

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.1);
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E63946 0%, #F4A261 100%);
  color: white;
  border-radius: 50%;
  line-height: 60px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.testimonials {
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE8E0 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #1D3557;
  font-size: 14px;
}

.rating {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 700;
  color: #E63946;
}

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

.cta-section {
  background: linear-gradient(135deg, #E63946 0%, #d12a36 100%);
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 40px rgba(230, 57, 70, 0.3);
}

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

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

.cta-section .btn-primary {
  background: white;
  color: #E63946;
}

.cta-section .btn-primary:hover {
  background: #FFF8F3;
  transform: translateY(-3px);
}

.cta-section .btn-secondary {
  background: transparent;
  border-color: white;
  color: white;
}

.cta-section .btn-secondary:hover {
  background: white;
  color: #E63946;
}

.urgency {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #FFD4CC;
}

/* ================================================
   SCHEDULE & TABLES
   ================================================ */

.schedule-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.schedule-day {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule-day h4 {
  color: #E63946;
  margin-bottom: 8px;
}

.schedule-day p {
  color: #4a4a4a;
  margin-bottom: 0;
}

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

.pricing-card {
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(230, 57, 70, 0.15);
  max-width: 600px;
  margin: 32px auto;
  text-align: center;
}

.pricing-card .price {
  font-size: 48px;
  color: #E63946;
  margin: 24px 0;
}

.pricing-card ul {
  text-align: left;
  margin: 24px 0;
  padding-left: 0;
}

.pricing-card li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #4a4a4a;
}

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

.price-display {
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  margin: 24px 0;
}

/* ================================================
   ABOUT PAGE SPECIFIC
   ================================================ */

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

.mission-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.1);
  margin-bottom: 20px;
}

.mission-item h3 {
  color: #E63946;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.timeline-item {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #F4A261;
}

.timeline-item h4 {
  color: #E63946;
  font-size: 24px;
  margin-bottom: 8px;
}

/* ================================================
   CONTACT PAGE
   ================================================ */

.contact-value {
  font-size: 20px;
  font-weight: 700;
  color: #E63946;
  margin: 16px 0;
}

.form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.1);
  max-width: 700px;
  margin: 32px auto;
}

.form-wrapper p {
  margin-bottom: 24px;
}

.faq {
  max-width: 800px;
  margin: 60px auto;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.faq-item h4 {
  color: #1D3557;
  margin-bottom: 12px;
}

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

.thankyou-hero {
  background: linear-gradient(135deg, #E63946 0%, #F4A261 100%);
  padding: 80px 20px;
  border-radius: 30px;
  text-align: center;
  color: white;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: white;
  color: #E63946;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.thankyou-hero h1 {
  color: white;
}

.thankyou-hero p {
  color: white;
  font-size: 18px;
}

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

.step-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 20px;
}

.step-item h3 {
  color: #E63946;
}

.response-time {
  text-align: center;
  margin-top: 32px;
  font-weight: 700;
  color: #1D3557;
}

.phone-large {
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  margin: 24px 0;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 8px;
}

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

.validity,
.terms {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

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

.legal-content {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 40px auto;
}

.legal-content h1 {
  color: #E63946;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: #1D3557;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #1D3557;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 24px;
  margin: 16px 0;
}

.legal-content li {
  padding: 8px 0;
  color: #4a4a4a;
  list-style: disc;
}

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

.legal-content a:hover {
  color: #d12a36;
}

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

footer {
  background: linear-gradient(135deg, #1D3557 0%, #0f1f33 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 48px);
  min-width: 200px;
}

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

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

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

.footer-section nav a {
  color: #d4d4d4;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #d4d4d4;
  font-size: 14px;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1D3557 0%, #0f1f33 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent p {
  color: white;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.accept-all {
  background: #E63946;
  color: white;
}

.accept-all:hover {
  background: #d12a36;
  transform: translateY(-2px);
}

.reject-all {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.reject-all:hover {
  background: white;
  color: #1D3557;
}

.cookie-settings {
  background: transparent;
  color: #F4A261;
  border: 2px solid #F4A261;
}

.cookie-settings:hover {
  background: #F4A261;
  color: white;
}

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

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

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h3 {
  color: #1D3557;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px;
  background: #FFF8F3;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h4 {
  color: #E63946;
  margin-bottom: 8px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-top: 12px;
}

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

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

.save-preferences {
  background: #E63946;
  color: white;
  padding: 14px 28px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-preferences:hover {
  background: #d12a36;
  transform: translateY(-2px);
}

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

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

.count {
  font-size: 14px;
  color: #F4A261;
  font-weight: 700;
  margin-bottom: 8px;
}

.specialty {
  color: #E63946;
  font-weight: 600;
  margin-bottom: 8px;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px; }
  
  /* Header */
  header nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero,
  .hero-internal {
    padding: 40px 20px;
    border-radius: 20px;
  }
  
  /* Sections */
  section {
    padding: 30px 16px;
    margin-bottom: 40px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Cards */
  .benefit-item,
  .service-card,
  .plan-card,
  .type-card,
  .trainer-card,
  .category-card,
  .feature-item,
  .team-member,
  .stat-item,
  .method-card,
  .action-card,
  .testimonial-card,
  .step,
  .step-item,
  .mission-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Forms */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Legal content */
  .legal-content {
    padding: 32px 24px;
  }
  
  /* Pricing */
  .pricing-card {
    padding: 32px 24px;
  }
  
  .price,
  .pricing-card .price {
    font-size: 32px;
  }
  
  /* Schedule */
  .schedule-day {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .container {
    padding: 0 16px;
  }
  
  .hero,
  .hero-internal {
    padding: 32px 16px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }
  
  .stat-number,
  .phone-large {
    font-size: 32px;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
}

/* ================================================
   ANIMATIONS & TRANSITIONS
   ================================================ */

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

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

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

/* ================================================
   ACCESSIBILITY
   ================================================ */

:focus {
  outline: 3px solid #F4A261;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #F4A261;
  outline-offset: 2px;
}

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-buttons {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}