/* ============================================
   VIVID WHEELS - PROFESSIONAL CORPORATE DESIGN
   CSS Reset & Base Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #F8F9FA;
  overflow-x: hidden;
}

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

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

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

/* ============================================
   TYPOGRAPHY - PROFESSIONAL CORPORATE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  color: #1A2332;
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #4A5568;
  font-size: 16px;
}

strong {
  font-weight: 600;
  color: #2C3E50;
}

/* ============================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ============================================ */

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

/* ============================================
   HEADER - PROFESSIONAL CORPORATE
   ============================================ */

header {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.logo {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #BDC3C7;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #3498DB;
  transition: width 0.3s ease;
}

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

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #2C3E50;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2C3E50 0%, #34495E 100%);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-left-color: #3498DB;
  transform: translateX(8px);
}

/* ============================================
   HERO SECTION - PROFESSIONAL CORPORATE
   ============================================ */

.hero {
  background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subheadline {
  font-size: 20px;
  color: #BDC3C7;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.trust-indicators span {
  font-size: 16px;
  color: #ECF0F1;
  font-weight: 500;
}

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

/* ============================================
   BUTTONS - PROFESSIONAL CORPORATE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #3498DB;
  color: #FFFFFF;
  border-color: #3498DB;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
  background-color: #2980B9;
  border-color: #2980B9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #2C3E50;
  transform: translateY(-2px);
}

/* ============================================
   SECTIONS - PROFESSIONAL SPACING
   ============================================ */

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

.value-proposition,
.featured-services,
.how-it-works,
.testimonials,
.benefits,
.services-listing,
.faq,
.school-programs,
.pricing-schools,
.birthday-package,
.birthday-themes,
.mission,
.story,
.team,
.qualifications,
.contact-methods,
.office-hours,
.next-steps,
.explore-more {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 40px;
}

.value-proposition h2,
.featured-services h2,
.how-it-works h2,
.testimonials h2,
.benefits h2,
.school-programs h2,
.mission h2,
.story h2,
.team h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1A2332;
}

/* ============================================
   CARDS - FLEXBOX LAYOUTS
   ============================================ */

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

.benefit-card,
.service-card,
.card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background-color: #F8F9FA;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #E0E4E8;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: #3498DB;
}

.benefit-card img,
.service-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.benefit-card h3,
.service-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p,
.service-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
}

.service-card .price {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #3498DB;
  margin: 20px 0;
}

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

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 16px 0;
}

.service-meta span {
  background-color: #E8EDF2;
  color: #2C3E50;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   STEPS SECTION - FLEXBOX
   ============================================ */

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498DB, #2980B9);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.step h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.step p {
  color: #4A5568;
  font-size: 15px;
}

/* ============================================
   TESTIMONIALS - PROFESSIONAL DESIGN
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #ECF0F1 0%, #F8F9FA 100%);
  padding: 60px 20px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #3498DB;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .rating {
  color: #F39C12;
  font-size: 20px;
  margin-bottom: 8px;
}

.testimonial-card strong {
  color: #1A2332;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-card span:last-child {
  color: #7F8C8D;
  font-size: 14px;
}

/* ============================================
   CTA BANNER - PROFESSIONAL CORPORATE
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #BDC3C7;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  margin-top: 24px;
  font-size: 18px;
  color: #ECF0F1;
}

.contact-info a {
  color: #3498DB;
  font-weight: 600;
}

.contact-info a:hover {
  color: #5DADE2;
  text-decoration: underline;
}

/* ============================================
   PAGE HERO - INTERNAL PAGES
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-hero p {
  color: #BDC3C7;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.breadcrumb {
  font-size: 14px;
  color: #BDC3C7;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #3498DB;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

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

.badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* ============================================
   FAQ SECTION - FLEXBOX
   ============================================ */

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

.faq-item {
  background-color: #F8F9FA;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #3498DB;
}

.faq-item h3 {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #4A5568;
  margin-bottom: 0;
}

/* ============================================
   PRICING SECTION - PROFESSIONAL
   ============================================ */

.pricing-box,
.package-box {
  background-color: #FFFFFF;
  border: 2px solid #E0E4E8;
  border-radius: 12px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pricing-box h3,
.package-box h3 {
  color: #2C3E50;
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
}

.package-details {
  text-align: center;
  margin-bottom: 32px;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

.price-large {
  font-size: 48px;
  font-weight: 700;
  color: #3498DB;
  display: block;
  margin-bottom: 8px;
}

.pricing-box ul,
.package-box ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.pricing-box ul li,
.package-box ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #4A5568;
  font-size: 16px;
}

.pricing-box ul li::before,
.package-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27AE60;
  font-weight: 700;
  font-size: 18px;
}

.pricing-box .btn,
.package-box .btn {
  width: 100%;
  margin-top: 24px;
}

/* ============================================
   PROGRAMS & THEMES - FLEXBOX
   ============================================ */

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

.program-card,
.theme-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #E0E4E8;
  transition: all 0.3s ease;
}

.program-card:hover,
.theme-card:hover {
  border-color: #3498DB;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.program-card h3,
.theme-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.program-card .age,
.theme-card .age {
  display: inline-block;
  background-color: #3498DB;
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.program-card .duration,
.theme-card .museum {
  display: block;
  color: #7F8C8D;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 500;
}

/* ============================================
   TIMELINE - FLEXBOX
   ============================================ */

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

.timeline-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  position: relative;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

.timeline-item strong {
  display: block;
  font-size: 36px;
  color: #3498DB;
  margin-bottom: 12px;
  font-weight: 700;
}

.timeline-item h3 {
  color: #2C3E50;
  margin-bottom: 8px;
  font-size: 18px;
}

.timeline-item p {
  color: #4A5568;
  font-size: 14px;
  margin: 0;
}

/* ============================================
   TEAM SECTION - FLEXBOX
   ============================================ */

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

.team-member {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #E0E4E8;
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: #3498DB;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  color: #2C3E50;
  margin-bottom: 8px;
}

.team-member .role {
  display: block;
  color: #3498DB;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-member p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   CREDENTIALS LIST
   ============================================ */

.credentials-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

.credentials-list li {
  padding: 16px 20px;
  padding-left: 48px;
  background-color: #F8F9FA;
  margin-bottom: 12px;
  border-radius: 8px;
  position: relative;
  color: #4A5568;
  font-size: 16px;
  border-left: 4px solid #3498DB;
}

.credentials-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: #27AE60;
  font-weight: 700;
  font-size: 20px;
}

/* ============================================
   CONTACT SECTION - FLEXBOX
   ============================================ */

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

.contact-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #E0E4E8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-card:hover {
  border-color: #3498DB;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.contact-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.contact-card p {
  color: #4A5568;
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-card a {
  color: #3498DB;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card .availability {
  display: block;
  background-color: #E8EDF2;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: #2C3E50;
  font-weight: 600;
  margin: 8px 0;
}

/* ============================================
   OFFICE HOURS TABLE
   ============================================ */

.hours-table {
  max-width: 600px;
  margin: 0 auto 32px;
  background-color: #F8F9FA;
  border-radius: 12px;
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #E0E4E8;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: 600;
  color: #2C3E50;
}

.hours-row span:last-child {
  color: #4A5568;
}

.notes {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  background-color: #FFF9E6;
  border-left: 4px solid #F39C12;
  border-radius: 8px;
}

.notes strong {
  color: #E67E22;
}

.notes ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.notes li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4A5568;
}

.notes li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F39C12;
  font-size: 20px;
}

/* ============================================
   FORM NOTE SECTION
   ============================================ */

.form-note {
  background-color: #FFF9E6;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #F39C12;
  margin-top: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.form-note p {
  color: #4A5568;
  margin-bottom: 16px;
}

.form-note strong {
  color: #E67E22;
}

.form-note a {
  color: #3498DB;
  font-weight: 600;
}

.form-note a:hover {
  text-decoration: underline;
}

.form-note ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.form-note li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #4A5568;
}

.form-note li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #F39C12;
  font-weight: 700;
}

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

.legal-content {
  padding: 40px 20px;
  background-color: #FFFFFF;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
}

.text-section h2 {
  color: #2C3E50;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
  border-bottom: 2px solid #E0E4E8;
  padding-bottom: 12px;
}

.text-section h3 {
  color: #34495E;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.text-section p {
  color: #4A5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

.text-section ul,
.text-section ol {
  margin: 16px 0;
  padding-left: 24px;
}

.text-section li {
  margin-bottom: 8px;
  color: #4A5568;
  line-height: 1.7;
}

.last-updated {
  font-size: 14px;
  color: #7F8C8D;
  font-style: italic;
  margin-top: 12px;
}

.page-hero.legal {
  padding: 40px 20px;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
}

.thank-you-content h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 24px;
}

.confirmation {
  font-size: 20px;
  color: #E8F6F3;
  margin-bottom: 32px;
  line-height: 1.7;
}

.timing {
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.contact-large {
  font-size: 24px;
  font-weight: 700;
  margin: 24px 0;
}

.contact-large a {
  color: #3498DB;
}

.urgent-contact {
  background-color: #FFF9E6;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 40px 0;
}

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

.link-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #E0E4E8;
  transition: all 0.3s ease;
  text-align: center;
}

.link-card:hover {
  border-color: #3498DB;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.link-card h3 a {
  color: #2C3E50;
}

.link-card h3 a:hover {
  color: #3498DB;
}

.link-card p {
  color: #4A5568;
  margin: 0;
}

/* ============================================
   VALUES SECTION
   ============================================ */

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

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: #F8F9FA;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #3498DB;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 18px;
}

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

/* ============================================
   FOOTER - PROFESSIONAL CORPORATE
   ============================================ */

footer {
  background: linear-gradient(135deg, #2C3E50 0%, #1A2332 100%);
  color: #BDC3C7;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

.footer-col h4 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

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

.footer-col nav a:hover {
  color: #3498DB;
  padding-left: 8px;
}

.footer-col a {
  color: #3498DB;
}

.footer-col a:hover {
  color: #5DADE2;
  text-decoration: underline;
}

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

.footer-bottom p {
  color: #7F8C8D;
  font-size: 14px;
  margin: 0;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.cookie-text p {
  color: #BDC3C7;
  font-size: 14px;
  margin: 0;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-all-cookies {
  background-color: #27AE60;
  color: #FFFFFF;
}

#accept-all-cookies:hover {
  background-color: #229954;
  transform: translateY(-2px);
}

#reject-all-cookies {
  background-color: #E74C3C;
  color: #FFFFFF;
}

#reject-all-cookies:hover {
  background-color: #C0392B;
  transform: translateY(-2px);
}

#cookie-settings-btn {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

#cookie-settings-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   COOKIE SETTINGS MODAL
   ============================================ */

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  padding: 24px;
  border-bottom: 2px solid #E0E4E8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.cookie-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: #7F8C8D;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-close-btn:hover {
  background-color: #F8F9FA;
  color: #2C3E50;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

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

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

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

.cookie-toggle.active {
  background-color: #27AE60;
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

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

.cookie-modal-footer {
  padding: 24px;
  border-top: 2px solid #E0E4E8;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-modal-footer button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#save-cookie-settings {
  background-color: #3498DB;
  color: #FFFFFF;
}

#save-cookie-settings:hover {
  background-color: #2980B9;
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography scaling */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .subheadline {
    font-size: 16px;
  }

  /* Section padding */
  .section,
  .value-proposition,
  .featured-services,
  .how-it-works,
  .testimonials,
  .benefits,
  .services-listing,
  .faq,
  .school-programs,
  .pricing-schools,
  .birthday-package,
  .birthday-themes,
  .mission,
  .story,
  .team,
  .contact-methods,
  .office-hours {
    padding: 40px 16px;
  }

  .hero,
  .page-hero {
    padding: 40px 16px;
  }

  .cta-banner {
    padding: 40px 16px;
  }

  /* Flexbox cards - stack on mobile */
  .benefits-grid,
  .services-grid,
  .card-container,
  .content-grid,
  .steps-grid,
  .testimonial-grid,
  .programs-grid,
  .themes-grid,
  .timeline,
  .team-grid,
  .contact-grid,
  .links-grid,
  .values-grid {
    flex-direction: column;
    gap: 20px;
  }

  .benefit-card,
  .service-card,
  .card,
  .step,
  .testimonial-card,
  .program-card,
  .theme-card,
  .timeline-item,
  .team-member,
  .contact-card,
  .link-card,
  .value-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Trust indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Cookie modal */
  .cookie-modal-content {
    max-width: 95%;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-modal-footer button {
    width: 100%;
  }

  /* Package pricing */
  .pricing-box,
  .package-box {
    padding: 24px 16px;
  }

  .price-large {
    font-size: 36px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }

  .step,
  .testimonial-card,
  .program-card,
  .theme-card {
    flex: 1 1 calc(50% - 32px);
  }

  .timeline-item,
  .value-card {
    flex: 1 1 calc(50% - 32px);
  }

  .team-member {
    flex: 1 1 calc(50% - 32px);
  }

  h1 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 48px;
  }
}

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

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

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

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

.benefit-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-banner,
  header,
  footer {
    display: none !important;
  }

  body {
    background-color: #FFFFFF;
  }

  .container {
    max-width: 100%;
  }
}

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

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

.btn:focus,
a:focus {
  outline: 3px solid #3498DB;
  outline-offset: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    background-color: #FFFFFF;
  }

  .hero,
  .page-hero,
  .cta-banner,
  header,
  footer {
    background: #000000;
    color: #FFFFFF;
  }

  .btn-primary {
    background-color: #0000FF;
    border-color: #0000FF;
  }

  a {
    text-decoration: underline;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   END OF PROFESSIONAL CORPORATE CSS
   ============================================ */