/* ========================================
   BRILLIANT FROST - MODERN BOLD CSS
   Modern Bold Design with Strong Typography
======================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  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 {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   TYPOGRAPHY - MODERN BOLD
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1E3A5F;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

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

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

/* ========================================
   HEADER - MODERN BOLD
======================================== */
header {
  background: linear-gradient(135deg, #1E3A5F 0%, #2d5080 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background: #4A90E2;
  transform: translateY(-2px);
}

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

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

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #1E3A5F;
  color: #ffffff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1E3A5F 0%, #2d5080 100%);
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  padding: 80px 30px 30px;
}

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

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

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: #4A90E2;
  border-left-color: #E8F4F8;
  transform: translateX(5px);
}

/* ========================================
   BUTTONS - MODERN BOLD
======================================== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  text-align: center;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: #4A90E2;
  color: #ffffff;
  border-color: #4A90E2;
}

.btn-primary:hover {
  background: #1E3A5F;
  border-color: #1E3A5F;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

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

.btn-secondary:hover {
  background: #1E3A5F;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

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

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.trust-indicators span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

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

.value-proposition h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
}

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

.feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-top: 6px solid #4A90E2;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #4A90E2, #1E3A5F);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card h3 {
  color: #1E3A5F;
  margin-bottom: 16px;
  font-size: 22px;
}

.feature-card p {
  color: #333333;
  line-height: 1.7;
}

/* ========================================
   SERVICES SHOWCASE - MODERN BOLD
======================================== */
.services-showcase {
  padding: 80px 20px;
  background: #ffffff;
}

.services-showcase h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.service-card {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 36px 28px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  border: 3px solid #4A90E2;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #4A90E2 0%, #1E3A5F 100%);
  opacity: 0;
  border-radius: 12px;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::after {
  opacity: 0.95;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .price {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 20px;
  color: #1E3A5F;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-card p {
  color: #333333;
  line-height: 1.6;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-card .price {
  font-size: 24px;
  font-weight: 800;
  color: #4A90E2;
  margin-top: 12px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.services-showcase .btn {
  display: block;
  margin: 48px auto 0;
  max-width: 320px;
}

/* ========================================
   TECHNOLOGY FEATURES - MODERN BOLD
======================================== */
.technology-features {
  background: linear-gradient(135deg, #1E3A5F 0%, #2d5080 100%);
  padding: 80px 20px;
  color: #ffffff;
}

.technology-features h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
  font-size: 42px;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.tech-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(25% - 21px);
  min-width: 220px;
  text-align: center;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #4A90E2;
  opacity: 0;
  border-radius: 12px;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.tech-item:hover {
  transform: translateY(-8px);
  border-color: #4A90E2;
}

.tech-item:hover::before {
  opacity: 0.9;
}

.tech-item h4,
.tech-item p {
  position: relative;
  z-index: 1;
}

.tech-item h4 {
  color: #E8F4F8;
  margin-bottom: 12px;
  font-size: 20px;
}

.tech-item p {
  color: #E8F4F8;
  font-size: 14px;
}

/* ========================================
   SOCIAL PROOF - MODERN BOLD
======================================== */
.social-proof {
  background: #E8F4F8;
  padding: 80px 20px;
}

.social-proof h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.stat-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  border: 3px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #4A90E2 0%, #1E3A5F 100%);
}

.stat-item:hover strong,
.stat-item:hover span {
  color: #ffffff;
}

.stat-item strong {
  font-size: 48px;
  font-weight: 800;
  color: #4A90E2;
  display: block;
  line-height: 1;
  transition: color 0.3s ease;
}

.stat-item span {
  font-size: 16px;
  font-weight: 700;
  color: #1E3A5F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

/* ========================================
   PROMOTIONAL BANNER - MODERN BOLD
======================================== */
.promotional-banner {
  background: linear-gradient(135deg, #4A90E2 0%, #1E3A5F 100%);
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promotional-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  animation: slide 20s linear infinite;
}

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

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

.promo-content h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 20px;
}

.promo-content p {
  font-size: 20px;
  margin-bottom: 32px;
  color: #E8F4F8;
}

.promo-validity {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E8F4F8;
}

/* ========================================
   CTA FINAL - MODERN BOLD
======================================== */
.cta-final,
.cta-consultation,
.cta-service,
.cta-promotion,
.cta-visit {
  background: #E8F4F8;
  padding: 80px 20px;
  text-align: center;
}

.cta-final h2,
.cta-consultation h2,
.cta-service h2,
.cta-promotion h2,
.cta-visit h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.cta-final p,
.cta-consultation p,
.cta-service p,
.cta-promotion p,
.cta-visit p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #333333;
}

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

/* ========================================
   PAGE HERO - MODERN BOLD
======================================== */
.page-hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #4A90E2 100%);
  padding: 60px 20px;
  color: #ffffff;
  margin-bottom: 0;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: #E8F4F8;
  transition: color 0.3s ease;
}

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

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

.page-hero p {
  font-size: 18px;
  color: #E8F4F8;
}

/* ========================================
   PRODUCTS PAGE - MODERN BOLD
======================================== */
.products {
  padding: 60px 20px;
}

.product-category {
  margin-bottom: 60px;
}

.product-category h2 {
  font-size: 32px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 4px solid #4A90E2;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.product-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  border: 3px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-color: #1E3A5F;
}

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

.product-card p {
  color: #333333;
  line-height: 1.6;
  flex-grow: 1;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.product-features li {
  background: #E8F4F8;
  color: #1E3A5F;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #4A90E2;
}

.product-card .price {
  font-size: 26px;
  font-weight: 800;
  color: #4A90E2;
  margin-top: 12px;
}

.service-highlight {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 48px 36px;
  border-radius: 12px;
  margin: 60px 0;
  text-align: center;
  border: 4px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-highlight h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.service-highlight p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333333;
}

.service-highlight .price {
  font-size: 28px;
  font-weight: 800;
  color: #4A90E2;
  display: block;
  margin: 24px 0;
}

.product-benefits {
  background: #ffffff;
  padding: 48px 36px;
  border-radius: 12px;
  border: 3px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.product-benefits h2 {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}

.product-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-benefits li {
  padding: 16px 20px;
  background: #E8F4F8;
  border-radius: 8px;
  border-left: 6px solid #4A90E2;
  font-weight: 600;
  color: #1E3A5F;
  font-size: 16px;
  transition: all 0.3s ease;
}

.product-benefits li:hover {
  transform: translateX(8px);
  background: #4A90E2;
  color: #ffffff;
}

/* ========================================
   ABOUT PAGE - MODERN BOLD
======================================== */
.company-story,
.text-section {
  padding: 60px 20px;
}

.text-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

.values {
  background: #E8F4F8;
  padding: 80px 20px;
}

.values h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.value-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 14px);
  min-width: 280px;
  border: 3px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #4A90E2 0%, #1E3A5F 100%);
}

.value-card:hover h3,
.value-card:hover p {
  color: #ffffff;
}

.value-card h3 {
  font-size: 24px;
  color: #1E3A5F;
  transition: color 0.3s ease;
}

.value-card p {
  color: #333333;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.achievements {
  padding: 80px 20px;
  background: #ffffff;
}

.achievements h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
}

.showroom-info {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
}

.showroom-info h2 {
  font-size: 36px;
  margin-bottom: 32px;
}

/* ========================================
   SERVICES PAGE - MODERN BOLD
======================================== */
.services {
  padding: 60px 20px;
}

.service-detail {
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 3px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-detail h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail p {
  font-size: 17px;
  line-height: 1.7;
  color: #333333;
}

.service-detail ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.service-detail li {
  padding: 12px 16px;
  background: #E8F4F8;
  border-radius: 6px;
  border-left: 4px solid #4A90E2;
  color: #1E3A5F;
  font-weight: 600;
}

.service-detail .price {
  font-size: 28px;
  font-weight: 800;
  color: #4A90E2;
  margin-top: 16px;
}

.service-guarantees {
  background: #E8F4F8;
  padding: 60px 20px;
  text-align: center;
}

.service-guarantees h2 {
  font-size: 36px;
  margin-bottom: 32px;
}

.service-guarantees ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.service-guarantees li {
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 8px;
  border: 3px solid #4A90E2;
  font-weight: 700;
  font-size: 16px;
  color: #1E3A5F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.service-guarantees li:hover {
  background: #4A90E2;
  color: #ffffff;
  transform: scale(1.02);
}

/* ========================================
   PROMOTIONS PAGE - MODERN BOLD
======================================== */
.featured-promotion {
  background: linear-gradient(135deg, #4A90E2 0%, #1E3A5F 100%);
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
  position: relative;
  margin-bottom: 0;
}

.promo-badge {
  display: inline-block;
  background: #ff4444;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
  animation: pulse 2s infinite;
}

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

.featured-promotion h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 20px;
}

.featured-promotion p {
  font-size: 18px;
  color: #E8F4F8;
  margin-bottom: 16px;
}

.discount-highlight {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 24px 0 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.validity {
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 24px !important;
}

.promotions {
  padding: 60px 20px;
  background: #ffffff;
}

.promotion-card {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 40px 36px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 4px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.promotion-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.promotion-card .discount {
  font-size: 48px;
  font-weight: 800;
  color: #ff4444;
  line-height: 1;
  margin: 8px 0;
}

.promotion-card p {
  font-size: 17px;
  color: #333333;
}

.promotion-card del {
  color: #999999;
  font-size: 18px;
}

.promotion-card strong {
  color: #4A90E2;
  font-size: 28px;
  font-weight: 800;
}

.stock-info,
.stock-warning {
  background: #fff3cd;
  color: #856404;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 700;
  border: 2px solid #ffc107;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.stock-warning {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.bundle-deals {
  background: #E8F4F8;
  padding: 60px 20px;
}

.bundle-deals h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 38px;
}

.bundle-card {
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 4px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.bundle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #4A90E2 0%, #1E3A5F 100%);
}

.bundle-card:hover h3,
.bundle-card:hover p,
.bundle-card:hover .discount,
.bundle-card:hover .price {
  color: #ffffff;
}

.bundle-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.bundle-card p {
  font-size: 17px;
  margin-bottom: 12px;
  color: #333333;
  transition: color 0.3s ease;
}

.bundle-card .discount {
  font-size: 24px;
  font-weight: 800;
  color: #ff4444;
  margin: 16px 0;
  transition: color 0.3s ease;
}

.bundle-card .price {
  font-size: 36px;
  font-weight: 800;
  color: #4A90E2;
  margin-top: 16px;
  transition: color 0.3s ease;
}

.loyalty-program {
  background: linear-gradient(135deg, #1E3A5F 0%, #4A90E2 100%);
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.loyalty-program h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 32px;
}

.loyalty-program ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.loyalty-program li {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.loyalty-program li:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(8px);
}

.loyalty-program p {
  font-size: 16px;
  color: #E8F4F8;
}

/* ========================================
   CONTACT PAGE - MODERN BOLD
======================================== */
.contact-methods {
  padding: 60px 20px;
  background: #E8F4F8;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.contact-method {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  border: 3px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #4A90E2 0%, #1E3A5F 100%);
}

.contact-method:hover h3,
.contact-method:hover p,
.contact-method:hover strong {
  color: #ffffff;
}

.contact-method h3 {
  font-size: 22px;
  color: #1E3A5F;
  transition: color 0.3s ease;
}

.contact-method p {
  font-size: 16px;
  color: #333333;
  transition: color 0.3s ease;
}

.contact-method strong {
  font-size: 20px;
  color: #4A90E2;
  transition: color 0.3s ease;
}

.contact-form-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-form-note {
  background: #E8F4F8;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #4A90E2;
  max-width: 600px;
  margin: 32px auto 0;
}

.contact-form-note p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #333333;
}

.contact-form-note strong {
  color: #1E3A5F;
  font-size: 18px;
}

.showroom-details {
  background: #E8F4F8;
  padding: 60px 20px;
}

.showroom-details h2 {
  font-size: 36px;
  margin-bottom: 24px;
  text-align: center;
}

.showroom-details p {
  font-size: 17px;
  text-align: center;
  margin-bottom: 16px;
  color: #333333;
}

.showroom-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 3px solid #4A90E2;
  max-width: 700px;
  margin: 32px auto 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.showroom-info p {
  text-align: left;
  margin-bottom: 12px;
  font-size: 16px;
}

.departments {
  padding: 60px 20px;
  background: #ffffff;
}

.departments h2 {
  font-size: 36px;
  margin-bottom: 48px;
  text-align: center;
}

.dept-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.dept-card {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 36px 32px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  border: 3px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dept-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.dept-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.dept-card p {
  font-size: 15px;
  color: #333333;
}

.emergency-contact {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.emergency-contact h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 20px;
}

.emergency-contact p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 16px;
}

.emergency-contact strong {
  font-size: 28px;
  color: #ffffff;
}

.company-info {
  background: #E8F4F8;
  padding: 60px 20px;
  text-align: center;
}

.company-info h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.company-info p {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333333;
}

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

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1E3A5F;
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #4A90E2;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

.legal-content ul {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-content li {
  padding: 12px 16px;
  background: #E8F4F8;
  border-radius: 6px;
  border-left: 4px solid #4A90E2;
  color: #1E3A5F;
  font-size: 15px;
  line-height: 1.6;
}

/* ========================================
   THANK YOU PAGE - MODERN BOLD
======================================== */
.thankyou-hero {
  background: linear-gradient(135deg, #4A90E2 0%, #1E3A5F 100%);
  padding: 100px 20px;
  color: #ffffff;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 20px;
}

.thankyou-hero p {
  font-size: 20px;
  color: #E8F4F8;
  margin-bottom: 16px;
}

.next-steps {
  padding: 80px 20px;
  background: #E8F4F8;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 38px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.step-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 14px);
  min-width: 280px;
  border: 3px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #4A90E2 0%, #1E3A5F 100%);
}

.step-card:hover h3,
.step-card:hover p {
  color: #ffffff;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.step-card p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.contact-info {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 16px;
  color: #333333;
}

.contact-info strong {
  color: #4A90E2;
  font-size: 24px;
}

.cta-links {
  background: #E8F4F8;
  padding: 60px 20px;
}

.cta-links h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.link-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 14px);
  min-width: 280px;
  border: 3px solid #4A90E2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.link-card h3 a {
  color: #1E3A5F;
  font-size: 22px;
  transition: color 0.3s ease;
}

.link-card:hover h3 a {
  color: #4A90E2;
}

.link-card p {
  font-size: 15px;
  color: #333333;
  margin-top: 12px;
}

.showroom-invitation {
  background: linear-gradient(135deg, #1E3A5F 0%, #4A90E2 100%);
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.showroom-invitation h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 24px;
}

.showroom-invitation p {
  font-size: 18px;
  color: #E8F4F8;
  margin-bottom: 12px;
}

.showroom-invitation strong {
  color: #ffffff;
  font-size: 22px;
}

.return-home {
  background: #E8F4F8;
  padding: 60px 20px;
  text-align: center;
}

.return-home .btn {
  margin: 0 10px 16px;
}

/* ========================================
   FOOTER - MODERN BOLD
======================================== */
footer {
  background: linear-gradient(135deg, #1E3A5F 0%, #2d5080 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  color: #E8F4F8;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  color: #E8F4F8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: #E8F4F8;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 6px 0;
}

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

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #E8F4F8;
  font-weight: 600;
}

/* ========================================
   COOKIE CONSENT BANNER - MODERN BOLD
======================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1E3A5F 0%, #2d5080 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
  color: #E8F4F8;
}

.cookie-text a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 700;
}

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

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

.cookie-accept {
  background: #22c55e;
  color: #ffffff;
  border-color: #22c55e;
}

.cookie-accept:hover {
  background: #16a34a;
  border-color: #16a34a;
  transform: translateY(-2px);
}

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

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.cookie-settings {
  background: transparent;
  color: #E8F4F8;
  border-color: #E8F4F8;
}

.cookie-settings:hover {
  background: rgba(232, 244, 248, 0.1);
  transform: translateY(-2px);
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  color: #1E3A5F;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #E8F4F8;
  border-radius: 8px;
  border-left: 4px solid #4A90E2;
}

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

.cookie-category p {
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-toggle.active {
  background: #22c55e;
}

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

.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-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
======================================== */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Grids */
  .features-grid,
  .services-grid,
  .tech-grid,
  .stats-grid,
  .values-grid,
  .product-grid,
  .contact-grid,
  .dept-grid,
  .steps-grid,
  .links-grid {
    flex-direction: column;
  }
  
  .feature-card,
  .service-card,
  .tech-item,
  .stat-item,
  .value-card,
  .product-card,
  .contact-method,
  .dept-card,
  .step-card,
  .link-card {
    flex: 1 1 100%;
  }
  
  /* Buttons */
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Adjust grid items for tablet */
  .feature-card,
  .value-card,
  .step-card,
  .link-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .service-card,
  .product-card {
    flex: 1 1 calc(50% - 14px);
  }
  
  .stat-item,
  .tech-item {
    flex: 1 1 calc(50% - 16px);
  }
}

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

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

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