/* ============================================
   SHARP STRUCTURE RENTALS - MONOCHROME SOPHISTICATED
   CSS STYLESHEET - FLEXBOX ONLY LAYOUT
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

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: #2C3E50;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #E74C3C;
}

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

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

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

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

/* BUTTONS - MONOCHROME SOPHISTICATED STYLE */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 0;
}

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

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

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

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

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

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

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  width: 48px;
  height: 48px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #FFFFFF;
  color: #1a1a1a;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: #E74C3C;
  padding-left: 8px;
}

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

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E74C3C;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2C3E50 100%);
  color: #FFFFFF;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.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%),
    linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: #ECF0F1;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.hero .btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.hero .btn-secondary {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.hero .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1a1a1a;
}

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

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge span {
  font-size: 18px;
  color: #E74C3C;
}

/* SECTIONS */
section {
  padding: 80px 0;
  position: relative;
}

section:nth-child(even) {
  background-color: #f8f9fa;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #1a1a1a;
}

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  border: 2px solid #1a1a1a;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #E74C3C;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #E74C3C;
  margin-bottom: 16px;
}

.service-card p {
  color: #4a4a4a;
  line-height: 1.6;
}

/* BENEFITS GRID */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.benefit:hover {
  border-color: #1a1a1a;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.benefit p {
  font-size: 14px;
  color: #666;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #ECF0F1 100%);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-left: 4px solid #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: #ECF0F1;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  color: #1a1a1a;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-card .author {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  font-style: normal;
}

.testimonial-card .rating {
  color: #E74C3C;
  font-size: 18px;
  margin-bottom: 0;
}

.trust-metric {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

/* CTA SECTIONS */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2C3E50 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.cta-final h2,
.cta-section h2 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-final h2::after,
.cta-section h2::after {
  background-color: #E74C3C;
}

.cta-final p,
.cta-section p {
  color: #ECF0F1;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.contact-info {
  color: #ECF0F1;
  font-size: 14px;
  margin-top: 24px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2C3E50 0%, #1a1a1a 100%);
  color: #FFFFFF;
  padding: 60px 0 40px;
  text-align: center;
}

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

.page-hero p {
  color: #ECF0F1;
  font-size: 18px;
}

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

.breadcrumb a {
  color: #ECF0F1;
  text-decoration: underline;
}

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

.tagline {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 18px;
  color: #E74C3C;
  margin-bottom: 16px;
}

.trust-badge {
  display: inline-block;
  background-color: #E74C3C;
  color: #FFFFFF;
  padding: 8px 16px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FLEET/VEHICLE PAGES */
.fleet-categories,
.category-section {
  margin-bottom: 60px;
}

.category-section h2 {
  text-align: left;
  margin-bottom: 12px;
  font-size: 32px;
}

.category-section h2::after {
  display: none;
}

.category-section > p {
  color: #666;
  margin-bottom: 32px;
  font-size: 16px;
}

.vehicle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.vehicle-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #FFFFFF;
  border: 2px solid #1a1a1a;
  padding: 32px;
  transition: all 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.vehicle-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.vehicle-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.vehicle-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #4a4a4a;
}

.vehicle-card ul li:last-child {
  border-bottom: none;
}

.vehicle-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #E74C3C;
  margin-bottom: 16px;
}

/* FLEET FEATURES */
.fleet-features {
  background-color: #f8f9fa;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.feature {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  background-color: #FFFFFF;
  border: 1px solid #1a1a1a;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: #1a1a1a;
}

.note {
  text-align: center;
  font-style: italic;
  color: #666;
  font-size: 14px;
}

/* SERVICES DETAILED */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-detail {
  background-color: #FFFFFF;
  border-left: 4px solid #1a1a1a;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 12px;
  font-size: 28px;
}

.service-detail h2::after {
  display: none;
}

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #E74C3C;
  margin-bottom: 16px;
}

.service-detail p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.service-detail strong {
  color: #1a1a1a;
}

/* ADDITIONAL SERVICES / ADDONS */
.addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.addon {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background-color: #FFFFFF;
  border: 2px solid #e0e0e0;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.addon:hover {
  border-color: #1a1a1a;
  transform: translateY(-4px);
}

.addon p:first-child {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.addon-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #E74C3C;
}

/* FAQ */
.faq-services,
.faq-pricing,
.faq-contact {
  background-color: #f8f9fa;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* PRICING TABLES */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background-color: #FFFFFF;
  border: 2px solid #1a1a1a;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.pricing-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #E74C3C;
}

/* INCLUDED ITEMS */
.included-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.included-item {
  flex: 1 1 calc(50% - 8px);
  min-width: 250px;
  background-color: #FFFFFF;
  border-left: 3px solid #1a1a1a;
  padding: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

/* FEES LIST */
.fees-list {
  background-color: #FFFFFF;
  border: 2px solid #e0e0e0;
  padding: 24px;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
  gap: 12px;
}

.fee-item:last-child {
  border-bottom: none;
}

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

.fee-item span:last-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #E74C3C;
  font-size: 18px;
}

/* DISCOUNTS */
.discounts-list {
  background-color: #FFFFFF;
  border: 2px solid #1a1a1a;
  padding: 32px;
  list-style: none;
}

.discounts-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #1a1a1a;
  font-weight: 600;
}

.discounts-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E74C3C;
  font-weight: bold;
  font-size: 18px;
}

/* CANCELLATION POLICY */
.cancellation-policy ul {
  background-color: #FFFFFF;
  border: 2px solid #e0e0e0;
  padding: 32px;
  list-style: none;
}

.cancellation-policy li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  color: #1a1a1a;
}

.cancellation-policy li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: bold;
  font-size: 24px;
}

/* ABOUT US / COMPANY STORY */
.company-story,
.mission-vision-values {
  margin-bottom: 60px;
}

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

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

.stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.stat p {
  color: #666;
  font-size: 16px;
  margin-bottom: 0;
}

.mvv-item {
  background-color: #FFFFFF;
  border-left: 4px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mvv-item h2 {
  text-align: left;
  margin-bottom: 16px;
  font-size: 28px;
}

.mvv-item h2::after {
  display: none;
}

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

.mvv-item li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4a4a4a;
}

.mvv-item li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E74C3C;
  font-weight: bold;
}

/* REASONS GRID */
.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.reason {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #FFFFFF;
  border: 2px solid #e0e0e0;
  padding: 32px;
  transition: all 0.3s ease;
}

.reason:hover {
  border-color: #1a1a1a;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.reason h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.reason p {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* LOCATION INFO */
.location-info {
  background-color: #f8f9fa;
  border: 2px solid #e0e0e0;
  padding: 40px;
  text-align: center;
}

.location-info p {
  margin-bottom: 16px;
}

/* CONTACT PAGES */
.contact-methods {
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background-color: #FFFFFF;
  border: 2px solid #1a1a1a;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-method h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.contact-method p {
  color: #4a4a4a;
  margin-bottom: 8px;
}

.contact-method strong {
  color: #1a1a1a;
  font-size: 18px;
}

/* CONTACT FORM */
.contact-form-section {
  background-color: #f8f9fa;
}

.form-note {
  background-color: #FFFFFF;
  border: 2px solid #e0e0e0;
  padding: 32px;
  margin-top: 32px;
}

.form-note p {
  margin-bottom: 16px;
}

.form-note ul {
  margin-top: 16px;
}

/* OFFICE LOCATION / BUSINESS HOURS */
.office-location,
.business-hours {
  background-color: #FFFFFF;
}

.business-hours ul {
  background-color: #f8f9fa;
  border: 2px solid #e0e0e0;
  padding: 32px;
  list-style: none;
}

.business-hours li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #1a1a1a;
}

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

.business-hours strong {
  display: inline-block;
  width: 160px;
  color: #1a1a1a;
}

/* LEGAL PAGES */
.legal-page {
  padding: 60px 0;
}

.legal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border: 1px solid #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  text-align: left;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.legal-content h2::after {
  display: none;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.legal-content p,
.legal-content li {
  color: #4a4a4a;
  line-height: 1.8;
}

.legal-content em {
  color: #666;
  font-size: 14px;
}

/* THANK YOU PAGE */
.thank-you-page {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ECF0F1 100%);
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 2px solid #1a1a1a;
  padding: 60px 40px;
  text-align: center;
}

.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;
}

.thank-you-content h1 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

.confirmation-details,
.next-steps,
.alternative-contact,
.explore-more {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.explore-more {
  border-bottom: none;
}

.next-steps h2,
.alternative-contact h2,
.explore-more h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.next-steps h2::after,
.alternative-contact h2::after,
.explore-more h2::after {
  display: none;
}

.next-steps ol {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.next-steps li {
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 600;
}

.explore-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.explore-link {
  padding: 12px 24px;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  color: #1a1a1a;
  font-weight: 600;
  transition: all 0.3s ease;
}

.explore-link:hover {
  background-color: #1a1a1a;
  color: #FFFFFF;
  border-color: #1a1a1a;
}

/* FOOTER */
footer {
  background-color: #1a1a1a;
  color: #FFFFFF;
  padding: 60px 0 24px;
  border-top: 4px solid #E74C3C;
}

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

.footer-col {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

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

.footer-col p,
.footer-col li {
  color: #ECF0F1;
  font-size: 14px;
  line-height: 1.8;
}

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

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

.footer-col a {
  color: #ECF0F1;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #ECF0F1;
  font-size: 14px;
  margin: 0;
}

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

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #ECF0F1;
  font-size: 14px;
}

.cookie-text a {
  color: #E74C3C;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0;
}

.cookie-btn-accept {
  background-color: #FFFFFF;
  color: #1a1a1a;
}

.cookie-btn-accept:hover {
  background-color: #E74C3C;
  border-color: #E74C3C;
  color: #FFFFFF;
}

.cookie-btn-reject,
.cookie-btn-settings {
  background-color: transparent;
  color: #FFFFFF;
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background-color: #FFFFFF;
  color: #1a1a1a;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

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

.cookie-modal-close:hover {
  color: #E74C3C;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

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

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #e0e0e0;
  border-radius: 26px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #1a1a1a;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .service-card,
  .vehicle-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .benefit {
    flex: 1 1 calc(33.333% - 24px);
  }
}

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Layout adjustments */
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Flex grid adjustments */
  .services-grid,
  .vehicle-grid,
  .pricing-grid,
  .contact-grid {
    flex-direction: column;
  }
  
  .service-card,
  .vehicle-card,
  .pricing-card,
  .contact-method,
  .benefit,
  .addon,
  .reason {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .benefits-grid,
  .features-grid {
    flex-direction: column;
  }
  
  .benefit,
  .feature {
    flex: 1 1 100%;
  }
  
  .addons-grid {
    flex-direction: column;
  }
  
  .addon {
    flex: 1 1 100%;
  }
  
  .stats {
    flex-direction: column;
    gap: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Footer adjustments */
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Thank you page */
  .thank-you-content {
    padding: 40px 24px;
  }
  
  .explore-links {
    flex-direction: column;
  }
  
  .explore-link {
    width: 100%;
  }
  
  /* Legal content */
  .legal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .service-card,
  .vehicle-card,
  .pricing-card,
  .mvv-item,
  .service-detail {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  header,
  footer,
  .cookie-consent,
  .cookie-modal,
  .btn-primary,
  .btn-secondary,
  .cta-section,
  .cta-final {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
.btn-primary:focus,
.btn-secondary:focus,
a:focus,
button:focus {
  outline: 2px solid #E74C3C;
  outline-offset: 2px;
}

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

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

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

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #f8f9fa;
}

::-webkit-scrollbar-thumb {
  background-color: #1a1a1a;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #2C3E50;
}

/* END OF STYLESHEET */