/* ===================================
   BRIGHT BATTERY - CREATIVE ARTISTIC DESIGN
   Power Your Voice, Energize Your Impact
   =================================== */

/* 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.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE5CC 100%);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C3E50;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 8px rgba(230, 126, 34, 0.2);
}

h2 {
  font-size: 36px;
  color: #E67E22;
  position: relative;
  display: inline-block;
}

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

h3 {
  font-size: 24px;
  color: #2C3E50;
}

h4 {
  font-size: 20px;
  color: #E67E22;
}

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

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

a:hover {
  color: #F39C12;
  transform: translateY(-2px);
}

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

/* Header Styles */
header {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(230, 126, 34, 0.3);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(243, 156, 18, 0.5));
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #FFF;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 14px;
}

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

.main-nav a:hover {
  color: #F39C12;
  transform: translateY(-2px);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #E67E22, #F39C12);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 30px rgba(230, 126, 34, 0.6);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px 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: 20px;
  background: transparent;
  color: #F39C12;
  border: 2px solid #F39C12;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  background: rgba(243, 156, 18, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(243, 156, 18, 0.2);
  border-color: #F39C12;
  transform: translateX(10px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #E67E22 0%, #F39C12 50%, #FF6B6B 100%);
  padding: 80px 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) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: heroPattern 20s linear infinite;
}

@keyframes heroPattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

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

.hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  animation: heroTitle 1s ease-out;
}

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

.hero-subheadline {
  font-size: 20px;
  color: white;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  color: white;
  font-weight: 600;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  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, height 0.6s;
}

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

.btn-primary {
  background: linear-gradient(135deg, #E67E22, #F39C12);
  color: white;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #E67E22;
  border: 2px solid #E67E22;
}

.btn-secondary:hover {
  background: #E67E22;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

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

.breadcrumb a:hover {
  color: white;
}

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #34495E;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Card Styles */
.features-grid,
.services-grid,
.testimonials-grid,
.cities-grid,
.pricing-table,
.stats-grid,
.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.feature-card,
.service-card,
.testimonial-card,
.city-card,
.pricing-tier,
.stat-card,
.metric-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.feature-card::before,
.service-card::before,
.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E67E22, #F39C12);
}

.feature-card:hover,
.service-card:hover,
.city-card:hover,
.pricing-tier:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(230, 126, 34, 0.3);
}

.feature-card h3,
.service-card h3,
.city-card h3 {
  color: #E67E22;
  margin-bottom: 16px;
  font-size: 22px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #E67E22;
  margin-top: 16px;
}

/* Testimonials */
.testimonial-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
  border-left: 5px solid #E67E22;
  font-style: italic;
}

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

.testimonial-author {
  font-weight: 600;
  color: #E67E22;
  font-style: normal;
  font-size: 14px;
}

/* Value Proposition */
.value-proposition {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
}

.value-proposition h2 {
  text-align: center;
  display: block;
  margin: 0 auto 16px;
}

.value-proposition h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.value-proposition > p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
}

/* Stats & Metrics */
.stat-card,
.metric-card {
  text-align: center;
  background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
  color: white;
  padding: 40px 24px;
}

.stat-card h3,
.metric-card h3 {
  font-size: 48px;
  color: white;
  margin-bottom: 8px;
}

.stat-card p,
.metric-card p {
  color: white;
  font-size: 16px;
}

/* Pricing Table */
.pricing-tier {
  text-align: center;
}

.pricing-tier.featured {
  border: 3px solid #E67E22;
  transform: scale(1.05);
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
}

.pricing-tier h3 {
  color: #E67E22;
  font-size: 28px;
  margin-bottom: 16px;
}

.pricing-tier ul {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.pricing-tier li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(230, 126, 34, 0.2);
  position: relative;
  padding-left: 28px;
}

.pricing-tier li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F39C12;
  font-weight: 700;
  font-size: 18px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23F39C12" opacity="0.3"/></svg>');
  opacity: 0.3;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  background: linear-gradient(90deg, #F39C12, #E67E22);
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

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

/* Workshop/Conference Specific */
.workshop-card,
.conference-card,
.service-block {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.15);
  margin-bottom: 32px;
  border-left: 5px solid #E67E22;
  position: relative;
}

.workshop-card h3,
.conference-card h3,
.service-block h2 {
  color: #E67E22;
  margin-bottom: 16px;
}

.workshop-details,
.conference-status {
  display: inline-block;
  background: linear-gradient(135deg, #FFF8F0, #FFE5CC);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #E67E22;
  margin: 16px 0;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.tab-btn {
  padding: 12px 28px;
  background: white;
  border: 2px solid #E67E22;
  border-radius: 25px;
  color: #E67E22;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: linear-gradient(135deg, #E67E22, #F39C12);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #E67E22, #F39C12);
}

.timeline-item {
  position: relative;
  padding: 16px 0;
  padding-left: 16px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #F39C12;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #E67E22;
}

/* Accordion */
.curriculum-accordion,
.faq {
  margin-top: 32px;
}

.accordion-item,
.faq-item {
  background: white;
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 16px;
  border-left: 4px solid #E67E22;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.1);
  transition: all 0.3s ease;
}

.accordion-item:hover,
.faq-item:hover {
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.2);
  transform: translateX(10px);
}

.accordion-item h3,
.faq-item h3 {
  color: #E67E22;
  margin-bottom: 12px;
  font-size: 20px;
}

/* City Sections */
.city-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.15);
  position: relative;
}

.city-section h2 {
  color: #E67E22;
  margin-bottom: 16px;
}

.city-section .testimonial {
  background: linear-gradient(135deg, #FFF8F0, #FFE5CC);
  padding: 16px;
  border-radius: 15px;
  font-style: italic;
  margin: 16px 0;
  border-left: 4px solid #F39C12;
  color: #2C3E50;
}

/* Contact Form */
.form-wrapper {
  max-width: 600px;
  margin: 32px auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.15);
}

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

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

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #FFE5CC;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #E67E22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-notice {
  background: linear-gradient(135deg, #FFF8F0, #FFE5CC);
  padding: 24px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 32px;
  border: 2px solid #E67E22;
}

.form-info {
  text-align: center;
  color: #E67E22;
  font-weight: 600;
  margin-top: 16px;
}

/* Legal Pages */
.legal-content {
  background: white;
  padding: 60px 20px;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
}

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

.legal-text p,
.legal-text ul {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-text ul {
  padding-left: 24px;
}

.legal-text li {
  margin-bottom: 8px;
}

.last-updated {
  color: #7F8C8D;
  font-size: 14px;
  margin-bottom: 32px;
}

/* Cookie Preferences */
.cookie-preferences {
  max-width: 600px;
  margin: 40px auto;
  background: linear-gradient(135deg, #FFF8F0, #FFE5CC);
  padding: 32px;
  border-radius: 20px;
}

.preference-item {
  padding: 16px;
  background: white;
  margin-bottom: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.preference-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: 100%;
}

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

.preference-note {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #7F8C8D;
}

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2ECC71, #27AE60);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.3);
  animation: successPulse 2s infinite;
}

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

.confirmation-message {
  font-size: 20px;
  color: #2C3E50;
}

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

.step-card,
.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.15);
  text-align: center;
  margin-bottom: 20px;
}

.step-card h3,
.suggestion-card h3 {
  color: #E67E22;
  margin-bottom: 12px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.tagline {
  color: #F39C12;
  font-style: italic;
  font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
  color: #F39C12;
  margin-bottom: 16px;
  font-size: 18px;
}

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

.footer-links nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-links nav a:hover {
  color: #F39C12;
  transform: translateX(5px);
}

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

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

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

.footer-legal nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-legal nav a:hover {
  color: #F39C12;
}

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  flex: 1 1 300px;
}

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

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

.cookie-accept-all {
  background: linear-gradient(135deg, #E67E22, #F39C12);
  color: white;
}

.cookie-accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

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

.cookie-reject-all:hover,
.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #F39C12;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #E67E22;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #FFF8F0, #FFE5CC);
  border-radius: 15px;
}

.cookie-category h3 {
  color: #2C3E50;
  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: linear-gradient(135deg, #E67E22, #F39C12);
}

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

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

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

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Cards */
  .feature-card,
  .service-card,
  .testimonial-card,
  .city-card,
  .pricing-tier,
  .stat-card,
  .metric-card,
  .step-card,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .pricing-tier.featured {
    transform: scale(1);
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal nav {
    justify-content: center;
  }
  
  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-consent-buttons button {
    width: 100%;
  }
  
  /* Forms */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Section padding */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .cta-banner {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .price {
    font-size: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

.feature-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out forwards;
}

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

/* Print Styles */
@media print {
  header,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cookie-modal,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .hero {
    background: white;
    color: black;
  }
  
  .hero h1 {
    color: black;
    -webkit-text-fill-color: black;
  }
}

/* Accessibility */
:focus {
  outline: 3px solid #F39C12;
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #F39C12;
  outline-offset: 2px;
}

/* Skip to main content */
.skip-to-main {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 12px;
  background: #E67E22;
  color: white;
  text-decoration: none;
}

.skip-to-main:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero,
  .cta-banner {
    border: 2px solid currentColor;
  }
  
  .btn {
    border: 2px solid currentColor;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}