/* ============================================
   PRIMO SCRUB - VINTAGE RETRO DESIGN SYSTEM
   Complete CSS Stylesheet for Car Rental Website
   Design Style: Vintage & Retro-inspired
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2c1810;
  background-color: #f9f5f0;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   VINTAGE RETRO TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2c1810;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  text-shadow: 3px 3px 0px rgba(229, 160, 0, 0.3);
}

h2 {
  font-size: 36px;
  text-shadow: 2px 2px 0px rgba(229, 160, 0, 0.2);
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

/* ============================================
   VINTAGE RETRO CONTAINER & LAYOUT
   ============================================ */

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

/* ============================================
   VINTAGE RETRO BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #2c1810;
  background-color: #E5A000;
  color: #2c1810;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0px #2c1810;
  position: relative;
}

.btn:hover {
  background-color: #c88d00;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #2c1810;
}

.btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px #2c1810;
}

.btn-primary {
  background-color: #E5A000;
  color: #2c1810;
}

.btn-secondary {
  background-color: #134961;
  color: #f9f5f0;
  border-color: #134961;
}

.btn-secondary:hover {
  background-color: #0f3a4a;
  border-color: #0f3a4a;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background-color: #E5A000;
  border: 3px solid #2c1810;
  color: #2c1810;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0px #2c1810;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #c88d00;
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0px #2c1810;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #f9f5f0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(229, 160, 0, 0.05) 10px,
    rgba(229, 160, 0, 0.05) 20px
  );
  border-left: 4px solid #2c1810;
  z-index: 1002;
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(44, 24, 16, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #2c1810;
  color: #f9f5f0;
  font-size: 24px;
  border: none;
  cursor: pointer;
  border: 2px solid #2c1810;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E5A000;
  color: #2c1810;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 700;
  color: #2c1810;
  background-color: rgba(229, 160, 0, 0.1);
  border: 2px solid #2c1810;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #E5A000;
  transform: translateX(5px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background-color: #f9f5f0;
  border-bottom: 4px solid #2c1810;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(44, 24, 16, 0.1);
}

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

.logo img {
  max-height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li a {
  display: block;
  padding: 10px 16px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  font-weight: 700;
  color: #2c1810;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  color: #E5A000;
  border-bottom: 2px solid #E5A000;
}

/* ============================================
   HERO SECTION - VINTAGE RETRO STYLE
   ============================================ */

.hero {
  background-color: #134961;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(249, 245, 240, 0.03) 2px,
      rgba(249, 245, 240, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(249, 245, 240, 0.03) 2px,
      rgba(249, 245, 240, 0.03) 4px
    );
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 6px solid #E5A000;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(229, 160, 0, 0.1);
  border-radius: 50%;
  border: 4px dashed rgba(249, 245, 240, 0.2);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background-color: rgba(229, 160, 0, 0.08);
  border-radius: 50%;
  border: 4px dotted rgba(249, 245, 240, 0.15);
}

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

.hero h1 {
  color: #f9f5f0;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0px rgba(229, 160, 0, 0.4);
}

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

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

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

.badge {
  padding: 12px 24px;
  background-color: rgba(249, 245, 240, 0.15);
  border: 2px solid #E5A000;
  color: #f9f5f0;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background-color: #E5A000;
  border: 3px solid #2c1810;
  color: #2c1810;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 3px 3px 0px #2c1810;
  margin-top: 20px;
}

/* ============================================
   PAGE HERO SECTIONS
   ============================================ */

.page-hero {
  background-color: #134961;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(229, 160, 0, 0.05) 20px,
      rgba(229, 160, 0, 0.05) 40px
    );
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 6px solid #E5A000;
}

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

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

.update-date {
  font-size: 14px;
  color: rgba(249, 245, 240, 0.8);
  font-style: italic;
  margin-top: 16px;
}

/* ============================================
   SERVICES GRID - VINTAGE CARD DESIGN
   ============================================ */

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

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a3a2a;
  max-width: 700px;
  margin: 0 auto 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  padding: 30px;
  background-color: #fff;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 10px,
      rgba(229, 160, 0, 0.03) 10px,
      rgba(229, 160, 0, 0.03) 11px
    );
  border: 4px solid #2c1810;
  box-shadow: 6px 6px 0px rgba(229, 160, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px dashed rgba(44, 24, 16, 0.2);
  pointer-events: none;
}

.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(229, 160, 0, 0.4);
}

.service-card h3 {
  color: #134961;
  font-size: 22px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: #4a3a2a;
  margin-bottom: 16px;
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
  background-color: #fff8e8;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 4px solid #2c1810;
  border-bottom: 4px solid #2c1810;
}

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

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

.feature {
  flex: 1 1 calc(50% - 30px);
  min-width: 250px;
  max-width: 500px;
  padding: 24px;
  background-color: #f9f5f0;
  border: 3px solid #2c1810;
  border-left: 8px solid #E5A000;
  margin-bottom: 20px;
}

.feature h3 {
  color: #134961;
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.feature p {
  color: #4a3a2a;
}

/* ============================================
   TESTIMONIALS - VINTAGE STYLE
   ============================================ */

.testimonials {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #f9f5f0;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 550px;
  padding: 30px;
  background-color: #fff;
  border: 4px solid #2c1810;
  box-shadow: 5px 5px 0px rgba(19, 73, 97, 0.2);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 80px;
  color: rgba(229, 160, 0, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #2c1810;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: #134961;
  font-style: italic;
  margin-bottom: 0;
  text-align: right;
}

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

.cta-banner,
.cta {
  background-color: #E5A000;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 15px,
      rgba(44, 24, 16, 0.05) 15px,
      rgba(44, 24, 16, 0.05) 30px
    );
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-top: 6px solid #2c1810;
  border-bottom: 6px solid #2c1810;
}

.cta-banner h2,
.cta h2 {
  color: #2c1810;
  margin-bottom: 16px;
}

.cta-banner p,
.cta p {
  color: #2c1810;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn,
.cta .btn {
  background-color: #134961;
  color: #f9f5f0;
  border-color: #2c1810;
}

.cta-banner .btn:hover,
.cta .btn:hover {
  background-color: #0f3a4a;
}

/* ============================================
   FLEET & CATEGORY SECTIONS
   ============================================ */

.fleet-categories,
.fleet-features {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  padding: 30px;
  background-color: #fff;
  border: 4px solid #2c1810;
  border-top: 8px solid #134961;
  box-shadow: 5px 5px 0px rgba(229, 160, 0, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px rgba(229, 160, 0, 0.4);
}

.category-card h3 {
  color: #134961;
  font-size: 24px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.category-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #E5A000;
  margin-top: 16px;
}

.category-card .examples {
  font-size: 14px;
  color: #4a3a2a;
  font-style: italic;
  margin-top: 12px;
}

/* ============================================
   PRICING SECTION
   ============================================ */

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

.pricing h2 {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.pricing-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 300px;
  padding: 30px 20px;
  background-color: #fff;
  border: 4px solid #2c1810;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px dashed rgba(229, 160, 0, 0.3);
  pointer-events: none;
}

.pricing-card:hover {
  background-color: #fff8e8;
  transform: scale(1.05);
}

.pricing-card h3 {
  color: #134961;
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 3px solid #E5A000;
  padding-bottom: 12px;
}

.pricing-card .daily {
  font-size: 28px;
  font-weight: 700;
  color: #E5A000;
  margin-bottom: 12px;
}

.pricing-card p {
  color: #4a3a2a;
  margin-bottom: 8px;
}

.included {
  background-color: #fff8e8;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 4px solid #2c1810;
  border-bottom: 4px solid #2c1810;
}

.included h2 {
  text-align: center;
  margin-bottom: 32px;
}

.included-list {
  max-width: 600px;
  margin: 0 auto;
}

.included-list li {
  padding: 16px 20px;
  margin-bottom: 12px;
  background-color: #f9f5f0;
  border-left: 6px solid #E5A000;
  border: 3px solid #2c1810;
  border-left-width: 8px;
  font-size: 16px;
  color: #2c1810;
  position: relative;
  padding-left: 50px;
}

.included-list li::before {
  content: '\2713';
  position: absolute;
  left: 16px;
  color: #E5A000;
  font-size: 20px;
  font-weight: 700;
}

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

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

.about-intro h2 {
  text-align: center;
  margin-bottom: 24px;
}

.about-intro > p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  max-width: 250px;
  padding: 30px;
  background-color: #134961;
  border: 4px solid #2c1810;
  text-align: center;
  box-shadow: 5px 5px 0px rgba(229, 160, 0, 0.4);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #E5A000;
  margin-bottom: 8px;
  text-shadow: 3px 3px 0px rgba(44, 24, 16, 0.3);
}

.stat p {
  color: #f9f5f0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.mission,
.location {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.mission h2,
.location h2 {
  margin-bottom: 24px;
}

.mission h3 {
  margin-top: 32px;
  margin-bottom: 20px;
}

.mission ul {
  max-width: 700px;
  margin: 0 auto;
}

.mission li {
  padding: 16px 20px;
  margin-bottom: 12px;
  background-color: #fff;
  border: 3px solid #2c1810;
  border-left: 8px solid #134961;
  position: relative;
  padding-left: 50px;
}

.mission li::before {
  content: '\2022';
  position: absolute;
  left: 20px;
  color: #E5A000;
  font-size: 24px;
  font-weight: 700;
}

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

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

.contact-methods h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.contact-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  padding: 40px;
  background-color: #fff;
  border: 4px solid #2c1810;
  text-align: center;
  box-shadow: 5px 5px 0px rgba(229, 160, 0, 0.3);
  margin-bottom: 20px;
}

.contact-card h3 {
  color: #134961;
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 3px solid #E5A000;
  padding-bottom: 12px;
}

.contact-card p {
  font-size: 16px;
  color: #2c1810;
  margin-bottom: 12px;
}

.contact-form-section {
  background-color: #fff8e8;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 4px solid #2c1810;
  border-bottom: 4px solid #2c1810;
}

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

.contact-form-section > p {
  text-align: center;
  margin-bottom: 40px;
}

.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: #fff;
  border: 4px solid #2c1810;
  box-shadow: 6px 6px 0px rgba(19, 73, 97, 0.2);
}

.form-placeholder p {
  padding: 16px;
  margin-bottom: 16px;
  background-color: #f9f5f0;
  border: 2px solid #2c1810;
  color: #4a3a2a;
}

.form-placeholder .note {
  font-size: 14px;
  font-style: italic;
  text-align: center;
  color: #134961;
  margin-top: 24px;
}

.form-placeholder .btn {
  width: 100%;
  margin-top: 24px;
}

.response-time {
  text-align: center;
  font-size: 14px;
  color: #4a3a2a;
  margin-top: 24px;
  font-style: italic;
}

.office-hours {
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: center;
}

.office-hours h2 {
  margin-bottom: 24px;
}

.office-hours p {
  font-size: 18px;
  color: #2c1810;
  margin-bottom: 8px;
}

.office-hours .note {
  font-size: 16px;
  font-weight: 700;
  color: #E5A000;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #134961;
  border-bottom: 3px solid #E5A000;
  padding-bottom: 12px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  padding-left: 40px;
}

.legal-content li {
  margin-bottom: 12px;
  position: relative;
}

.acceptance-note {
  margin-top: 40px;
  padding: 24px;
  background-color: #fff8e8;
  border: 4px solid #2c1810;
  border-left: 8px solid #E5A000;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.acceptance-note strong {
  color: #134961;
}

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

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff8e8;
  margin-bottom: 60px;
  border-bottom: 4px solid #2c1810;
}

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

.thank-you-hero h1 {
  margin-bottom: 24px;
}

.thank-you-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 16px;
}

.confirmation {
  font-size: 16px;
  color: #134961;
  font-style: italic;
}

.next-steps,
.while-waiting,
.contact-reminder,
.response-time-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.steps-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.step,
.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  padding: 30px;
  background-color: #fff;
  border: 4px solid #2c1810;
  text-align: center;
  box-shadow: 5px 5px 0px rgba(229, 160, 0, 0.3);
}

.step h3,
.action-card h3 {
  color: #134961;
  font-size: 20px;
  margin-bottom: 16px;
}

.info-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: #134961;
  border: 4px solid #2c1810;
  text-align: center;
  box-shadow: 6px 6px 0px rgba(229, 160, 0, 0.4);
}

.info-box h2 {
  color: #f9f5f0;
  margin-bottom: 20px;
}

.info-box p {
  color: #f9f5f0;
  font-size: 18px;
  margin-bottom: 12px;
}

.back-links,
.back-home {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 60px;
}

.back-links .btn,
.back-home .btn {
  margin: 0 8px 16px;
}

/* ============================================
   SERVICES DETAILED
   ============================================ */

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

.service-full {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 40px;
  background-color: #fff;
  border: 4px solid #2c1810;
  box-shadow: 6px 6px 0px rgba(229, 160, 0, 0.3);
}

.service-full h2 {
  color: #134961;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 3px solid #E5A000;
  padding-bottom: 12px;
}

.service-full .price {
  font-size: 28px;
  font-weight: 700;
  color: #E5A000;
  margin: 20px 0;
  text-shadow: 2px 2px 0px rgba(44, 24, 16, 0.1);
}

.service-full ul {
  margin-top: 20px;
  padding-left: 0;
}

.service-full li {
  padding: 12px 20px;
  margin-bottom: 8px;
  background-color: #f9f5f0;
  border-left: 6px solid #E5A000;
  border: 3px solid #2c1810;
  border-left-width: 8px;
  position: relative;
  padding-left: 50px;
}

.service-full li::before {
  content: '\2713';
  position: absolute;
  left: 16px;
  color: #E5A000;
  font-size: 18px;
  font-weight: 700;
}

/* ============================================
   FOOTER - VINTAGE RETRO STYLE
   ============================================ */

footer {
  background-color: #2c1810;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(229, 160, 0, 0.05) 20px,
      rgba(229, 160, 0, 0.05) 40px
    );
  color: #f9f5f0;
  padding: 60px 20px 20px;
  border-top: 6px solid #E5A000;
}

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

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

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

.footer-section h4 {
  color: #E5A000;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #E5A000;
  padding-bottom: 8px;
}

.footer-section p {
  color: #f9f5f0;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-section ul {
  padding: 0;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #f9f5f0;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: #E5A000;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(229, 160, 0, 0.3);
}

.footer-bottom p {
  color: rgba(249, 245, 240, 0.8);
  font-size: 14px;
}

/* ============================================
   COOKIE CONSENT BANNER - VINTAGE STYLE
   ============================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c1810;
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 10px,
      rgba(229, 160, 0, 0.05) 10px,
      rgba(229, 160, 0, 0.05) 20px
    );
  border-top: 4px solid #E5A000;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

#cookie-banner.hidden {
  display: none;
}

.cookie-content {
  flex: 1 1 auto;
  min-width: 250px;
}

.cookie-content p {
  color: #f9f5f0;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #2c1810;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-all {
  background-color: #E5A000;
  color: #2c1810;
}

#accept-all:hover {
  background-color: #c88d00;
}

#reject-all,
#cookie-settings {
  background-color: transparent;
  color: #f9f5f0;
  border-color: #f9f5f0;
}

#reject-all:hover,
#cookie-settings:hover {
  background-color: rgba(249, 245, 240, 0.1);
}

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

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

.modal-content {
  background-color: #f9f5f0;
  border: 4px solid #2c1810;
  box-shadow: 8px 8px 0px rgba(229, 160, 0, 0.4);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background-color: #2c1810;
  color: #f9f5f0;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: #E5A000;
  color: #2c1810;
}

.modal-content h2 {
  color: #134961;
  margin-bottom: 24px;
  border-bottom: 3px solid #E5A000;
  padding-bottom: 12px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #fff;
  border: 3px solid #2c1810;
}

.cookie-category h3 {
  color: #2c1810;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border: 2px solid #2c1810;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: #2c1810;
  transition: 0.3s;
}

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

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

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.modal-buttons button {
  flex: 1 1 auto;
  min-width: 140px;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Grid adjustments */
  .services-grid,
  .features-grid,
  .categories-grid,
  .pricing-grid,
  .testimonials-grid,
  .contact-grid,
  .stats-grid,
  .steps-grid,
  .actions-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .service-card,
  .feature,
  .category-card,
  .pricing-card,
  .testimonial-card,
  .contact-card,
  .stat,
  .step,
  .action-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Cookie banner */
  #cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal adjustments */
  .modal-content {
    padding: 30px 20px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .feature {
    flex: 1 1 calc(50% - 30px);
  }
  
  .pricing-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 30px);
  }
}

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .hero-cta,
  .cta-banner,
  .cta {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
  }
}

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

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

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

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

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@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 pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.mobile-menu.active {
  animation: slideInRight 0.4s ease;
}

/* ============================================
   END OF STYLESHEET
   ============================================ */