@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Color Palette */
  --color-primary: #2C5EAD;
  --color-secondary: #1591DC;
  --color-accent: #4BB8FA;
  --color-light: #C4E2F5;
  --color-black: #000000;
  --color-dark-grey: #222222;
  --color-grey: #666666;
  --color-light-grey: #f4f8fc; /* ice blue wash */
  --color-white: #ffffff;
  
  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Speeds */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.02);
  --shadow-medium: 0 10px 30px rgba(44, 94, 173, 0.06);
  --shadow-hover: 0 20px 40px rgba(44, 94, 173, 0.12);

  /* Borders */
  --border-light: 1px solid rgba(0, 0, 0, 0.06);
  --border-thin: 1px solid rgba(0, 0, 0, 0.06);
}

/* Reset Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-white);
  color: var(--color-black);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-x: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* Typographical System */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-black);
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.slide .mono-label {
  color: var(--color-accent);
  background: rgba(75, 184, 250, 0.12);
  border: 1px solid rgba(75, 184, 250, 0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
}

/* Layout Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Alternating Section Structure */
.section {
  padding: 7rem 0;
}

.section-white {
  background-color: var(--color-white);
}

.section-light {
  background-color: var(--color-light-grey);
}

.section-header {
  margin-bottom: 4.5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: flex-end;
}

.section-header-left {
  grid-column: span 7;
}

.section-header-right {
  grid-column: span 5;
  text-align: right;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

/* Badges */
.badge-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(44, 94, 173, 0.08);
  border: 1px solid rgba(44, 94, 173, 0.12);
  color: var(--color-primary);
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.badge-pulse {
  width: 7px;
  height: 7px;
  background-color: var(--color-primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

/* Header & Navigation (Borderless) */
header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  transition: var(--transition-fast);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

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

.logo-svg {
  height: 48px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Hamburger Toggler */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  position: absolute;
  transition: var(--transition-fast);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Image Slider Component */
.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.15) 100%);
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8rem;
  z-index: 2;
}

.slide-inner {
  max-width: 750px;
}

.slide-title {
  font-size: 4.5rem;
  line-height: 1.0;
  font-weight: 900;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-title span {
  color: var(--color-accent);
}

.slide-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.65;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.slider-nav {
  display: flex;
  gap: 0.75rem;
  pointer-events: auto;
}

.slider-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.08);
}

.slider-indicators {
  display: flex;
  gap: 0.6rem;
  pointer-events: auto;
}

.indicator {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition-fast);
}

.indicator.active {
  background: var(--color-accent);
  width: 52px;
}

/* Hero Overview Segment */
.hero-overview {
  padding: 6.5rem 0;
}

.hero-overview-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-overview-left {
  grid-column: span 7;
}

.hero-overview-right {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Button UI */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-black {
  background-color: var(--color-black);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-black:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(44, 94, 173, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
  padding: 0.85rem 2.35rem; /* adjust padding for border weight */
}

.btn-outline:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover {
  background-color: #1ebd57;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Clean Services Card Layout */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.75rem;
}

.card {
  padding: 3rem;
  border: none;
  border-radius: 12px;
  background-color: var(--color-white);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

/* Service Checklist System */
.card-checklist {
  list-style: none;
  margin: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-checklist li {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: rgba(44, 94, 173, 0.05);
  padding: 0.3rem 0.75rem;
  color: var(--color-primary);
  border-radius: 4px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

#services .card {
  position: relative;
  overflow: hidden;
  padding: 0 3rem 3rem;
}

#services .service-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin: 0;
  border-radius: 12px 12px 0 0;
}

#services .card > div:first-child {
  padding-top: 220px;
}

.service-img {
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  padding-top: 25px;
}

.card-description {
  color: var(--color-grey);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-black);
  margin-top: 1rem;
}

.card-link i {
  transition: var(--transition-fast);
  color: var(--color-primary);
}

.card:hover .card-link i {
  transform: translateX(6px);
}

/* Why Choose Us Split */
.why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.why-left {
  grid-column: span 7;
}

.why-right {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(44, 94, 173, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Big Promo Box */
.promo-box {
  border: none;
  border-radius: 16px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.promo-price {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin: 1rem 0;
  letter-spacing: -0.04em;
}

/* Process Timeline (New Segment) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
  position: relative;
  transition: var(--transition-smooth);
}

.process-step:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.process-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.9rem;
  color: var(--color-grey);
}

/* Common Problems Grid (New Segment) */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.problem-card {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.problem-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.problem-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.problem-desc {
  font-size: 0.95rem;
  color: var(--color-grey);
}

/* Testimonials Grid (New Segment) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  font-size: 1.75rem;
  color: rgba(44, 94, 173, 0.15);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-dark-grey);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: var(--border-light);
  padding-top: 1rem;
}

.client-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-light);
  color: var(--color-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.client-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.client-location {
  font-size: 0.75rem;
  color: var(--color-grey);
}

/* FAQs Segment (New Segment) */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  padding: 1.75rem 2rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--color-black);
}

.faq-trigger i {
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  transition: all 0.35s ease;
  color: var(--color-grey);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-trigger i {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  max-height: 250px;
  padding-bottom: 1.75rem;
}

/* Brands We Repair Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.brand-item {
  padding: 2rem;
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-subtle);
  color: var(--color-black);
  transition: var(--transition-fast);
}

.brand-item:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.03);
}

/* Contact Grid Coordinate Block */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.contact-card {
  padding: 3rem;
  border-radius: 12px;
  background-color: var(--color-white);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-card i {
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-card p, .contact-card a {
  color: var(--color-grey);
  font-size: 1rem;
}

/* Map Location Row */
.location-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.location-info {
  grid-column: span 5;
  padding: 3.5rem;
  border-radius: 12px;
  background-color: var(--color-white);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-frame {
  grid-column: span 7;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Section */
footer {
  background-color: var(--color-dark-grey);
  padding: 5rem 0 3.5rem 0;
}

.footer-top-promo {
  border-radius: 16px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 4rem;
  text-align: center;
  margin-bottom: 4.5rem;
  box-shadow: 0 10px 30px rgba(44, 94, 173, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-info {
  grid-column: span 5;
}

.footer-nav {
  grid-column: span 3;
}

.footer-services {
  grid-column: span 4;
}

.footer-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-grey);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-grey);
}

/* Floating Actions */
.floating-btn {
  position: fixed;
  bottom: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--color-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 99;
  transition: var(--transition-smooth);
}

.floating-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(44, 94, 173, 0.2);
}

.floating-btn i {
  font-size: 1.5rem;
}

.floating-left { left: 2rem; color: var(--color-primary); }
.floating-right { right: 2rem; color: #25D366; }

/* Modal Toggles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--color-white);
  border-radius: 16px;
  width: 90%;
  max-width: 550px;
  padding: 3rem;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-black);
  transition: var(--transition-fast);
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--color-grey);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 3px 3px 0px rgba(44, 94, 173, 0.08);
}

textarea.form-input {
  min-height: 110px;
  resize: vertical;
}

/* Page Specific layouts */
.page-title-section {
  padding: 6.5rem 0 3.5rem 0;
  border-bottom: var(--border-light);
}

.page-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.page-intro {
  font-size: 1.25rem;
  max-width: 750px;
  color: var(--color-grey);
}

.declaration-content {
  padding: 5rem 0;
}

.declaration-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3.5rem;
}

.declaration-body {
  grid-column: span 8;
}

.declaration-sidebar {
  grid-column: span 4;
  border-radius: 12px;
  padding: 2.5rem;
  height: fit-content;
  background-color: var(--color-light-grey);
}

.declaration-body h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem 0;
}

.declaration-body h2:first-child { margin-top: 0; }
.declaration-body p { margin-bottom: 1.5rem; color: var(--color-dark-grey); }
.declaration-body ul { list-style: square; padding-left: 2rem; margin-bottom: 1.5rem; color: var(--color-dark-grey); }
.declaration-body li { margin-bottom: 0.5rem; }

/* Contact Page Layouts */
.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.contact-page-form {
  grid-column: span 7;
  padding: 4rem;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
}

.contact-page-info {
  grid-column: span 5;
  padding: 4rem;
  background-color: var(--color-light-grey);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-placeholder {
  border-radius: 8px;
  height: 250px;
  background-color: var(--color-white);
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.map-placeholder i {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .slider-container { height: 480px; }
  .slide-title { font-size: 2.75rem; }
  
  .hero-overview-left { grid-column: span 12; }
  .hero-overview-right { grid-column: span 12; }
  
  .why-left { grid-column: span 12; }
  .why-right { grid-column: span 12; }
  
  .span-4, .span-6, .span-8 { grid-column: span 6; }
  
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  
  .location-info { grid-column: span 12; }
  .map-frame { grid-column: span 12; height: 350px; }
  
  .contact-details-grid { grid-template-columns: 1fr; }
  
  .footer-info { grid-column: span 12; margin-bottom: 2rem; }
  .footer-nav { grid-column: span 6; }
  .footer-services { grid-column: span 6; }
  
  .declaration-body { grid-column: span 12; }
  .declaration-sidebar { grid-column: span 12; }
  
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-page-form { grid-column: span 12; }
  .contact-page-info { grid-column: span 12; }
}

@media (max-width: 768px) {
  header { height: 80px; }
  .nav-wrapper { height: 80px; }
  .menu-toggle { display: block; }
  
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 80px);
    background-color: var(--color-white);
    z-index: 99;
    padding: 3rem 2.5rem;
    border-top: 1px solid var(--color-light-grey);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  
  nav.active { transform: translateX(0); }
  nav ul { flex-direction: column; gap: 2rem; }
  nav a { font-size: 1.5rem; font-weight: 800; }
  
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .section-title { font-size: 2rem; }
  
  .slider-container { height: 420px; }
  .slide-title { font-size: 2.25rem; }
  .slide-text { font-size: 1.05rem; }
  .slider-controls { bottom: 1.5rem; }
  .slider-nav { display: none; }
  
  .hero-overview-grid { gap: 2rem; }
  .hero-overview-left h2 { font-size: 2rem !important; }
  .hero-overview-left > div:first-of-type { flex-wrap: wrap; gap: 1.25rem; }
  .hero-overview-left [style*="font-size: 1.8rem"] { font-size: 1.3rem !important; }
  .hero-overview-left p[style*="font-size: 1.1rem"] { font-size: 1rem !important; }
  
  .promo-box { padding: 2rem 1.5rem; }
  .promo-price { font-size: 3.5rem; }
  
  .section-header-left, .section-header-right { grid-column: span 12; text-align: left; }
  .section-header-right { margin-top: 1rem; }
  
  .why-grid { gap: 2rem; }
  .feature-row { gap: 1rem; }
  .why-right .card { padding: 2rem !important; }
  .why-right li[style*="display: flex"] { flex-wrap: wrap; gap: 0.25rem; }
  
  .process-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-item { padding: 1.5rem; font-size: 1rem; }
  
  .span-4, .span-6, .span-8 { grid-column: span 12; }
  
  .faq-trigger { padding: 1.25rem; font-size: 1rem; }
  .faq-content { padding: 0 1.25rem; }
  
  .contact-card { padding: 2rem; }
  
  .location-info { padding: 2rem; }
  .map-frame { height: 280px; }
  
  .footer-nav { grid-column: span 12; margin-bottom: 1.5rem; }
  .footer-services { grid-column: span 12; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-top-promo { padding: 2.5rem 1.5rem; }
  .footer-top-promo h3 { font-size: 1.5rem !important; }
  
  .floating-btn { bottom: 1.5rem; width: 50px; height: 50px; }
  .floating-left { left: 1.5rem; }
  .floating-right { right: 1.5rem; }
  
  .btn { padding: 0.85rem 1.5rem; font-size: 0.85rem; }
  
  .modal-container { padding: 2rem; }
  
  .page-title-section { padding: 4rem 0 2rem; }
  .page-title { font-size: 2.25rem; }
  .contact-page-form, .contact-page-info { padding: 2rem; }
  .declaration-sidebar { padding: 1.5rem; }
}
