/* ===================================
   BÜHNEN.MUT - VIBRANT ENERGETIC 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, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #fff 0%, #FFF5E6 100%);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===================================
   TYPOGRAPHY - VIBRANT & BOLD
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #FF6B35 0%, #D97644 50%, #F7931E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: energyPulse 3s ease-in-out infinite;
}

h2 {
  font-size: 32px;
  color: #2B5F8F;
  border-bottom: 4px solid #FF6B35;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 32px;
}

h3 {
  font-size: 24px;
  color: #D97644;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  color: #2B5F8F;
  margin-bottom: 12px;
}

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

strong {
  font-weight: 700;
  color: #D97644;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   HEADER - BOLD & ENERGETIC
   =================================== */

header {
  background: linear-gradient(135deg, #2B5F8F 0%, #1e4a6f 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  border-bottom: 4px solid #FF6B35;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.4));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(2deg);
}

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

.main-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
  transition: left 0.5s ease;
}

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover {
  background: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}

/* ===================================
   MOBILE MENU - ENERGETIC SLIDE
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF6B35 0%, #D97644 100%);
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
  transition: all 0.3s ease;
  animation: bounce 2s ease-in-out infinite;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.7);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #2B5F8F 0%, #1e4a6f 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF6B35;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.mobile-nav a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 24px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  border-left: 4px solid #FF6B35;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav a::before {
  content: '⚡';
  font-size: 20px;
}

.mobile-nav a:hover {
  background: #FF6B35;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* ===================================
   BUTTONS - VIBRANT & BOLD
   =================================== */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.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;
  z-index: -1;
}

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

.btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #2B5F8F;
  border-color: #2B5F8F;
  box-shadow: 0 4px 15px rgba(43, 95, 143, 0.3);
}

.btn-secondary:hover {
  background: #2B5F8F;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(43, 95, 143, 0.5);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===================================
   HERO SECTIONS - EXPLOSIVE ENERGY
   =================================== */

.hero {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFCA28 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  font-size: 56px;
  margin-bottom: 24px;
}

.hero .subheadline {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero .trust-element {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-simple {
  background: linear-gradient(135deg, #2B5F8F 0%, #1e4a6f 100%);
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 6px solid #FF6B35;
}

.hero-simple h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  font-size: 48px;
}

/* ===================================
   SECTIONS - DYNAMIC LAYOUTS
   =================================== */

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

.problem-solution,
.mission,
.story,
.approach,
.stats,
.why-us,
.features,
.payment,
.discounts,
.consultation,
.location,
.workshop-overview,
.course-overview,
.guarantee {
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  border: 3px solid #FF6B35;
  position: relative;
  overflow: hidden;
}

.problem-solution::before,
.mission::before,
.features::before {
  content: '⚡';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 80px;
  opacity: 0.1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.problem-solution ul,
.why-us ul,
.features ul,
.payment ul,
.discounts ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.problem-solution li,
.why-us li,
.features li,
.payment li,
.discounts li {
  padding: 16px 20px 16px 60px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
  border-radius: 12px;
  border-left: 5px solid #FF6B35;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.problem-solution li::before,
.why-us li::before,
.features li::before,
.payment li::before,
.discounts li::before {
  content: '⚡';
  position: absolute;
  left: 20px;
  font-size: 24px;
  color: #FF6B35;
}

.problem-solution li:hover,
.why-us li:hover,
.features li:hover,
.payment li:hover,
.discounts li:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* ===================================
   SERVICE CARDS - ENERGETIC GRID
   =================================== */

.service-grid,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #fff 0%, #FFF5E6 100%);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 6px 25px rgba(43, 95, 143, 0.15);
  border: 3px solid #2B5F8F;
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
  border-color: #FF6B35;
}

.service-card h3,
.card h3 {
  margin-bottom: 16px;
  color: #2B5F8F;
}

.service-card .price,
.card .price {
  font-size: 24px;
  font-weight: 800;
  color: #FF6B35;
  margin: 20px 0;
  display: block;
}

.service-detail {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 6px 25px rgba(43, 95, 143, 0.15);
  border-left: 8px solid #FF6B35;
}

.service-detail .tagline {
  font-size: 18px;
  font-weight: 700;
  color: #D97644;
  font-style: italic;
  margin-bottom: 16px;
}

/* ===================================
   TESTIMONIALS - VIBRANT CARDS
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #2B5F8F 0%, #1e4a6f 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 200px;
  color: rgba(255, 107, 53, 0.1);
  font-family: Georgia, serif;
}

.testimonials h2 {
  color: #fff;
  text-align: center;
  border-bottom: 4px solid #FF6B35;
  display: inline-block;
  margin: 0 auto 40px;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials .container > h2 {
  display: block;
  text-align: center;
  width: 100%;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  border: 3px solid #FF6B35;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  font-weight: 500;
  margin: 0;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2B5F8F;
  font-style: italic;
  align-self: flex-end;
  margin-top: 12px;
}

/* ===================================
   PRICING TABLES - DYNAMIC CARDS
   =================================== */

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 6px 25px rgba(43, 95, 143, 0.15);
  border: 3px solid #2B5F8F;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
  border-color: #FF6B35;
}

.pricing-card.featured {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  border-color: #FFD700;
  transform: scale(1.05);
  position: relative;
}

.pricing-card.featured::before {
  content: '⭐ BEST VALUE ⭐';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: #1a1a1a;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
}

.pricing-card.featured h3 {
  color: #fff;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 800;
  color: #FF6B35;
  margin: 16px 0;
}

.pricing-card.featured .price {
  color: #FFD700;
}

.pricing-card .unit {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.pricing-card.featured .unit {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  width: 100%;
}

.pricing-card li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}

.pricing-card.featured li {
  border-bottom-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.price-large {
  font-size: 56px;
  font-weight: 800;
  color: #FF6B35;
  text-align: center;
  display: block;
  margin: 32px 0;
  text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.2);
}

/* ===================================
   CURRICULUM & MODULES
   =================================== */

.module-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.module {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
  border-radius: 16px;
  padding: 24px;
  border-left: 6px solid #FF6B35;
  transition: all 0.3s ease;
}

.module:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
}

.module h3 {
  color: #2B5F8F;
  margin-bottom: 8px;
}

/* ===================================
   APPROACH GRID - ENERGETIC LAYOUT
   =================================== */

.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.approach-grid > div {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #fff 0%, #FFF5E6 100%);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 20px rgba(43, 95, 143, 0.15);
  border-top: 5px solid #FF6B35;
  transition: all 0.3s ease;
}

.approach-grid > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #2B5F8F 0%, #1e4a6f 100%);
  color: #fff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(43, 95, 143, 0.3);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.contact-method h3 {
  color: #FF6B35;
  margin-bottom: 16px;
}

.form-notice {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
  border: 3px solid #FF6B35;
}

.form-notice a {
  color: #2B5F8F;
  font-weight: 700;
  text-decoration: underline;
}

.form-notice a:hover {
  color: #FF6B35;
}

/* ===================================
   CTA SECTIONS - HIGH ENERGY
   =================================== */

.cta,
.cta-final {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta-final::before {
  content: '⚡⚡⚡';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 48px;
  opacity: 0.2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

.cta h2,
.cta-final h2 {
  color: #fff;
  border-bottom: 4px solid #fff;
  display: inline-block;
  margin-bottom: 24px;
}

.cta p,
.cta-final p {
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 600;
}

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

.legal-page {
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  margin: 40px 0;
  box-shadow: 0 6px 25px rgba(43, 95, 143, 0.15);
}

.legal-page h2 {
  margin-top: 40px;
}

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

.thank-you {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}

.thank-you h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  margin-bottom: 32px;
}

.thank-you ol {
  text-align: left;
  max-width: 600px;
  margin: 32px auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 16px;
  list-style: decimal;
  list-style-position: inside;
}

.thank-you li {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

/* ===================================
   FOOTER - BOLD FINISH
   =================================== */

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2B5F8F 100%);
  color: #fff;
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-top: 6px solid #FF6B35;
}

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

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

.footer-section h4 {
  color: #FF6B35;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 8px 0;
  border-left: 3px solid transparent;
  padding-left: 12px;
}

.footer-nav a:hover {
  color: #FF6B35;
  border-left-color: #FF6B35;
  padding-left: 20px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 107, 53, 0.3);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER - VIBRANT
   =================================== */

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2B5F8F 100%);
  color: #fff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(255, 107, 53, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #FF6B35;
}

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

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

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

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

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

#cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border: 4px solid #FF6B35;
}

#cookie-settings-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

#cookie-settings-modal h2 {
  color: #2B5F8F;
  margin-bottom: 24px;
}

.cookie-category {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #FF6B35;
}

.cookie-category label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  color: #2B5F8F;
}

.cookie-category input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-category input[type="checkbox"]:checked {
  background: #FF6B35;
}

.cookie-category input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background: #fff;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-category input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  margin-top: 8px;
  color: #666;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

/* ===================================
   TEXT-IMAGE SECTIONS - ALIGNED
   =================================== */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero .subheadline { font-size: 18px; }
  
  /* Navigation */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }
  
  header .container {
    justify-content: center;
  }
  
  /* Sections */
  .section,
  .problem-solution,
  .mission,
  .story,
  .approach,
  .stats,
  .why-us,
  .features,
  .legal-page {
    padding: 40px 20px;
  }
  
  /* Cards */
  .service-card,
  .card,
  .pricing-card,
  .approach-grid > div,
  .contact-method {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Hero */
  .hero { padding: 60px 20px; }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  /* Cookie Banner */
  #cookie-consent .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Stats */
  .stats ul {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Pricing */
  .price-large { font-size: 40px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  
  .container { padding: 0 16px; }
  
  .service-card,
  .service-detail {
    padding: 24px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}

/* ===================================
   ANIMATIONS & INTERACTIONS
   =================================== */

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

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

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #FF6B35;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  .btn {
    display: none;
  }
  
  body {
    background: #fff;
  }
  
  .container {
    max-width: 100%;
  }
}