/* ===================================
   MeisterWerk - Creative Artistic CSS
   Mobile-First Responsive Design
   =================================== */

/* 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', Roboto, sans-serif;
  line-height: 1.7;
  color: #2D3436;
  background: #FEFEFE;
  overflow-x: hidden;
}

/* Typography - Creative & Artistic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A2E;
  margin-bottom: 20px;
}

h1 {
  font-size: 42px;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 4px rgba(216, 67, 21, 0.1);
}

h2 {
  font-size: 36px;
  color: #D84315;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #D84315, #FFA726);
  border-radius: 2px;
}

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

h4 {
  font-size: 20px;
}

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

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

a:hover {
  color: #FFA726;
  transform: translateX(3px);
}

ul {
  list-style: none;
}

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

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

/* ===================================
   MOBILE MENU - CRITICAL
   =================================== */

.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #D84315, #B71C1C);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(216, 67, 21, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #455A64 0%, #263238 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 167, 38, 0.2);
  border-left-color: #FFA726;
  transform: translateX(10px);
  padding-left: 30px;
}

/* Desktop: Hide mobile menu button */
@media (min-width: 769px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none;
  }
}

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

header {
  background: linear-gradient(135deg, #455A64 0%, #263238 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(-5deg);
}

.main-nav {
  display: none;
}

@media (min-width: 769px) {
  .main-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .main-nav a {
    color: white;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #FFA726;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .main-nav a:hover {
    background: rgba(255, 167, 38, 0.15);
    color: #FFA726;
    transform: translateY(-2px);
  }
  
  .main-nav a:hover::before {
    width: 80%;
  }
}

/* ===================================
   HERO SECTION - Creative Design
   =================================== */

.hero {
  background: linear-gradient(135deg, #D84315 0%, #B71C1C 50%, #FFA726 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 167, 38, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  color: white;
  font-size: 38px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 1s ease;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

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

/* ===================================
   BUTTONS - Creative Style
   =================================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #FFA726, #FFB74D);
  color: #1A1A2E;
  box-shadow: 0 8px 20px rgba(255, 167, 38, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 167, 38, 0.6);
}

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

.btn-secondary:hover {
  background: white;
  color: #D84315;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

/* ===================================
   SECTIONS - Consistent Spacing
   =================================== */

.section,
.value-proposition,
.services,
.process,
.testimonials,
.cta-banner,
.courses,
.course-benefits,
.instructors,
.project-categories,
.featured-projects,
.tool-categories,
.beginner-toolkit,
.story,
.mission-vision,
.team,
.numbers,
.contact-options,
.consultation {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

.section-subtitle,
.intro-text {
  text-align: center;
  font-size: 18px;
  color: #6B7280;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.supporting-text {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #8B8B8B;
}

/* ===================================
   VALUE PROPOSITION - Flexbox Grid
   =================================== */

.value-proposition {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE0B2 100%);
  text-align: center;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.value-item {
  flex: 1 1 280px;
  max-width: 350px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(216, 67, 21, 0.15);
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.value-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(216, 67, 21, 0.25);
  border-color: #FFA726;
}

.value-item h3 {
  color: #D84315;
  margin-bottom: 16px;
  font-size: 22px;
}

/* ===================================
   SERVICES/COURSES - Card Grid
   =================================== */

.services-grid,
.course-grid,
.categories-grid,
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-card,
.course-card,
.category-card,
.project-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #D84315, #FFA726);
  border-radius: 20px 20px 0 0;
}

.service-card:hover,
.course-card:hover,
.category-card:hover,
.project-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 40px rgba(216, 67, 21, 0.2);
  border-color: #FFB74D;
}

.service-card h3,
.course-card h3 {
  color: #455A64;
  font-size: 22px;
  margin-bottom: 16px;
}

.price,
.course-meta {
  font-size: 28px;
  font-weight: 700;
  color: #D84315;
  margin: 16px 0;
  font-family: 'Roboto Slab', serif;
}

.course-meta {
  font-size: 14px;
  color: #8B8B8B;
  font-weight: 600;
}

.course-includes {
  margin: 20px 0;
  padding-left: 0;
}

.course-includes li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #4A4A4A;
}

.course-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFA726;
  font-weight: 700;
}

.course-next {
  margin-top: 16px;
  font-weight: 600;
  color: #D84315;
  font-size: 14px;
}

.cta-center {
  text-align: center;
  margin-top: 50px;
}

/* ===================================
   PROCESS STEPS - Flexbox Layout
   =================================== */

.process {
  background: linear-gradient(135deg, #455A64 0%, #263238 100%);
  color: white;
}

.process h2 {
  color: white;
  text-align: center;
}

.process h2::after {
  background: linear-gradient(90deg, #FFA726, #FFB74D);
  left: 50%;
  transform: translateX(-50%);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  justify-content: center;
}

.step {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 20px;
}

.step:hover {
  background: rgba(255, 167, 38, 0.15);
  border-color: #FFA726;
  transform: translateY(-8px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFA726, #FFB74D);
  color: #1A1A2E;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(255, 167, 38, 0.4);
}

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

.step p {
  color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   TESTIMONIALS - Readable Design
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE4CC 100%);
  text-align: center;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #FFA726;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: #FFE0B2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(216, 67, 21, 0.2);
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #D84315;
  font-style: normal;
  font-size: 14px;
}

.rating {
  font-size: 18px;
  color: #FFA726;
  font-weight: 600;
  margin-top: 30px;
}

/* ===================================
   CTA BANNER - Eye-catching
   =================================== */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #D84315 0%, #B71C1C 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content h2::after {
  background: #FFA726;
  left: 50%;
  transform: translateX(-50%);
}

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

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

.trust-element,
.contact-info {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-style: italic;
}

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

footer {
  background: linear-gradient(135deg, #263238 0%, #1A1A2E 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  color: #FFA726;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Roboto Slab', serif;
}

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

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

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

.footer-nav a:hover {
  color: #FFA726;
  padding-left: 10px;
}

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

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

/* ===================================
   PAGE HERO - Interior Pages
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #455A64 0%, #263238 100%);
  padding: 60px 20px 40px;
  color: white;
  text-align: center;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

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

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

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* ===================================
   BENEFITS GRID - Flexbox
   =================================== */

.benefits-grid,
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.benefit-item,
.feature-item {
  flex: 1 1 240px;
  max-width: 300px;
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-item:hover,
.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(216, 67, 21, 0.15);
}

.benefit-item h3,
.feature-item h3 {
  color: #D84315;
  margin-bottom: 12px;
}

.credentials-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #8B8B8B;
}

/* ===================================
   INSTRUCTORS GRID
   =================================== */

.instructors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.instructor {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE0B2 100%);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.instructor:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(216, 67, 21, 0.2);
}

.instructor h3 {
  color: #D84315;
  font-size: 20px;
  margin-bottom: 10px;
}

.instructor .role {
  font-weight: 600;
  color: #455A64;
  margin-bottom: 10px;
}

/* ===================================
   NEWSLETTER SIGNUP
   =================================== */

.newsletter-signup {
  background: linear-gradient(135deg, #D84315 0%, #B71C1C 100%);
  padding: 60px 20px;
  text-align: center;
}

.newsletter-content h2 {
  color: white;
}

.newsletter-content h2::after {
  background: #FFA726;
  left: 50%;
  transform: translateX(-50%);
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
}

.newsletter-form {
  margin: 30px 0;
}

.form-note,
.bonus {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-top: 16px;
}

.bonus {
  font-weight: 600;
  color: #FFE0B2;
}

/* ===================================
   CONTACT PAGE
   =================================== */

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

.contact-option {
  flex: 1 1 300px;
  max-width: 400px;
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(216, 67, 21, 0.2);
}

.contact-option h3 {
  color: #D84315;
  margin-bottom: 20px;
}

.contact-form-section {
  background: #F9FAFB;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section,
.faq-contact {
  background: #F9FAFB;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #FFA726;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 25px rgba(216, 67, 21, 0.15);
  transform: translateX(5px);
}

.faq-item h3 {
  color: #455A64;
  font-size: 20px;
  margin-bottom: 12px;
}

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

.legal-content {
  padding: 40px 20px;
  background: white;
}

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

.text-section h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-section h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #455A64;
}

.text-section ul {
  padding-left: 20px;
  margin: 20px 0;
}

.text-section ul li {
  list-style: disc;
  margin-bottom: 12px;
  color: #4A4A4A;
  padding-left: 8px;
}

.text-section strong {
  color: #D84315;
  font-weight: 700;
}

.text-section a {
  color: #D84315;
  text-decoration: underline;
}

.text-section a:hover {
  color: #FFA726;
}

/* ===================================
   STORY & MISSION PAGES
   =================================== */

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.milestone {
  flex: 1 1 220px;
  padding: 20px;
  background: linear-gradient(135deg, #FFE0B2 0%, #FFCC80 100%);
  border-radius: 12px;
  font-weight: 600;
  color: #D84315;
  text-align: center;
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.15);
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.mission,
.vision {
  flex: 1 1 400px;
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.mission h3,
.vision h3 {
  color: #D84315;
  margin-bottom: 16px;
}

.values {
  margin-top: 40px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE0B2 100%);
  padding: 35px;
  border-radius: 20px;
}

.values h3 {
  color: #D84315;
  margin-bottom: 20px;
}

.values ul {
  padding-left: 0;
}

.values ul li {
  list-style: none;
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-weight: 600;
  color: #455A64;
}

.values ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #FFA726;
  font-size: 20px;
}

/* ===================================
   TEAM GRID
   =================================== */

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.team-member {
  flex: 1 1 260px;
  max-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 12px 35px rgba(216, 67, 21, 0.2);
}

.team-member h3 {
  color: #455A64;
  font-size: 20px;
  margin-bottom: 10px;
}

.team-member .role {
  color: #D84315;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.numbers {
  background: linear-gradient(135deg, #455A64 0%, #263238 100%);
  text-align: center;
  color: white;
}

.numbers h2 {
  color: white;
}

.numbers h2::after {
  background: #FFA726;
  left: 50%;
  transform: translateX(-50%);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  justify-content: center;
}

.stat {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.stat:hover {
  background: rgba(255, 167, 38, 0.15);
  transform: scale(1.08);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #FFA726;
  font-family: 'Roboto Slab', serif;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: white;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
  animation: successPulse 1s ease infinite;
}

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

.subtitle {
  font-size: 20px;
  color: #455A64;
  font-weight: 600;
  margin-bottom: 20px;
}

.next-steps,
.continue-exploring {
  background: white;
}

.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.suggestion-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE0B2 100%);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(216, 67, 21, 0.2);
}

.suggestion-card h3 {
  color: #D84315;
  margin-bottom: 16px;
}

/* ===================================
   SAFETY SECTION
   =================================== */

.safety-equipment,
.safety-section {
  background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
}

.safety-intro {
  text-align: center;
  font-size: 18px;
  color: #B71C1C;
  font-weight: 600;
  margin-bottom: 40px;
}

.safety-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.safety-item {
  flex: 1 1 240px;
  max-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(183, 28, 28, 0.15);
  border-left: 5px solid #D84315;
  margin-bottom: 20px;
}

.safety-item h3 {
  color: #B71C1C;
  margin-bottom: 12px;
}

.safety-note,
.safety-reminder {
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  color: #B71C1C;
}

/* ===================================
   ADVICE GRID
   =================================== */

.advice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.advice-item {
  flex: 1 1 300px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #FFA726;
  margin-bottom: 20px;
}

.advice-item h3 {
  color: #D84315;
  margin-bottom: 12px;
}

/* ===================================
   ESSENTIALS LIST
   =================================== */

.essentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
}

.essential-item {
  flex: 1 1 280px;
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #D84315;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.essential-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 25px rgba(216, 67, 21, 0.15);
}

.essential-item h3 {
  color: #455A64;
  font-size: 18px;
  margin-bottom: 10px;
}

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

.location,
.map-section,
.business-hours {
  background: #F9FAFB;
}

/* ===================================
   COOKIE CONSENT BANNER - CRITICAL
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #263238 0%, #1A1A2E 100%);
  color: white;
  padding: 25px 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: linear-gradient(135deg, #FFA726, #FFB74D);
  color: #1A1A2E;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 167, 38, 0.4);
}

.cookie-reject {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

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

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.4s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #8B8B8B;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #D84315;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #455A64;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 20px;
  background: #F9FAFB;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid #FFA726;
}

.cookie-category h3 {
  color: #D84315;
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle.active {
  background: #4CAF50;
}

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

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

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

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

.cookie-modal-buttons button {
  flex: 1 1 140px;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background: linear-gradient(135deg, #D84315, #B71C1C);
  color: white;
}

.cookie-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 67, 21, 0.4);
}

/* ===================================
   RESPONSIVE DESIGN - Mobile First
   =================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .value-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .course-grid,
  .categories-grid,
  .projects-grid,
  .benefits-grid,
  .instructors-grid,
  .contact-grid,
  .mission-vision-grid,
  .team-grid,
  .stats-grid,
  .steps-grid,
  .suggestions-grid,
  .safety-grid,
  .advice-grid,
  .essentials-list {
    flex-direction: column;
    align-items: center;
  }
  
  .value-item,
  .service-card,
  .course-card,
  .category-card,
  .project-card,
  .step,
  .testimonial-card,
  .benefit-item,
  .instructor,
  .contact-option,
  .mission,
  .vision,
  .team-member,
  .stat,
  .suggestion-card,
  .safety-item,
  .advice-item,
  .essential-item {
    max-width: 100%;
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav {
    align-items: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .value-item,
  .service-card,
  .course-card {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (min-width: 1025px) {
  .hero-content h1 {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  header,
  footer,
  .cookie-banner,
  .cookie-modal,
  .cta-banner,
  .cta-section,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  * {
    box-shadow: none !important;
  }
}

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

:focus-visible {
  outline: 3px solid #FFA726;
  outline-offset: 2px;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #D84315;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border: 3px solid currentColor;
  }
}

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

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  /* Optional: Add dark mode styles if needed */
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }
.p-5 { padding: 40px; }

/* END OF CSS */
