/* ========================================
   SCAMBINCUO RHETORIK TRAINING - SCANDINAVIAN CLEAN DESIGN
   Professional, minimalist, functional
   ======================================== */

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1A4D7C;
  margin-bottom: 24px;
}

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

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

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  color: #2c3e50;
}

strong {
  font-weight: 600;
  color: #1A4D7C;
}

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

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

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

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

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

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

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #2c3e50;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: #1A4D7C;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C8A882;
  transition: width 0.3s ease;
}

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

.cta-button {
  background-color: #1A4D7C;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid #1A4D7C;
}

.cta-button:hover {
  background-color: transparent;
  color: #1A4D7C;
}

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

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid #1A4D7C;
  font-size: 24px;
  color: #1A4D7C;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
}

.mobile-menu-toggle:hover {
  background-color: #1A4D7C;
  color: #ffffff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #1A4D7C;
  font-size: 24px;
  color: #1A4D7C;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #1A4D7C;
  color: #ffffff;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2c3e50;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #1A4D7C;
  padding-left: 8px;
}

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

.btn-primary {
  display: inline-block;
  background-color: #1A4D7C;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #1A4D7C;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: transparent;
  color: #1A4D7C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 77, 124, 0.2);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #1A4D7C;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #1A4D7C;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #1A4D7C;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #2c3e50;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: #1A4D7C;
  color: #1A4D7C;
  background-color: #E8F1F5;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.hero h1 {
  margin-bottom: 16px;
}

.subheadline {
  font-size: 22px;
  color: #C8A882;
  font-weight: 400;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.hero p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #555;
}

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e8e8e8;
}

.trust-indicators span {
  font-size: 15px;
  color: #2c3e50;
  font-weight: 500;
}

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

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

section h2 {
  text-align: center;
  margin-bottom: 16px;
}

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #555;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
  background-color: #fafafa;
}

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

.benefit-card {
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 450px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #C8A882;
}

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

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.benefit-card p {
  color: #555;
  line-height: 1.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-overview,
.services-grid {
  background-color: #ffffff;
}

.services-grid .container > a {
  display: block;
  text-align: center;
  margin-top: 40px;
}

.services-grid .services-detailed,
.services-grid .container > div:first-of-type {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card,
.service-card-detailed {
  background-color: #fafafa;
  padding: 40px;
  border-radius: 4px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  position: relative;
}

.service-card:hover,
.service-card-detailed:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.service-card h3,
.service-card-detailed h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.service-card p,
.service-card-detailed p {
  flex-grow: 1;
  color: #555;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8e8e8;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #C8A882;
  font-family: 'Playfair Display', serif;
}

.duration {
  font-size: 14px;
  color: #777;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #1A4D7C;
  color: #ffffff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

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

.testimonials,
.featured-testimonials {
  background-color: #fafafa;
}

.testimonial-grid,
.testimonials-featured {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card,
.testimonial-card-featured {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  border-left: 4px solid #C8A882;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card-featured {
  max-width: 800px;
  flex: 1 1 100%;
}

.testimonial-card p,
.testimonial-card-featured p {
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e50;
  font-style: italic;
}

.quote {
  font-size: 18px;
  line-height: 1.8;
  color: #2c3e50;
  font-style: italic;
}

.testimonial-author,
.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong,
.author-info strong {
  font-size: 16px;
  color: #1A4D7C;
  font-weight: 600;
}

.testimonial-author span,
.author-info span {
  font-size: 14px;
  color: #777;
}

.rating {
  color: #C8A882;
  font-size: 20px;
  letter-spacing: 2px;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats,
.stats-results {
  background-color: #1A4D7C;
  color: #ffffff;
  padding: 60px 20px;
}

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

.stat-item,
.stat-card {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #C8A882;
  font-family: 'Playfair Display', serif;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: #ffffff;
  display: block;
}

.stat-card p {
  color: #ffffff;
  font-size: 15px;
}

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

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1A4D7C 0%, #2a5d8c 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

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

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background-color: #C8A882;
  border-color: #C8A882;
  color: #1A4D7C;
  font-weight: 700;
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: transparent;
  color: #C8A882;
  border-color: #C8A882;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-preview {
  background-color: #fafafa;
}

.contact-info,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
}

.contact-item,
.contact-card {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
}

.contact-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.contact-item h3,
.contact-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-item p,
.contact-card p {
  color: #555;
  line-height: 1.8;
}

.contact-item a,
.contact-card a {
  color: #1A4D7C;
  text-decoration: underline;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-form-section {
  background-color: #ffffff;
}

.form-wrapper {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.form-description {
  flex: 1 1 300px;
  min-width: 280px;
}

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

.form-description p {
  margin-bottom: 24px;
  color: #555;
}

.form-benefits {
  list-style: none;
  padding: 0;
}

.form-benefits li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  color: #2c3e50;
}

.form-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C8A882;
  font-weight: 700;
}

.contact-form {
  flex: 1 1 500px;
  min-width: 300px;
  background-color: #fafafa;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
  font-size: 15px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #1A4D7C;
  box-shadow: 0 0 0 3px rgba(26, 77, 124, 0.1);
}

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

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-group-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-group-checkbox label {
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.form-group-checkbox a {
  color: #1A4D7C;
  text-decoration: underline;
}

.form-note {
  font-size: 14px;
  color: #777;
  margin-top: 16px;
}

/* ========================================
   TRAINER SECTION
   ======================================== */

.trainer-grid {
  background-color: #ffffff;
}

.trainers {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.trainer-card {
  background-color: #fafafa;
  padding: 40px;
  border-radius: 4px;
  flex: 1 1 calc(33.333% - 40px);
  min-width: 300px;
  max-width: 400px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.trainer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.trainer-title {
  font-size: 16px;
  color: #C8A882;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.specializations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  background-color: #E8F1F5;
  color: #1A4D7C;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.bio {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.credentials {
  list-style: none;
  padding: 0;
}

.credentials li {
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
  font-size: 14px;
  color: #2c3e50;
}

.credentials li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C8A882;
  font-weight: 700;
}

/* ========================================
   EXPERTISE SECTION
   ======================================== */

.expertise-areas,
.training-formats {
  background-color: #fafafa;
}

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

.expertise-card,
.format-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 450px;
  border-left: 4px solid #1A4D7C;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.format-card {
  text-align: center;
  border-left: none;
  border-top: 4px solid #C8A882;
}

.format-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.expertise-card h3,
.format-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.expertise-card p,
.format-card p {
  color: #555;
  font-size: 15px;
}

/* ========================================
   BLOG SECTION
   ======================================== */

.featured-post {
  background-color: #fafafa;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.post-featured {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.category-tag {
  display: inline-block;
  background-color: #E8F1F5;
  color: #1A4D7C;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-featured h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.excerpt {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.date,
.read-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.post-card {
  background-color: #fafafa;
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 400px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.post-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.read-more {
  color: #1A4D7C;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #C8A882;
  padding-left: 4px;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */

.newsletter {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  text-align: center;
  padding: 80px 20px;
}

.newsletter h2 {
  margin-bottom: 16px;
}

.newsletter > .container > p {
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 300px;
  padding: 16px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
}

.email-input:focus {
  outline: none;
  border-color: #1A4D7C;
  box-shadow: 0 0 0 3px rgba(26, 77, 124, 0.1);
}

.privacy-note {
  font-size: 13px;
  color: #777;
  max-width: 500px;
  margin: 16px auto 0;
}

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

.legal-page {
  background-color: #ffffff;
  padding: 80px 20px;
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 16px;
}

.last-updated {
  text-align: center;
  color: #777;
  font-size: 14px;
  margin-bottom: 48px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 20px;
  text-align: left;
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.legal-content ul {
  list-style: disc;
  padding-left: 32px;
  margin-bottom: 20px;
}

.legal-content ul li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #2c3e50;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: #ffffff;
  border-radius: 50%;
  font-size: 48px;
  line-height: 80px;
  margin: 0 auto 32px;
  font-weight: 700;
}

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.next-steps {
  background-color: #fafafa;
  padding: 80px 20px;
}

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

.step-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.step-card .step-number {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  margin-bottom: 0;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #555;
}

.resources {
  background-color: #ffffff;
  padding: 80px 20px;
}

.resource-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.resource-card {
  background-color: #fafafa;
  padding: 40px;
  border-radius: 4px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.resource-card p {
  flex-grow: 1;
  font-size: 15px;
  color: #555;
}

.testimonial-highlight {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  padding: 80px 20px;
}

.testimonial-card-large {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #C8A882;
}

.contact-options-quick {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact-quick {
  text-align: center;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  min-width: 240px;
}

.contact-quick p {
  color: #E8F1F5;
  margin: 0;
}

.contact-quick strong {
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}

/* ========================================
   MISSION/VISION/PHILOSOPHY SECTIONS
   ======================================== */

.mission-vision,
.philosophy,
.story,
.certifications,
.why-choose-us,
.trainer-philosophy {
  background-color: #ffffff;
}

.content-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-section {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 4px;
  border-left: 4px solid #C8A882;
}

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

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

.text-section ul {
  list-style: none;
  padding: 0;
}

.text-section ul li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  color: #2c3e50;
}

.text-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C8A882;
  font-weight: 700;
}

.values-list {
  background-color: #fafafa;
  padding: 40px;
  border-radius: 4px;
}

.values-list h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

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

.philosophy-card {
  background-color: #fafafa;
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 450px;
  text-align: center;
  border: 1px solid #e8e8e8;
}

.philosophy-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.philosophy-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.philosophy-card p {
  color: #555;
  font-size: 15px;
}

/* ========================================
   CASE STUDIES
   ======================================== */

.case-studies {
  background-color: #fafafa;
}

.case-study-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.case-study-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1A4D7C;
}

.case-study-card p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.case-study-card strong {
  color: #C8A882;
  font-weight: 600;
}

/* ========================================
   MAP SECTION
   ======================================== */

.map-section {
  background-color: #fafafa;
}

.map-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.map-placeholder {
  flex: 1 1 500px;
  min-width: 300px;
  background-color: #E8F1F5;
  padding: 60px 40px;
  border-radius: 4px;
  text-align: center;
}

.map-placeholder p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.location-details {
  flex: 1 1 300px;
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
}

.location-details h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.location-details p {
  margin-bottom: 16px;
  line-height: 1.8;
}

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

footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 60px 20px 20px;
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

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

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

.footer-col nav a {
  font-size: 14px;
  color: #bbb;
  transition: color 0.3s ease;
}

.footer-col nav a:hover {
  color: #C8A882;
  padding-left: 4px;
}

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

.footer-bottom p {
  font-size: 14px;
  color: #bbb;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  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;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.cookie-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #E8F1F5;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background-color: #C8A882;
  color: #2c3e50;
}

.cookie-accept:hover {
  background-color: #d4b899;
}

.cookie-reject {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: #C8A882;
  border: 1px solid #C8A882;
}

.cookie-settings:hover {
  background-color: rgba(200, 168, 130, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 24px;
  margin-bottom: 0;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2c3e50;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 1;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.category-header h4 {
  font-size: 18px;
  margin-bottom: 0;
}

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

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

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

input:checked + .toggle-slider {
  background-color: #1A4D7C;
}

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

input:disabled + .toggle-slider {
  background-color: #1A4D7C;
  opacity: 0.6;
  cursor: not-allowed;
}

.category-description {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

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

.modal-actions button {
  flex: 1 1 150px;
}

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

@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  
  .main-nav { gap: 24px; }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .main-nav,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header .container {
    justify-content: center;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  section {
    margin-bottom: 60px;
    padding: 32px 20px;
  }
  
  .benefit-card,
  .service-card,
  .service-card-detailed,
  .testimonial-card,
  .post-card,
  .trainer-card,
  .expertise-card,
  .format-card,
  .resource-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .stat-item,
  .stat-card {
    flex: 1 1 calc(50% - 40px);
  }
  
  .form-wrapper {
    flex-direction: column;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 calc(50% - 6px);
  }
  
  .modal-content {
    padding: 32px 24px;
  }
  
  .text-section {
    flex: 1 1 100%;
  }
  
  .map-info {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .post-featured,
  .testimonial-card-large {
    padding: 32px 24px;
  }
  
  .stat-item,
  .stat-card {
    flex: 1 1 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

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

.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 20pt; }
  h3 { font-size: 16pt; }
}