/* ===================================
   SECURERIDE - MINIMALIST DESIGN
   Modern, Clean, Professional
   =================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a3a5c;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
  font-size: 16px;
}

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

a:hover {
  color: #c44000;
}

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

li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

strong {
  font-weight: 600;
  color: #2d2d2d;
}

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

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #1a3a5c;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c44000;
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #c44000;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #1a3a5c;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #c44000;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #1a3a5c;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #c44000;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #1a3a5c;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #c44000;
  padding-left: 8px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: #1a3a5c;
  color: #ffffff;
  border-color: #1a3a5c;
}

.btn-primary:hover {
  background-color: #c44000;
  border-color: #c44000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(196, 64, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #1a3a5c;
  border-color: #1a3a5c;
}

.btn-secondary:hover {
  background-color: #1a3a5c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 58, 92, 0.15);
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid #e8e8e8;
}

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

.hero h1 {
  margin-bottom: 24px;
  color: #1a3a5c;
}

.hero-subtitle {
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

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

.trust-badges span {
  font-size: 14px;
  color: #6a6a6a;
  font-weight: 500;
  padding: 8px 16px;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #e8e8e8;
}

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

.benefits,
.services-overview,
.testimonials,
.cta-section,
.products,
.features,
.services-detailed,
.process,
.story,
.achievements,
.showroom,
.blog-featured,
.blog-grid,
.statistics,
.contact-methods,
.contact-info,
.office-hours,
.faq-contact {
  padding: 60px 20px;
}

.benefits h2,
.services-overview h2,
.testimonials h2,
.products h2,
.features h2,
.services-detailed h2,
.process h2,
.story h2,
.achievements h2,
.showroom h2,
.blog-grid h2,
.statistics h2,
.contact-methods h2,
.contact-info h2,
.office-hours h2,
.faq-contact h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* BENEFIT CARDS */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
  border-color: #1a3a5c;
}

.benefit-card h3 {
  color: #1a3a5c;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p {
  color: #6a6a6a;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.stats span {
  font-size: 16px;
  font-weight: 600;
  color: #1a3a5c;
  padding: 12px 24px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

/* SERVICE CARDS */
.services-grid,
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.product-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card.featured,
.product-card.featured {
  border: 2px solid #c44000;
  box-shadow: 0 8px 24px rgba(196, 64, 0, 0.1);
}

.service-card:hover,
.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.service-card h3,
.product-card h3 {
  color: #1a3a5c;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.product-card p {
  color: #6a6a6a;
  flex-grow: 1;
  line-height: 1.6;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #1a3a5c;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.savings {
  font-size: 14px;
  color: #c44000;
  font-weight: 600;
}

.badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background-color: #c44000;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #f8f9fa;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: #2d2d2d;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-card .author {
  font-size: 14px;
  color: #6a6a6a;
  font-style: normal;
  font-weight: 600;
  margin-top: 8px;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1a3a5c;
  margin-top: 16px;
}

/* CTA SECTIONS */
.cta-section,
.cta-consultation,
.cta-booking,
.cta-join {
  background: linear-gradient(135deg, #1a3a5c 0%, #2d5480 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-section h2,
.cta-consultation h2,
.cta-booking h2,
.cta-join h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-section p,
.cta-consultation p,
.cta-booking p,
.cta-join p {
  color: #e8e8e8;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-section .btn-primary,
.cta-consultation .btn-primary,
.cta-booking .btn-primary,
.cta-join .btn-primary {
  background-color: #c44000;
  border-color: #c44000;
  margin-bottom: 24px;
}

.cta-section .btn-primary:hover,
.cta-consultation .btn-primary:hover,
.cta-booking .btn-primary:hover,
.cta-join .btn-primary:hover {
  background-color: #ffffff;
  color: #1a3a5c;
  border-color: #ffffff;
}

.phone {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.offer {
  font-size: 16px;
  color: #ffd700;
  font-weight: 600;
}

/* PAGE HERO */
.page-hero {
  padding: 60px 20px 40px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e8e8e8;
}

.page-hero h1 {
  margin-bottom: 16px;
  text-align: center;
}

.page-hero p {
  text-align: center;
  font-size: 18px;
  color: #6a6a6a;
  max-width: 700px;
  margin: 0 auto 24px;
}

.breadcrumbs {
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: #6a6a6a;
}

.breadcrumbs a {
  color: #1a3a5c;
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: #c44000;
}

.updated {
  text-align: center;
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
}

/* SERVICE DETAILS */
.service-detail {
  margin-bottom: 60px;
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.service-detail h2 {
  color: #1a3a5c;
  margin-bottom: 16px;
  text-align: left;
}

.service-detail ul {
  margin-bottom: 24px;
}

.service-detail ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

/* PROCESS STEPS */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

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

.step p {
  color: #6a6a6a;
  font-size: 15px;
  margin-bottom: 0;
}

.guarantee {
  text-align: center;
  font-weight: 600;
  color: #c44000;
  font-size: 18px;
  margin-top: 32px;
}

/* VALUES & ACHIEVEMENTS */
.values,
.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.value,
.achievement {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.value:hover,
.achievement:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.value h3,
.achievement h3 {
  color: #1a3a5c;
  font-size: 32px;
  margin-bottom: 12px;
}

.value p,
.achievement p {
  color: #6a6a6a;
  font-size: 15px;
  margin-bottom: 0;
}

.timeline {
  text-align: center;
  font-size: 14px;
  color: #6a6a6a;
  margin-top: 40px;
  padding: 16px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

/* BLOG */
.featured-article {
  padding: 48px;
  background-color: #ffffff;
  border: 2px solid #1a3a5c;
  border-radius: 4px;
  position: relative;
  margin-bottom: 60px;
}

.featured-article h2 {
  color: #1a3a5c;
  margin-bottom: 16px;
  text-align: left;
}

.featured-article p {
  color: #6a6a6a;
  margin-bottom: 8px;
}

.meta {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.article-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
  border-color: #1a3a5c;
}

.article-card h3 {
  color: #1a3a5c;
  margin-bottom: 12px;
  font-size: 20px;
}

.article-card p {
  color: #6a6a6a;
  margin-bottom: 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.stat {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  text-align: center;
}

.stat h3 {
  color: #c44000;
  font-size: 48px;
  margin-bottom: 8px;
}

.stat p {
  color: #6a6a6a;
  font-size: 15px;
  margin-bottom: 0;
}

.source {
  text-align: center;
  font-size: 13px;
  color: #6a6a6a;
  font-style: italic;
}

/* CONTACT */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.method {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.method:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.method h3 {
  color: #1a3a5c;
  margin-bottom: 16px;
}

.method .detail {
  font-size: 20px;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 8px;
}

.method p {
  color: #6a6a6a;
  font-size: 14px;
  margin-bottom: 0;
}

.location-info {
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  margin-bottom: 40px;
}

.location-info p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.office-hours ul {
  list-style: none;
  margin: 32px 0;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.office-hours li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

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

.faq-item {
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

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

.faq-item p {
  color: #6a6a6a;
  margin-bottom: 0;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
}

.legal-content h2 {
  color: #1a3a5c;
  margin-top: 40px;
  margin-bottom: 16px;
  text-align: left;
}

.legal-content h3 {
  color: #1a3a5c;
  margin-top: 24px;
  margin-bottom: 12px;
  text-align: left;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.legal-content li {
  padding: 8px 0;
  line-height: 1.6;
}

/* THANK YOU PAGE */
.thank-you {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background-color: #4caf50;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
}

.thank-you h1 {
  color: #1a3a5c;
  margin-bottom: 16px;
}

.thank-you p {
  color: #6a6a6a;
  font-size: 18px;
  margin-bottom: 32px;
}

.next-steps,
.recommendations,
.alternative-contact,
.home-cta {
  padding: 60px 20px;
}

.recommendations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.recommendation {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.recommendation:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.recommendation h3 {
  color: #1a3a5c;
  margin-bottom: 16px;
}

.recommendation a {
  color: #c44000;
  font-weight: 600;
}

.urgency {
  text-align: center;
  font-size: 16px;
  color: #c44000;
  font-weight: 600;
  margin-top: 24px;
}

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

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

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

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: #e8e8e8;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: #e8e8e8;
  font-size: 14px;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e8e8e8;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-banner-text {
  flex: 1 1 400px;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-banner button {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

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

.cookie-accept:hover {
  background-color: #c44000;
}

.cookie-reject {
  background-color: #e8e8e8;
  color: #2d2d2d;
}

.cookie-reject:hover {
  background-color: #d0d0d0;
}

.cookie-settings {
  background-color: transparent;
  color: #1a3a5c;
  border: 1px solid #1a3a5c;
}

.cookie-settings:hover {
  background-color: #1a3a5c;
  color: #ffffff;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #6a6a6a;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1a3a5c;
}

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

.cookie-category {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 4px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  color: #1a3a5c;
  font-size: 18px;
  margin-bottom: 0;
}

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

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

.cookie-toggle.active {
  background-color: #1a3a5c;
}

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

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

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

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

.cookie-save {
  padding: 12px 24px;
  background-color: #1a3a5c;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-save:hover {
  background-color: #c44000;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .benefit-card,
  .service-card,
  .product-card,
  .article-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 calc(50% - 12px);
  }
  
  .value,
  .achievement,
  .stat,
  .method,
  .recommendation {
    flex: 1 1 calc(50% - 12px);
  }
  
  .footer-section {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .section {
    padding: 40px 20px;
  }
  
  .benefits,
  .services-overview,
  .testimonials,
  .cta-section,
  .products,
  .features,
  .services-detailed,
  .process,
  .story,
  .achievements,
  .showroom,
  .blog-featured,
  .blog-grid,
  .statistics,
  .contact-methods,
  .contact-info,
  .office-hours,
  .faq-contact {
    padding: 40px 20px;
  }
  
  .benefit-card,
  .service-card,
  .product-card,
  .testimonial-card,
  .article-card,
  .step,
  .value,
  .achievement,
  .stat,
  .method,
  .recommendation {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .featured-article {
    padding: 32px 24px;
  }
  
  .service-detail {
    padding: 24px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    justify-content: stretch;
  }
  
  .cookie-banner button {
    flex: 1;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .price {
    font-size: 24px;
  }
  
  .trust-badges {
    gap: 16px;
  }
  
  .trust-badges span {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .stat h3 {
    font-size: 36px;
  }
  
  .phone {
    font-size: 20px;
  }
  
  .checkmark {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
}

/* ANIMATIONS */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

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

.mobile-menu.active {
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cookie-modal.active {
  animation: fadeIn 0.3s ease;
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #c44000;
  outline-offset: 2px;
}

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

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-section,
  .cta-consultation,
  .cta-booking,
  .cta-join {
    display: none !important;
  }
  
  body {
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}