/* =================================================================
   DUSKY RIFT PRESTIGE - ELEGANT CLASSIC DESIGN SYSTEM
   Luxury Car Rental - Australia
   ================================================================= */

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

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

body {
  font-family: 'Georgia', 'Garamond', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2C2C2C;
  background-color: #F9F7F4;
  overflow-x: hidden;
}

/* ELEGANT CLASSIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1A1A2E;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

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

a:hover {
  color: #C9A962;
}

ul {
  list-style: none;
}

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

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

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

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

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

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

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

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #1A1A2E;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.main-nav a:hover {
  color: #C9A962;
  border-bottom-color: #C9A962;
}

.header-cta {
  display: flex;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #1A1A2E;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #C9A962;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #1A1A2E;
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #FFFFFF;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #C9A962;
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Georgia', serif;
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

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

/* BUTTON STYLES - ELEGANT CLASSIC */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background-color: #C9A962;
  border-color: #C9A962;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
}

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

.btn-secondary:hover {
  background-color: #1A1A2E;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.2);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(to bottom, #E8DCC4 0%, #F9F7F4 100%);
  padding: 100px 20px 80px;
  margin-bottom: 60px;
  border-bottom: 3px solid #C9A962;
}

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

.hero h1 {
  font-size: 56px;
  color: #1A1A2E;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

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

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

.trust-indicators span {
  font-size: 14px;
  color: #4A4A4A;
  font-family: 'Georgia', serif;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(to bottom, #E8DCC4 0%, #F9F7F4 100%);
  padding: 80px 20px 60px;
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 2px solid #C9A962;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

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

/* VALUE PROPOSITION SECTION */
.value-proposition {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

.value-proposition h2 {
  margin-bottom: 48px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 250px;
  min-width: 250px;
  padding: 32px 24px;
  background-color: #F9F7F4;
  border: 1px solid #E8DCC4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.value-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-align: center;
}

.value-item p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.6;
}

/* SERVICES SHOWCASE */
.services-showcase {
  padding: 60px 20px;
  background-color: #F9F7F4;
  margin-bottom: 60px;
}

.services-showcase h2 {
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: #4A4A4A;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px 28px;
  border: 2px solid #E8DCC4;
  transition: all 0.3s ease;
}

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

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A1A2E;
}

.service-card p {
  font-size: 15px;
  color: #4A4A4A;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 20px;
  color: #C9A962;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

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

/* TESTIMONIALS SECTION */
.testimonials {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 450px;
  min-width: 300px;
  background-color: #F9F7F4;
  padding: 32px 28px;
  border-left: 4px solid #C9A962;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card p {
  font-size: 16px;
  color: #2C2C2C;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.testimonial-author strong {
  color: #1A1A2E;
  font-size: 16px;
  font-family: 'Georgia', serif;
}

.testimonial-author span {
  color: #4A4A4A;
  font-size: 14px;
}

.rating {
  color: #C9A962;
  font-size: 18px;
  margin-top: 8px;
  letter-spacing: 2px;
}

/* CTA BANNER */
.cta-banner {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #2C2C3E 100%);
  text-align: center;
  margin-bottom: 60px;
}

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

.cta-banner p {
  color: #E8DCC4;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-contact p {
  color: #FFFFFF;
  margin-bottom: 0;
}

.cta-contact a {
  color: #C9A962;
  font-weight: 600;
}

.cta-contact a:hover {
  color: #E8DCC4;
}

/* FLEET CATEGORIES */
.fleet-categories {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.fleet-categories.alt {
  background-color: #F9F7F4;
}

.fleet-categories h2 {
  margin-bottom: 16px;
}

.category-price {
  text-align: center;
  font-size: 20px;
  color: #C9A962;
  font-weight: 600;
  margin-bottom: 48px;
  font-family: 'Georgia', serif;
}

.vehicles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.vehicle-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 28px 24px;
  border: 2px solid #E8DCC4;
  transition: all 0.3s ease;
}

.vehicle-card:hover {
  border-color: #C9A962;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

.specs {
  font-size: 14px;
  color: #4A4A4A;
  margin-bottom: 16px;
  font-style: italic;
}

.features {
  margin-bottom: 24px;
}

.features li {
  font-size: 14px;
  color: #4A4A4A;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

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

/* FLEET STANDARDS */
.fleet-standards {
  padding: 60px 20px;
  background-color: #F9F7F4;
  margin-bottom: 60px;
}

.fleet-standards h2 {
  margin-bottom: 48px;
}

.standards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.standard-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 240px;
  min-width: 220px;
  padding: 24px 20px;
}

.standard-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.standard-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  text-align: center;
}

.standard-item p {
  font-size: 14px;
  color: #4A4A4A;
}

/* CTA SECTION */
.cta-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
  margin-bottom: 60px;
  border-top: 2px solid #E8DCC4;
  border-bottom: 2px solid #E8DCC4;
}

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

.cta-section p {
  font-size: 17px;
  color: #4A4A4A;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* SERVICES DETAIL */
.services-detail {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-detail h2 {
  margin-bottom: 48px;
}

.service-detail-card {
  background-color: #FFFFFF;
  padding: 40px 32px;
  margin-bottom: 32px;
  border: 2px solid #E8DCC4;
  border-left: 4px solid #C9A962;
}

.service-detail-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1A1A2E;
}

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

.service-detail-card .price {
  font-size: 24px;
  color: #C9A962;
  font-weight: 600;
  margin: 20px 0;
  font-family: 'Georgia', serif;
}

.service-detail-card h4 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #1A1A2E;
}

.service-detail-card ul {
  margin-bottom: 20px;
}

.service-detail-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4A4A4A;
}

.service-detail-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C9A962;
  font-size: 20px;
}

/* BOOKING PROCESS */
.booking-process {
  padding: 60px 20px;
  background-color: #F9F7F4;
  margin-bottom: 60px;
}

.booking-process h2 {
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 300px;
  min-width: 260px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border: 2px solid #E8DCC4;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background-color: #1A1A2E;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-align: center;
}

.step-card p {
  font-size: 15px;
  color: #4A4A4A;
}

/* LOCATIONS */
.locations-overview {
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.locations-overview h2 {
  margin-bottom: 16px;
}

.locations-overview p {
  font-size: 17px;
  color: #4A4A4A;
  max-width: 700px;
  margin: 0 auto;
}

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

.location-card {
  background-color: #FFFFFF;
  padding: 32px 28px;
  margin-bottom: 28px;
  border: 2px solid #E8DCC4;
  border-left: 4px solid #C9A962;
}

.location-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #1A1A2E;
}

.location-address {
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 12px;
}

.location-card h4 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 12px;
  color: #1A1A2E;
}

.location-card ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: #4A4A4A;
}

.location-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #C9A962;
}

/* DELIVERY SERVICE */
.delivery-service {
  padding: 60px 20px;
  background-color: #F9F7F4;
  margin-bottom: 60px;
}

.delivery-service h2 {
  margin-bottom: 20px;
}

.delivery-service > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: #4A4A4A;
}

.delivery-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.delivery-option {
  flex: 1 1 300px;
  min-width: 260px;
  background-color: #FFFFFF;
  padding: 28px 24px;
  text-align: center;
  border: 2px solid #E8DCC4;
  transition: all 0.3s ease;
}

.delivery-option:hover {
  border-color: #C9A962;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.delivery-option h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-align: center;
}

.delivery-option p {
  margin-bottom: 8px;
}

.delivery-option .price {
  font-size: 18px;
  color: #C9A962;
  font-weight: 600;
  font-family: 'Georgia', serif;
}

/* BRAND STORY */
.brand-story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.brand-story h2 {
  margin-bottom: 32px;
}

.brand-story p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.brand-story blockquote {
  background-color: #F9F7F4;
  border-left: 4px solid #C9A962;
  padding: 32px 28px;
  margin: 40px auto;
  max-width: 800px;
}

.brand-story blockquote p {
  font-size: 18px;
  font-style: italic;
  color: #1A1A2E;
  margin-bottom: 16px;
}

.brand-story cite {
  font-size: 15px;
  color: #4A4A4A;
  font-style: normal;
  display: block;
  margin-top: 12px;
}

/* MISSION & VISION */
.mission-vision {
  padding: 60px 20px;
  background-color: #F9F7F4;
  margin-bottom: 60px;
}

.mission-vision h2 {
  margin-bottom: 40px;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.mission-item {
  flex: 1 1 450px;
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px 28px;
  border: 2px solid #E8DCC4;
  border-top: 4px solid #C9A962;
}

.mission-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A1A2E;
}

.mission-item p {
  font-size: 16px;
  line-height: 1.7;
}

.mission-vision h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 32px;
  margin-top: 24px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-item {
  flex: 1 1 300px;
  min-width: 260px;
}

.value-item h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A1A2E;
}

/* BY NUMBERS */
.by-numbers {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #2C2C3E 100%);
  margin-bottom: 60px;
}

.by-numbers h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 240px;
  min-width: 200px;
  padding: 24px 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 600;
  color: #C9A962;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}

.stat-label {
  font-size: 16px;
  color: #E8DCC4;
  line-height: 1.4;
}

/* TESTIMONIALS DETAILED */
.testimonials-detailed {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

/* CONTACT METHODS */
.contact-methods {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-methods h2 {
  margin-bottom: 48px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 300px;
  min-width: 260px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border: 2px solid #E8DCC4;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: #C9A962;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.contact-method img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.contact-method h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-align: center;
}

.contact-method p {
  margin-bottom: 8px;
}

.contact-method a {
  color: #C9A962;
  font-weight: 600;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  padding: 60px 20px;
  background-color: #F9F7F4;
  margin-bottom: 60px;
}

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

.contact-form-section > p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 17px;
  color: #4A4A4A;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border: 2px solid #E8DCC4;
}

.form-container p {
  margin-bottom: 16px;
  font-size: 15px;
}

.form-container strong {
  display: inline-block;
  min-width: 150px;
  color: #1A1A2E;
}

.form-note {
  background-color: #E8DCC4;
  padding: 20px;
  margin-top: 24px;
  border-left: 4px solid #C9A962;
}

.form-note a {
  color: #1A1A2E;
  font-weight: 600;
}

.privacy-note {
  font-size: 13px;
  color: #4A4A4A;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E8DCC4;
}

/* OFFICE LOCATIONS */
.office-locations {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.office-locations h2 {
  margin-bottom: 16px;
}

.office-locations > p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 17px;
  color: #4A4A4A;
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.locations-grid .location-card {
  flex: 1 1 320px;
  min-width: 280px;
}

/* EMERGENCY CONTACT */
.emergency-contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #C9A962 0%, #B89852 100%);
  text-align: center;
  margin-bottom: 60px;
}

.emergency-contact h2 {
  color: #1A1A2E;
  margin-bottom: 16px;
}

.emergency-contact p {
  color: #1A1A2E;
  font-size: 16px;
  margin-bottom: 12px;
}

.emergency-number {
  font-size: 32px;
  font-weight: 600;
  margin: 24px 0;
  font-family: 'Georgia', serif;
}

.emergency-number a {
  color: #1A1A2E;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border: 1px solid #E8DCC4;
}

.text-section h2 {
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: left;
}

.text-section p,
.text-section ul {
  margin-bottom: 16px;
  line-height: 1.8;
}

.text-section ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.text-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C9A962;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #2C2C3E 100%);
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content h1 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.thank-you-content p {
  color: #E8DCC4;
  font-size: 18px;
}

.confirmation-details {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.confirmation-details h2 {
  margin-bottom: 48px;
}

.timeframe {
  color: #C9A962;
  font-weight: 600;
  margin-top: 12px;
  font-family: 'Georgia', serif;
}

.note {
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
  padding: 20px;
  background-color: #F9F7F4;
  border-left: 4px solid #C9A962;
}

.note a {
  color: #1A1A2E;
  font-weight: 600;
}

/* ALTERNATIVE CONTACT */
.alternative-contact {
  padding: 60px 20px;
  background-color: #F9F7F4;
  text-align: center;
  margin-bottom: 60px;
}

.alternative-contact h2 {
  margin-bottom: 16px;
}

.alternative-contact > p {
  margin-bottom: 32px;
  font-size: 17px;
}

.contact-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.contact-option {
  text-align: center;
}

.contact-option p {
  margin-bottom: 4px;
}

.contact-option strong {
  color: #1A1A2E;
}

/* WHILE YOU WAIT */
.while-you-wait {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.while-you-wait h2 {
  margin-bottom: 48px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 300px;
  min-width: 260px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border: 2px solid #E8DCC4;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #C9A962;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.link-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-align: center;
}

.link-card p {
  margin-bottom: 20px;
  flex-grow: 1;
}

/* TRUST REASSURANCE */
.trust-reassurance {
  padding: 60px 20px;
  background-color: #F9F7F4;
  margin-bottom: 60px;
}

.trust-reassurance h2 {
  margin-bottom: 20px;
}

.trust-reassurance p {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
}

.security-features {
  max-width: 500px;
  margin: 0 auto;
}

.security-features li {
  padding: 10px 0;
  font-size: 15px;
  color: #1A1A2E;
  text-align: center;
}

/* FOOTER STYLES */
footer {
  background-color: #1A1A2E;
  color: #E8DCC4;
  padding: 60px 20px 24px;
  border-top: 4px solid #C9A962;
}

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

.footer-section {
  flex: 1 1 240px;
  min-width: 220px;
}

.footer-section h4 {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

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

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

.footer-section a:hover {
  color: #C9A962;
}

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

.footer-nav a {
  padding: 4px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 220, 196, 0.2);
}

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

/* COOKIE CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1A2E;
  padding: 24px 20px;
  z-index: 950;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  display: none;
  animation: slideUp 0.4s ease;
}

#cookie-consent-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-banner-text {
  flex: 1 1 400px;
  color: #E8DCC4;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: #C9A962;
  color: #1A1A2E;
  border-color: #C9A962;
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: #E8DCC4;
  border-color: #E8DCC4;
}

.cookie-btn-reject:hover {
  background-color: rgba(232, 220, 196, 0.1);
}

.cookie-btn-settings {
  background-color: transparent;
  color: #C9A962;
  border-color: #C9A962;
}

.cookie-btn-settings:hover {
  background-color: rgba(201, 169, 98, 0.1);
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  padding: 40px 32px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.cookie-modal-header h3 {
  font-size: 28px;
  color: #1A1A2E;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #4A4A4A;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 1;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1A1A2E;
}

.cookie-category {
  padding: 20px;
  background-color: #F9F7F4;
  margin-bottom: 16px;
  border: 1px solid #E8DCC4;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-category h4 {
  font-size: 18px;
  color: #1A1A2E;
  margin-bottom: 0;
}

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

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

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

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

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

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

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

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

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

.cookie-modal-buttons button {
  flex: 1 1 140px;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  /* Header mobile adjustments */
  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  /* Section padding adjustments */
  .section,
  .hero,
  .page-hero {
    padding: 40px 16px;
  }

  /* Grid adjustments - force single column on mobile */
  .value-grid,
  .services-grid,
  .testimonials-grid,
  .vehicles-grid,
  .standards-grid,
  .steps-grid,
  .delivery-options,
  .mission-grid,
  .values-grid,
  .stats-grid,
  .contact-grid,
  .locations-grid,
  .links-grid {
    flex-direction: column;
  }

  .value-item,
  .service-card,
  .testimonial-card,
  .vehicle-card,
  .standard-item,
  .step-card,
  .delivery-option,
  .mission-item,
  .stat-item,
  .contact-method,
  .location-card,
  .link-card {
    min-width: 100%;
  }

  /* Hero adjustments */
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  /* CTA banner adjustments */
  .cta-contact {
    flex-direction: column;
    gap: 16px;
  }

  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  /* Cookie banner mobile */
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* Modal adjustments */
  .cookie-modal-content {
    padding: 28px 20px;
    max-height: 90vh;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons button {
    width: 100%;
  }

  /* Text section adjustments */
  .text-section {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  /* Further mobile adjustments */
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .stat-number {
    font-size: 36px;
  }

  .service-detail-card,
  .location-card {
    padding: 24px 20px;
  }
}

/* TABLET ADJUSTMENTS */
@media (min-width: 769px) and (max-width: 1024px) {
  .value-item,
  .service-card,
  .vehicle-card {
    flex: 1 1 calc(50% - 16px);
  }

  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  #cookie-settings-modal,
  .hero-cta,
  .cta-section,
  .cta-banner,
  .header-cta,
  footer {
    display: none !important;
  }

  body {
    background-color: white;
  }

  a {
    text-decoration: underline;
  }
}