/* ============================================
   MANDO CRNO PREMIUM CARS - MONOCHROME SOPHISTICATED
   Sophisticated Black/White/Gray Design
   ============================================ */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

ul {
  list-style: none;
}

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

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

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

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

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
}

header img {
  height: 50px;
  width: auto;
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #666666;
  border-bottom-color: #1a1a1a;
}

.phone-header {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
  white-space: nowrap;
}

.phone-header:hover {
  color: #666666;
}

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

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

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #f5f5f5;
  padding-left: 24px;
}

/* BUTTONS */
.cta-button,
.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cta-button,
.cta-primary {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.cta-button:hover,
.cta-primary:hover {
  background-color: #000000;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
  background-color: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.cta-secondary:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.cta-link {
  display: inline-block;
  font-weight: 600;
  color: #1a1a1a;
  padding: 8px 0;
  border-bottom: 2px solid #1a1a1a;
  margin-top: 24px;
}

.cta-link:hover {
  color: #666666;
  border-bottom-color: #666666;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%, rgba(255,255,255,0.03)),
                    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%, rgba(255,255,255,0.03));
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: 0.3;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.subheadline {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-badges span,
.trust-indicators span {
  font-size: 14px;
  font-weight: 600;
  color: #cccccc;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
}

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

section h2 {
  text-align: center;
  margin-bottom: 16px;
}

section > .container > p {
  text-align: center;
  color: #666666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.service-grid,
.category-grid,
.feature-grid,
.value-grid,
.vehicle-grid,
.service-detail-grid,
.package-grid,
.event-grid,
.contact-grid,
.addon-grid,
.included-grid,
.benefits-grid,
.stats-grid,
.mission-grid,
.trust-grid,
.summary-grid,
.browse-links,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* CARDS */
.service-card,
.category-card,
.vehicle-card,
.service-detail-card,
.package-card,
.event-card,
.contact-card,
.addon-item,
.included-item,
.benefit,
.stat,
.mission-item,
.value-card,
.trust-item,
.summary-card,
.browse-card,
.link-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.category-card:hover,
.vehicle-card:hover,
.service-detail-card:hover,
.package-card:hover,
.event-card:hover,
.contact-card:hover,
.browse-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #1a1a1a;
}

.service-card h3,
.category-card h3,
.vehicle-card h3,
.service-detail-card h3,
.package-card h3,
.event-card h3,
.contact-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666666;
  background-color: #f5f5f5;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.price,
.starting-price {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 20px 0;
  display: block;
}

.features {
  margin: 20px 0;
}

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

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: 700;
}

/* BADGE */
.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
}

.popular {
  border: 2px solid #1a1a1a;
}

/* TAG */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: #666666;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 12px;
}

/* TESTIMONIALS */
.testimonial-slider,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

.testimonial-card {
  background-color: #f5f5f5;
  border-left: 4px solid #1a1a1a;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.7;
}

.customer-name,
.couple-name {
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 16px;
  display: block;
}

.rating {
  color: #1a1a1a;
  font-size: 18px;
  margin-top: 12px;
}

/* STEPS/PROCESS */
.steps-grid,
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 40px 0;
}

.step,
.timeline-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 24px;
  position: relative;
  margin-bottom: 20px;
}

.step-number,
.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step h3,
.timeline-item h3 {
  margin-bottom: 12px;
}

/* FILTER */
.vehicle-filter {
  padding: 20px;
  margin-bottom: 40px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.filter-btn {
  padding: 12px 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

/* HIGHLIGHT CARDS */
.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.highlight-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.highlight-card h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.highlight-card p {
  color: #cccccc;
}

.highlight-card a {
  color: #ffffff;
  font-weight: 600;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
  margin-top: 20px;
}

.highlight-card a:hover {
  color: #cccccc;
  border-bottom-color: #cccccc;
}

/* FEATURE ITEMS */
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
  padding: 24px;
  background-color: #f5f5f5;
  border-radius: 4px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.feature p {
  color: #666666;
}

/* PRICING SECTION */
.pricing-transparency {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.pricing-transparency h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.pricing-transparency ul {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-transparency ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #333333;
}

.pricing-transparency ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 18px;
}

/* CTA BANNERS */
.cta-banner,
.booking-cta,
.consultation-cta,
.contact-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.cta-banner p,
.booking-cta p,
.consultation-cta p,
.contact-cta p {
  color: #cccccc;
  margin-bottom: 32px;
}

.opening-hours,
.special-note {
  color: #cccccc;
  font-size: 14px;
  margin-top: 24px;
}

/* CONTACT INFO */
.contact-info {
  margin: 32px 0;
}

.contact-info p {
  margin-bottom: 12px;
  color: #333333;
}

.contact-info strong {
  color: #1a1a1a;
}

/* HOURS TABLE */
.hours-table {
  max-width: 500px;
  margin: 32px auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.hours-row span:first-child {
  font-weight: 600;
  color: #1a1a1a;
}

.hours-row span:last-child {
  color: #666666;
}

.emergency-note {
  text-align: center;
  margin-top: 24px;
  padding: 16px;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* LOCATION/MAP */
.location-info {
  background-color: #f5f5f5;
  padding: 40px;
  border-radius: 4px;
  margin-top: 32px;
}

.address {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.location-info h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.location-info ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #333333;
}

.location-info ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-size: 20px;
}

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

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-wrapper h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.content-wrapper h3 {
  text-align: left;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.content-wrapper p {
  margin-bottom: 16px;
  text-align: left;
}

.content-wrapper ul li {
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
  color: #333333;
}

.content-wrapper ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-size: 20px;
}

.last-updated,
.response-time,
.note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
}

/* THANK YOU PAGE */
.thank-you .success-icon {
  width: 80px;
  height: 80px;
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.confirmation-details,
.confirmation-steps,
.urgent-contact,
.immediate-contact {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.phone-large,
.phone-display {
  font-size: 32px;
  font-weight: 700;
  margin: 24px 0;
}

.phone-large a,
.phone-display a {
  color: #1a1a1a;
  border-bottom: 3px solid #1a1a1a;
}

.phone-large a:hover,
.phone-display a:hover {
  color: #666666;
  border-bottom-color: #666666;
}

/* FOOTER */
footer {
  background-color: #1a1a1a;
  color: #cccccc;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

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

.footer-col p,
.footer-col a {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

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

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

.legal-links a {
  color: #cccccc;
  font-size: 13px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #ffffff;
}

.footer-bottom p {
  color: #999999;
  font-size: 13px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent p {
  color: #cccccc;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

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

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

.cookie-reject:hover,
.cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #1a1a1a;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #666666;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  cursor: pointer;
  font-weight: 600;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  /* Header */
  .main-nav,
  .phone-header {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header .cta-button {
    display: none;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
  }
  
  /* Cards - Stack on mobile */
  .service-card,
  .category-card,
  .vehicle-card,
  .service-detail-card,
  .package-card,
  .event-card,
  .contact-card,
  .feature,
  .benefit,
  .stat,
  .mission-item,
  .value-card,
  .trust-item,
  .summary-card,
  .testimonial-card,
  .step,
  .timeline-item,
  .highlight-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
  }
  
  /* Cookie Consent */
  .cookie-consent .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablets */
  .service-card,
  .category-card,
  .vehicle-card,
  .service-detail-card,
  .package-card,
  .event-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
}

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

.service-card,
.vehicle-card,
.testimonial-card,
.feature {
  animation: fadeIn 0.6s ease forwards;
}

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

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

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-button,
  .cta-group {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
}

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

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

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

.p-20 {
  padding: 20px;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* SELECTION */
::selection {
  background-color: #1a1a1a;
  color: #ffffff;
}

::-moz-selection {
  background-color: #1a1a1a;
  color: #ffffff;
}