/* ===================================
   LIQUIDUS FOREST - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern Aesthetic
   =================================== */

/* CSS RESET & BASE */
* {
  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', Arial, sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background-color: #1a1a1a;
  overflow-x: hidden;
}

/* INDUSTRIAL MODERN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #c8c8c8;
  letter-spacing: -0.5px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

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

a {
  color: #7FA99B;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #E8D5B7;
}

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

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

/* ===================================
   MOBILE MENU (HAMBURGER)
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #2D5F4F 0%, #1a3d31 100%);
  border: 2px solid #7FA99B;
  color: #E8D5B7;
  font-size: 24px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #3a7562 0%, #234d3f 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.8);
  border-left: 3px solid #7FA99B;
}

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

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

.mobile-menu-close:hover {
  background: #7FA99B;
  color: #1a1a1a;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #c8c8c8;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 20px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(45, 95, 79, 0.1);
  border-radius: 2px;
}

.mobile-nav a:hover {
  color: #E8D5B7;
  border-left-color: #7FA99B;
  background: rgba(45, 95, 79, 0.2);
  padding-left: 26px;
}

/* ===================================
   HEADER
   =================================== */
.site-header {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  border-bottom: 2px solid #2D5F4F;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(127, 169, 155, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #c8c8c8;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #E8D5B7;
  border-bottom-color: #7FA99B;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #2D5F4F;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(45, 95, 79, 0.03) 10px,
    rgba(45, 95, 79, 0.03) 20px
  );
  pointer-events: none;
}

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

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

.hero-subtitle {
  font-size: 20px;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* ===================================
   BUTTONS - INDUSTRIAL STYLE
   =================================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
  z-index: 0;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #2D5F4F 0%, #1a3d31 100%);
  color: #E8D5B7;
  border-color: #7FA99B;
  box-shadow: 0 4px 12px rgba(45, 95, 79, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3a7562 0%, #234d3f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 95, 79, 0.6);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #7FA99B;
  border-color: #7FA99B;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  background: rgba(127, 169, 155, 0.1);
  color: #E8D5B7;
  border-color: #E8D5B7;
  transform: translateY(-2px);
}

.btn-link {
  color: #7FA99B;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #E8D5B7;
  border-bottom-color: #E8D5B7;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.value-proposition,
.services-preview,
.testimonials,
.mission,
.approach,
.story,
.services-detailed,
.process,
.blog-featured,
.blog-categories,
.blog-grid,
.newsletter,
.workshop-formats,
.online-course-featured,
.curriculum,
.upcoming-workshops,
.pricing-packages,
.contact-intro,
.contact-methods,
.contact-form-section,
.contact-info,
.faq-contact,
.legal-content,
.thank-you-hero,
.confirmation-info,
.next-steps,
.while-you-wait {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 80px 20px;
  position: relative;
}

.value-proposition::after,
.services-preview::after,
.approach::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #7FA99B 50%, transparent 100%);
}

.value-proposition h2,
.services-preview h2,
.testimonials h2,
.mission h2,
.approach h2,
.story h2,
.blog-categories h2,
.blog-grid h2,
.workshop-formats h2,
.upcoming-workshops h2,
.pricing-packages h2,
.contact-methods h2,
.faq-contact h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 40px;
  color: #E8D5B7;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 20px;
}

.value-proposition h2::after,
.services-preview h2::after,
.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #7FA99B 50%, transparent 100%);
}

/* ===================================
   FLEXBOX CARD GRIDS
   =================================== */
.value-grid,
.services-grid,
.testimonial-grid,
.values-grid,
.approach-grid,
.format-grid,
.suggestions-grid,
.info-grid,
.category-grid,
.articles-grid,
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card,
.service-card,
.testimonial-card,
.value-item,
.approach-card,
.format-card,
.suggestion-card,
.info-block,
.category-card,
.article-card,
.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #2D5F4F;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(127, 169, 155, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card::before,
.service-card::before,
.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #7FA99B 0%, #E8D5B7 100%);
  transition: height 0.4s ease;
}

.value-card:hover::before,
.service-card:hover::before,
.approach-card:hover::before {
  height: 100%;
}

.value-card:hover,
.service-card:hover,
.approach-card:hover,
.format-card:hover,
.category-card:hover,
.article-card:hover,
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(127, 169, 155, 0.3);
  border-color: #7FA99B;
}

.value-card img,
.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  filter: brightness(0) saturate(100%) invert(71%) sepia(14%) saturate(645%) hue-rotate(112deg) brightness(90%) contrast(87%);
}

.value-card h3,
.service-card h3,
.approach-card h3,
.format-card h3,
.category-card h3,
.article-card h3,
.package-card h3 {
  color: #E8D5B7;
  margin-bottom: 16px;
  font-size: 20px;
}

.value-card p,
.service-card p,
.approach-card p,
.format-card p {
  color: #b0b0b0;
  line-height: 1.7;
}

.service-price,
.package-price {
  color: #7FA99B;
  font-weight: 700;
  font-size: 20px;
  margin: 20px 0;
  display: block;
}

/* ===================================
   TESTIMONIALS - READABLE CONTRAST
   =================================== */
.testimonials {
  background: linear-gradient(135deg, #2D5F4F 0%, #1a3d31 100%);
  padding: 80px 20px;
}

.testimonial-card {
  background: rgba(232, 213, 183, 0.95);
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #7FA99B;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

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

.testimonial-author {
  color: #2D5F4F;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  padding: 100px 20px;
  text-align: center;
  border-top: 3px solid #2D5F4F;
  border-bottom: 3px solid #2D5F4F;
}

.cta-section h2 {
  font-size: 40px;
  color: #E8D5B7;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 40px;
}

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

.trust-elements span {
  color: #7FA99B;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 1px solid #7FA99B;
  border-radius: 2px;
}

/* ===================================
   PAGE HERO
   =================================== */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 80px 20px 60px;
  border-bottom: 2px solid #2D5F4F;
}

.breadcrumb {
  color: #7FA99B;
  font-size: 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #7FA99B;
}

.breadcrumb a:hover {
  color: #E8D5B7;
}

.page-hero h1 {
  font-size: 48px;
  color: #E8D5B7;
  margin-bottom: 16px;
}

.last-updated {
  color: #7FA99B;
  font-size: 14px;
  font-style: italic;
}

/* ===================================
   TEXT SECTIONS
   =================================== */
.text-section {
  max-width: 800px;
  margin: 0 auto 60px;
}

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

.section-intro {
  text-align: center;
  font-size: 20px;
  color: #7FA99B;
  margin-bottom: 48px;
  font-style: italic;
}

/* ===================================
   SERVICE DETAILS
   =================================== */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-detail {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid #7FA99B;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}

.service-detail h2 {
  color: #E8D5B7;
  margin-bottom: 16px;
}

.service-benefits {
  list-style: none;
  margin: 24px 0;
}

.service-benefits li {
  color: #b0b0b0;
  padding: 12px 0 12px 32px;
  position: relative;
  line-height: 1.6;
}

.service-benefits li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #7FA99B;
  font-size: 20px;
}

.service-ideal {
  color: #7FA99B;
  font-weight: 600;
  margin-top: 24px;
  font-style: italic;
}

/* ===================================
   PROCESS STEPS
   =================================== */
.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.process-step,
.step-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 32px 24px;
  border-radius: 4px;
  border-top: 3px solid #7FA99B;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.process-step:hover,
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(127, 169, 155, 0.3);
}

.process-step h3,
.step-card h3 {
  color: #E8D5B7;
  font-size: 18px;
  margin-bottom: 16px;
}

.process-step p,
.step-card p {
  color: #b0b0b0;
  font-size: 14px;
}

/* ===================================
   BLOG SECTIONS
   =================================== */
.featured-article {
  background: linear-gradient(135deg, #2D5F4F 0%, #1a3d31 100%);
  padding: 48px;
  border-radius: 4px;
  border-left: 6px solid #E8D5B7;
  margin-bottom: 60px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.featured-article h2 {
  color: #E8D5B7;
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-article p {
  color: #c8c8c8;
  font-size: 18px;
  line-height: 1.7;
}

.article-category {
  display: inline-block;
  background: #7FA99B;
  color: #0d0d0d;
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.article-meta {
  color: #7FA99B;
  font-size: 14px;
  margin-bottom: 16px;
}

.article-count {
  color: #7FA99B;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-top: 16px;
}

/* ===================================
   NEWSLETTER FORM
   =================================== */
.newsletter {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 80px 20px;
  text-align: center;
}

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

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

.email-input,
.input-field {
  flex: 1;
  min-width: 250px;
  padding: 16px 20px;
  border: 2px solid #2D5F4F;
  background: rgba(13, 13, 13, 0.8);
  color: #c8c8c8;
  font-size: 16px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.email-input:focus,
.input-field:focus,
.textarea-field:focus {
  outline: none;
  border-color: #7FA99B;
  background: rgba(13, 13, 13, 0.95);
  box-shadow: 0 0 0 3px rgba(127, 169, 155, 0.1);
}

.newsletter-benefits {
  list-style: none;
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.newsletter-benefits li {
  color: #7FA99B;
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}

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

/* ===================================
   COURSE FEATURE
   =================================== */
.course-feature {
  background: linear-gradient(135deg, #2D5F4F 0%, #1a3d31 100%);
  padding: 48px;
  border-radius: 4px;
  border: 2px solid #7FA99B;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.course-feature h2 {
  color: #E8D5B7;
  margin-bottom: 16px;
}

.course-price {
  color: #E8D5B7;
  font-size: 28px;
  font-weight: 700;
  margin: 24px 0;
}

.course-highlights ul {
  list-style: none;
  margin: 24px 0;
}

.course-highlights li {
  color: #c8c8c8;
  padding: 12px 0 12px 32px;
  position: relative;
}

.course-highlights li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E8D5B7;
  font-size: 20px;
}

.course-students {
  color: #7FA99B;
  font-weight: 600;
  margin: 24px 0;
}

/* ===================================
   CURRICULUM
   =================================== */
.curriculum-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.module {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 24px;
  border-radius: 4px;
  border-left: 3px solid #7FA99B;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.module h3 {
  color: #E8D5B7;
  font-size: 18px;
  margin-bottom: 12px;
}

.module p {
  color: #b0b0b0;
  font-size: 14px;
}

.time-commitment {
  text-align: center;
  color: #7FA99B;
  font-weight: 600;
  margin-top: 32px;
  font-style: italic;
}

/* ===================================
   WORKSHOP CARD
   =================================== */
.workshop-card {
  background: linear-gradient(135deg, #2D5F4F 0%, #1a3d31 100%);
  padding: 40px;
  border-radius: 4px;
  border: 2px solid #7FA99B;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
  margin-bottom: 40px;
}

.workshop-card h3 {
  color: #E8D5B7;
  font-size: 28px;
  margin-bottom: 16px;
}

.workshop-date,
.workshop-location {
  color: #c8c8c8;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.workshop-price {
  color: #E8D5B7;
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.spots-available {
  color: #E8D5B7;
  background: rgba(232, 213, 183, 0.1);
  padding: 8px 16px;
  border-radius: 2px;
  display: inline-block;
  margin: 16px 0;
  font-weight: 600;
}

/* ===================================
   CONTACT FORM
   =================================== */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

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

.form-field label {
  display: block;
  color: #c8c8c8;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.textarea-field {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #2D5F4F;
  background: rgba(13, 13, 13, 0.8);
  color: #c8c8c8;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  border-radius: 2px;
  resize: vertical;
  transition: all 0.3s ease;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b0b0b0;
  font-size: 14px;
  cursor: pointer;
  text-transform: none;
}

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

.form-note {
  color: #7FA99B;
  font-size: 14px;
  margin-top: 16px;
  font-style: italic;
}

/* ===================================
   FAQ
   =================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 4px;
  border-left: 4px solid #7FA99B;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(127, 169, 155, 0.3);
}

.faq-item h3 {
  color: #E8D5B7;
  font-size: 20px;
  margin-bottom: 16px;
}

.faq-item p {
  color: #b0b0b0;
  line-height: 1.7;
}

/* ===================================
   LEGAL CONTENT
   =================================== */
.legal-text {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 48px;
  border-radius: 4px;
  border: 2px solid #2D5F4F;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

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

.legal-text h3 {
  color: #7FA99B;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-text p {
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.thank-you-hero {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2D5F4F 0%, #1a3d31 100%);
  color: #E8D5B7;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 4px solid #7FA99B;
  box-shadow: 0 8px 32px rgba(127, 169, 155, 0.3);
}

.contact-email,
.office-hours,
.guarantee {
  color: #7FA99B;
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0;
}

.info-note {
  color: #7FA99B;
  font-size: 14px;
  font-style: italic;
  margin-top: 8px;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background: linear-gradient(180deg, #0d0d0d 0%, #000000 100%);
  padding: 60px 20px 20px;
  color: #b0b0b0;
  border-top: 3px solid #2D5F4F;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0.8);
}

.footer-col h4 {
  color: #E8D5B7;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #2D5F4F;
  padding-bottom: 8px;
}

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

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

.footer-nav a {
  color: #8a8a8a;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 2px solid transparent;
}

.footer-nav a:hover {
  color: #E8D5B7;
  padding-left: 8px;
  border-left-color: #7FA99B;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #2D5F4F;
}

.footer-bottom p {
  color: #6a6a6a;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #0d0d0d 0%, #000000 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
  z-index: 998;
  border-top: 3px solid #2D5F4F;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  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;
  min-width: 300px;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.cookie-accept {
  background: linear-gradient(135deg, #2D5F4F 0%, #1a3d31 100%);
  color: #E8D5B7;
  border-color: #7FA99B;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #3a7562 0%, #234d3f 100%);
  transform: translateY(-2px);
}

.cookie-reject,
.cookie-settings {
  background: transparent;
  color: #7FA99B;
  border-color: #7FA99B;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background: rgba(127, 169, 155, 0.1);
  color: #E8D5B7;
  border-color: #E8D5B7;
}

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

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

.modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 48px;
  border-radius: 4px;
  border: 2px solid #2D5F4F;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.9);
}

.modal-content h3 {
  color: #E8D5B7;
  margin-bottom: 24px;
}

.cookie-category {
  background: rgba(45, 95, 79, 0.1);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 2px;
  border-left: 3px solid #7FA99B;
}

.cookie-category h4 {
  color: #7FA99B;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-category p {
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 12px;
}

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

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

.cookie-toggle label {
  color: #c8c8c8;
  font-size: 14px;
}

.modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

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

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

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

  /* Typography adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

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

  .hero-subtitle {
    font-size: 18px;
  }

  /* Stack cards */
  .value-card,
  .service-card,
  .testimonial-card,
  .value-item,
  .approach-card,
  .format-card,
  .suggestion-card,
  .category-card,
  .article-card,
  .package-card,
  .process-step,
  .step-card,
  .module {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Footer columns stack */
  .footer-col {
    flex: 1 1 100%;
  }

  /* CTA buttons stack */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  /* Newsletter form stacks */
  .newsletter-form {
    flex-direction: column;
  }

  .email-input {
    width: 100%;
  }

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

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  /* Modal adjustments */
  .modal-content {
    padding: 32px 24px;
  }

  /* Section padding */
  .section,
  .value-proposition,
  .services-preview,
  .testimonials,
  .mission,
  .approach,
  .story,
  .cta-section {
    padding: 60px 20px;
  }

  /* Trust elements stack */
  .trust-elements {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }

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

  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .service-detail,
  .workshop-card,
  .course-feature {
    padding: 24px;
  }

  .legal-text {
    padding: 32px 20px;
  }
}

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

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

.value-card,
.service-card,
.article-card {
  animation: fadeIn 0.6s ease backwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

/* Smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #7FA99B;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: #2D5F4F;
  color: #E8D5B7;
}

::-moz-selection {
  background: #2D5F4F;
  color: #E8D5B7;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background: #2D5F4F;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3a7562;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .site-header,
  .site-footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

/* END OF CSS */