/* ===== CSS RESET & BASE ===== */
* {
  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: #1a1a2e;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a2e;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

strong {
  font-weight: 700;
  color: #1a1a2e;
}

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

/* ===== HEADER ===== */
header {
  background: #1a1a2e;
  color: #ffffff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.logo-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.tagline {
  font-size: 12px;
  color: #c9a961;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

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

.header-contact {
  text-align: right;
}

.header-contact .phone {
  font-size: 18px;
  font-weight: 800;
  color: #eb4a63;
  margin: 0;
}

.header-contact .hours {
  font-size: 12px;
  color: #c9a961;
  margin: 0;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #eb4a63;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(235, 74, 99, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: #1a1a2e;
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  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: #eb4a63;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px 0;
  border-bottom: 2px solid rgba(201, 169, 97, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #c9a961;
  padding-left: 10px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  text-align: center;
}

.btn-primary {
  background: #eb4a63;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(235, 74, 99, 0.3);
}

.btn-primary:hover {
  background: #d43a53;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(235, 74, 99, 0.4);
}

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

.btn-secondary:hover {
  background: #1a1a2e;
  color: #ffffff;
  transform: translateY(-3px);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: #c9a961;
  max-width: 700px;
  margin: 0 auto 32px;
  font-weight: 600;
}

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

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(201, 169, 97, 0.3);
  min-width: 200px;
}

.badge img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.badge span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c9a961;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
  margin-bottom: 40px;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 42px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 16px;
  color: #c9a961;
  font-weight: 600;
}

.breadcrumbs a {
  color: #c9a961;
}

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

/* ===== SECTIONS ===== */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

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

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

section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 48px;
  color: #1a1a2e;
  position: relative;
  padding-bottom: 20px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #eb4a63;
}

/* ===== VALUE PROPOSITION ===== */
.value-proposition {
  background: #f8f9fa;
  padding: 80px 20px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #ffffff;
  padding: 32px;
  border-left: 5px solid #eb4a63;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 280px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(235, 74, 99, 0.2);
}

.feature h3 {
  font-size: 20px;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.feature p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* ===== SERVICES GRID ===== */
.services {
  background: #ffffff;
  padding: 80px 20px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card {
  background: #ffffff;
  padding: 32px;
  border: 3px solid #1a1a2e;
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  border-color: #eb4a63;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(235, 74, 99, 0.2);
}

.service-card h3 {
  font-size: 22px;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #666;
  flex-grow: 1;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #eb4a63;
  margin: 16px 0;
}

.service-card .btn {
  width: 100%;
}

/* ===== PRODUCTS GRID ===== */
.products-section {
  background: #f8f9fa;
  padding: 80px 20px;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.product-card {
  background: #ffffff;
  padding: 32px;
  border: 3px solid #1a1a2e;
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card:hover {
  border-color: #eb4a63;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(235, 74, 99, 0.2);
}

.product-card h3 {
  font-size: 22px;
  color: #1a1a2e;
}

.product-card p {
  font-size: 15px;
  color: #666;
}

.product-card .features {
  margin: 16px 0;
  padding-left: 0;
}

.product-card .features li {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  font-weight: 600;
  padding-left: 24px;
  position: relative;
}

.product-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #eb4a63;
  font-weight: 800;
  font-size: 16px;
}

.product-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #eb4a63;
  margin: 16px 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #1a1a2e;
  color: #ffffff;
  padding: 80px 20px;
}

.testimonials h2 {
  color: #ffffff;
}

.testimonials h2::after {
  background: #c9a961;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background: #ffffff;
  color: #1a1a2e;
  padding: 32px;
  border-left: 5px solid #c9a961;
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

.testimonial-card .author {
  font-weight: 700;
  color: #1a1a2e;
  font-style: normal;
  margin-top: 8px;
}

.testimonial-card .rating {
  color: #eb4a63;
  font-weight: 800;
  font-size: 18px;
  font-style: normal;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #eb4a63 0%, #d43a53 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 42px;
}

.cta-banner h2::after {
  background: #c9a961;
}

.cta-banner p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-banner .btn-primary {
  background: #1a1a2e;
  color: #ffffff;
}

.cta-banner .btn-primary:hover {
  background: #0f0f1a;
  transform: scale(1.05);
}

.secondary-text {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.trust-element {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== BRAND STORY ===== */
.brand-story,
.values,
.expertise,
.location,
.customization,
.quality-assurance,
.showcase,
.before-after,
.materials,
.client-cars {
  padding: 60px 20px;
}

.brand-story p,
.expertise p,
.location p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.8;
}

/* ===== VALUES GRID ===== */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  background: #ffffff;
  padding: 32px;
  border: 3px solid #1a1a2e;
  flex: 1 1 260px;
  max-width: 300px;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: #eb4a63;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(235, 74, 99, 0.2);
}

.value-card h3 {
  color: #1a1a2e;
  margin-bottom: 16px;
}

.value-card p {
  color: #666;
  font-size: 15px;
}

/* ===== EXPERTISE LIST ===== */
.expertise-list {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 0;
}

.expertise-list li {
  font-size: 16px;
  padding: 16px;
  margin-bottom: 16px;
  background: #f8f9fa;
  border-left: 5px solid #eb4a63;
  font-weight: 600;
}

/* ===== SHOWCASE GRID ===== */
.showcase-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.showcase-card {
  background: #f8f9fa;
  padding: 32px;
  border: 3px solid #1a1a2e;
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.3s ease;
}

.showcase-card:hover {
  border-color: #c9a961;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.2);
}

.showcase-card h3 {
  color: #1a1a2e;
  margin-bottom: 12px;
}

.showcase-card p {
  color: #666;
  font-size: 15px;
}

/* ===== MATERIALS LIST ===== */
.materials-list {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 0;
}

.materials-list li {
  font-size: 16px;
  padding: 16px;
  margin-bottom: 16px;
  background: #ffffff;
  border-left: 5px solid #c9a961;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== CONTACT METHODS ===== */
.contact-methods {
  background: #f8f9fa;
  padding: 60px 20px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.method-card {
  background: #ffffff;
  padding: 32px;
  text-align: center;
  border: 3px solid #1a1a2e;
  flex: 1 1 240px;
  max-width: 280px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.method-card:hover {
  border-color: #eb4a63;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(235, 74, 99, 0.2);
}

.method-card img {
  width: 60px;
  height: 60px;
}

.method-card h3 {
  color: #1a1a2e;
  font-size: 20px;
  margin: 0;
}

.method-card p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

.method-card strong {
  color: #eb4a63;
  font-size: 18px;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 24px;
}

/* ===== LOCATION DETAILS ===== */
.location-details {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.location-details p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 16px;
}

/* ===== VISIT REASONS ===== */
.visit-reasons {
  padding: 60px 20px;
}

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.reason-card {
  background: #ffffff;
  padding: 32px;
  border-left: 5px solid #c9a961;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.reason-card h3 {
  color: #1a1a2e;
  margin-bottom: 12px;
}

.reason-card p {
  color: #666;
  font-size: 15px;
}

/* ===== FAQ ===== */
.faq {
  background: #f8f9fa;
  padding: 60px 20px;
}

.faq-item {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 5px solid #eb4a63;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #1a1a2e;
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 60px 20px;
  background: #ffffff;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto 48px;
}

.legal-content h2 {
  font-size: 28px;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid #eb4a63;
}

.legal-content h2::after {
  display: none;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 12px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

.legal-links a {
  padding: 12px 24px;
  background: #f8f9fa;
  border: 2px solid #1a1a2e;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  background: #1a1a2e;
  color: #ffffff;
}

/* ===== THANK YOU PAGE ===== */
.thank-you {
  padding: 80px 20px;
  background: #f8f9fa;
  min-height: 60vh;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-you h1 {
  font-size: 56px;
  color: #1a1a2e;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 24px;
  color: #eb4a63;
  font-weight: 700;
  margin-bottom: 32px;
}

.next-steps,
.quick-actions {
  margin: 60px 0;
}

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

.step,
.action-card {
  background: #ffffff;
  padding: 32px;
  border: 3px solid #1a1a2e;
  flex: 1 1 280px;
  max-width: 340px;
  transition: all 0.3s ease;
}

.step:hover,
.action-card:hover {
  border-color: #eb4a63;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(235, 74, 99, 0.2);
}

.step h3,
.action-card h3 {
  color: #1a1a2e;
  font-size: 22px;
  margin-bottom: 16px;
}

.step p,
.action-card p {
  color: #666;
  font-size: 15px;
}

.contact-reminder {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  padding: 48px 32px;
  margin: 60px 0;
  text-align: center;
}

.contact-reminder h2 {
  color: #ffffff;
}

.contact-reminder h2::after {
  background: #c9a961;
}

.phone-large {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #eb4a63;
  margin: 24px 0;
}

.return-home {
  margin-top: 48px;
}

.contact-info {
  margin-top: 48px;
  padding: 32px;
  background: #ffffff;
  border: 3px solid #1a1a2e;
}

.contact-info .phone {
  font-size: 28px;
  font-weight: 800;
  color: #eb4a63;
  margin: 16px 0;
}

/* ===== FOOTER ===== */
footer {
  background: #1a1a2e;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-column h3 {
  color: #c9a961;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-column nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(201, 169, 97, 0.3);
}

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

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

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

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

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

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: #eb4a63;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #d43a53;
  transform: scale(1.05);
}

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

.cookie-reject:hover {
  background: #ffffff;
  color: #1a1a2e;
}

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

.cookie-settings:hover {
  background: #c9a961;
  color: #1a1a2e;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #eb4a63;
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  font-size: 32px;
  color: #1a1a2e;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #f8f9fa;
  border-left: 4px solid #1a1a2e;
}

.cookie-category h3 {
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #ffffff;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background: #eb4a63;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  background: #1a1a2e;
  cursor: not-allowed;
}

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

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

.cookie-modal-buttons button {
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-preferences {
  background: #eb4a63;
  color: #ffffff;
}

.save-preferences:hover {
  background: #d43a53;
  transform: scale(1.05);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }

  /* Header */
  .main-nav,
  .header-contact {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .header-content {
    justify-content: center;
  }

  /* Sections */
  section {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }

  /* Grids */
  .features-grid,
  .services-grid,
  .products-grid,
  .testimonials-grid,
  .values-grid,
  .showcase-grid,
  .methods-grid,
  .reasons-grid,
  .steps-grid,
  .actions-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .feature,
  .service-card,
  .product-card,
  .testimonial-card,
  .value-card,
  .showcase-card,
  .method-card,
  .reason-card,
  .step,
  .action-card {
    max-width: 100%;
    flex: 1 1 100%;
  }

  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }

  /* Trust badges */
  .trust-badges {
    flex-direction: column;
  }
  
  .badge {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }

  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal h2 {
    font-size: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }

  /* Thank you page */
  .thank-you h1 {
    font-size: 36px;
  }
  
  .subtitle {
    font-size: 18px;
  }
  
  .phone-large {
    font-size: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature,
  .service-card,
  .product-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .value-card,
  .method-card {
    flex: 1 1 calc(33.333% - 22px);
  }
}

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

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

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

button:focus,
a:focus {
  outline: 3px solid #eb4a63;
  outline-offset: 2px;
}

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