@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary-orange: #f05a22;
  --primary-orange-hover: #d94e1b;
  --primary-navy: #0b1a30;
  --primary-navy-light: #163057;
  --text-dark: #333333;
  --text-gray: #666666;
  --bg-light: #f9fbfa;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--primary-navy);
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.text-orange {
  color: var(--primary-orange);
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--primary-navy);
  font-size: 0.9375rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-cta .btn-call {
  background-color: var(--primary-navy);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.header-cta .btn-call:hover {
  background-color: var(--primary-orange);
  transform: translateY(-1px);
}

.header-phone-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone-box i {
  font-size: 2rem;
  color: var(--primary-orange);
}

.header-phone-info {
  display: flex;
  flex-direction: column;
}

.header-phone-info span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
}

.header-phone-info a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-orange);
}

.header-phone-info p {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-navy);
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background-color: var(--bg-white);
  background-image: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0) 70%), url('../images/hero-car-right.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-footer-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.hero-footer-text i {
  font-size: 1.25rem;
}

/* Intro Section */
.intro {
  padding: 3rem 0;
  background-color: var(--bg-white);
}

.intro-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.intro-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.intro-text h3 {
  color: var(--primary-navy);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.intro-text p {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: var(--bg-light);
  text-align: center;
}

.features h2 {
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: var(--primary-navy);
  border: 2px solid transparent;
  transition: var(--transition);
}

.feature-item:hover .feature-icon-wrapper {
  border-color: var(--primary-orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-item p {
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Issues Section */
.issues {
  padding: 4rem 0;
  background-color: var(--bg-white);
  text-align: center;
}

.issues h2 {
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.issue-item {
  background: var(--bg-light);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.issue-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.issue-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(240, 90, 34, 0.1);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.issue-item p {
  font-weight: 600;
  color: var(--primary-navy);
}

.issues-footer p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* CTA Banner */
.cta-banner {
  padding: 2rem 0;
  background-color: var(--bg-white);
}

.cta-banner-inner {
  background-color: var(--primary-navy);
  border-radius: 12px;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.cta-banner-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-banner-icon {
  font-size: 3rem;
  color: var(--primary-orange);
}

.cta-banner-text h3 {
  color: white;
  margin-bottom: 0.25rem;
}

.cta-banner-text p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner .btn {
  background-color: var(--bg-white);
  color: var(--primary-orange);
}

.cta-banner .btn span {
  display: block;
  font-size: 0.875rem;
  color: var(--primary-navy);
}

.cta-banner .btn strong {
  display: block;
  font-size: 1.25rem;
}

/* Disclaimer */
.disclaimer {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

.disclaimer-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-icon {
  font-size: 2.5rem;
  color: var(--primary-navy);
}

.disclaimer-text h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.disclaimer-text p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Policy Pages */
.policy-container {
  padding: 4rem 20px;
  max-width: 900px;
  margin: 0 auto;
}

.policy-container h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.policy-container .last-updated {
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.policy-container h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.policy-container p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.policy-container ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.policy-container li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-container a {
  color: var(--primary-orange);
  text-decoration: underline;
}

.policy-container a:hover {
  color: var(--primary-orange-hover);
  text-decoration: none;
}

.policy-container a.btn {
  color: white !important;
  text-decoration: none !important;
}

.policy-container a.btn:hover {
  color: white !important;
  text-decoration: none !important;
}

/* Main Footer */
.main-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-orange);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

.newsletter h4 {
  margin-bottom: 1rem;
}

.newsletter p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  outline: none;
}

.newsletter-form .btn-submit {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form .btn-submit:hover {
  background-color: var(--primary-orange-hover);
}

.footer-disclaimer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* Booking Page Specifics */
.booking-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-navy) 0%, #163057 100%);
  color: white;
  text-align: center;
}

.booking-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.booking-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
}

.widget-section {
  padding: 3rem 0 6rem;
  background: var(--bg-light);
  margin-top: -3rem;
}

/* Sticky Footer */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-navy);
  color: white;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.sticky-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.sticky-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: white;
}

.sticky-item:last-child {
  border-right: none;
}

.sticky-icon {
  font-size: 1.25rem;
  color: var(--primary-orange);
}

.sticky-text h5 {
  color: white;
  font-size: 0.9375rem;
  margin: 0;
}

.sticky-text p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.sticky-item.highlight {
  background-color: var(--primary-orange);
}

.sticky-item.highlight .sticky-icon {
  color: white;
}

.sticky-item.highlight .sticky-text h5 {
  font-weight: 700;
}

/* Landing Page Sections */
.booking-intro-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.booking-intro-card h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.booking-intro-card .highlight-box {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-orange);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
  border-radius: 0 8px 8px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.step-item {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-item:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(240, 90, 34, 0.3);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
}

.brand-logos {
  padding: 4rem 0;
  background: white;
  text-align: center;
}

.brand-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
  opacity: 0.6;
}

.brand-grid span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.call-cta-section {
  padding: 5rem 0;
  background: var(--primary-navy);
  color: white;
  text-align: center;
}

.call-cta-section h2 {
  color: white;
  font-size: 2.5rem;
}

.call-cta-section .phone-large {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-orange);
  display: block;
  margin: 2rem 0;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.125rem;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-item h3 i {
  color: var(--primary-orange);
}

.faq-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero {
    background-position: center;
    padding: 4rem 0;
  }
  
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .header-inner {
    padding: 0.5rem 15px;
  }
  
  .nav-links {
    display: none; /* Mobile menu logic would go here */
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .sticky-text p {
    display: none;
  }
}

/* Redesigned Page Styles */
.hero-v2 {
  position: relative;
  background: #f8f9fa;
  padding: 4rem 0;
  overflow: hidden;
  background-image: linear-gradient(to right, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 70%), url('../images/hero-car.png');
  background-size: cover;
  background-position: center right;
}

.hero-v2-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  min-height: 500px;
}

.hero-v2-content {
  position: relative;
  z-index: 5;
  padding-top: 2rem;
}

.hero-v2-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary-navy);
}

.hero-v2-content h1 span {
  display: block;
}

.hero-v2-content .subtitle-large {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
}

.check-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.check-list li i {
  color: var(--primary-orange);
}

.btn-hero-call-v3 {
  display: inline-flex;
  align-items: center;
  background: var(--primary-orange);
  color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(240, 90, 34, 0.3);
  text-decoration: none;
}

.btn-hero-call-v3 .icon-box {
  padding: 1rem 1.2rem;
  background: rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.btn-hero-call-v3 .icon-box i {
  font-size: 1.5rem;
}

.btn-hero-call-v3 .text-box {
  padding: 0.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn-hero-call-v3 .btn-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.btn-hero-call-v3 .btn-number {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.hero-v2-agent {
  position: absolute;
  bottom: -4rem;
  left: 35%;
  width: 500px;
  z-index: 2;
  pointer-events: none;
}

.hero-v2-agent img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-sidebar {
  position: relative;
  z-index: 5;
  background: #1a1a1a;
  color: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-sidebar h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.sidebar-list {
  list-style: none;
  margin-bottom: 2rem;
}

.sidebar-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.sidebar-list li i {
  color: var(--primary-orange);
}

.btn-sidebar-call {
  display: block;
  background: var(--primary-orange);
  color: white;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sidebar-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.sidebar-footer i {
  color: #22c55e;
}

/* Help Section */
.help-section {
  padding: 5rem 0;
  background: white;
}

.section-title-center {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title-center h2 {
  font-size: 2.25rem;
  text-transform: uppercase;
}

.section-title-center .underline {
  width: 60px;
  height: 4px;
  background: var(--primary-orange);
  margin: 1rem auto 0;
}

.help-grid-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 3rem;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.help-cards-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

@media (max-width: 1200px) {
  .help-cards-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .help-cards-5 {
    grid-template-columns: 1fr;
  }
}

.help-card {
  background: white;
  padding: 2rem 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.card-icon.orange { background: #fff5f2; color: #f05a22; }
.card-icon.green { background: #f2fff5; color: #22c55e; }
.card-icon.purple { background: #f5f2ff; color: #8b5cf6; }
.card-icon.blue { background: #f2f8ff; color: #3b82f6; }

.help-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.help-card p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-card-call {
  background: var(--primary-orange);
  color: white;
  padding: 0.6rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.why-book-sidebar h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.why-list {
  list-style: none;
  margin-bottom: 2rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.why-list li i {
  color: var(--primary-orange);
  margin-top: 3px;
}

/* Benefit Banner */
.benefit-banner {
  background: #0b1a30;
  color: white;
  padding: 3rem 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border: 2px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-icon.icon-orange {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.benefit-icon.icon-green {
  border-color: #22c55e;
  color: #22c55e;
}

.benefit-icon.icon-blue {
  border-color: #3b82f6;
  color: #3b82f6;
}

.benefit-icon.icon-purple {
  border-color: #8b5cf6;
  color: #8b5cf6;
}

.benefit-info h4 {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.benefit-info p {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Orange CTA */
.orange-cta-banner {
  background: var(--primary-orange);
  padding: 1.5rem 0;
  color: white;
}

.orange-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orange-cta-inner h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-white-box {
  background: white;
  color: var(--primary-orange);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-white-box i { font-size: 1.5rem; }
.cta-white-box div span { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; line-height: 1; }
.cta-white-box div strong { font-size: 1.25rem; font-weight: 800; }

/* Testimonials */
.testimonial-section {
  padding: 5rem 0;
  background: #fdfdfd;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.testimonial-content h2 {
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.support-agent-box {
  position: relative;
  margin-top: 3rem;
}

.support-agent-box img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

.testimonial-item p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  text-align: right;
  font-weight: 700;
}

/* Bottom CTA */
.bottom-cta-v2 {
  background: #000;
  color: white;
  padding: 3rem 0;
  position: relative;
}

.bottom-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 2rem;
}

.bottom-cta-content h2 {
  color: white;
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bottom-phone-large {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.bottom-cta-content p {
  font-size: 1rem;
  opacity: 0.8;
}

.call-circle-btn {
  width: 150px;
  height: 150px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 15px 30px rgba(240, 90, 34, 0.4);
  transition: 0.3s;
  margin: 0 auto;
}

.call-circle-btn i { font-size: 2.5rem; margin-bottom: 0.5rem; }
.call-circle-btn:hover { transform: scale(1.05); }

/* Footer V2 */
.footer-v2 {
  background: #111;
  color: #fff;
  padding: 4rem 0 1rem;
}

.footer-v2-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-v2 h4 { color: white; text-transform: uppercase; font-size: 1rem; margin-bottom: 1.5rem; }
.footer-v2 ul { list-style: none; }
.footer-v2 ul li { margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer-v2 ul li a { opacity: 0.7; }
.footer-v2 ul li a:hover { opacity: 1; color: var(--primary-orange); }

.payment-methods {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.payment-methods img {
  height: 25px;
  filter: grayscale(1) invert(1);
  opacity: 0.7;
}

/* Responsive V2 */
@media (max-width: 1200px) {
  .hero-v2-inner { grid-template-columns: 1fr 1fr; }
  .hero-v2-agent { display: none; }
  .help-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .bottom-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .bottom-phone-large { justify-content: center; }
  .hero-v2-content h1 { font-size: 2.5rem; }
  .footer-v2-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-v2-inner { grid-template-columns: 1fr; }
  .help-grid-container { grid-template-columns: 1fr; }
  .orange-cta-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .benefit-grid { grid-template-columns: 1fr; }
  .help-cards { grid-template-columns: 1fr; }
}

/* AVIS-Specific Theme Styles */
:root {
  --avis-red: #d6182a;
  --avis-red-hover: #b81020;
  --dark-charcoal: #151515;
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--avis-red);
  color: white;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.announcement-bar a {
  color: white;
  text-decoration: underline;
}

/* Header Adjustments for Avis */
.btn-outline-red {
  border: 2px solid var(--avis-red);
  color: var(--avis-red) !important;
  background: transparent;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.btn-outline-red:hover {
  background-color: var(--avis-red);
  color: white !important;
}

/* Sub-Header Badge Bar */
.sub-header-bar {
  background-color: var(--dark-charcoal);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  font-weight: 600;
}
.sub-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.sub-header-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sub-header-item i {
  color: var(--avis-red);
  font-size: 1rem;
}

/* Hero Section Avis */
.hero-avis {
  padding: 4rem 0 6rem 0;
  background-color: #f5f5f5;
  background-image: linear-gradient(to right, rgba(245,245,245,1) 0%, rgba(245,245,245,0.95) 45%, rgba(245,245,245,0.2) 75%), url('../images/avis_hero_car.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
}
.hero-avis-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.hero-avis-content {
  max-width: 650px;
}
.hero-avis-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-avis-content h1 .avis-brand {
  font-size: 6.5rem;
  font-weight: 900;
  color: var(--avis-red);
  display: block;
  line-height: 1;
  margin: 0.25rem 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: -2px;
}
.hero-avis-content .subtitle {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Call Boxes */
.expert-call-box {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  max-width: 450px;
}
.expert-call-box .phone-circle {
  width: 50px;
  height: 50px;
  background-color: var(--avis-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.expert-call-info {
  display: flex;
  flex-direction: column;
}
.expert-call-info span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
}
.expert-call-info a {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--avis-red);
}
.expert-call-info p {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.btn-avis-red {
  background-color: var(--avis-red);
  color: white !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 2rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 6px rgba(214, 24, 42, 0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-avis-red:hover {
  background-color: var(--avis-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(214, 24, 42, 0.3);
}

/* Sidebar Box (Right of Hero) */
.hero-avis-sidebar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.immediate-help-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  max-width: 360px;
  margin-left: auto;
}
.immediate-help-header {
  background-color: var(--avis-red);
  color: white;
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.immediate-help-body {
  padding: 1.5rem;
  text-align: center;
}
.immediate-help-body h4 {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}
.immediate-help-body .phone-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--avis-red);
  display: block;
  margin-bottom: 1.25rem;
}
.immediate-help-body .btn-call-now {
  background-color: var(--avis-red);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
.immediate-help-body .btn-call-now:hover {
  background-color: var(--avis-red-hover);
}
.check-bullets {
  list-style: none;
  text-align: left;
  padding-left: 0.5rem;
}
.check-bullets li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.check-bullets li i {
  color: var(--avis-red);
  font-size: 0.9rem;
}

/* Booking Widget styling */
.booking-widget-container {
  max-width: 1200px;
  margin: -3rem auto 3rem auto;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}
.booking-card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}
.booking-tabs {
  display: flex;
  background-color: #f1f3f5;
  border-bottom: 1px solid var(--border-color);
}
.booking-tab {
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  background: transparent;
  color: var(--text-gray);
  transition: all 0.2s ease;
}
.booking-tab.active {
  background-color: var(--avis-red);
  color: white;
}
.booking-form {
  padding: 2rem;
}
.form-grid-3 {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-grid-3-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 1.5rem;
  align-items: flex-end;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
}
.input-with-icon {
  position: relative;
}
.input-with-icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--avis-red);
  font-size: 1rem;
}
.input-with-icon input, 
.input-with-icon select {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  color: var(--text-dark);
}
.input-with-icon select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23666666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.checkbox-group input {
  width: 16px;
  height: 16px;
  accent-color: var(--avis-red);
}
.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
}
.discount-code-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.discount-code-group input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
}
.discount-code-group .btn-apply {
  color: var(--avis-red);
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.discount-code-group .btn-apply:hover {
  text-decoration: underline;
}
.btn-view-cars {
  width: 100%;
  background-color: var(--avis-red);
  color: white;
  border: none;
  padding: 0.95rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-view-cars:hover {
  background-color: var(--avis-red-hover);
}

/* Service cards & Sidebar grid */
.content-layout-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.service-mini-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.service-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--avis-red);
}
.service-mini-card .card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(214, 24, 42, 0.08);
  color: var(--avis-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-mini-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}
.service-mini-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
}

/* Sidebar items */
.sidebar-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-sidebar-card {
  background: #fdf2f2;
  border: 1px dashed var(--avis-red);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.info-sidebar-card h4 {
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.info-sidebar-card p {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.info-sidebar-card .phone-link {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--avis-red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.info-sidebar-card .btn-call-sidebar {
  background-color: var(--avis-red);
  color: white;
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 700;
  display: block;
}
.info-sidebar-card .btn-call-sidebar:hover {
  background-color: var(--avis-red-hover);
}

.image-sidebar-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.image-sidebar-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Why Choose Section */
.why-choose-section {
  background-color: #1a1a1a;
  color: white;
  padding: 4rem 0;
  margin-bottom: 4rem;
}
.why-choose-section h2 {
  color: white;
  text-align: left;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
}
/* Updated why choose grids */
.why-props-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
}
.why-prop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.why-prop-item .prop-icon {
  font-size: 1.75rem;
  color: var(--avis-red);
  flex-shrink: 0;
}
.why-prop-item h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-prop-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
}
.why-sidebar-card {
  background: #252525;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.why-sidebar-card p {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 1.25rem;
}
.why-sidebar-card .phone-link {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--avis-red);
  display: block;
  margin-bottom: 1.25rem;
}
.why-sidebar-card .btn-call {
  background-color: var(--avis-red);
  color: white;
  width: 100%;
  padding: 0.85rem;
  border-radius: 6px;
  font-weight: 700;
  display: block;
}
.why-sidebar-card .btn-call:hover {
  background-color: var(--avis-red-hover);
}

/* FAQ Accordion Styling */
.faq-section {
  padding-bottom: 4rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  max-width: 100%;
}
.faq-accordion-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.faq-header {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background-color: white;
}
.faq-header h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin: 0;
}
.faq-header .toggle-icon {
  font-size: 0.85rem;
  color: var(--text-gray);
  transition: transform 0.3s;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.25rem;
  background-color: #fafafa;
  border-top: 0 solid var(--border-color);
}
.faq-content p {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}
.faq-item.active {
  border-color: var(--avis-red);
}
.faq-item.active .faq-header {
  background-color: #fff8f8;
}
.faq-item.active .faq-header h4 {
  color: var(--avis-red);
}
.faq-item.active .faq-header .toggle-icon {
  transform: rotate(180deg);
  color: var(--avis-red);
}
.faq-item.active .faq-content {
  border-top: 1px solid var(--border-color);
  max-height: 200px;
}

/* Red Bottom Banner CTA */
.red-bottom-cta {
  background-color: var(--avis-red);
  color: white;
  padding: 1.5rem 0;
}
.red-bottom-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.red-bottom-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.red-bottom-left .icon-circle {
  width: 45px;
  height: 45px;
  background: white;
  color: var(--avis-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.red-bottom-left h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.red-bottom-left p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}
.btn-white-pill {
  background-color: white;
  color: var(--avis-red) !important;
  font-weight: 800;
  font-size: 1.25rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.btn-white-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Footer Adjustments */
.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-icon {
  width: 32px;
  height: 32px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.3s;
}
.social-icon:hover {
  background-color: var(--avis-red);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-avis-inner {
    grid-template-columns: 1fr;
  }
  .immediate-help-card {
    margin: 2rem auto 0 auto;
  }
  .form-grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-grid-3-bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .content-layout-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
  .why-props-grid {
    grid-template-columns: 1fr;
  }
  .faq-accordion-container {
    grid-template-columns: 1fr;
  }
  .red-bottom-cta-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .red-bottom-left {
    flex-direction: column;
  }
  .sub-header-inner {
    justify-content: center;
  }
  .hero-avis-content h1 .avis-brand {
    font-size: 4.5rem;
  }
}

/* Simple Site Footer (Mockup Matching) */
.site-footer-simple {
  background-color: #222;
  color: #fff;
  padding: 3rem 0 8rem 0;
  text-align: center !important;
  font-size: 0.875rem;
  line-height: 1.6;
  border-top: 1px solid #333;
}
.site-footer-simple p {
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center !important;
}
.footer-simple-links {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.footer-simple-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-simple-links a:hover {
  color: var(--primary-orange);
}
.site-footer-simple .copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin: 0;
  text-align: center !important;
}

@media (min-width: 769px) {
  .sticky-footer {
    display: none;
  }
  .site-footer-simple {
    padding: 3rem 0;
  }
}

/* Dollar Theme Variables and Overrides */
:root {
  --dollar-blue: #002f6c;
  --dollar-blue-hover: #001f4d;
  --dollar-red: #d6182a;
  --dollar-red-hover: #b31020;
}

.dollar-theme .hero-avis {
  background-image: linear-gradient(to right, rgba(245,245,245,1) 0%, rgba(245,245,245,0.95) 45%, rgba(245,245,245,0.2) 75%), url('../images/dollar_hero_car.jpg');
}

.dollar-theme .announcement-bar {
  background-color: var(--dollar-blue);
  color: #fff;
}

.dollar-theme .sub-header-experts {
  background-color: #001f4d;
}

.dollar-theme .sub-header-experts i {
  color: #0099ff;
}

.dollar-theme .hero-avis-content h1 .avis-brand {
  color: var(--dollar-blue);
}

.dollar-theme .expert-call-box .phone-icon {
  background-color: rgba(0, 47, 108, 0.08);
  color: var(--dollar-blue);
}

.dollar-theme .btn-avis-red {
  background-color: var(--dollar-red);
}
.dollar-theme .btn-avis-red:hover {
  background-color: var(--dollar-red-hover);
}

.dollar-theme .booking-widget-header {
  background-color: var(--dollar-blue);
}

.dollar-theme .booking-tab {
  background-color: var(--dollar-blue);
  color: rgba(255, 255, 255, 0.7);
}

.dollar-theme .booking-tab.active {
  background-color: white;
  color: var(--dollar-blue);
}

.dollar-theme .booking-widget-content {
  border-color: var(--dollar-blue);
}

.dollar-theme .btn-view-cars {
  background-color: var(--dollar-red);
}
.dollar-theme .btn-view-cars:hover {
  background-color: var(--dollar-red-hover);
}

.dollar-theme .service-mini-card .card-icon {
  background-color: rgba(0, 47, 108, 0.08);
  color: var(--dollar-blue);
}

.dollar-theme .service-mini-card:hover {
  border-color: var(--dollar-blue);
}

.dollar-theme .why-prop-item .prop-icon {
  color: #0099ff;
}

.dollar-theme .faq-header:hover {
  color: var(--dollar-blue);
}

.dollar-theme .faq-header .toggle-icon {
  color: var(--dollar-blue);
}

.dollar-theme .red-bottom-cta {
  background-color: var(--dollar-red);
}

.dollar-theme .red-bottom-cta .btn-white-call {
  color: var(--dollar-red);
}

/* Thrifty Theme Variables and Overrides */
:root {
  --thrifty-blue: #005cb9;
  --thrifty-blue-hover: #00458a;
}

.thrifty-theme .announcement-bar {
  background-color: var(--thrifty-blue);
  color: #fff;
}

.thrifty-theme .sub-header-bar {
  background-color: #002244;
}

.thrifty-theme .sub-header-item i {
  color: #38bdf8;
}

.thrifty-theme .hero-avis {
  background-image: linear-gradient(to right, rgba(245,245,245,1) 0%, rgba(245,245,245,0.95) 45%, rgba(245,245,245,0.2) 75%), url('../images/thrifty_hero_car.jpg');
}

.thrifty-theme .hero-avis-content h1 .avis-brand {
  color: var(--thrifty-blue);
}

.thrifty-theme .expert-call-box .phone-circle {
  background-color: var(--thrifty-blue);
  color: white;
}

.thrifty-theme .expert-call-info a {
  color: var(--thrifty-blue);
}

.thrifty-theme .btn-avis-red {
  background-color: var(--thrifty-blue);
  box-shadow: 0 4px 6px rgba(0, 92, 185, 0.2);
}
.thrifty-theme .btn-avis-red:hover {
  background-color: var(--thrifty-blue-hover);
  box-shadow: 0 6px 12px rgba(0, 92, 185, 0.3);
}

.thrifty-theme .immediate-help-header {
  background-color: var(--thrifty-blue);
}

.thrifty-theme .immediate-help-body .phone-num {
  color: var(--thrifty-blue);
}

.thrifty-theme .immediate-help-body .btn-call-now {
  background-color: var(--thrifty-blue);
}
.thrifty-theme .immediate-help-body .btn-call-now:hover {
  background-color: var(--thrifty-blue-hover);
}

.thrifty-theme .booking-widget-header {
  background-color: var(--thrifty-blue);
}

.thrifty-theme .booking-tab {
  background-color: var(--thrifty-blue);
  color: rgba(255, 255, 255, 0.7);
}

.thrifty-theme .booking-tab.active {
  background-color: white;
  color: var(--thrifty-blue);
}

.thrifty-theme .booking-widget-content {
  border-color: var(--thrifty-blue);
}

.thrifty-theme .btn-view-cars {
  background-color: var(--thrifty-blue);
}
.thrifty-theme .btn-view-cars:hover {
  background-color: var(--thrifty-blue-hover);
}

.thrifty-theme .service-mini-card .card-icon {
  background-color: rgba(0, 92, 185, 0.08);
  color: var(--thrifty-blue);
}

.thrifty-theme .service-mini-card:hover {
  border-color: var(--thrifty-blue);
}

.thrifty-theme .why-prop-item .prop-icon {
  color: var(--thrifty-blue);
}

.thrifty-theme .faq-header:hover {
  color: var(--thrifty-blue);
}

.thrifty-theme .faq-header .toggle-icon {
  color: var(--thrifty-blue);
}

.thrifty-theme .red-bottom-cta {
  background-color: var(--thrifty-blue);
}

.thrifty-theme .red-bottom-cta .btn-white-call {
  color: var(--thrifty-blue);
}

.thrifty-theme .sidebar-blue-cta {
  background: var(--thrifty-blue);
}

.thrifty-theme .sidebar-blue-cta .btn-card-call {
  background-color: white;
  color: var(--thrifty-blue);
}

.thrifty-theme .sidebar-blue-cta .btn-card-call:hover {
  background-color: #f1f3f5;
}

/* Hertz Theme Variables and Overrides */
:root {
  --hertz-yellow: #ffcc00;
  --hertz-yellow-hover: #e6b800;
  --hertz-black: #111;
  --hertz-black-hover: #222;
}

.hertz-theme .announcement-bar {
  background-color: var(--hertz-black);
  color: var(--hertz-yellow);
}

.hertz-theme .sub-header-bar {
  background-color: var(--hertz-black);
  color: white;
}

.hertz-theme .sub-header-item i {
  color: var(--hertz-yellow);
}

.hertz-theme .hero-avis {
  background-image: linear-gradient(to right, rgba(245,245,245,1) 0%, rgba(245,245,245,0.95) 45%, rgba(245,245,245,0.2) 75%), url('../images/hertz_hero_car.jpg');
}

.hertz-theme .hero-avis-content h1 .avis-brand {
  color: var(--hertz-yellow);
}

.hertz-theme .expert-call-box .phone-circle {
  background-color: var(--hertz-yellow);
  color: var(--hertz-black);
}

.hertz-theme .expert-call-info a {
  color: var(--hertz-black);
}

.hertz-theme .btn-avis-red {
  background-color: var(--hertz-yellow);
  color: var(--hertz-black) !important;
  box-shadow: 0 4px 6px rgba(255, 204, 0, 0.2);
}
.hertz-theme .btn-avis-red:hover {
  background-color: var(--hertz-yellow-hover);
  box-shadow: 0 6px 12px rgba(255, 204, 0, 0.3);
}

.hertz-theme .immediate-help-header {
  background-color: var(--hertz-yellow);
  color: var(--hertz-black);
}

.hertz-theme .immediate-help-body .phone-num {
  color: var(--hertz-yellow-hover);
}

.hertz-theme .immediate-help-body .btn-call-now {
  background-color: var(--hertz-yellow);
  color: var(--hertz-black) !important;
}
.hertz-theme .immediate-help-body .btn-call-now:hover {
  background-color: var(--hertz-yellow-hover);
}

.hertz-theme .booking-widget-header {
  background-color: var(--hertz-black);
}

.hertz-theme .booking-tab {
  background-color: var(--hertz-black);
  color: rgba(255, 255, 255, 0.7);
}

.hertz-theme .booking-tab.active {
  background-color: white;
  color: var(--hertz-black);
}

.hertz-theme .booking-widget-content {
  border-color: var(--hertz-black);
}

.hertz-theme .btn-view-cars {
  background-color: var(--hertz-yellow);
  color: var(--hertz-black) !important;
}
.hertz-theme .btn-view-cars:hover {
  background-color: var(--hertz-yellow-hover);
}

.hertz-theme .service-mini-card .card-icon {
  background-color: rgba(255, 204, 0, 0.08);
  color: var(--hertz-yellow-hover);
}

.hertz-theme .service-mini-card:hover {
  border-color: var(--hertz-yellow);
}

.hertz-theme .why-prop-item .prop-icon {
  color: var(--hertz-yellow);
}

.hertz-theme .faq-header:hover {
  color: var(--hertz-yellow-hover);
}

.hertz-theme .faq-header .toggle-icon {
  color: var(--hertz-yellow-hover);
}

.hertz-theme .red-bottom-cta {
  background-color: var(--hertz-yellow);
  color: var(--hertz-black) !important;
}

.hertz-theme .red-bottom-cta h3,
.hertz-theme .red-bottom-cta p {
  color: var(--hertz-black) !important;
}

.hertz-theme .red-bottom-cta .btn-white-call {
  color: white;
  background-color: var(--hertz-black);
}

.hertz-theme .red-bottom-cta .btn-white-call:hover {
  background-color: var(--hertz-black-hover);
}

.hertz-theme .sidebar-blue-cta {
  background: var(--hertz-black);
}

.hertz-theme .sidebar-blue-cta .btn-card-call {
  background-color: var(--hertz-yellow);
  color: var(--hertz-black) !important;
}

.hertz-theme .sidebar-blue-cta .btn-card-call:hover {
  background-color: var(--hertz-yellow-hover);
}

/* Sixt Theme Variables and Overrides */
:root {
  --sixt-orange: #ff5f00;
  --sixt-orange-hover: #d95000;
  --sixt-black: #111;
  --sixt-black-hover: #222;
}

.sixt-theme .announcement-bar {
  background-color: var(--sixt-orange);
  color: var(--sixt-black);
}

.sixt-theme .sub-header-bar {
  background-color: var(--sixt-black);
  color: white;
}

.sixt-theme .sub-header-item i {
  color: var(--sixt-orange);
}

.sixt-theme .hero-avis {
  background-image: linear-gradient(to right, rgba(245,245,245,1) 0%, rgba(245,245,245,0.95) 45%, rgba(245,245,245,0.2) 75%), url('../images/sixt_hero_car.jpg');
}

.sixt-theme .hero-avis-content h1 .avis-brand {
  color: var(--sixt-orange);
}

.sixt-theme .expert-call-box .phone-circle {
  background-color: var(--sixt-orange);
  color: white;
}

.sixt-theme .expert-call-info a {
  color: var(--sixt-orange);
}

.sixt-theme .btn-avis-red {
  background-color: var(--sixt-orange);
  color: white !important;
  box-shadow: 0 4px 6px rgba(255, 95, 0, 0.2);
}
.sixt-theme .btn-avis-red:hover {
  background-color: var(--sixt-orange-hover);
  box-shadow: 0 6px 12px rgba(255, 95, 0, 0.3);
}

.sixt-theme .immediate-help-header {
  background-color: var(--sixt-orange);
  color: white;
}

.sixt-theme .immediate-help-body .phone-num {
  color: var(--sixt-orange);
}

.sixt-theme .immediate-help-body .btn-call-now {
  background-color: var(--sixt-orange);
  color: white !important;
}
.sixt-theme .immediate-help-body .btn-call-now:hover {
  background-color: var(--sixt-orange-hover);
}

.sixt-theme .service-mini-card .card-icon {
  background-color: rgba(255, 95, 0, 0.08);
  color: var(--sixt-orange);
}

.sixt-theme .service-mini-card:hover {
  border-color: var(--sixt-orange);
}

.sixt-theme .why-prop-item .prop-icon {
  color: var(--sixt-orange);
}

.sixt-theme .faq-header:hover {
  color: var(--sixt-orange);
}

.sixt-theme .faq-header .toggle-icon {
  color: var(--sixt-orange);
}

.sixt-theme .red-bottom-cta {
  background-color: var(--sixt-orange);
  color: white !important;
}

.sixt-theme .red-bottom-cta h3,
.sixt-theme .red-bottom-cta p {
  color: white !important;
}

.sixt-theme .red-bottom-cta .btn-white-call {
  color: var(--sixt-orange);
  background-color: white;
}

.sixt-theme .red-bottom-cta .btn-white-call:hover {
  background-color: #f1f3f5;
}

.sixt-theme .sidebar-blue-cta {
  background: var(--sixt-orange);
}

.sixt-theme .sidebar-blue-cta .btn-card-call {
  background-color: var(--sixt-black);
  color: white !important;
}

.sixt-theme .sidebar-blue-cta .btn-card-call:hover {
  background-color: var(--sixt-black-hover);
}

.sixt-theme .why-sidebar-card {
  background: var(--sixt-black);
}

.sixt-theme .why-sidebar-card .btn-call {
  background-color: var(--sixt-orange);
  color: white !important;
}

.sixt-theme .why-sidebar-card .btn-call:hover {
  background-color: var(--sixt-orange-hover);
}

.sixt-theme .why-sidebar-card .phone-link {
  color: var(--sixt-orange);
}

.sixt-theme .info-sidebar-card {
  background: #fff5ee !important;
  border-color: var(--sixt-orange) !important;
}

.sixt-theme .info-sidebar-card .phone-link {
  color: var(--sixt-orange);
}

.sixt-theme .info-sidebar-card .btn-call-sidebar {
  background-color: var(--sixt-black);
  color: white !important;
}

.sixt-theme .info-sidebar-card .btn-call-sidebar:hover {
  background-color: var(--sixt-black-hover);
}

/* Alamo Theme Variables and Overrides */
:root {
  --alamo-green: #1a8c35;
  --alamo-green-hover: #147029;
  --alamo-navy: #002d62;
  --alamo-navy-hover: #001f44;
}

.alamo-theme .announcement-bar {
  background-color: var(--alamo-green);
  color: white;
}

.alamo-theme .sub-header-bar {
  background-color: var(--alamo-navy);
  color: white;
}

.alamo-theme .sub-header-item i {
  color: var(--alamo-green);
}

.alamo-theme .hero-avis {
  background-image: linear-gradient(to right, rgba(245,245,245,1) 0%, rgba(245,245,245,0.95) 45%, rgba(245,245,245,0.2) 75%), url('../images/alamo_hero_car.jpg');
}

.alamo-theme .hero-avis-content h1 .avis-brand {
  color: var(--alamo-green);
}

.alamo-theme .expert-call-box .phone-circle {
  background-color: var(--alamo-green);
  color: white;
}

.alamo-theme .expert-call-info a {
  color: var(--alamo-green);
}

.alamo-theme .btn-avis-red {
  background-color: var(--alamo-green);
  color: white !important;
  box-shadow: 0 4px 6px rgba(26, 140, 53, 0.2);
}
.alamo-theme .btn-avis-red:hover {
  background-color: var(--alamo-green-hover);
  box-shadow: 0 6px 12px rgba(26, 140, 53, 0.3);
}

.alamo-theme .immediate-help-header {
  background-color: var(--alamo-green);
  color: white;
}

.alamo-theme .immediate-help-body .phone-num {
  color: var(--alamo-green);
}

.alamo-theme .immediate-help-body .btn-call-now {
  background-color: var(--alamo-green);
  color: white !important;
}
.alamo-theme .immediate-help-body .btn-call-now:hover {
  background-color: var(--alamo-green-hover);
}

.alamo-theme .booking-widget-header {
  background-color: var(--alamo-navy);
}

.alamo-theme .booking-tab {
  background-color: var(--alamo-navy);
  color: rgba(255, 255, 255, 0.7);
}

.alamo-theme .booking-tab.active {
  background-color: var(--alamo-green);
  color: white;
}

.alamo-theme .booking-widget-content {
  border-color: var(--alamo-navy);
}

.alamo-theme .btn-view-cars {
  background-color: var(--alamo-green);
  color: white !important;
}
.alamo-theme .btn-view-cars:hover {
  background-color: var(--alamo-green-hover);
}

.alamo-theme .service-mini-card .card-icon {
  background-color: rgba(26, 140, 53, 0.08);
  color: var(--alamo-green);
}

.alamo-theme .service-mini-card:hover {
  border-color: var(--alamo-green);
}

.alamo-theme .why-prop-item .prop-icon {
  color: var(--alamo-green);
}

.alamo-theme .faq-header:hover {
  color: var(--alamo-green);
}

.alamo-theme .faq-header .toggle-icon {
  color: var(--alamo-green);
}

.alamo-theme .red-bottom-cta {
  background-color: var(--alamo-green);
  color: white !important;
}

.alamo-theme .red-bottom-cta h3,
.alamo-theme .red-bottom-cta p {
  color: white !important;
}

.alamo-theme .red-bottom-cta .btn-white-call {
  color: var(--alamo-green);
  background-color: white;
}

.alamo-theme .red-bottom-cta .btn-white-call:hover {
  background-color: #f1f3f5;
}

.alamo-theme .sidebar-blue-cta {
  background: var(--alamo-navy);
}

.alamo-theme .sidebar-blue-cta .btn-card-call {
  background-color: var(--alamo-green);
  color: white !important;
}

.alamo-theme .sidebar-blue-cta .btn-card-call:hover {
  background-color: var(--alamo-green-hover);
}

.alamo-theme .why-sidebar-card {
  background: var(--alamo-navy);
}

.alamo-theme .why-sidebar-card .btn-call {
  background-color: var(--alamo-green);
  color: white !important;
}

.alamo-theme .why-sidebar-card .btn-call:hover {
  background-color: var(--alamo-green-hover);
}

.alamo-theme .why-sidebar-card .phone-link {
  color: var(--alamo-green);
}

.alamo-theme .info-sidebar-card {
  background: #f1f8f3 !important;
  border-color: var(--alamo-green) !important;
}

.alamo-theme .info-sidebar-card .phone-link {
  color: var(--alamo-green);
}

.alamo-theme .info-sidebar-card .btn-call-sidebar {
  background-color: var(--alamo-green);
  color: white !important;
}

.alamo-theme .info-sidebar-card .btn-call-sidebar:hover {
  background-color: var(--alamo-green-hover);
}

/* Responsive mobile menu drawer and container alignments */
@media (max-width: 768px) {
  .header-inner {
    position: relative;
  }
  .header-inner .header-cta {
    display: none !important; /* Hide detailed CTA phone box in mobile header to prevent overlap */
  }
  .mobile-menu-toggle {
    display: block !important;
    font-size: 1.75rem;
    color: var(--primary-navy);
    cursor: pointer;
  }
  .nav-links {
    display: none !important; /* Hide links by default on mobile */
  }
  .nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 1000;
    border-top: 1px solid var(--border-color);
  }
  .nav-links.active a {
    padding: 0.75rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .nav-links.active a:last-child {
    border-bottom: none;
  }
  .intro-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

/* Structured Footer Layout Styles */
.footer-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  text-align: left !important;
  margin-bottom: 2.5rem;
}
.footer-column h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-orange);
}
.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6;
  margin-bottom: 1.5rem !important;
  text-align: left !important;
}
.footer-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-orange);
  color: white !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s, background-color 0.2s;
}
.footer-phone-cta:hover {
  transform: translateY(-2px);
  background-color: var(--primary-navy);
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-list li {
  margin-bottom: 0.75rem;
}
.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
  font-size: 0.9rem;
}
.footer-links-list a:hover {
  color: var(--primary-orange);
  padding-left: 4px;
}
.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.6;
  margin-bottom: 1.5rem !important;
  text-align: center !important;
}
.site-footer-simple .copyright {
  text-align: center !important;
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.8rem;
  margin: 0;
}

/* Responsiveness for Structured Footer */
@media (max-width: 992px) {
  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center !important;
  }
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-desc {
    text-align: center !important;
  }
}
