/* ============================================
   VERDANT DALE - SOFT PASTEL DESIGN SYSTEM
   Complete CSS Styles
   ============================================ */

/* ============================================
   CSS RESET & NORMALIZE
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #5a5a5a;
  background: linear-gradient(135deg, #fef9f3 0%, #fef5f1 50%, #faf4f8 100%);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ============================================
   TYPOGRAPHY - SOFT PASTEL STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #7a5c6f;
  margin-bottom: 16px;
}

h1 {
  font-size: 42px;
  color: #8b7192;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  color: #9b8aa4;
}

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

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #6b6b6b;
}

strong {
  font-weight: 600;
  color: #7a5c6f;
}

/* ============================================
   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: rgba(255, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(169, 145, 178, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  border-bottom: 1px solid rgba(213, 191, 217, 0.15);
}

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

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

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

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

.main-nav a:hover {
  background: rgba(213, 191, 217, 0.15);
  color: #9b8aa4;
  transform: translateY(-2px);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #d5bfd9 0%, #c9b5d4 100%);
  border: none;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(169, 145, 178, 0.25);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(169, 145, 178, 0.35);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #fef9f3 0%, #fef5f1 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -5px 0 30px rgba(169, 145, 178, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: #8b7192;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

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

/* ============================================
   BUTTONS - SOFT PASTEL STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(169, 145, 178, 0.15);
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, #c9b5d4 0%, #bda9c9 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(169, 145, 178, 0.25);
}

.btn-secondary {
  background: rgba(213, 191, 217, 0.15);
  color: #8b7192;
  border: 2px solid rgba(213, 191, 217, 0.4);
}

.btn-secondary:hover {
  background: rgba(213, 191, 217, 0.25);
  border-color: rgba(213, 191, 217, 0.6);
  transform: translateY(-3px);
}

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

.hero {
  background: linear-gradient(135deg, #fef9f3 0%, #fef5f1 50%, #faf4f8 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #8b7192;
  text-shadow: 0 2px 10px rgba(169, 145, 178, 0.1);
}

.hero-subheadline {
  font-size: 18px;
  color: #6b6b6b;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

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

.trust-badges span {
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  color: #8b7192;
  box-shadow: 0 2px 10px rgba(169, 145, 178, 0.1);
}

.hero-page {
  background: linear-gradient(135deg, #fef9f3 0%, #faf4f8 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 0 0 30px 30px;
}

.hero-page h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-page p {
  font-size: 18px;
  color: #6b6b6b;
}

/* ============================================
   VALUE PROPOSITION SECTION
   ============================================ */

.value-proposition {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.value-card {
  flex: 1 1 250px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 244, 248, 0.9) 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(169, 145, 178, 0.12);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(169, 145, 178, 0.2);
}

.value-card h3 {
  color: #9b8aa4;
  margin-bottom: 16px;
}

.stats-bar {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px;
  background: rgba(213, 191, 217, 0.1);
  border-radius: 20px;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat strong {
  font-size: 32px;
  color: #8b7192;
  font-weight: 700;
}

.stat span {
  font-size: 14px;
  color: #6b6b6b;
}

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

.services-overview,
.services-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #6b6b6b;
  margin-bottom: 48px;
}

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

.service-card {
  flex: 1 1 350px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 244, 248, 0.95) 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(169, 145, 178, 0.12);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(169, 145, 178, 0.2);
}

.service-card.featured {
  border: 2px solid rgba(213, 191, 217, 0.4);
  background: linear-gradient(135deg, rgba(254, 249, 243, 1) 0%, rgba(250, 244, 248, 1) 100%);
}

.service-card h3 {
  color: #8b7192;
  margin-bottom: 12px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #9b8aa4;
  margin: 12px 0;
}

.service-card .duration {
  font-size: 14px;
  color: #6b6b6b;
  font-style: italic;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #d5bfd9 0%, #c9b5d4 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ============================================
   TESTIMONIALS - IMPROVED READABILITY
   ============================================ */

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

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

.testimonial-carousel {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 450px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(169, 145, 178, 0.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  font-style: italic;
}

.testimonial-card .author {
  font-style: normal;
  color: #6b6b6b;
  border-top: 2px solid rgba(213, 191, 217, 0.2);
  padding-top: 16px;
  margin-top: 8px;
}

.testimonial-card .author strong {
  color: #8b7192;
  display: block;
  margin-bottom: 4px;
}

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

.cta-banner,
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #d5bfd9 0%, #c9b5d4 100%);
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
}

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

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

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

.cta-banner .btn,
.cta-section .btn {
  background: white;
  color: #8b7192;
  border: 2px solid white;
}

.cta-banner .btn:hover,
.cta-section .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

/* ============================================
   PROGRAM CERTYFIKOWANY PAGE
   ============================================ */

.hero-program {
  background: linear-gradient(135deg, #fef9f3 0%, #faf4f8 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.hero-program .badge {
  margin-bottom: 24px;
}

.key-benefits {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.key-benefits span {
  background: rgba(213, 191, 217, 0.15);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #8b7192;
}

.price-highlight {
  font-size: 42px;
  font-weight: 700;
  color: #9b8aa4;
  margin: 24px 0;
}

.next-cohort {
  font-size: 16px;
  color: #6b6b6b;
  margin-top: 24px;
}

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

.program-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.6);
  padding: 32px;
  border-radius: 20px;
}

.detail {
  flex: 1 1 200px;
  padding: 16px;
}

.curriculum {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fef9f3 0%, #faf4f8 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.module {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid #d5bfd9;
  box-shadow: 0 2px 15px rgba(169, 145, 178, 0.1);
  transition: all 0.3s ease;
}

.module:hover {
  transform: translateX(8px);
  border-left-color: #c9b5d4;
}

.module h3 {
  color: #8b7192;
  margin-bottom: 12px;
}

.what-you-get {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.benefits-list li {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 24px;
  border-radius: 15px;
  font-size: 16px;
  color: #4a4a4a;
  box-shadow: 0 2px 10px rgba(169, 145, 178, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefits-list li:before {
  content: '✓';
  color: #9b8aa4;
  font-weight: 700;
  font-size: 20px;
}

.benefits-list li:hover {
  transform: translateX(8px);
  background: rgba(250, 244, 248, 0.9);
}

.investment {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.full-price {
  font-size: 48px;
  font-weight: 700;
  color: #8b7192;
  margin: 24px 0;
}

.payment-options {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}

.option {
  flex: 1 1 250px;
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(169, 145, 178, 0.1);
}

.option strong {
  display: block;
  font-size: 18px;
  color: #8b7192;
  margin-bottom: 8px;
}

.money-back {
  color: #6b6b6b;
  font-style: italic;
  margin-top: 24px;
}

.cta-final {
  padding: 60px 20px;
  background: linear-gradient(135deg, #d5bfd9 0%, #c9b5d4 100%);
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-final h2 {
  color: white;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

.urgency {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 20px;
  display: inline-block;
  margin: 16px 0 24px;
  font-weight: 600;
}

/* ============================================
   O NAS PAGE
   ============================================ */

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

.mission-vision h2,
.mission-vision h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.values-list {
  margin-top: 32px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
}

.values-list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.values-list li {
  padding: 16px 20px;
  background: rgba(250, 244, 248, 0.8);
  border-radius: 12px;
  border-left: 4px solid #d5bfd9;
  color: #4a4a4a;
  transition: all 0.3s ease;
}

.values-list li:hover {
  transform: translateX(8px);
  border-left-color: #c9b5d4;
}

.story {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fef9f3 0%, #faf4f8 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.story p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.stat-card {
  flex: 1 1 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 244, 248, 0.9) 100%);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(169, 145, 178, 0.12);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(169, 145, 178, 0.2);
}

.stat-card strong {
  font-size: 36px;
  color: #8b7192;
  font-weight: 700;
}

.stat-card span {
  color: #6b6b6b;
  font-size: 14px;
}

/* ============================================
   WIEDZA PAGE
   ============================================ */

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

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.category-card {
  flex: 1 1 300px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 244, 248, 0.9) 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(169, 145, 178, 0.12);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(169, 145, 178, 0.2);
}

.category-card h3 {
  color: #8b7192;
  margin-bottom: 12px;
}

.featured-articles {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.article-card {
  flex: 1 1 330px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(169, 145, 178, 0.12);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(169, 145, 178, 0.2);
}

.category-tag {
  display: inline-block;
  background: rgba(213, 191, 217, 0.2);
  color: #8b7192;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.article-card h3 {
  color: #8b7192;
  margin: 8px 0;
}

.article-card .meta {
  font-size: 14px;
  color: #6b6b6b;
  font-style: italic;
  margin: 0;
}

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

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

.resource-card {
  flex: 1 1 300px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 244, 248, 0.9) 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(169, 145, 178, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.resource-card h3 {
  color: #8b7192;
}

/* ============================================
   KONTAKT PAGE
   ============================================ */

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

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

.contact-card {
  flex: 1 1 350px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 244, 248, 0.9) 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(169, 145, 178, 0.12);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(169, 145, 178, 0.2);
}

.contact-card h3 {
  color: #8b7192;
  margin-bottom: 16px;
}

.contact-form-section {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.form-container {
  max-width: 600px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(213, 191, 217, 0.3);
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  color: #4a4a4a;
}

.form-container input:focus,
.form-container textarea:focus {
  outline: none;
  border-color: #d5bfd9;
  box-shadow: 0 0 0 3px rgba(213, 191, 217, 0.1);
}

.form-container textarea {
  min-height: 150px;
  resize: vertical;
}

.form-container label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4a4a4a;
  cursor: pointer;
}

.form-container input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.location,
.office-hours {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.location-details,
.hours-table {
  background: rgba(255, 255, 255, 0.8);
  padding: 32px;
  border-radius: 20px;
  margin-top: 24px;
}

.location-details p,
.hours-table p {
  margin-bottom: 16px;
  font-size: 16px;
}

.note {
  font-style: italic;
  color: #6b6b6b;
  margin-top: 24px;
}

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

.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fef9f3 0%, #faf4f8 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d5bfd9 0%, #c9b5d4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(169, 145, 178, 0.25);
}

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

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

.step-card {
  flex: 1 1 280px;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(169, 145, 178, 0.12);
  text-align: center;
  margin-bottom: 20px;
}

.step-card h3 {
  color: #8b7192;
  margin-bottom: 12px;
}

.recommended-content {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.recommendations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.recommendation-card {
  flex: 1 1 320px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(169, 145, 178, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.recommendation-card h3 {
  color: #8b7192;
}

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

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

.quick-nav a {
  padding: 14px 28px;
  background: rgba(213, 191, 217, 0.15);
  border-radius: 20px;
  color: #8b7192;
  font-weight: 600;
  transition: all 0.3s ease;
}

.quick-nav a:hover {
  background: rgba(213, 191, 217, 0.25);
  transform: translateY(-3px);
}

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

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

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

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

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

footer {
  background: linear-gradient(135deg, #8b7192 0%, #9b8aa4 100%);
  color: white;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 220px;
}

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

.tagline {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: white;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  transition: all 0.3s ease;
}

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

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

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(254, 249, 243, 0.98) 0%, rgba(250, 244, 248, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(169, 145, 178, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 2px solid rgba(213, 191, 217, 0.3);
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #d5bfd9 0%, #c9b5d4 100%);
  color: white;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #c9b5d4 0%, #bda9c9 100%);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: rgba(213, 191, 217, 0.15);
  color: #8b7192;
  border: 2px solid rgba(213, 191, 217, 0.4);
}

.cookie-btn-reject:hover {
  background: rgba(213, 191, 217, 0.25);
}

.cookie-btn-settings {
  background: transparent;
  color: #8b7192;
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: #9b8aa4;
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #fef9f3 0%, #fef5f1 100%);
  border-radius: 30px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(169, 145, 178, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(213, 191, 217, 0.2);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  color: #8b7192;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(213, 191, 217, 0.3);
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #8b7192;
  margin-bottom: 24px;
}

.cookie-category {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  font-size: 16px;
  color: #8b7192;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(213, 191, 217, 0.3);
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, #d5bfd9 0%, #c9b5d4 100%);
}

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

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

.cookie-category p {
  font-size: 14px;
  color: #6b6b6b;
  margin: 0;
}

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

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

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }

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

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

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

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

  .hero-page h1 {
    font-size: 32px;
  }

  /* Adjust spacing */
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }

  /* Stack flex containers */
  .hero-cta,
  .cta-buttons,
  .trust-badges,
  .payment-options {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* Card adjustments */
  .value-card,
  .service-card,
  .testimonial-card,
  .category-card,
  .article-card,
  .contact-card,
  .step-card,
  .recommendation-card {
    flex: 1 1 100%;
  }

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

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

  /* Cookie consent mobile */
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-btn {
    flex: 1;
  }

  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
    margin: 20px;
  }

  /* Stats adjustments */
  .stats-bar {
    flex-direction: column;
    gap: 24px;
  }

  .program-details {
    flex-direction: column;
  }

  .detail {
    flex: 1 1 100%;
  }
}

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

  .stat-card {
    flex: 1 1 calc(33.333% - 16px);
  }
}

@media (min-width: 1025px) {
  /* Desktop enhancements */
  .hero h1 {
    font-size: 52px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  /* Hover effects for desktop */
  .value-card:hover,
  .service-card:hover,
  .category-card:hover {
    transform: translateY(-10px) scale(1.02);
  }
}

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

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

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

.hero-content,
.value-card,
.service-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(213, 191, 217, 0.5);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }

  body {
    background: white;
  }

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