/* ============================================
   LUME TUTOR - PLAYFUL DYNAMIC DESIGN SYSTEM
   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: #2D2D2D;
  background: linear-gradient(135deg, #FFE5B4 0%, #FFF8DC 50%, #E0F7FA 100%);
  overflow-x: hidden;
  animation: backgroundShift 15s ease infinite;
}

@keyframes backgroundShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============================================
   TYPOGRAPHY - PLAYFUL & ENERGETIC
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.2;
  color: #FF6B35;
  text-shadow: 3px 3px 0px rgba(255, 107, 53, 0.2);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #FF1744;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #FF4081;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #2D2D2D;
}

a {
  text-decoration: none;
  color: #FF6B35;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

a:hover {
  color: #FF1744;
  transform: scale(1.05) rotate(-2deg);
}

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

/* ============================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ============================================ */

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

/* ============================================
   BUTTONS - PLAYFUL & ANIMATED
   ============================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::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, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #FF1744 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  transform: translateY(-5px) rotate(3deg);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: #FFFFFF;
  color: #FF6B35;
  border: 3px solid #FF6B35;
}

.btn-secondary:hover {
  background: #FF6B35;
  color: #FFFFFF;
  transform: translateY(-5px) rotate(-3deg);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-submit {
  width: 100%;
  margin-top: 20px;
  animation: pulse 2s infinite;
}

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

/* ============================================
   HEADER - STICKY & ANIMATED
   ============================================ */

header {
  background: linear-gradient(135deg, #FFEB3B 0%, #FFC107 50%, #FF9800 100%);
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
  filter: drop-shadow(2px 2px 4px rgba(255, 107, 53, 0.3));
}

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

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

.main-nav a {
  font-weight: 600;
  color: #2D2D2D;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #FF1744;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.header-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.phone-link {
  font-weight: 700;
  color: #FF1744;
  font-size: 18px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.phone-link:hover {
  background: #FFFFFF;
  transform: scale(1.1) rotate(5deg);
}

/* ============================================
   MOBILE MENU - ANIMATED SLIDE
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF6B35 0%, #FF1744 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #FFEB3B 0%, #FFC107 50%, #FF9800 100%);
  z-index: 1999;
  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);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF1744;
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-size: 20px;
  font-weight: 700;
  color: #2D2D2D;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.mobile-nav a:hover {
  background: #FFFFFF;
  border-color: #FF6B35;
  transform: translateX(10px) scale(1.05);
}

/* ============================================
   HERO SECTION - ENERGETIC & DYNAMIC
   ============================================ */

.hero {
  background: linear-gradient(135deg, #FF6B35 0%, #FF1744 50%, #F50057 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -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 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.hero h1 {
  color: #FFFFFF;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  font-size: 52px;
}

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

.hero-description {
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-cta .btn-primary {
  background: #FFFFFF;
  color: #FF1744;
  border: 3px solid #FFFFFF;
}

.hero-cta .btn-primary:hover {
  background: #FFEB3B;
  color: #2D2D2D;
}

.hero-cta .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
}

.hero-cta .btn-secondary:hover {
  background: #FFFFFF;
  color: #FF1744;
}

.trust-indicators {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: fadeInUp 0.6s ease;
}

.trust-item strong {
  font-size: 36px;
  color: #FFEB3B;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* ============================================
   SECTIONS - CONSISTENT SPACING
   ============================================ */

.section,
.value-proposition,
.services-overview,
.process,
.testimonials,
.cta-banner,
.story,
.values,
.team,
.cta-section,
.services-detailed,
.projects-grid,
.project-stats,
.articles,
.tips,
.contact-info,
.contact-form-section,
.while-waiting,
.next-steps,
.contact-urgent {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

.section h2,
.value-proposition h2,
.services-overview h2,
.process h2,
.testimonials h2,
.cta-banner h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

/* ============================================
   CARDS & GRIDS - FLEXBOX LAYOUTS
   ============================================ */

.value-grid,
.services-grid,
.testimonials-grid,
.values-grid,
.team-grid,
.stats-grid,
.articles-grid,
.tips-grid,
.contact-grid,
.action-cards,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card,
.service-card,
.testimonial-card,
.team-member,
.stat-card,
.article-card,
.tip-card,
.contact-card,
.action-card,
.step-card,
.project-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 4px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.value-card::before,
.service-card::before,
.testimonial-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #FF6B35, #FF1744, #F50057, #FFEB3B);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.value-card:hover,
.service-card:hover,
.testimonial-card:hover,
.article-card:hover,
.tip-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

.service-card h3,
.value-card h3 {
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #FF1744;
  margin-top: 16px;
  display: block;
}

/* ============================================
   PROCESS STEPS - ANIMATED
   ============================================ */

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

.process-step {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  max-width: 300px;
  padding: 30px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: #FF6B35;
  margin-bottom: 20px;
  text-shadow: 3px 3px 0px rgba(255, 107, 53, 0.2);
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonial-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8DC 100%);
  border-left: 5px solid #FF6B35;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #2D2D2D;
  margin-bottom: 20px;
  line-height: 1.8;
}

.client-name {
  font-weight: 700;
  color: #FF1744;
  margin-bottom: 4px;
}

.client-location {
  font-size: 14px;
  color: #666;
}

/* ============================================
   CTA BANNER - ENERGETIC
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, #FFEB3B 0%, #FFC107 50%, #FF9800 100%);
  color: #2D2D2D;
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px 20px;
  box-shadow: 0 10px 40px rgba(255, 152, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: rotate 15s linear infinite;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: #FF1744;
  margin-bottom: 20px;
}

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

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

/* ============================================
   PAGE HERO - CONSISTENT STYLE
   ============================================ */

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

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

.page-hero h1 {
  color: #FFFFFF;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-hero .hero-subtitle {
  color: #FFEB3B;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SERVICE DETAILS - FLEXBOX LAYOUT
   ============================================ */

.service-detail {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  border-left: 5px solid #FF6B35;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
}

.service-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-features li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: #2D2D2D;
}

.service-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-size: 20px;
}

/* ============================================
   PROJECT CARDS
   ============================================ */

.project-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   ARTICLES & TIPS
   ============================================ */

.article-meta {
  font-size: 14px;
  color: #FF6B35;
  font-weight: 600;
  margin-top: 12px;
}

/* ============================================
   CONTACT FORM - INTERACTIVE
   ============================================ */

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2D2D2D;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 3px solid #FFE5B4;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
  transform: scale(1.02);
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

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

.form-note {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 16px;
}

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

.legal-page {
  padding: 40px 20px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.legal-content li {
  margin-bottom: 8px;
  color: #2D2D2D;
}

.last-updated {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: '🎉';
  position: absolute;
  font-size: 200px;
  opacity: 0.1;
  animation: confetti 3s ease-in-out infinite;
}

@keyframes confetti {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-50px) rotate(180deg); }
}

.thank-you-content h1 {
  color: #FFFFFF;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ============================================
   CONTENT WRAPPERS
   ============================================ */

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

.mission-box {
  background: linear-gradient(135deg, #FFEB3B 0%, #FFC107 100%);
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.3);
  border: 4px solid #FF9800;
}

.mission-box h3 {
  color: #FF1744;
  margin-bottom: 16px;
}

.role {
  font-size: 16px;
  color: #FF6B35;
  font-weight: 600;
  margin-bottom: 12px;
}

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

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

/* ============================================
   FOOTER - PLAYFUL
   ============================================ */

footer {
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
  color: #FFFFFF;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 200px;
}

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

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-column a:hover {
  color: #FFEB3B;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #FFEB3B;
  transform: scale(1.05);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s 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;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
}
.cookie-text p {
  color: #FFFFFF;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.cookie-accept {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  color: #FFFFFF;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.cookie-reject {
  background: #666;
  color: #FFFFFF;
}

.cookie-reject:hover {
  background: #888;
  transform: scale(1.05);
}

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

.cookie-settings:hover {
  background: #FFFFFF;
  color: #2D2D2D;
  transform: scale(1.05);
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content h2 {
  margin-bottom: 20px;
}

.cookie-category {
  padding: 20px;
  background: #F5F5F5;
  border-radius: 10px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 30px;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    gap: 24px;
  }
  
  .value-card,
  .service-card,
  .testimonial-card,
  .team-member,
  .article-card,
  .tip-card,
  .contact-card,
  .action-card,
  .step-card {
    flex: 1 1 100%;
  }
  
  .process-step {
    flex: 1 1 100%;
  }
  
  .footer-main {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .service-card,
  .testimonial-card,
  .article-card,
  .tip-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .process-step {
    flex: 1 1 calc(50% - 30px);
  }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

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

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Prevent horizontal scroll */
body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Smooth transitions */
* {
  transition: color 0.3s ease, background 0.3s ease;
}

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

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}