/* ===================================
   AUTOFLOTT - VINTAGE RETRO DESIGN
   Mobile-First Responsive CSS
   =================================== */

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

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

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  color: #2C1810;
  background-color: #F5E6D3;
  overflow-x: hidden;
}

/* VINTAGE RETRO TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #8B4513;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

h1 {
  font-size: 42px;
  letter-spacing: 2px;
}

h2 {
  font-size: 32px;
  letter-spacing: 1px;
}

h3 {
  font-size: 24px;
}

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

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

a:hover {
  color: #A0522D;
  text-decoration: underline;
}

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

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

li {
  margin-bottom: 8px;
}

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #8B4513;
  color: #FFF8DC;
  border: 3px solid #654321;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #654321;
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 15px rgba(0,0,0,0.3);
  overflow-y: auto;
  border-left: 5px solid #D2691E;
}

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

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

.mobile-menu-close:hover {
  background: #FFF8DC;
  color: #8B4513;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFF8DC;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border: 2px solid #D2691E;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
  background: rgba(210, 105, 30, 0.1);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.mobile-nav a:hover {
  background: #D2691E;
  color: #FFF8DC;
  transform: translateX(-5px);
  text-decoration: none;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-bottom: 4px solid #D2691E;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 60px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

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

.main-nav a {
  color: #FFF8DC;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  border: 2px solid transparent;
}

.main-nav a:hover {
  background: #D2691E;
  border-color: #FFF8DC;
  transform: translateY(-2px);
  text-decoration: none;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid #8B4513;
}

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

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

.hero h1 {
  color: #FFF8DC;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 20px;
  color: #FFF8DC;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.btn-primary, .btn-secondary, .btn, .btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 3px solid;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}

.btn-primary {
  background: #8B4513;
  color: #FFF8DC;
  border-color: #654321;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  background: #654321;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
  text-decoration: none;
}

.btn-secondary {
  background: #D2691E;
  color: #FFF8DC;
  border-color: #A0522D;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.btn-secondary:hover {
  background: #A0522D;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
  text-decoration: none;
}

.btn {
  background: #CD853F;
  color: #3E2723;
  border-color: #8B4513;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.btn:hover {
  background: #D2691E;
  color: #FFF8DC;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-link {
  background: transparent;
  color: #8B4513;
  border-color: #8B4513;
  padding: 12px 24px;
}

.btn-link:hover {
  background: #8B4513;
  color: #FFF8DC;
  text-decoration: none;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badges span {
  background: rgba(255, 248, 220, 0.9);
  color: #8B4513;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #D2691E;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 5px solid #8B4513;
}

.page-hero h1 {
  color: #FFF8DC;
  margin-bottom: 16px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.page-hero p {
  color: #FFF8DC;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.trust-badge, .badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-badge, .badges span {
  background: #FFF8DC;
  color: #8B4513;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  border: 2px solid #D2691E;
  font-size: 14px;
}

.updated {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 248, 220, 0.8);
}

/* SECTIONS */
.services, .features, .testimonials, .cta-banner, 
.vehicle-categories, .pricing-table, .benefits, 
.included-services, .fleet-features, .whats-included,
.discounts, .pricing-tiers, .featured-locations,
.opening-hours, .contact-info, .story, .mission-vision,
.by-numbers, .contact-options, .headquarters,
.emergency-contact, .business-hours, .legal-content,
.contact-data-protection, .conditions-summary,
.confirmation, .next-steps, .social-proof,
.next-actions, .return-home {
  padding: 60px 20px;
  margin-bottom: 0;
}

.services {
  background: #F5E6D3;
}

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

.services > .container > p {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #5D4037;
}

/* FLEXBOX GRID SYSTEMS */
.service-grid, .feature-grid, .testimonial-grid,
.category-grid, .price-grid, .benefit-grid,
.tier-grid, .location-grid, .contact-grid,
.content-grid, .stats-grid, .discount-grid,
.inclusion-grid, .action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

/* CARDS */
.service-card, .feature-item, .testimonial-card,
.category-card, .price-card, .benefit-card,
.tier-card, .location-card, .contact-card,
.content-card, .stat, .discount-card,
.action-card {
  background: #FFF8DC;
  border: 3px solid #8B4513;
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.category-card::before,
.price-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 5px,
    rgba(139, 69, 19, 0.1) 5px,
    rgba(139, 69, 19, 0.1) 10px
  );
  border-radius: 12px;
  z-index: -1;
}

.service-card:hover, .category-card:hover,
.price-card:hover, .location-card:hover,
.action-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.4);
}

.service-card h3, .category-card h3,
.benefit-card h3, .location-card h3,
.action-card h3 {
  color: #8B4513;
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p, .category-card p {
  color: #3E2723;
  margin-bottom: 12px;
}

.service-card .price, .category-card .price,
.price-card .price, .tier-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #D2691E;
  margin-top: 16px;
  font-family: 'Georgia', serif;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.category-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.category-card li {
  padding-left: 24px;
  position: relative;
  color: #5D4037;
}

.category-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D2691E;
  font-weight: 700;
}

/* FEATURES */
.features {
  background: linear-gradient(135deg, #DEB887 0%, #F5DEB3 100%);
  text-align: center;
}

.features h2 {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: rgba(255, 248, 220, 0.9);
  flex: 1 1 250px;
  max-width: 280px;
}

.feature-item h3 {
  color: #8B4513;
  font-size: 20px;
}

.feature-item p {
  color: #5D4037;
}

/* TESTIMONIALS */
.testimonials {
  background: #F5E6D3;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 40px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px;
  background: #FFF8DC;
  border: 3px solid #D2691E;
  font-style: italic;
  max-width: 500px;
  margin: 0 auto 20px;
}

.testimonial-card p {
  color: #3E2723;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-card .author {
  font-weight: 700;
  color: #8B4513;
  font-style: normal;
  margin-top: 8px;
}

.testimonials .rating {
  font-size: 20px;
  font-weight: 700;
  color: #D2691E;
  margin-top: 24px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
  text-align: center;
  padding: 60px 20px;
  border-top: 5px solid #D2691E;
  border-bottom: 5px solid #D2691E;
}

.cta-banner h2 {
  color: #FFF8DC;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-banner p {
  color: #FFF8DC;
  font-size: 18px;
  margin-bottom: 24px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cta-banner .phone {
  font-size: 28px;
  font-weight: 700;
  color: #F5DEB3;
  margin-top: 24px;
  font-family: 'Georgia', serif;
}

.cta-banner .hours {
  font-size: 16px;
  color: #F5DEB3;
  margin-top: 8px;
}

/* PRICING TIERS */
.tier-card {
  text-align: center;
}

.tier-card.popular {
  border-color: #D2691E;
  border-width: 4px;
  transform: scale(1.05);
  background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
}

.tier-card .discount {
  background: #D2691E;
  color: #FFF8DC;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

/* SERVICE/INCLUSION LISTS */
.feature-list, .service-list, .inclusion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.feature, .service, .inclusion {
  background: #FFF8DC;
  padding: 16px 24px;
  border-radius: 8px;
  border: 2px solid #8B4513;
  font-weight: 600;
  color: #3E2723;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.2);
}

.note {
  text-align: center;
  font-style: italic;
  color: #5D4037;
  margin-top: 24px;
  font-size: 16px;
}

/* STATS */
.stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.stats span, .stat strong {
  font-size: 32px;
  font-weight: 700;
  color: #D2691E;
  display: block;
  font-family: 'Georgia', serif;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat p {
  font-size: 16px;
  color: #5D4037;
  margin-top: 8px;
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.milestone {
  background: #FFF8DC;
  padding: 16px 24px;
  border-left: 4px solid #D2691E;
  border-radius: 6px;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.2);
}

.milestone strong {
  color: #8B4513;
  font-size: 18px;
  margin-right: 8px;
}

/* VALUES LIST */
.values {
  background: #FFF8DC;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #8B4513;
  margin-top: 32px;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

.values h3 {
  margin-bottom: 20px;
  color: #8B4513;
}

.values ul {
  list-style: none;
  padding: 0;
}

.values li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(139, 69, 19, 0.2);
  color: #3E2723;
  font-size: 16px;
}

.values li:last-child {
  border-bottom: none;
}

/* HOURS TABLE */
.hours-table {
  background: #FFF8DC;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #8B4513;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

.hours-table p {
  font-size: 18px;
  margin-bottom: 12px;
  color: #3E2723;
}

.hours-table strong {
  color: #8B4513;
  font-weight: 700;
}

.emergency {
  color: #D2691E;
  font-weight: 700;
  font-size: 18px;
  margin-top: 20px;
}

/* HQ INFO */
.hq-info {
  background: #FFF8DC;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #8B4513;
  max-width: 700px;
  margin: 32px auto 0;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

.hq-info p {
  margin-bottom: 20px;
  color: #3E2723;
}

.hq-info strong {
  color: #8B4513;
}

/* EMERGENCY CONTACT */
.emergency-phone {
  font-size: 36px;
  font-weight: 700;
  color: #D2691E;
  text-align: center;
  margin: 24px 0;
  font-family: 'Georgia', serif;
}

.emergency-steps {
  background: #FFF8DC;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #D2691E;
  max-width: 700px;
  margin: 32px auto 0;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

.emergency-steps h3 {
  margin-bottom: 20px;
  color: #8B4513;
}

.emergency-steps ol {
  padding-left: 24px;
}

.emergency-steps li {
  color: #3E2723;
  margin-bottom: 12px;
  font-size: 16px;
}

/* LEGAL CONTENT */
.legal-content {
  background: #F5E6D3;
}

.content-wrapper {
  background: #FFF8DC;
  padding: 40px;
  border-radius: 12px;
  border: 3px solid #8B4513;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

.content-wrapper h2 {
  color: #8B4513;
  margin-top: 32px;
  margin-bottom: 16px;
  border-bottom: 2px solid #D2691E;
  padding-bottom: 8px;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper h3 {
  color: #A0522D;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper p {
  color: #3E2723;
  line-height: 1.8;
}

.content-wrapper ul {
  color: #3E2723;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px solid #D2691E;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #FFF8DC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #D2691E;
  margin: 0 auto 24px;
  border: 5px solid #D2691E;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.thank-you-hero h1 {
  color: #FFF8DC;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #FFF8DC;
  font-size: 18px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 32px auto;
}

.step {
  background: #FFF8DC;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #D2691E;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.2);
}

.step p {
  color: #3E2723;
  margin: 0;
}

.step strong {
  color: #8B4513;
  font-size: 20px;
  margin-right: 8px;
}

.contact-info {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  color: #3E2723;
}

.contact-info strong {
  color: #D2691E;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #654321 0%, #3E2723 100%);
  color: #F5DEB3;
  padding: 50px 20px 24px;
  border-top: 5px solid #D2691E;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #F5DEB3;
  margin-bottom: 16px;
  font-size: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-section p {
  color: #DEB887;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: #DEB887;
  font-size: 15px;
  transition: all 0.3s ease;
  padding-left: 12px;
  position: relative;
}

.footer-nav a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D2691E;
}

.footer-nav a:hover {
  color: #F5DEB3;
  padding-left: 16px;
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(245, 222, 179, 0.3);
  color: #DEB887;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
  z-index: 999;
  border-top: 4px solid #D2691E;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent p {
  color: #FFF8DC;
  margin: 0;
  flex: 1 1 300px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border: 2px solid #FFF8DC;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

#acceptCookies {
  background: #D2691E;
  color: #FFF8DC;
  border-color: #A0522D;
}

#acceptCookies:hover {
  background: #A0522D;
  transform: translateY(-2px);
}

#rejectCookies {
  background: transparent;
  color: #FFF8DC;
}

#rejectCookies:hover {
  background: rgba(255, 248, 220, 0.1);
}

#cookieSettings {
  background: transparent;
  color: #FFF8DC;
}

#cookieSettings:hover {
  background: rgba(255, 248, 220, 0.1);
}

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

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

.cookie-modal-content {
  background: #FFF8DC;
  padding: 40px;
  border-radius: 12px;
  border: 4px solid #8B4513;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
}

.cookie-modal h2 {
  color: #8B4513;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #F5E6D3;
  border-radius: 8px;
  border: 2px solid #D2691E;
}

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

.cookie-category p {
  color: #3E2723;
  margin-bottom: 12px;
  font-size: 14px;
}

.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;
  color: #3E2723;
  font-weight: 600;
}

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

.cookie-modal-buttons button {
  padding: 12px 24px;
  border: 2px solid #8B4513;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#saveCookiePreferences {
  background: #8B4513;
  color: #FFF8DC;
}

#saveCookiePreferences:hover {
  background: #654321;
}

#closeCookieModal {
  background: transparent;
  color: #8B4513;
}

#closeCookieModal:hover {
  background: #F5E6D3;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    display: none;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .service-grid, .feature-grid, .category-grid,
  .price-grid, .benefit-grid, .tier-grid,
  .location-grid, .contact-grid, .content-grid,
  .stats-grid, .discount-grid, .action-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .service-card, .feature-item, .category-card,
  .price-card, .benefit-card, .tier-card,
  .location-card, .contact-card, .content-card,
  .stat, .discount-card, .action-card {
    max-width: 100%;
    flex: 1 1 100%;
  }
  
  .tier-card.popular {
    transform: scale(1);
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  .content-wrapper {
    padding: 24px;
  }
  
  .stats {
    flex-direction: column;
    gap: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card, .category-card, .price-card,
  .location-card {
    flex: 1 1 45%;
    max-width: 48%;
  }
  
  .feature-item {
    flex: 1 1 30%;
  }
}

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

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

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

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

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

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