/* =====================================================
   FriCar - Warm & Friendly CSS Styles
   Design Style: Warm, approachable, rounded corners
   ===================================================== */

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

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

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

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

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

ul, ol {
  list-style-position: inside;
}

table {
  width: 100%;
  border-collapse: collapse;
}

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

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

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

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

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

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

strong {
  font-weight: 600;
  color: #8B4513;
}

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

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

/* =====================================================
   BUTTONS - Warm & Friendly Style
   ===================================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.2);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.35);
}

.btn-secondary {
  background: #FFF8F0;
  color: #D2691E;
  border: 2px solid #D2691E;
}

.btn-secondary:hover {
  background: #D2691E;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
header {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F0 100%);
  padding: 16px 0;
  box-shadow: 0 2px 15px rgba(139, 69, 19, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #F4A460;
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #8B4513;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

.main-nav a:hover {
  color: #D2691E;
}

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

/* =====================================================
   MOBILE MENU - Hamburger Navigation
   ===================================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #D2691E;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #FFF8F0 0%, #FFE4B5 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(139, 69, 19, 0.15);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  background: rgba(210, 105, 30, 0.1);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #8B4513;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.08);
}

.mobile-nav a:hover {
  background: #D2691E;
  color: #FFFFFF;
  transform: translateX(8px);
}

/* =====================================================
   HERO SECTION - Warm & Inviting
   ===================================================== */
.hero {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 50%, #FFE4B5 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(210, 105, 30, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 164, 96, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 56px;
  color: #8B4513;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

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

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

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

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  min-width: 120px;
}

.badge-number, .badge-icon {
  font-size: 32px;
  font-weight: 700;
  color: #D2691E;
  font-family: 'Playfair Display', serif;
}

.badge-text {
  font-size: 14px;
  color: #8B4513;
  text-align: center;
}

/* =====================================================
   PAGE HERO - Internal Pages
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, #FFDAB9 0%, #FFE4B5 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-radius: 0 0 30px 30px;
}

.page-hero h1 {
  font-size: 42px;
  color: #8B4513;
  margin-bottom: 16px;
}

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

.breadcrumbs {
  font-size: 14px;
  color: #8B4513;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: #D2691E;
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: #CD853F;
}

.trust-badge {
  display: inline-block;
  background: #FFFFFF;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  color: #D2691E;
  box-shadow: 0 3px 10px rgba(210, 105, 30, 0.15);
  margin-top: 20px;
}

/* =====================================================
   FEATURES SECTION - Grid Layout with Flexbox
   ===================================================== */
.features {
  padding: 60px 20px;
  background: #FFFFFF;
  border-radius: 30px;
  margin: 40px 0;
  box-shadow: 0 4px 20px rgba(139, 69, 19, 0.08);
}

.features h2 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 48px;
}

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

.feature-card {
  flex: 1 1 calc(25% - 30px);
  min-width: 250px;
  max-width: 280px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4B5 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  position: relative;
}

.feature-card::before {
  content: '✓';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #D2691E;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(210, 105, 30, 0.3);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.feature-card h3 {
  color: #8B4513;
  margin-bottom: 12px;
  margin-top: 8px;
}

.feature-card p {
  color: #4A3728;
  line-height: 1.6;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
  padding: 60px 20px;
  background: linear-gradient(180deg, #FFF8F0 0%, #FFFFFF 100%);
}

.services h2 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #8B4513;
  margin-bottom: 40px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 380px;
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #FFE4B5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(210, 105, 30, 0.2);
  border-color: #D2691E;
}

.service-card h3 {
  color: #D2691E;
  margin-bottom: 12px;
}

.service-card p {
  color: #4A3728;
  flex: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #8B4513;
  font-family: 'Playfair Display', serif;
}

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

/* =====================================================
   DESTINATIONS SECTION
   ===================================================== */
.destinations {
  padding: 60px 20px;
  background: #FFFFFF;
}

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

.destination-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  background: linear-gradient(135deg, #FFDAB9 0%, #FFE4B5 100%);
  padding: 28px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(139, 69, 19, 0.1);
  position: relative;
}

.destination-card::after {
  content: '→';
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 20px;
  color: #D2691E;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.2);
}

.destination-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.destination-card h3 {
  color: #8B4513;
  margin-bottom: 8px;
}

.destination-card p {
  color: #4A3728;
  font-size: 14px;
}

/* =====================================================
   TESTIMONIALS SECTION - High Contrast
   ===================================================== */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4B5 100%);
  border-radius: 30px;
  margin: 40px 0;
}

.testimonials h2 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 40px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  max-width: 500px;
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.12);
  border-left: 5px solid #D2691E;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card .rating {
  color: #D2691E;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #2C1810;
  font-style: italic;
  line-height: 1.7;
  font-size: 16px;
  flex: 1;
}

.testimonial-card .author {
  color: #8B4513;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}

.overall-rating {
  text-align: center;
  font-size: 18px;
  color: #4A3728;
  background: #FFFFFF;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1);
}

.overall-rating strong {
  color: #D2691E;
  font-size: 28px;
  font-family: 'Playfair Display', serif;
}

/* =====================================================
   CTA BANNER SECTION
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  box-shadow: 0 6px 25px rgba(210, 105, 30, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: #FFF8F0;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #D2691E;
}

.cta-banner .btn-primary:hover {
  background: #FFF8F0;
  transform: translateY(-3px);
}

.cta-banner .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cta-banner .btn-secondary:hover {
  background: #FFFFFF;
  color: #D2691E;
}

/* =====================================================
   FLEET PAGES
   ===================================================== */
.fleet-categories {
  padding: 40px 20px;
}

.fleet-category {
  margin-bottom: 60px;
  padding: 40px 0;
  border-bottom: 2px solid #FFE4B5;
}

.fleet-category:last-child {
  border-bottom: none;
}

.fleet-category h2 {
  color: #8B4513;
  text-align: center;
  margin-bottom: 12px;
}

.category-subtitle {
  text-align: center;
  color: #8B4513;
  font-size: 16px;
  margin-bottom: 32px;
}

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

.vehicle-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #FFE4B5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(210, 105, 30, 0.2);
  border-color: #D2691E;
}

.vehicle-card h3 {
  color: #D2691E;
  margin-bottom: 8px;
}

.vehicle-card p {
  color: #4A3728;
  font-size: 14px;
  flex: 1;
}

.vehicle-card .price {
  font-size: 22px;
  font-weight: 700;
  color: #8B4513;
  font-family: 'Playfair Display', serif;
  margin-top: 8px;
}

.fleet-features {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4B5 100%);
  border-radius: 30px;
  margin: 40px 0;
}

.fleet-features h2 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 32px;
}

.feature-item {
  background: #FFFFFF;
  padding: 16px 24px;
  border-radius: 15px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.08);
  color: #4A3728;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item::before {
  content: '✓';
  color: #D2691E;
  font-weight: bold;
  font-size: 18px;
}

/* =====================================================
   SERVICES DETAIL PAGE
   ===================================================== */
.services-detail {
  padding: 40px 20px;
}

.service-block {
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  border-left: 5px solid #D2691E;
}

.service-block h2 {
  color: #D2691E;
  margin-bottom: 16px;
}

.service-block p {
  color: #4A3728;
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: #8B4513;
  margin: 20px 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-features li {
  padding: 10px 0;
  color: #4A3728;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features li::before {
  content: '✓';
  color: #D2691E;
  font-weight: bold;
  font-size: 18px;
}

/* =====================================================
   DESTINATIONS DETAIL PAGE
   ===================================================== */
.destinations-featured {
  padding: 40px 20px;
}

.destination-detail {
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  border-top: 4px solid #D2691E;
}

.destination-detail h2 {
  color: #D2691E;
  margin-bottom: 12px;
}

.destination-subtitle {
  font-size: 18px;
  color: #8B4513;
  font-style: italic;
  margin-bottom: 20px;
}

.destination-detail p {
  color: #4A3728;
  margin-bottom: 16px;
  line-height: 1.7;
}

.other-destinations {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4B5 100%);
  border-radius: 30px;
}

.other-destinations h2 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 32px;
}

.destinations-list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.destinations-list li {
  background: #FFFFFF;
  padding: 20px 24px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(139, 69, 19, 0.08);
  color: #4A3728;
  display: flex;
  align-items: center;
  gap: 12px;
}

.destinations-list li::before {
  content: '📍';
  font-size: 20px;
}

/* =====================================================
   PRICING TABLE
   ===================================================== */
.pricing-table {
  padding: 40px 20px;
}

.pricing-table h2 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 32px;
}

.table-wrapper {
  overflow-x: auto;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  padding: 20px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

table thead {
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
}

table th {
  padding: 16px 12px;
  text-align: left;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
}

table th:first-child {
  border-radius: 15px 0 0 0;
}

table th:last-child {
  border-radius: 0 15px 0 0;
}

table tbody tr {
  border-bottom: 1px solid #FFE4B5;
  transition: background 0.3s ease;
}

table tbody tr:hover {
  background: #FFF8F0;
}

table td {
  padding: 16px 12px;
  color: #4A3728;
  font-size: 15px;
}

table td:first-child {
  font-weight: 600;
  color: #8B4513;
}

.table-note {
  text-align: center;
  color: #8B4513;
  font-size: 14px;
  margin-top: 16px;
  font-style: italic;
}

/* =====================================================
   INCLUDED/COSTS LISTS
   ===================================================== */
.whats-included, .additional-costs, .requirements {
  padding: 60px 20px;
}

.whats-included h2, .additional-costs h2, .requirements h2 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 32px;
}

.included-list, .costs-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.included-list li, .costs-list li {
  background: #FFFFFF;
  padding: 16px 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(139, 69, 19, 0.08);
  color: #4A3728;
  display: flex;
  align-items: center;
  gap: 12px;
}

.included-list li::before {
  content: '✓';
  color: #D2691E;
  font-weight: bold;
  font-size: 18px;
}

.costs-list li::before {
  content: '+';
  color: #CD853F;
  font-weight: bold;
  font-size: 18px;
}

.requirements ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.requirements li {
  background: #FFFFFF;
  padding: 16px 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(139, 69, 19, 0.08);
  color: #4A3728;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.requirements li::before {
  content: '•';
  color: #D2691E;
  font-weight: bold;
  font-size: 20px;
  margin-top: -2px;
}

/* =====================================================
   LONG-TERM RATES
   ===================================================== */
.long-term-rates {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4B5 100%);
  border-radius: 30px;
  margin: 40px 0;
}

.long-term-rates h2 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 40px;
}

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

.long-term-option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 220px;
  max-width: 300px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #FFE4B5;
}

.long-term-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(210, 105, 30, 0.2);
  border-color: #D2691E;
}

.long-term-option h3 {
  color: #D2691E;
  margin-bottom: 16px;
}

.long-term-option .price {
  font-size: 32px;
  font-weight: 700;
  color: #8B4513;
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 12px;
}

.long-term-option p {
  color: #4A3728;
  font-weight: 600;
}

/* =====================================================
   CHI SIAMO (ABOUT PAGE)
   ===================================================== */
.our-story, .our-values, .why-choose-us, .statistics, .location-info {
  padding: 60px 20px;
}

.our-story h2, .our-values h2, .why-choose-us h2, .statistics h2, .location-info h2 {
  color: #8B4513;
  margin-bottom: 24px;
}

.our-story p {
  color: #4A3728;
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 900px;
}

.milestones {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4B5 100%);
  padding: 32px;
  border-radius: 20px;
  margin-top: 32px;
}

.milestones h3 {
  color: #D2691E;
  margin-bottom: 20px;
}

.milestones ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.milestones li {
  color: #4A3728;
  padding-left: 24px;
  position: relative;
}

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

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

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 450px;
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D2691E;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(210, 105, 30, 0.2);
}

.value-card h3 {
  color: #D2691E;
  margin-bottom: 12px;
}

.value-card p {
  color: #4A3728;
  line-height: 1.7;
}

.reasons-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.reasons-list li {
  background: #FFFFFF;
  padding: 16px 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(139, 69, 19, 0.08);
  color: #4A3728;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reasons-list li::before {
  content: '✓';
  color: #D2691E;
  font-weight: bold;
  font-size: 18px;
}

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

.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 250px;
  background: linear-gradient(135deg, #FFDAB9 0%, #FFE4B5 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #D2691E;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 14px;
  color: #8B4513;
  font-weight: 600;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-methods {
  padding: 60px 20px;
}

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

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

.contact-method {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 450px;
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #FFE4B5;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(210, 105, 30, 0.2);
  border-color: #D2691E;
}

.contact-method h3 {
  color: #D2691E;
  margin-bottom: 16px;
}

.contact-value {
  font-size: 20px;
  font-weight: 700;
  color: #8B4513;
  margin-bottom: 12px;
}

.contact-method p {
  color: #4A3728;
  line-height: 1.6;
}

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4B5 100%);
  border-radius: 30px;
  margin: 40px 0;
}

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

.contact-form-section > p {
  text-align: center;
  color: #4A3728;
  margin-bottom: 32px;
}

.form-note {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 15px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 3px 12px rgba(139, 69, 19, 0.1);
  border-left: 4px solid #D2691E;
}

.form-note p {
  color: #4A3728;
  margin-bottom: 12px;
}

.form-note ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.form-note li {
  color: #4A3728;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.form-note li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D2691E;
}

.office-location, .pickup-locations, .emergency-contact, .faq-section {
  padding: 60px 20px;
}

.office-location h2, .pickup-locations h2, .emergency-contact h2, .faq-section h2 {
  color: #8B4513;
  margin-bottom: 24px;
}

.address {
  font-size: 20px;
  font-weight: 600;
  color: #D2691E;
  margin-bottom: 24px;
}

.emergency-number {
  font-size: 32px;
  font-weight: 700;
  color: #D2691E;
  text-align: center;
  margin: 24px 0;
  font-family: 'Playfair Display', serif;
}

.locations-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.locations-list li {
  background: #FFFFFF;
  padding: 16px 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(139, 69, 19, 0.08);
  color: #4A3728;
  display: flex;
  align-items: center;
  gap: 12px;
}

.locations-list li::before {
  content: '📍';
  font-size: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  padding: 28px 24px;
  border-radius: 15px;
  box-shadow: 0 3px 12px rgba(139, 69, 19, 0.08);
  border-left: 4px solid #D2691E;
}

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

.faq-item p {
  color: #4A3728;
  line-height: 1.7;
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-hero {
  background: linear-gradient(135deg, #FFDAB9 0%, #FFE4B5 100%);
}

.last-updated {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
  text-align: center;
}

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

.text-section {
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.08);
}

.text-section h2 {
  color: #D2691E;
  margin-bottom: 20px;
}

.text-section h3 {
  color: #8B4513;
  margin-top: 24px;
  margin-bottom: 12px;
}

.text-section p {
  color: #4A3728;
  margin-bottom: 16px;
  line-height: 1.8;
}

.text-section ul, .text-section ol {
  margin: 16px 0;
  padding-left: 24px;
  color: #4A3728;
}

.text-section li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.text-section a {
  color: #D2691E;
  text-decoration: underline;
}

.text-section a:hover {
  color: #CD853F;
}

/* =====================================================
   THANK YOU PAGE
   ===================================================== */
.thank-you-hero {
  background: linear-gradient(135deg, #FFDAB9 0%, #FFE4B5 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #D2691E;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.3);
}

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

.thank-you-hero .subtitle {
  font-size: 18px;
  color: #4A3728;
}

.confirmation-message {
  padding: 60px 20px;
}

.message-box {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  border-left: 5px solid #D2691E;
  text-align: center;
}

.message-box p {
  color: #4A3728;
  margin-bottom: 16px;
  line-height: 1.7;
}

.message-box .note {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
}

.next-steps {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4B5 100%);
  border-radius: 30px;
  margin: 40px 0;
}

.next-steps h2 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 32px;
}

.steps-list {
  list-style: none;
  counter-reset: steps;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps-list li {
  background: #FFFFFF;
  padding: 20px 20px 20px 60px;
  border-radius: 15px;
  box-shadow: 0 3px 12px rgba(139, 69, 19, 0.1);
  color: #4A3728;
  position: relative;
  counter-increment: steps;
}

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #D2691E;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.urgent-note {
  text-align: center;
  margin-top: 24px;
  color: #4A3728;
}

.what-next {
  padding: 60px 20px;
}

.what-next h2 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 40px;
}

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

.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid #FFE4B5;
}

.suggestion-card h3 {
  color: #D2691E;
  margin-bottom: 8px;
}

.suggestion-card p {
  color: #4A3728;
  flex: 1;
}

.contact-alternative {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4B5 100%);
  border-radius: 30px;
  margin: 40px 0;
}

.contact-alternative h2 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 32px;
}

.contact-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(139, 69, 19, 0.1);
}

.contact-item h3 {
  color: #D2691E;
  margin-bottom: 12px;
}

.emergency-note {
  text-align: center;
  margin-top: 24px;
  color: #4A3728;
  font-weight: 600;
}

.rating-summary {
  text-align: center;
  font-size: 16px;
  color: #4A3728;
  margin-top: 24px;
}

.return-home {
  padding: 40px 20px;
  text-align: center;
}

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFDAB9 0%, #FFE4B5 100%);
  border-radius: 30px;
  text-align: center;
  margin: 60px 0;
}

.cta-section h2 {
  color: #8B4513;
  margin-bottom: 16px;
}

.cta-section p {
  color: #4A3728;
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-info {
  margin-top: 24px;
  color: #8B4513;
  font-size: 16px;
}

.trust-message {
  margin-top: 24px;
  color: #8B4513;
  font-size: 16px;
  font-weight: 600;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
  color: #FFF8F0;
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-radius: 30px 30px 0 0;
}

.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-section h3, .footer-section h4 {
  color: #FFE4B5;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #FFF8F0;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #FFF8F0;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #FFE4B5;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 232, 181, 0.3);
  padding-top: 24px;
  text-align: center;
}

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

.footer-legal a {
  color: #FFF8F0;
  font-size: 14px;
  text-decoration: underline;
}

.footer-legal a:hover {
  color: #FFE4B5;
}

.copyright {
  color: #FFF8F0;
  font-size: 14px;
}

/* =====================================================
   COOKIE CONSENT BANNER - Fixed Bottom
   ===================================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
  color: #FFF8F0;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 30px 30px 0 0;
}

#cookie-banner.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;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-text p {
  color: #FFF8F0;
  margin-bottom: 0;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

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

.cookie-btn-accept:hover {
  background: #CD853F;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #FFF8F0;
  border: 2px solid #FFF8F0;
}

.cookie-btn-reject:hover {
  background: rgba(255, 248, 240, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #FFE4B5;
  border: 2px solid #FFE4B5;
}

.cookie-btn-settings:hover {
  background: rgba(255, 228, 181, 0.1);
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 25px;
  padding: 40px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

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

.cookie-modal-header h2 {
  color: #8B4513;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #8B4513;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(210, 105, 30, 0.1);
  transform: rotate(90deg);
}

.cookie-category {
  background: #FFF8F0;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
  border-left: 4px solid #D2691E;
}

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

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

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

.cookie-toggle.active {
  background: #D2691E;
}

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

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

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

.cookie-category p {
  color: #4A3728;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

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

/* =====================================================
   RESPONSIVE DESIGN - Mobile First
   ===================================================== */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  /* Grid adjustments - force single column on mobile */
  .features-grid,
  .services-grid,
  .destinations-grid,
  .testimonials-grid,
  .vehicles-grid,
  .contact-grid,
  .values-grid,
  .stats-grid,
  .long-term-grid,
  .suggestions-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-card,
  .service-card,
  .destination-card,
  .testimonial-card,
  .vehicle-card,
  .contact-method,
  .value-card,
  .stat-item,
  .long-term-option,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  
  /* Table adjustments */
  .table-wrapper {
    overflow-x: scroll;
  }
  
  table {
    font-size: 12px;
  }
  
  table th,
  table td {
    padding: 10px 8px;
    font-size: 12px;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
    width: 100%;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px 20px;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
}

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

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

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

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

.hidden {
  display: none;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@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);
  }
}

/* Apply fade-in to sections when visible */
.section {
  animation: fadeIn 0.6s ease-out;
}

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

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

/* Skip to content link for screen readers */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #D2691E;
  color: #FFFFFF;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

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

/* =====================================================
   END OF CSS
   ===================================================== */