/* ============================================
   FRESHEN REPAIR - MINIMALIST DESIGN SYSTEM
   Premium Automotive Tuning & Rare Parts
   ============================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY - MINIMALIST */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1A1A1A;
  letter-spacing: -0.02em;
}

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: #4A4A4A;
}

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

a:hover {
  color: #9B1429;
}

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

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

strong {
  font-weight: 600;
  color: #1A1A1A;
}

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

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

/* HEADER - MINIMALIST */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

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

.logo img {
  height: 45px;
  width: auto;
}

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

.main-nav a {
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: #1A1A1A;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #1A1A1A;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: color 0.3s ease, transform 0.3s ease;
}

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

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

.mobile-nav a {
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 0;
  border-bottom: 1px solid #F5F5F5;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #C41E3A;
}

/* BUTTONS - MINIMALIST */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 0;
}

.btn-primary {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}

.btn-primary:hover {
  background: #C41E3A;
  border-color: #C41E3A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

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

.btn-secondary:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-link {
  color: #C41E3A;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-link:hover {
  color: #9B1429;
  transform: translateX(4px);
}

/* HERO SECTIONS - MINIMALIST */
.hero {
  padding: 100px 20px;
  background: #F9F9F9;
  border-bottom: 1px solid #E5E5E5;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1A1A1A;
}

.hero-subheadline {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  font-size: 14px;
  color: #4A4A4A;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-page {
  padding: 80px 20px 60px;
  background: #F9F9F9;
  border-bottom: 1px solid #E5E5E5;
}

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

.breadcrumb a {
  color: #4A4A4A;
}

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

/* GRID LAYOUTS - FLEXBOX ONLY */
.value-grid,
.services-grid,
.testimonial-grid,
.packages-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.value-item,
.service-card,
.testimonial-card,
.package-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-item:hover,
.service-card:hover,
.package-card:hover {
  border-color: #C41E3A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.value-item h3,
.service-card h3,
.package-card h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.value-item p,
.service-card p,
.package-card p {
  color: #4A4A4A;
  margin-bottom: 16px;
}

.service-card .price,
.package-card .price {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #C41E3A;
  margin-top: 16px;
}

/* TESTIMONIALS - READABLE DESIGN */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: #F9F9F9;
  border: 1px solid #E5E5E5;
  flex: 1 1 calc(50% - 24px);
}

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

.testimonial-card cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: #4A4A4A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SECTIONS */
.value-proposition,
.services-showcase,
.testimonials,
.parts-finder-cta,
.location-contact {
  padding: 80px 20px;
}

.value-proposition {
  background: #FFFFFF;
}

.services-showcase {
  background: #F9F9F9;
}

.testimonials {
  background: #FFFFFF;
}

.parts-finder-cta {
  background: #F9F9F9;
  text-align: center;
}

.location-contact {
  background: #FFFFFF;
}

.value-support {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 0;
  font-size: 16px;
  color: #4A4A4A;
}

/* FEATURES LIST */
.features-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4A4A4A;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C41E3A;
  font-weight: 700;
}

/* CONTACT INFO */
.contact-info {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background: #F9F9F9;
  border: 1px solid #E5E5E5;
}

.contact-info p {
  margin-bottom: 16px;
  color: #4A4A4A;
}

/* SERVICE ITEMS */
.service-item {
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: #C41E3A;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.service-item h3 {
  margin-bottom: 12px;
}

.service-item p {
  margin-bottom: 16px;
}

.service-item .price {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #C41E3A;
  margin: 16px 0;
}

/* SERVICE DETAILS */
.service-detail {
  padding: 40px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  margin-bottom: 32px;
}

.service-detail h3 {
  margin-bottom: 16px;
}

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

/* STATS */
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin: 60px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 150px;
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  color: #C41E3A;
  font-family: 'Rajdhani', sans-serif;
}

.stat span:last-child {
  font-size: 14px;
  color: #4A4A4A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

/* BLOG & ARTICLES */
.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.article-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.article-card .category {
  font-size: 12px;
  font-weight: 600;
  color: #C41E3A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-card h3 {
  color: #1A1A1A;
  font-size: 20px;
}

.article-card .date {
  font-size: 14px;
  color: #8A8A8A;
}

.categories-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.categories-list li a {
  display: inline-block;
  padding: 12px 24px;
  background: #F9F9F9;
  border: 1px solid #E5E5E5;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.categories-list li a:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}

.articles-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.articles-list li {
  padding: 16px 0;
  border-bottom: 1px solid #E5E5E5;
}

.articles-list li a {
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
  transition: color 0.3s ease;
}

.articles-list li a:hover {
  color: #C41E3A;
}

/* CONTACT FORMS */
.form-note,
.form-fields-description {
  background: #F9F9F9;
  padding: 24px;
  margin-bottom: 32px;
  border-left: 4px solid #C41E3A;
}

.privacy-note {
  font-size: 14px;
  color: #8A8A8A;
  margin-top: 16px;
}

.form-redirect {
  padding: 32px;
  background: #FFFFFF;
  border: 2px solid #C41E3A;
  text-align: center;
  margin: 32px 0;
  font-size: 16px;
}

.form-redirect strong {
  color: #C41E3A;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.contact-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background: #F9F9F9;
  border: 1px solid #E5E5E5;
}

.contact-item h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

/* LEGAL PAGES */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  padding: 40px 0;
  border-bottom: 1px solid #E5E5E5;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  margin-bottom: 24px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 100px 20px;
  background: #F9F9F9;
  text-align: center;
}

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

.checkmark {
  width: 80px;
  height: 80px;
  background: #C41E3A;
  color: #FFFFFF;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border-radius: 50%;
}

.subtitle {
  font-size: 18px;
  color: #4A4A4A;
}

.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.step,
.suggestion-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
}

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

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

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

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

.footer-section h3 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.8;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #333333;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 2px solid #C41E3A;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  font-size: 14px;
  color: #4A4A4A;
  margin-bottom: 8px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #1A1A1A;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.cookie-buttons .accept-all {
  background: #1A1A1A;
  color: #FFFFFF;
}

.cookie-buttons .accept-all:hover {
  background: #C41E3A;
  border-color: #C41E3A;
}

.cookie-buttons .reject-all,
.cookie-buttons .settings {
  background: transparent;
  color: #1A1A1A;
}

.cookie-buttons .reject-all:hover,
.cookie-buttons .settings:hover {
  background: #1A1A1A;
  color: #FFFFFF;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 2px solid #C41E3A;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #1A1A1A;
  cursor: pointer;
  width: 32px;
  height: 32px;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #C41E3A;
}

.cookie-category {
  padding: 20px;
  background: #F9F9F9;
  border: 1px solid #E5E5E5;
  margin-bottom: 16px;
}

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

.category-header h3 {
  font-size: 16px;
  margin-bottom: 0;
}

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

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
}

input:checked + .slider {
  background-color: #C41E3A;
}

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

.cookie-category p {
  font-size: 14px;
  color: #4A4A4A;
  margin-top: 12px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

.modal-actions button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #1A1A1A;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #1A1A1A;
  color: #FFFFFF;
}

.modal-actions button:hover {
  background: #C41E3A;
  border-color: #C41E3A;
}

/* CTA SECTIONS */
.cta-section {
  padding: 80px 20px;
  background: #1A1A1A;
  color: #FFFFFF;
  text-align: center;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-section p {
  color: #B0B0B0;
  margin-bottom: 32px;
  font-size: 16px;
}

/* INTRO TEXT */
.intro-text {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
  color: #4A4A4A;
  line-height: 1.8;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.trust-badges span {
  font-size: 14px;
  font-weight: 500;
  color: #4A4A4A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* PROCESS STEPS */
.process-steps {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  counter-reset: step-counter;
}

.process-steps li {
  padding: 24px 24px 24px 80px;
  position: relative;
  border-left: 2px solid #E5E5E5;
  margin-bottom: 32px;
}

.process-steps li:before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: -20px;
  top: 20px;
  width: 40px;
  height: 40px;
  background: #C41E3A;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.process-steps li strong {
  display: block;
  margin-bottom: 8px;
  color: #1A1A1A;
}

/* MILESTONES */
.milestones {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 40px auto;
}

.milestones li {
  padding: 16px 0;
  border-bottom: 1px solid #E5E5E5;
  font-weight: 500;
  color: #1A1A1A;
}

/* PREMIUM BENEFITS */
.premium-benefits {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 32px auto;
}

.premium-benefits li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4A4A4A;
}

.premium-benefits li:before {
  content: "★";
  position: absolute;
  left: 0;
  color: #FFB800;
  font-size: 18px;
}

/* BRANDS LIST */
.brands-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 32px auto;
}

.brands-list li {
  padding: 16px;
  background: #F9F9F9;
  border: 1px solid #E5E5E5;
  margin-bottom: 16px;
  font-weight: 500;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  .hero-subheadline { font-size: 16px; }
  
  /* Show mobile menu */
  .mobile-menu-toggle { display: block; }
  .main-nav { display: none; }
  
  /* Hero adjustments */
  .hero { padding: 60px 20px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  
  /* Grid adjustments */
  .value-item,
  .service-card,
  .testimonial-card,
  .package-card,
  .article-card {
    flex: 1 1 100%;
  }
  
  /* Stats */
  .stats-grid { gap: 40px; }
  .stat .number { font-size: 36px; }
  
  /* Footer */
  .footer-section { flex: 1 1 100%; }
  
  /* Cookie banner */
  .cookie-content { flex-direction: column; }
  .cookie-buttons { width: 100%; flex-direction: column; }
  .cookie-buttons button { width: 100%; }
  
  /* Contact details */
  .contact-item { flex: 1 1 100%; }
  
  /* Steps */
  .step, .suggestion-card { flex: 1 1 100%; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-item,
  .service-card,
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .article-card {
    flex: 1 1 calc(50% - 32px);
  }
}

/* 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 slideInUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

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

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

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