/* =============================================
   MAPLE VOYAGE - TECH FUTURISTIC DESIGN SYSTEM
   Modern cleaning technology meets futuristic aesthetics
   ============================================= */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY - TECH FUTURISTIC STYLE
   ============================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(212, 83, 79, 0.5);
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 18px; margin-bottom: 12px; }

p {
  margin-bottom: 16px;
  color: #e0e0e0;
}

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

a:hover {
  color: #ff6b6b;
  text-shadow: 0 0 10px rgba(212, 83, 79, 0.8);
}

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

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

/* RESPONSIVE TYPOGRAPHY */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px; }
}

/* =============================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ============================================= */

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

/* FLEXBOX PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.card {
  margin-bottom: 20px;
  position: relative;
}

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}

/* =============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #D4534F 0%, #B63834 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 83, 79, 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #ff6b6b 0%, #D4534F 100%);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(212, 83, 79, 0.9);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0c29 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  z-index: 999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 2px solid rgba(212, 83, 79, 0.5);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid rgba(212, 83, 79, 0.5);
  color: #D4534F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #D4534F;
  color: white;
  transform: rotate(90deg);
  box-shadow: 0 0 15px rgba(212, 83, 79, 0.8);
}

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

.mobile-nav a {
  display: block;
  padding: 15px 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  background: rgba(212, 83, 79, 0.1);
  border-left: 3px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(212, 83, 79, 0.2);
  border-left-color: #D4534F;
  transform: translateX(5px);
  box-shadow: 0 0 15px rgba(212, 83, 79, 0.4);
}

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

/* =============================================
   HEADER - FUTURISTIC NAVIGATION
   ============================================= */

header {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 12, 41, 0.95) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 30px rgba(212, 83, 79, 0.3);
  border-bottom: 2px solid rgba(212, 83, 79, 0.3);
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(212, 83, 79, 0.6));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(212, 83, 79, 1));
  transform: scale(1.05);
}

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

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4534F, #ff6b6b);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #D4534F;
  background: rgba(212, 83, 79, 0.1);
}

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

/* =============================================
   BUTTONS - NEON TECH STYLE
   ============================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

.btn-primary {
  background: linear-gradient(135deg, #D4534F 0%, #B63834 100%);
  color: white;
  box-shadow: 0 0 20px rgba(212, 83, 79, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff6b6b 0%, #D4534F 100%);
  box-shadow: 0 0 30px rgba(212, 83, 79, 0.8), 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #D4534F;
  box-shadow: 0 0 15px rgba(212, 83, 79, 0.3);
}

.btn-secondary:hover {
  background: rgba(212, 83, 79, 0.1);
  border-color: #ff6b6b;
  box-shadow: 0 0 25px rgba(212, 83, 79, 0.6);
  transform: translateY(-2px);
}

.btn-link {
  color: #D4534F;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

/* =============================================
   HERO SECTION - FUTURISTIC LANDING
   ============================================= */

.hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, rgba(15, 12, 41, 0.9) 0%, rgba(36, 36, 62, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 83, 79, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #D4534F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

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

.trust-badges .badge {
  text-align: center;
  padding: 20px 30px;
  background: rgb(255 255 255 / 31%);
  border: 1px solid rgba(212, 83, 79, 0.3);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(212, 83, 79, 0.2);
}

.trust-badges .badge strong {
  display: block;
  font-size: 32px;
  color: #D4534F;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(212, 83, 79, 0.6);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .trust-badges { gap: 20px; }
}

/* =============================================
   FEATURE CARDS - TECH GRID
   ============================================= */

.features {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(36, 36, 62, 0.5) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.features h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.feature-card {
  flex: 1 1 calc(25% - 30px);
  min-width: 250px;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 12, 41, 0.8) 100%);
  border: 1px solid rgba(212, 83, 79, 0.3);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #D4534F, #ff6b6b, #D4534F);
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 83, 79, 0.4);
  border-color: #D4534F;
}

.feature-card h3 {
  color: #D4534F;
  margin-bottom: 16px;
  font-size: 20px;
}

.feature-card p {
  color: #c0c0c0;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .feature-card { flex: 1 1 calc(50% - 30px); }
}

@media (max-width: 576px) {
  .feature-card { flex: 1 1 100%; }
}

/* =============================================
   SERVICE/PRODUCT CARDS
   ============================================= */

.services-preview,
.products {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(15, 12, 41, 0.5) 0%, rgba(36, 36, 62, 0.5) 100%);
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #c0c0c0;
  max-width: 700px;
  margin: 0 auto 60px;
}

.services-grid,
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}

.service-card,
.product-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 12, 41, 0.9) 100%);
  border: 2px solid rgba(212, 83, 79, 0.2);
  border-radius: 16px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::after,
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4534F, #ff6b6b);
  transition: width 0.4s ease;
}

.service-card:hover::after,
.product-card:hover::after {
  width: 100%;
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212, 83, 79, 0.4);
  border-color: #D4534F;
}

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

.service-card p,
.product-card p {
  color: #c0c0c0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.product-features li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #e0e0e0;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4534F;
  font-weight: bold;
}

.price,
.product-price {
  font-size: 28px;
  font-weight: 700;
  color: #D4534F;
  margin: 20px 0;
  text-shadow: 0 0 10px rgba(212, 83, 79, 0.5);
}

@media (max-width: 992px) {
  .service-card,
  .product-card { flex: 1 1 calc(50% - 30px); }
}

@media (max-width: 576px) {
  .service-card,
  .product-card { flex: 1 1 100%; }
}

/* =============================================
   STATS SECTION
   ============================================= */

.stats,
.stats-social-proof {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 12, 41, 0.8) 100%);
  text-align: center;
}

.stats h2 {
  margin-bottom: 60px;
}

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

.stat-item {
  flex: 1 1 200px;
  min-width: 200px;
  padding: 30px 20px;
  background: rgba(212, 83, 79, 0.05);
  border: 2px solid rgba(212, 83, 79, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(212, 83, 79, 0.1);
  box-shadow: 0 0 30px rgba(212, 83, 79, 0.5);
  transform: scale(1.05);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #D4534F;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(212, 83, 79, 0.6);
}

.stat-label {
  font-size: 16px;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   TESTIMONIALS - READABLE CARDS
   ============================================= */

.testimonials,
.testimonials-detailed {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(36, 36, 62, 0.5) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  padding: 40px 35px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-left: 4px solid #D4534F;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 83, 79, 0.3);
}

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

.testimonial-author {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  width: 100%;
}

.testimonial-author strong {
  display: block;
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: #666666;
  font-size: 14px;
}

@media (max-width: 768px) {
  .testimonial-card { flex: 1 1 100%; }
}

/* =============================================
   CTA SECTIONS
   ============================================= */

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(212, 83, 79, 0.1) 0%, rgba(182, 56, 52, 0.1) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 83, 79, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 24px;
  font-size: 40px;
}

.cta-content p {
  font-size: 18px;
  color: #c0c0c0;
  margin-bottom: 40px;
}

.contact-info {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 83, 79, 0.3);
}

.contact-info p {
  color: #e0e0e0;
  font-size: 16px;
}

/* =============================================
   PAGE HERO (Internal Pages)
   ============================================= */

.page-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, rgba(15, 12, 41, 0.9) 0%, rgba(36, 36, 62, 0.9) 100%);
  text-align: center;
}

.breadcrumb {
  margin-bottom: 24px;
  color: #c0c0c0;
  font-size: 14px;
}

.breadcrumb a {
  color: #D4534F;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ff6b6b;
}

.breadcrumb span {
  color: #ffffff;
}

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

.page-hero p {
  font-size: 18px;
  color: #c0c0c0;
  max-width: 700px;
  margin: 0 auto;
}

/* =============================================
   SERVICE & PROCESS SECTIONS
   ============================================= */

.services-detailed,
.company-story,
.legal-content {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(15, 12, 41, 0.5) 100%);
}

.service-item,
.text-section {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(26, 26, 46, 0.6);
  border-left: 4px solid #D4534F;
  border-radius: 8px;
}

.service-item h2,
.text-section h2 {
  color: #D4534F;
  margin-bottom: 16px;
}

.service-item p,
.text-section p {
  color: #e0e0e0;
  line-height: 1.7;
}

.process {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(36, 36, 62, 0.5) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.process h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.step {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  text-align: center;
  padding: 30px 20px;
  background: rgba(26, 26, 46, 0.6);
  border: 2px solid rgba(212, 83, 79, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: #D4534F;
  box-shadow: 0 10px 30px rgba(212, 83, 79, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4534F, #B63834);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(212, 83, 79, 0.5);
}

.step h3 {
  color: #ffffff;
  margin-bottom: 12px;
}

.step p {
  color: #c0c0c0;
}

@media (max-width: 992px) {
  .step { flex: 1 1 calc(50% - 30px); }
}

@media (max-width: 576px) {
  .step { flex: 1 1 100%; }
}

/* =============================================
   TIMELINE
   ============================================= */

.milestones {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(15, 12, 41, 0.5) 0%, rgba(36, 36, 62, 0.5) 100%);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: rgba(26, 26, 46, 0.6);
  border-left: 4px solid #D4534F;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  box-shadow: 0 10px 30px rgba(212, 83, 79, 0.3);
  transform: translateX(10px);
}

.timeline-item .year {
  font-size: 32px;
  font-weight: 700;
  color: #D4534F;
  min-width: 100px;
  text-shadow: 0 0 10px rgba(212, 83, 79, 0.5);
}

.timeline-item p {
  color: #e0e0e0;
  flex: 1;
}

/* =============================================
   CATEGORIES & BENEFITS
   ============================================= */

.client-categories,
.product-benefits,
.why-us {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(15, 12, 41, 0.5) 100%);
}

.categories-grid,
.benefits-grid,
.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.category-card,
.benefit-card,
.reason-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 12, 41, 0.8) 100%);
  border: 2px solid rgba(212, 83, 79, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover,
.benefit-card:hover,
.reason-card:hover {
  border-color: #D4534F;
  box-shadow: 0 15px 40px rgba(212, 83, 79, 0.3);
  transform: translateY(-8px);
}

.category-card h3,
.benefit-card h3,
.reason-card h3 {
  color: #D4534F;
  margin-bottom: 16px;
}

.category-card p,
.benefit-card p,
.reason-card p {
  color: #c0c0c0;
}

@media (max-width: 992px) {
  .category-card,
  .benefit-card,
  .reason-card { flex: 1 1 calc(50% - 30px); }
}

@media (max-width: 576px) {
  .category-card,
  .benefit-card,
  .reason-card { flex: 1 1 100%; }
}

/* =============================================
   CASE STUDIES
   ============================================= */

.case-studies {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(36, 36, 62, 0.5) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.case-study {
  margin-bottom: 50px;
  padding: 40px;
  background: rgba(26, 26, 46, 0.7);
  border-left: 5px solid #D4534F;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.case-study h3 {
  color: #D4534F;
  margin-bottom: 24px;
  font-size: 24px;
}

.case-study p {
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 12px;
}

.case-study p strong {
  color: #ffffff;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-info {
  padding: 60px 0;
}

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

.contact-card {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  padding: 30px 25px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 12, 41, 0.8) 100%);
  border: 2px solid rgba(212, 83, 79, 0.3);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #D4534F;
  box-shadow: 0 10px 30px rgba(212, 83, 79, 0.3);
  transform: translateY(-5px);
}

.contact-card h3 {
  color: #D4534F;
  margin-bottom: 16px;
  font-size: 18px;
}

.contact-card p {
  color: #e0e0e0;
  font-size: 14px;
}

.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(36, 36, 62, 0.5) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.form-note {
  background: rgba(212, 83, 79, 0.1);
  border-left: 4px solid #D4534F;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
}

.form-note p {
  color: #e0e0e0;
  margin: 0;
}

.form-placeholder {
  background: rgba(26, 26, 46, 0.7);
  padding: 40px;
  border: 2px dashed rgba(212, 83, 79, 0.4);
  border-radius: 12px;
}

.form-placeholder p {
  color: #e0e0e0;
  margin-bottom: 20px;
}

.form-placeholder ul {
  color: #c0c0c0;
  list-style-position: inside;
}

.form-placeholder ul li {
  margin-bottom: 10px;
}

.submit-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 83, 79, 0.3);
}

.office-info,
.faq-contact {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(15, 12, 41, 0.5) 0%, rgba(36, 36, 62, 0.5) 100%);
}

.location-details {
  margin-top: 30px;
  padding: 20px;
  background: rgba(26, 26, 46, 0.6);
  border-radius: 8px;
}

.faq-item {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(26, 26, 46, 0.6);
  border-left: 4px solid #D4534F;
  border-radius: 8px;
}

.faq-item h3 {
  color: #D4534F;
  margin-bottom: 12px;
}

.faq-item p {
  color: #e0e0e0;
}

/* =============================================
   THANK YOU PAGE
   ============================================= */

.thank-you-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(15, 12, 41, 0.9) 0%, rgba(36, 36, 62, 0.9) 100%);
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #D4534F, #B63834);
  color: white;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 0 40px rgba(212, 83, 79, 0.6);
  animation: successPulse 2s ease-in-out infinite;
}

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

.next-steps,
.explore-more,
.social-proof {
  padding: 80px 0;
}

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

.step-card {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 12, 41, 0.8) 100%);
  border: 2px solid rgba(212, 83, 79, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: #D4534F;
  box-shadow: 0 10px 30px rgba(212, 83, 79, 0.3);
}

.explore-link {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(212, 83, 79, 0.1) 0%, rgba(182, 56, 52, 0.1) 100%);
  border: 2px solid rgba(212, 83, 79, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

.explore-link:hover {
  background: linear-gradient(135deg, rgba(212, 83, 79, 0.2) 0%, rgba(182, 56, 52, 0.2) 100%);
  border-color: #D4534F;
  box-shadow: 0 10px 30px rgba(212, 83, 79, 0.4);
  transform: translateY(-5px);
}

.contact-reminder {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(36, 36, 62, 0.5) 0%, rgba(26, 26, 46, 0.5) 100%);
  text-align: center;
}

.contact-reminder h2 {
  margin-bottom: 30px;
}

.contact-reminder p {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 12px;
}

/* =============================================
   LEGAL PAGES
   ============================================= */

.legal-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, rgba(15, 12, 41, 0.9) 0%, rgba(36, 36, 62, 0.9) 100%);
  text-align: center;
}

.last-updated {
  color: #c0c0c0;
  font-size: 14px;
  font-style: italic;
}

.cert-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.cert-list li {
  padding: 15px 20px;
  background: rgba(26, 26, 46, 0.6);
  border-left: 4px solid #D4534F;
  margin-bottom: 12px;
  border-radius: 6px;
  color: #e0e0e0;
}

.legal-links {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(212, 83, 79, 0.3);
}

.legal-links h3 {
  color: #D4534F;
  margin-bottom: 20px;
}

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

.legal-links a {
  color: #e0e0e0;
  padding: 12px 16px;
  background: rgba(26, 26, 46, 0.6);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  background: rgba(212, 83, 79, 0.1);
  color: #D4534F;
  transform: translateX(5px);
}

.acceptance {
  margin-top: 60px;
  padding: 30px;
  background: rgba(212, 83, 79, 0.05);
  border: 2px solid rgba(212, 83, 79, 0.3);
  border-radius: 12px;
}

.acceptance h3 {
  color: #D4534F;
  margin-bottom: 16px;
}

.service-promise {
  margin-top: 40px;
  padding: 30px;
  background: rgba(212, 83, 79, 0.05);
  border-left: 4px solid #D4534F;
  border-radius: 8px;
}

.warranty,
.service-areas {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(15, 12, 41, 0.5) 100%);
}

/* =============================================
   FOOTER - TECH STYLE
   ============================================= */

footer {
  background: linear-gradient(135deg, rgba(15, 12, 41, 0.95) 0%, rgba(10, 8, 28, 0.95) 100%);
  padding: 60px 0 20px;
  border-top: 2px solid rgba(212, 83, 79, 0.3);
}

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

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

.footer-col h4 {
  color: #D4534F;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #c0c0c0;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-nav a {
  color: #c0c0c0;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(212, 83, 79, 0.2);
  text-align: center;
}

.footer-bottom p {
  color: #808080;
  font-size: 14px;
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(15, 12, 41, 0.98) 100%);
  padding: 25px 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
  border-top: 2px solid rgba(212, 83, 79, 0.5);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #e0e0e0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, #D4534F, #B63834);
  color: white;
  box-shadow: 0 0 15px rgba(212, 83, 79, 0.5);
}

.cookie-accept:hover {
  box-shadow: 0 0 25px rgba(212, 83, 79, 0.8);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #c0c0c0;
  border: 2px solid rgba(212, 83, 79, 0.3);
}

.cookie-reject:hover {
  background: rgba(212, 83, 79, 0.1);
  border-color: #D4534F;
  color: #ffffff;
}

.cookie-settings {
  background: rgba(212, 83, 79, 0.1);
  color: #D4534F;
  border: 2px solid rgba(212, 83, 79, 0.3);
}

.cookie-settings:hover {
  background: rgba(212, 83, 79, 0.2);
  border-color: #D4534F;
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(15, 12, 41, 0.98) 100%);
  border: 2px solid rgba(212, 83, 79, 0.5);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 50px rgba(212, 83, 79, 0.3);
}

.cookie-modal h3 {
  color: #D4534F;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 20px;
  background: rgba(212, 83, 79, 0.05);
  border-left: 4px solid #D4534F;
  border-radius: 8px;
}

.cookie-category h4 {
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #c0c0c0;
  font-size: 14px;
}

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

.cookie-toggle.active {
  background: #D4534F;
}

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

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

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

/* =============================================
   UTILITY CLASSES
   ============================================= */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.trust-message {
  margin-top: 30px;
  color: #c0c0c0;
  font-size: 16px;
  font-style: italic;
}

/* =============================================
   ANIMATIONS
   ============================================= */

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

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

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 83, 79, 0.5); }
  50% { box-shadow: 0 0 40px rgba(212, 83, 79, 0.8); }
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  
  .header-content { justify-content: space-between; }
  .header-cta { display: none; }
  
  .hero { padding: 60px 0 40px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; max-width: 300px; }
  
  .section { padding: 30px 16px; margin-bottom: 40px; }
  
  .footer-content { gap: 30px; }
  .footer-col { flex: 1 1 100%; }
  
  .cookie-content { flex-direction: column; align-items: stretch; }
  .cookie-buttons { flex-direction: column; }
  .cookie-btn { width: 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .btn { padding: 12px 24px; font-size: 14px; }
  
  .stat-number { font-size: 36px; }
  
  .mobile-menu { width: 100%; }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

*:focus {
  outline: 2px solid #D4534F;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =============================================
   PRINT STYLES
   ============================================= */

@media print {
  header, footer, .mobile-menu-toggle, .cookie-consent { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}