/* ===================================
   FURY MOTOR WOHNKULTUR - VIBRANT ENERGETIC DESIGN
   Modern, Bold & Dynamic Home Decor
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY - BOLD & ENERGETIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2C3E50;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #C0392B 0%, #E74C3C 50%, #C0392B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #2C3E50;
  position: relative;
  display: inline-block;
}

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

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

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #34495E;
}

strong {
  font-weight: 700;
  color: #2C3E50;
}

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

a:hover {
  color: #E74C3C;
  transform: translateX(2px);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 12px;
  color: #34495E;
  line-height: 1.8;
}

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

/* HEADER - BOLD & DYNAMIC */
header {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
}

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

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

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

/* MAIN NAVIGATION - VIBRANT */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ECF0F1;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #C0392B, #E74C3C);
  transition: width 0.3s ease;
}

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

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

/* MOBILE MENU - DYNAMIC SLIDE-IN */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #C0392B, #E74C3C);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2C3E50 0%, #34495E 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #C0392B;
  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 {
  background: #E74C3C;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ECF0F1;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 2px solid rgba(236, 240, 241, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #FFFFFF;
  padding-left: 10px;
  border-bottom-color: #C0392B;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTION - ELECTRIC ENERGY */
.hero {
  background: linear-gradient(135deg, #C0392B 0%, #E74C3C 50%, #C0392B 100%);
  color: #FFFFFF;
  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: 50px 50px;
  animation: pulse 20s linear infinite;
}

@keyframes pulse {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

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

.hero h1 {
  color: #FFFFFF;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  animation: fadeInUp 0.8s ease;
}

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

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: #ECF0F1;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.breadcrumb {
  font-size: 14px;
  color: #ECF0F1;
  margin-top: 24px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.breadcrumb a {
  color: #FFFFFF;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* BUTTONS - BOLD & ENERGETIC */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  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.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

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

.btn-primary {
  background: linear-gradient(135deg, #2C3E50, #34495E);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.6);
}

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

.btn-secondary:hover {
  background: #FFFFFF;
  color: #C0392B;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.price-highlight {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 24px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* SECTIONS - DYNAMIC SPACING */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition {
  background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.value-proposition h2 {
  margin: 0 auto 16px;
}

.value-proposition > p {
  font-size: 20px;
  color: #7F8C8D;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* FLEXBOX GRID LAYOUTS - NO CSS GRID */
.value-grid,
.services-grid,
.testimonial-grid,
.trust-grid,
.package-grid,
.team-grid,
.contact-grid,
.suggestion-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

/* VALUE ITEMS - ENERGETIC CARDS */
.value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.15);
  transition: all 0.4s ease;
  text-align: center;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C0392B, #E74C3C);
  transition: left 0.5s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(192, 57, 43, 0.3);
  border-color: #C0392B;
}

.value-item:hover::before {
  left: 0;
}

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

.value-item p {
  color: #7F8C8D;
  margin-bottom: 0;
}

/* SERVICE CARDS - VIBRANT & BOLD */
.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 36px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(44, 62, 80, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.05), rgba(231, 76, 60, 0.05));
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(192, 57, 43, 0.25);
  border-color: #E74C3C;
}

.service-card:hover::after {
  top: -10%;
  right: -10%;
}

.service-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #7F8C8D;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 800;
  color: #C0392B;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* TESTIMONIALS - HIGH CONTRAST FOR READABILITY */
.testimonials {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 60px 20px;
  color: #FFFFFF;
}

.testimonials h2 {
  color: #FFFFFF;
  text-align: center;
  margin: 0 auto 48px;
}

.testimonials h2::after {
  background: linear-gradient(90deg, #C0392B, #E74C3C);
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  margin-bottom: 24px;
  border-left: 5px solid #C0392B;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(192, 57, 43, 0.3);
}

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

.testimonial-card .author {
  color: #2C3E50;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 0;
}

/* CTA BANNER - ELECTRIC ENERGY */
.cta-banner {
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin: 60px 0;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(192, 57, 43, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 L50 50 L0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
  opacity: 0.3;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin: 0 auto 20px;
}

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

.cta-banner p {
  color: #ECF0F1;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CATEGORY ITEMS - DYNAMIC CARDS */
.category-item {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 62, 80, 0.1);
  margin-bottom: 32px;
  border-left: 6px solid #C0392B;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.category-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(192, 57, 43, 0.05), transparent);
  transition: left 0.6s ease;
}

.category-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(192, 57, 43, 0.2);
}

.category-item:hover::before {
  left: 100%;
}

.category-item h2 {
  color: #C0392B;
  margin-bottom: 16px;
}

.category-item .price {
  font-size: 28px;
  font-weight: 800;
  color: #2C3E50;
  margin: 20px 0;
}

/* PACKAGES - VIBRANT PRICING CARDS */
.package {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(44, 62, 80, 0.12);
  text-align: center;
  transition: all 0.4s ease;
  border: 3px solid #ECF0F1;
  position: relative;
  margin-bottom: 24px;
}

.package.featured {
  border-color: #C0392B;
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(192, 57, 43, 0.3);
}

.package:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 60px rgba(192, 57, 43, 0.25);
}

.package .badge {
  display: inline-block;
  background: linear-gradient(135deg, #C0392B, #E74C3C);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.package h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.package .price {
  font-size: 42px;
  font-weight: 800;
  color: #C0392B;
  margin: 24px 0;
}

.package ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.package li {
  padding: 12px 0;
  border-bottom: 1px solid #ECF0F1;
  color: #7F8C8D;
}

.package li:last-child {
  border-bottom: none;
}

/* TRUST SIGNALS - ENERGETIC BADGES */
.trust-signals {
  background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

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

.trust-grid > div {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.1);
  font-weight: 700;
  color: #2C3E50;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.trust-grid > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.2);
  border-color: #C0392B;
}

/* SHOWROOM FACTS - BOLD STATS */
.showroom-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.showroom-facts > div {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #C0392B, #E74C3C);
  color: #FFFFFF;
  padding: 32px 20px;
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.3);
  transition: all 0.3s ease;
}

.showroom-facts > div:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 35px rgba(192, 57, 43, 0.5);
}

/* FORMS - MODERN & CLEAN */
.contact-option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 62, 80, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  border-top: 4px solid #C0392B;
  margin-bottom: 24px;
}

.contact-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(192, 57, 43, 0.2);
}

.contact-option h3 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.form-notice {
  background: #ECF0F1;
  padding: 24px;
  border-radius: 12px;
  margin: 32px 0;
  border-left: 5px solid #C0392B;
}

.form-notice p {
  margin-bottom: 12px;
  color: #34495E;
}

.form-notice a {
  color: #C0392B;
  font-weight: 700;
}

/* LEGAL CONTENT - READABLE */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #C0392B;
}

/* MISSION/VISION - SIDE BY SIDE */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 60px 0;
}

.mission, .vision {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(192, 57, 43, 0.15);
  border-top: 5px solid #C0392B;
  transition: all 0.4s ease;
}

.mission:hover, .vision:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(192, 57, 43, 0.25);
}

.mission h2, .vision h2 {
  color: #C0392B;
}

/* TEAM MEMBERS */
.team-member {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 62, 80, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  border: 3px solid transparent;
  margin-bottom: 24px;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(192, 57, 43, 0.2);
  border-color: #C0392B;
}

.team-member h3 {
  color: #2C3E50;
  margin-bottom: 8px;
}

/* LOCATION DETAILS */
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 40px 0;
}

.location-details > div {
  flex: 1 1 calc(50% - 40px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 62, 80, 0.1);
  border-left: 5px solid #C0392B;
}

/* CONFIRMATION & STEPS */
.confirmation, .next-steps, .suggestions, .contact-alternatives {
  text-align: center;
  padding: 60px 20px;
}

.step, .suggestion {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 62, 80, 0.1);
  transition: all 0.4s ease;
  margin-bottom: 24px;
  border-top: 4px solid #C0392B;
}

.step:hover, .suggestion:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(192, 57, 43, 0.2);
}

.step h3, .suggestion h3 {
  color: #C0392B;
  margin-bottom: 16px;
}

/* FOOTER - BOLD & STRUCTURED */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #ECF0F1;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-column img {
  max-width: 150px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-column h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #C0392B, #E74C3C);
}

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

.footer-column a {
  display: block;
  color: #BDC3C7;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-column a:hover {
  color: #FFFFFF;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: #95A5A6;
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid rgba(189, 195, 199, 0.2);
}

/* COOKIE CONSENT BANNER - FIXED BOTTOM */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1 1 500px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: #E74C3C;
  text-decoration: underline;
}

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

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

.cookie-btn.accept {
  background: linear-gradient(135deg, #C0392B, #E74C3C);
  color: #FFFFFF;
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(192, 57, 43, 0.4);
}

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

.cookie-btn.reject:hover {
  background: #FFFFFF;
  color: #2C3E50;
}

.cookie-btn.settings {
  background: #7F8C8D;
  color: #FFFFFF;
}

.cookie-btn.settings:hover {
  background: #95A5A6;
}

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

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #C0392B;
  color: #FFFFFF;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-category {
  margin: 24px 0;
  padding: 20px;
  background: #ECF0F1;
  border-radius: 12px;
  border-left: 4px solid #C0392B;
}

.cookie-category h3 {
  color: #2C3E50;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle.active {
  background: #27AE60;
}

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

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

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .value-item,
  .service-card,
  .testimonial-card,
  .package,
  .team-member,
  .contact-option,
  .step,
  .suggestion {
    flex: 1 1 100%;
  }
  
  .package.featured {
    transform: scale(1);
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .showroom-facts > div,
  .trust-grid > div {
    flex: 1 1 calc(50% - 20px);
  }
  
  .mission, .vision {
    flex: 1 1 100%;
  }
  
  .location-details > div {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 26px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .section, section {
    padding: 30px 16px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .showroom-facts > div,
  .trust-grid > div {
    flex: 1 1 100%;
  }
  
  .package .price {
    font-size: 32px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 100px;
}

/* FOCUS STATES FOR ACCESSIBILITY */
*:focus {
  outline: 3px solid #C0392B;
  outline-offset: 2px;
}

.btn:focus {
  outline-color: #FFFFFF;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}