/* ============================================
   BRAXEN ORATORIA - MODERN BOLD DESIGN SYSTEM
   Complete CSS Styles for All Pages
   ============================================ */

/* ============================================
   CSS RESET & NORMALIZE
   ============================================ */
* {
  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, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/* ============================================
   TYPOGRAPHY SYSTEM - MODERN BOLD
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1E3A5F;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 40px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

strong {
  font-weight: 700;
  color: #1E3A5F;
}

/* ============================================
   COLOR SYSTEM - MODERN BOLD PALETTE
   ============================================ */
:root {
  --primary: #1E3A5F;
  --secondary: #C8102E;
  --accent: #F4E5D3;
  --white: #FFFFFF;
  --black: #000000;
  --gray-light: #F8F9FA;
  --gray: #6C757D;
  --gray-dark: #2C3E50;
  --success: #28A745;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

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

/* ============================================
   MOBILE MENU TOGGLE BUTTON
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  background: var(--secondary);
  color: var(--white);
  font-size: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--primary);
  z-index: 1002;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: var(--white);
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: var(--white);
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--accent);
  padding-left: 12px;
}

/* ============================================
   HEADER
   ============================================ */
header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 48px;
  width: auto;
}

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

.main-nav a {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--secondary);
}

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

.header-cta .btn {
  white-space: nowrap;
}

/* ============================================
   BUTTONS - MODERN BOLD STYLE
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.3);
}

.btn-primary:hover {
  background: #A00E25;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-large {
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 800;
}

/* ============================================
   HERO SECTIONS - BOLD & IMPACTFUL
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2C4E73 100%);
  color: var(--white);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--secondary);
  opacity: 0.1;
  transform: skewX(-15deg);
  transform-origin: top right;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

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

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  color: var(--accent);
}

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

.trust-badge {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-page {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.hero-page h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-page p {
  font-size: 20px;
  color: var(--accent);
  max-width: 700px;
  margin: 0 auto;
}

.trust-stat {
  font-weight: 700;
  margin-top: 16px;
  font-size: 18px;
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.value-proposition {
  padding: 80px 20px;
  background: var(--gray-light);
}

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

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

.stat-item {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  max-width: 280px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.stat-item strong {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-item p {
  font-size: 16px;
  color: var(--gray-dark);
  margin: 0;
  font-weight: 600;
}

/* ============================================
   SERVICES/COURSES GRID - FLEXBOX LAYOUT
   ============================================ */
.services-preview {
  padding: 80px 20px;
}

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

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 48px;
}

.services-grid,
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.service-card,
.course-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 3px solid var(--gray-light);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover,
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.service-card h3,
.course-card h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p,
.course-card p {
  flex-grow: 1;
  margin-bottom: 16px;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  margin: 16px 0;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.course-meta span {
  background: var(--accent);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.course-card.featured {
  border-color: var(--secondary);
  border-width: 4px;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
}

/* ============================================
   METHODOLOGY SECTIONS
   ============================================ */
.methodology-preview,
.methodology-overview,
.process-steps {
  padding: 80px 20px;
  background: var(--white);
}

.methodology-preview h2,
.methodology-overview h2,
.process-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

.methodology-steps,
.phases-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.step,
.phase {
  background: var(--gray-light);
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 260px;
  border-left: 6px solid var(--secondary);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.step:hover,
.phase:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-hover);
}

.step h3,
.phase h3 {
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: 22px;
}

.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.principle {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  text-align: center;
  border: 3px solid var(--accent);
}

.principle h3 {
  color: var(--secondary);
  font-size: 20px;
  margin-bottom: 12px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonials,
.testimonials-featured,
.testimonials-by-course {
  padding: 80px 20px;
  background: var(--gray-light);
}

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

.testimonials-grid,
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 6px solid var(--secondary);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--gray-dark);
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-card strong {
  display: block;
  font-size: 18px;
  color: var(--primary);
  margin-top: 16px;
  font-weight: 800;
}

.testimonial-card span {
  display: block;
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
}

.testimonial-card.featured {
  border-width: 8px;
  border-color: var(--secondary);
  background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
}

.course-testimonials {
  margin-bottom: 48px;
}

.course-testimonials h3 {
  color: var(--secondary);
  margin-bottom: 24px;
  font-size: 28px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
  padding: 80px 20px;
  background: var(--white);
}

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

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

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  background: var(--gray-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.benefit-item:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: var(--shadow);
}

.benefit-item img {
  width: 64px;
  height: 64px;
}

.benefit-item p {
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

/* ============================================
   CTA SECTIONS - BOLD & URGENT
   ============================================ */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary) 0%, #A00E25 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 40px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--secondary);
}

.cta-section .btn-primary:hover {
  background: var(--accent);
  transform: translateY(-4px) scale(1.05);
}

.guarantee,
.urgency {
  margin-top: 24px;
  font-weight: 700;
  font-size: 16px;
}

/* ============================================
   BLOG SECTIONS
   ============================================ */
.featured-post {
  padding: 80px 20px;
  background: var(--white);
}

.post-featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
}

.post-featured h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
}

.post-featured .excerpt {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.post-featured .category {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 14px;
  opacity: 0.9;
}

.blog-categories {
  padding: 60px 20px;
  background: var(--gray-light);
}

.blog-categories h2 {
  text-align: center;
  margin-bottom: 32px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category-card {
  background: var(--white);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 24px;
  font-weight: 700;
  border: 3px solid var(--primary);
  transition: all 0.3s ease;
}

.category-card:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.recent-posts {
  padding: 80px 20px;
  background: var(--white);
}

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

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.post-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 3px solid var(--gray-light);
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.post-card .category {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  align-self: flex-start;
}

.post-card h3 {
  font-size: 22px;
  margin: 8px 0;
}

.post-card .date {
  font-size: 14px;
  color: var(--gray);
  margin-top: auto;
}

.resources {
  padding: 80px 20px;
  background: var(--gray-light);
}

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

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.resource-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 300px;
  text-align: center;
  border: 3px solid var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-card h3 {
  color: var(--secondary);
  font-size: 24px;
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */
.contact-options,
.contact-form-section {
  padding: 80px 20px;
}

.contact-options h2,
.contact-form-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.contact-option {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.contact-option img {
  width: 64px;
  height: 64px;
}

.contact-option h3 {
  font-size: 22px;
  margin: 8px 0;
}

.form-wrapper,
.form-info {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 3px solid var(--accent);
}

.form-wrapper p,
.form-info p {
  margin-bottom: 16px;
  font-weight: 600;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
}

.form-actions {
  margin-top: 24px;
}

.response-time,
.response-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin-top: 16px;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-size: 16px;
}

.newsletter-form input:focus {
  border-color: var(--secondary);
}

.newsletter-section {
  padding: 80px 20px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.newsletter-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter-section p {
  margin-bottom: 32px;
  font-size: 18px;
}

.newsletter-section .newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   LOCATION & MAP
   ============================================ */
.location-map,
.office-hours {
  padding: 80px 20px;
  background: var(--white);
}

.location-map h2,
.office-hours h2 {
  text-align: center;
  margin-bottom: 48px;
}

.map-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.map-placeholder {
  flex: 1 1 400px;
  min-height: 400px;
  background: var(--gray-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--primary);
}

.location-info {
  flex: 1 1 300px;
  background: var(--gray-light);
  padding: 32px;
  border-radius: 12px;
}

.location-info h3 {
  color: var(--secondary);
  margin-bottom: 16px;
}

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

.hours-item {
  background: var(--white);
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  flex: 1 1 200px;
  max-width: 280px;
  border: 3px solid var(--accent);
}

.hours-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--secondary);
}

/* ============================================
   FAQ SECTIONS
   ============================================ */
.faq,
.faq-contact {
  padding: 80px 20px;
  background: var(--gray-light);
}

.faq h2,
.faq-contact h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.faq-item {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--secondary);
}

.faq-item h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  margin: 0;
  color: var(--gray-dark);
}

/* ============================================
   COURSE FORMATS
   ============================================ */
.course-formats {
  padding: 80px 20px;
  background: var(--white);
}

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

.formats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.format-card {
  background: var(--gray-light);
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 240px;
  text-align: center;
  border: 3px solid var(--primary);
  transition: all 0.3s ease;
}

.format-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.format-card h3 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* ============================================
   ABOUT/STORY SECTIONS
   ============================================ */
.story,
.mission-vision,
.achievements,
.facilities {
  padding: 80px 20px;
}

.story h2,
.mission-vision h2,
.achievements h2,
.facilities h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

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

.mvv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.mvv-item {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 300px;
  border-top: 6px solid var(--secondary);
}

.mvv-item h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--secondary);
}

.mvv-item ul {
  padding-left: 0;
}

.mvv-item li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-weight: 600;
}

.mvv-item li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 20px;
}

.contact-info {
  background: var(--accent);
  padding: 24px;
  border-radius: 8px;
  margin-top: 32px;
}

.contact-info p {
  margin-bottom: 8px;
  font-weight: 600;
}

/* ============================================
   LEARNING TECHNIQUES
   ============================================ */
.scientific-foundation,
.learning-techniques {
  padding: 80px 20px;
  background: var(--gray-light);
}

.scientific-foundation h2,
.learning-techniques h2 {
  text-align: center;
  margin-bottom: 48px;
}

.techniques-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.technique {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.technique:hover {
  border-color: var(--secondary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.technique h3 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* ============================================
   LEGAL/THANK YOU PAGES
   ============================================ */
.legal-content {
  padding: 60px 20px;
  background: var(--white);
}

.legal-content .text-section {
  max-width: 900px;
}

.legal-content h2 {
  color: var(--secondary);
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: var(--primary);
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.legal-content table th,
.legal-content table td {
  padding: 12px;
  text-align: left;
  border: 2px solid var(--gray-light);
}

.legal-content table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.cookie-settings-section,
.rights-form-section {
  max-width: 700px;
  margin: 40px auto;
  background: var(--gray-light);
  padding: 40px;
  border-radius: 12px;
}

.cookie-settings-section h2,
.rights-form-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.toggle-item {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px solid var(--gray-light);
}

.toggle-item strong {
  font-size: 18px;
  color: var(--primary);
}

.toggle-item span {
  font-weight: 700;
  color: var(--secondary);
}

.thank-you-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 24px;
}

.success-icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.thank-you-hero h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you-hero .lead {
  font-size: 24px;
  color: var(--accent);
}

.confirmation-details,
.next-steps,
.while-waiting,
.return-home,
.confirmation-message,
.next-actions {
  padding: 60px 20px;
}

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

.step-item,
.action-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  text-align: center;
  border: 3px solid var(--accent);
}

.action-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.step-item h3,
.action-card h3 {
  color: var(--secondary);
  font-size: 22px;
  margin-bottom: 12px;
}

.trust-reassurance {
  padding: 60px 20px;
  background: var(--gray-light);
}

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

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

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  max-width: 320px;
}

.reassurance-item img {
  width: 32px;
  height: 32px;
}

.reassurance-item p {
  margin: 0;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================
   METRICS SECTION
   ============================================ */
.metrics {
  padding: 80px 20px;
  background: var(--primary);
  color: var(--white);
}

.metrics h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

.metrics .stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.metrics .stat-item {
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid var(--accent);
}

.metrics .stat-item strong {
  color: var(--accent);
}

.metrics .stat-item p {
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 20px 20px;
}

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

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

.footer-column h3 {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

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

.footer-column li a {
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column li a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer-column .newsletter-form {
  margin-top: 16px;
}

.footer-column .newsletter-form input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.footer-column .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-column .newsletter-form .btn {
  background: var(--secondary);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 700;
}

.footer-column .newsletter-form .btn:hover {
  background: var(--accent);
  color: var(--primary);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
  margin: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links a {
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
}

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

.cookie-banner .btn {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
}

.cookie-banner .btn-primary {
  background: var(--secondary);
}

.cookie-banner .btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

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

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

.cookie-modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-hover);
}

.cookie-modal-content h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

.cookie-category {
  background: var(--gray-light);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary);
}

.cookie-category-info p {
  font-size: 14px;
  margin: 0;
  color: var(--gray);
}

.cookie-toggle {
  font-weight: 700;
  color: var(--secondary);
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Show mobile menu overlay */
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-page h1 {
    font-size: 36px;
  }
  
  /* Header adjustments */
  .header-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Section padding */
  .section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  /* Grid adjustments - ensure flexbox */
  .stats-grid,
  .services-grid,
  .courses-grid,
  .benefits-grid,
  .testimonials-grid,
  .posts-grid,
  .resources-grid,
  .contact-grid,
  .formats-grid,
  .techniques-grid,
  .mvv-grid {
    flex-direction: column;
  }
  
  .stat-item,
  .service-card,
  .course-card,
  .benefit-item,
  .testimonial-card,
  .post-card,
  .resource-card,
  .contact-option,
  .format-card,
  .technique,
  .mvv-item {
    max-width: 100%;
  }
  
  /* Text-image sections */
  .text-image-section,
  .map-wrapper {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-actions {
    flex-direction: column;
  }
  
  .cookie-banner .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 1025px) {
  .hero h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 40px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden {
  display: none;
}

.visible {
  display: block;
}

.text-bold {
  font-weight: 700;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.bg-primary {
  background: var(--primary);
}

.bg-secondary {
  background: var(--secondary);
}

.bg-accent {
  background: var(--accent);
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in {
  animation: slideIn 0.4s ease-out;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  header,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  h1 {
    font-size: 24pt;
  }
  
  h2 {
    font-size: 20pt;
  }
}