/* ============================================
   SMOOTHFIX CREATIVE STUDIO - MODERN BOLD DESIGN
   Author: Senior CSS Developer
   Style: Modern Bold - Strong Typography & Colors
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #1A1A1A;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - BOLD & MODERN
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2D3E50;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 56px;
  margin-bottom: 24px;
}

h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

h4 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1.8;
  color: #333333;
}

a {
  text-decoration: none;
  color: #E67E22;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: #D35400;
  transform: translateY(-1px);
}

ul {
  list-style: none;
}

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

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

/* ============================================
   BUTTONS - BOLD & HIGH CONTRAST
   ============================================ */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #E67E22;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
  background: #D35400;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
  color: #FFFFFF;
}

.btn-secondary {
  background: #2D3E50;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(45, 62, 80, 0.3);
}

.btn-secondary:hover {
  background: #1A252F;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 62, 80, 0.4);
  color: #FFFFFF;
}

/* ============================================
   HEADER - BOLD & PROMINENT
   ============================================ */
header {
  background: #2D3E50;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.main-nav a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
}

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

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

.main-nav a:hover {
  color: #E67E22;
  transform: none;
}

.header-cta .btn-primary {
  padding: 14px 32px;
  font-size: 16px;
}

/* ============================================
   MOBILE MENU - BOLD SLIDE-IN
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: #E67E22;
  color: #FFFFFF;
  border: none;
  padding: 14px 18px;
  font-size: 28px;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: #2D3E50;
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #E67E22;
  color: #FFFFFF;
  border: none;
  padding: 12px 18px;
  font-size: 32px;
  cursor: pointer;
  font-weight: 900;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 0;
  border-bottom: 3px solid rgba(230, 126, 34, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E67E22;
  padding-left: 16px;
  border-bottom-color: #E67E22;
}

/* ============================================
   HERO SECTION - BOLD & IMPACTFUL
   ============================================ */
.hero {
  background: linear-gradient(135deg, #2D3E50 0%, #1A252F 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: #E67E22;
  opacity: 0.1;
  border-radius: 50%;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: #F8F9FA;
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================
   HERO PAGE - INTERNAL PAGES
   ============================================ */
.hero-page {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  padding: 80px 0 60px;
  margin-bottom: 60px;
}

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

.hero-page .hero-subtitle {
  color: #FFFFFF;
  font-size: 22px;
  opacity: 0.95;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #FFFFFF;
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
  color: #FFFFFF;
}

/* ============================================
   STATS GRID - BOLD NUMBERS
   ============================================ */
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
}

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

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #E67E22;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  font-weight: 700;
  color: #2D3E50;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SERVICES GRID - BOLD CARDS
   ============================================ */
.services-grid,
.workshops-grid,
.features-grid,
.team-grid,
.techniques-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.service-card,
.workshop-card,
.feature-item,
.team-member,
.technique-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #FFFFFF;
  border: 4px solid #2D3E50;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.service-card:hover,
.workshop-card:hover,
.technique-card:hover {
  transform: translateY(-8px);
  border-color: #E67E22;
  box-shadow: 0 12px 30px rgba(230, 126, 34, 0.2);
}

.service-card h3,
.workshop-card h3,
.technique-card h3 {
  color: #2D3E50;
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 900;
}

.service-card p,
.workshop-card p,
.technique-card p {
  color: #333333;
  margin-bottom: 20px;
  font-size: 16px;
}

.price {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #E67E22;
  margin-top: 20px;
  font-family: 'Playfair Display', serif;
}

/* ============================================
   SERVICE DETAIL CARDS
   ============================================ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}

.service-detail-card {
  background: #FFFFFF;
  border: 4px solid #2D3E50;
  padding: 40px;
  position: relative;
}

.service-detail-card:hover {
  border-color: #E67E22;
}

.service-detail-card h3 {
  font-size: 32px;
  color: #2D3E50;
  margin-bottom: 16px;
}

.service-detail-card .price {
  font-size: 36px;
  margin-bottom: 20px;
}

.features-list {
  margin: 24px 0;
  padding-left: 0;
}

.features-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
}

.features-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-size: 24px;
  font-weight: 900;
}

/* ============================================
   FEATURE ITEMS - BOLD BLOCKS
   ============================================ */
.feature-item {
  background: #2D3E50;
  padding: 40px;
  text-align: center;
  border: none;
}

.feature-item h3 {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
}

.feature-item:hover {
  background: #E67E22;
  transform: translateY(-8px);
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonials {
  background: #F8F9FA;
  padding: 80px 0;
  margin-bottom: 60px;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 40px;
  border-left: 6px solid #E67E22;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  position: relative;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #1A1A1A;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: block;
  font-weight: 800;
  color: #2D3E50;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CTA BANNER - BOLD & PROMINENT
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  padding: 80px 0;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-banner .btn-secondary {
  background: #FFFFFF;
  color: #E67E22;
}

.cta-banner .btn-secondary:hover {
  background: #2D3E50;
  color: #FFFFFF;
}

/* ============================================
   TIMELINE - BOLD DESIGN
   ============================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #F8F9FA;
  border-left: 6px solid #E67E22;
}

.timeline-item .year {
  font-size: 32px;
  font-weight: 900;
  color: #E67E22;
  font-family: 'Playfair Display', serif;
  min-width: 100px;
}

.timeline-item .event {
  font-size: 18px;
  font-weight: 700;
  color: #2D3E50;
}

/* ============================================
   MISSION & VISION - BOLD BLOCKS
   ============================================ */
.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.mission-box,
.vision-box {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 48px;
  background: #2D3E50;
  color: #FFFFFF;
}

.mission-box h3,
.vision-box h3 {
  color: #E67E22;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 900;
}

.mission-box p,
.vision-box p {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.8;
}

.values {
  margin-top: 48px;
  padding: 48px;
  background: #F8F9FA;
  border: 4px solid #2D3E50;
}

.values h3 {
  color: #2D3E50;
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.values-list li {
  padding: 16px 32px;
  background: #E67E22;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-member {
  text-align: center;
  background: #F8F9FA;
  border: 4px solid #2D3E50;
}

.team-member h3 {
  color: #2D3E50;
  font-size: 24px;
  margin-bottom: 8px;
}

.team-member .role {
  color: #E67E22;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

/* ============================================
   WORKSHOPS FEATURED
   ============================================ */
.workshops-featured {
  margin-bottom: 60px;
  position: relative;
}

.badge {
  display: inline-block;
  padding: 12px 24px;
  background: #E67E22;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.featured-workshop {
  background: #F8F9FA;
  padding: 48px;
  border: 4px solid #2D3E50;
  position: relative;
}

.featured-workshop h2 {
  font-size: 42px;
  color: #2D3E50;
  margin-bottom: 16px;
}

.workshop-date,
.workshop-instructor {
  font-size: 18px;
  font-weight: 700;
  color: #E67E22;
  margin-bottom: 8px;
}

.spots {
  display: inline-block;
  padding: 12px 24px;
  background: #E67E22;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  margin: 20px 0;
}

/* ============================================
   WORKSHOP BENEFITS
   ============================================ */
.workshop-benefits {
  background: #2D3E50;
  padding: 60px 0;
  margin-bottom: 60px;
}

.workshop-benefits h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-list li {
  padding: 20px 20px 20px 60px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: #E67E22;
  font-size: 28px;
  font-weight: 900;
}

/* ============================================
   GALLERY & STORIES
   ============================================ */
.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.story-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px;
  background: #F8F9FA;
  border-left: 6px solid #E67E22;
  margin-bottom: 24px;
}

.story-card h3 {
  color: #2D3E50;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 900;
}

.story-card p {
  font-style: italic;
  color: #333333;
  line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 48px;
}

.contact-info,
.contact-form-wrapper {
  flex: 1 1 calc(50% - 48px);
  min-width: 280px;
}

.info-block {
  margin-bottom: 32px;
  padding: 24px;
  background: #F8F9FA;
  border-left: 6px solid #E67E22;
}

.info-block h3 {
  color: #2D3E50;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 900;
}

.info-block p {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
}

.form-note {
  padding: 32px;
  background: #F8F9FA;
  border: 4px solid #2D3E50;
  text-align: center;
}

.form-note p {
  margin-bottom: 24px;
  font-size: 18px;
  color: #333333;
}

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

.action-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 40px;
  background: #FFFFFF;
  border: 4px solid #2D3E50;
  text-align: center;
  margin-bottom: 24px;
}

.action-card h3 {
  color: #2D3E50;
  font-size: 28px;
  margin-bottom: 16px;
}

.action-card p {
  color: #333333;
  margin-bottom: 24px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.faq-item {
  padding: 32px;
  background: #F8F9FA;
  border-left: 6px solid #E67E22;
}

.faq-item h3 {
  color: #2D3E50;
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 900;
}

.faq-item p {
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 60px 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background: #FFFFFF;
  border: 4px solid #2D3E50;
}

.legal-content h2 {
  color: #2D3E50;
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 900;
}

.legal-content h3 {
  color: #2D3E50;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 0;
}

.legal-content li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #333333;
  font-size: 16px;
}

.legal-content li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-size: 20px;
  font-weight: 900;
}

.last-updated,
.subtitle {
  color: #666666;
  font-size: 16px;
  margin-bottom: 32px;
  font-weight: 600;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  margin-bottom: 60px;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  color: #E67E22;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 900;
  margin: 0 auto 32px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.thank-you-hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 20px;
}

.thank-you-hero p {
  color: #FFFFFF;
  font-size: 20px;
}

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

.step-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background: #F8F9FA;
  border: 4px solid #2D3E50;
}

.step-number {
  display: block;
  width: 60px;
  height: 60px;
  background: #E67E22;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 900;
  line-height: 60px;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
}

.step-item p {
  color: #333333;
  font-size: 16px;
  font-weight: 600;
}

/* ============================================
   SECTION CTA
   ============================================ */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: #666666;
  margin-bottom: 40px;
  font-weight: 400;
}

/* ============================================
   FOOTER - BOLD & STRUCTURED
   ============================================ */
footer {
  background: #2D3E50;
  color: #FFFFFF;
  padding: 60px 0 24px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 48px);
  min-width: 200px;
}

.footer-section h3 {
  color: #E67E22;
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 900;
}

.footer-section h4 {
  color: #E67E22;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-nav a {
  color: #F8F9FA;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #E67E22;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(248, 249, 250, 0.2);
}

.footer-bottom p {
  color: #F8F9FA;
  font-size: 14px;
  font-weight: 600;
}

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

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

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

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

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

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

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

.cookie-accept {
  background: #E67E22;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: #D35400;
}

.cookie-reject,
.cookie-settings {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background: #FFFFFF;
  color: #2D3E50;
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 4px solid #2D3E50;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #2D3E50;
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 900;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F8F9FA;
  border-left: 4px solid #E67E22;
}

.cookie-category h3 {
  color: #2D3E50;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 900;
}

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

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

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

.cookie-toggle label {
  font-weight: 700;
  color: #2D3E50;
  cursor: pointer;
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Mobile Menu Visible */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  p {
    font-size: 16px;
  }
  
  /* Hero */
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Hero Page */
  .hero-page {
    padding: 60px 0 40px;
  }
  
  .hero-page h1 {
    font-size: 36px;
  }
  
  /* Stats Grid */
  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .stat-number {
    font-size: 42px;
  }
  
  /* Cards - Full Width on Mobile */
  .service-card,
  .workshop-card,
  .feature-item,
  .team-member,
  .technique-card,
  .story-card,
  .testimonial-card,
  .action-card,
  .step-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .mission-box,
  .vision-box {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Contact Grid */
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form-wrapper {
    flex: 1 1 100%;
  }
  
  /* CTA Banner */
  .cta-banner h2 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Timeline */
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .timeline-item .year {
    min-width: auto;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Legal Content */
  .legal-content {
    padding: 24px;
  }
  
  /* Thank You */
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
  
  .thank-you-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-page h1 {
    font-size: 32px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 16px 32px;
    font-size: 16px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
  
  .container {
    padding: 0 16px;
  }
}

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

.hero-content,
.service-card,
.testimonial-card,
.feature-item {
  animation: fadeIn 0.6s ease;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
*:focus {
  outline: 3px solid #E67E22;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    color: #000000;
    background: #FFFFFF;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}

/* END OF CSS */
