/**
 * A-1 Van Rental Classic - Main Styles
 */



/* Hide the service-area-section on the 'location' page */
.page-id-122 .service-area-section {
    display: none !important;
}

.btn.btn-primary:hover {
    color: white; /* Changes the text color to white on hover */
}
.btn.btn-outline:hover {
    color: white; /* Changes the text color to white on hover */
}

@media (max-width: 768px) {
    .hero-headline {
        text-align: center;  /* Center the text on mobile */
        /* Optional: Add padding for smaller screens */
    }
}

@media (max-width: 768px) {
    .hero-subheadline {
        text-align: center;  /* Center the text on mobile */
        /* Optional: Add padding for smaller screens */
    }
}

header .mobile-cta { padding: 20px; display: flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:0.5rem; }
header .mobile-cta .btn-primary.bg-black { background: #000 !important; }
header .mobile-cta .btn-primary.bg-black:hover { box-shadow: 0 4px 15px rgb(0 0 0 / 30%) !important; }

@media(min-width: 769px){
    header .mobile-cta { display:none; }
}

@media (max-width: 768px) {
    div.trust-badge {
        text-align: center;  /* Center the text on mobile */
        padding: 0 69px;
        /* Optional: Add padding for smaller screens */
    }
}



/* ===========================
   CONTAINER STYLES
   =========================== */

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

/* ===========================
   HEADER STYLES
   =========================== */

   .site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-top {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
}

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

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

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-phones {
    display: flex;
    gap: 1.5rem;
}

.phone-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--primary-red);
}

.phone-icon {
    margin-right: 0.25rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    transition: 0.3s;
}

/* Navigation */
.main-navigation {
    background: var(--white);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 3px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--primary-red);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    transform: scaleX(1);
}

/* CTA Button in Menu */
.nav-menu .menu-item-cta a {
    padding: 0.5rem 1.25rem;
    margin-left: 1rem;
}

.nav-menu .menu-item-cta a::after {
    display: none;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Dropdown Menus */
.nav-menu .menu-item-has-children {
    position: relative;
}

.nav-menu .menu-item-has-children > a::after {
    content: none;
}

.nav-menu .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu .menu-item-has-children > a::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-top: 3px solid var(--primary-red);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 240px;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: all 0.2s;
    position: relative;
}

.sub-menu a::after {
    display: none;
}

.sub-menu a:hover {
    background: var(--gray-light);
    color: var(--primary-red);
    padding-left: 2rem;
}

/* ===========================
   BUTTON STYLES
   =========================== */

   .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: #c61a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-charcoal {
    background: var(--charcoal);
    color: var(--white);
}

.btn-charcoal:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-red);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-outline-primary:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ===========================
   HERO BANNER
   =========================== */

   .hero-banner {
    min-height: clamp(600px, 85vh, 900px);
    background: url('../images/van_hero_banner.png') center bottom / cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: clamp(2rem, 8vh, 5rem);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0.4) 60%, rgba(26, 26, 26, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-content .left-col { width:calc(50% - 1rem); text-align:left; }
.hero-content .right-col { width:calc(50% - 1rem); }

.hero-content .right-col .form-area { 
    height: 100%;
    padding: 2rem;
    background: rgb(255 255 255 / 81%);
    border-radius: 5px;
    backdrop-filter: blur(4px) brightness(1.5);
}

.hero-content .right-col .form-area .form-title {
    color: var(--primary-red);
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust-badges {
    display: flex;
    gap: 1rem 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.check-icon {
    font-size: 2rem;
    line-height: 1.1;
    color: var(--white);
}

/* ===========================
   WHY CHOOSE SECTION
   =========================== */

   .why-choose-section {
    padding: 4rem 0 5rem;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
}

.why-choose-header {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-stat {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin: 0;
}

/* ===========================
   FLEET SECTION
   =========================== */

   .fleet-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.fleet-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.fleet-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--gray-light);
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-capacity {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.fleet-capacity-cargo {
    background: var(--charcoal);
}

.fleet-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.fleet-card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
}

.fleet-badge-popular {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fleet-card-content > p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.fleet-card-details {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.fleet-card-details p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

.fleet-card-details strong {
    color: var(--charcoal);
}

.fleet-card-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

.fleet-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(51, 51, 51, 0.1);
}

.fleet-footer p {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-weight: 600;
}

.fleet-footer-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   COMMITMENT SECTION
   =========================== */

   .commitment-section {
    padding: 5rem 0;
    background: var(--charcoal);
    color: var(--white);
}

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

.commitment-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.commitment-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.commitment-cta {
    margin-top: 2.5rem;
}

.commitment-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.commitment-section .btn-secondary:hover {
    background: var(--white);
    color: var(--charcoal);
}

/* ===========================
   CTA SECTION (Reusable)
   =========================== */

   .cta-section {
    padding: 5rem 0;
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
}

.cta-section-light {
    background: var(--gray-light);
    color: var(--charcoal);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-section p a { text-decoration:underline; transition:all 0.3s ease; }
.cta-section p a:hover { color: rgba(255, 255, 255, 0.75); text-decoration:none; }

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-red);
}

.cta-section .btn-primary:hover {
    background: var(--charcoal);
    color: var(--white);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

.cta-section-light .btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.cta-section-light .btn-primary:hover {
    background: #c61a1f;
}

.cta-section-light .btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.cta-section-light .btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
}

.cta-contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.cta-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
}

.cta-contact-info .contact-item i {
    font-size: 1.25rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.95;
}

/* ===========================
   SERVICES GRID SECTION
   =========================== */

   .services-section {
    padding: 5rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-light);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-card:hover .service-number {
    color: rgba(227, 30, 36, 0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.service-card p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-card .btn {
    margin-top: auto;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */

   .testimonials-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.testimonial-rating {
    color: #FFB800;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

/* ===========================
   FOOTER STYLES
   =========================== */

   .site-footer {
    background: var(--charcoal);
    color: var(--white);
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* Company Column */
.footer-column-company h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-address {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.footer-phones {
    line-height: 1.8;
}

.footer-phone {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-phone:hover {
    color: var(--primary-red);
}

.footer-phone-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    color: var(--white);
}

.social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    color: var(--white);
}

/* Footer Columns */
.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-red);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-credit {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-credit a {
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s;
}

.footer-credit a:hover {
    color: var(--primary-red);
}

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

   .page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
}

.page-hero-small {
    min-height: 250px;
    padding: 3rem 0;
}

.page-hero-medium {
    min-height: 400px;
    padding: 5rem 0;
}

.page-hero-large {
    min-height: 550px;
    padding: 6rem 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--charcoal);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.text-center .page-hero-content {
    text-align: center;
}

.text-left .page-hero-content {
    text-align: left;
}

.breadcrumbs {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.breadcrumbs a {
    color: var(--white);
    transition: opacity 0.3s;
}

.breadcrumbs a:hover {
    opacity: 0.7;
}

.breadcrumbs .separator {
    margin: 0 0.5rem;
}

.breadcrumbs .current {
    opacity: 0.7;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 600;
    
}

.page-id-61 .page-hero-subtitle {
    display: none !important;
}

.page-hero-description {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
}

.text-left .page-hero-description {
    margin-left: 0;
    margin-right: 0;
}

.page-hero-cta {
    margin-top: 2rem;
}

/* ===========================
   CONTENT BLOCK
   =========================== */

   .content-block {
    padding: 5rem 0;
}

.content-block-bg-white {
    background: var(--white);
}

.content-block-bg-gray {
    background: var(--gray-light);
}

.content-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-block-image-right .content-block-inner {
    direction: rtl;
}

.content-block-image-right .content-block-inner > * {
    direction: ltr;
}

.content-block-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-block-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.content-block-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.content-block-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.content-block-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.7;
    color: var(--gray-dark);
}

.content-block-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

.content-block-button {
    margin-top: 2rem;
}

/* ===========================
   FEATURES GRID
   =========================== */

   .features-grid-section {
    padding: 5rem 0;
}

.features-grid-bg-white {
    background: var(--white);
}

.features-grid-bg-gray {
    background: var(--gray-light);
}

.features-grid-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.features-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.features-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.features-grid-bg-white .feature-item {
    background: var(--gray-light);
    border-color: transparent;
}

.feature-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin: 0;
}

/* ===========================
   VEHICLE CARD GRID
   =========================== */

   .vehicle-card-grid-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.vehicle-grid-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vehicle-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vehicle-card-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.vehicle-card-image {
    position: relative;
    background: var(--white);
    padding: 2rem 1.5rem;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-card-image img {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
}

.vehicle-capacity-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 700;
}

.vehicle-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vehicle-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.vehicle-card-description {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.vehicle-card-body .btn {
    margin-top: auto;
}

/* ===========================
   VEHICLE SPECS
   =========================== */

   .vehicle-specs-section {
    padding: 5rem 0;
}

.vehicle-specs-bg-white {
    background: var(--white);
}

.vehicle-specs-bg-gray {
    background: var(--gray-light);
}

.vehicle-specs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vehicle-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.spec-item {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 1.75rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.vehicle-specs-bg-white .spec-item {
    background: var(--gray-light);
    border-color: transparent;
}

.spec-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.spec-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.spec-content {
    flex: 1;
}

.spec-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ===========================
   SEATING LAYOUTS SECTION
   =========================== */

   .seating-layouts-section {
    padding: 5rem 0;
    background: var(--white);
}

.seating-layouts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.seating-layouts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.layout-item {
    text-align: center;
}

.layout-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.layout-image {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.layout-image img {
    width: 100%;
    height: auto;
    display: block;
}

.layout-description {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.seating-layouts-footer {
    text-align: center;
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-red);
}

.seating-layouts-footer p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--charcoal);
}

.seating-layouts-footer strong {
    color: var(--primary-red);
}

/* Single Seating Layout (for minivans, etc.) */
.seating-layout-single {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.layout-image-single {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.layout-image-single img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.layout-description-single {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
    text-align: left;
}

/* ===========================
   VAN FLEET SECTION
   =========================== */

   .fleet-intro-section {
    padding-top: 5rem;
}

.van-fleet-section {
    padding: 5rem 0;
    background: var(--white);
}

.van-fleet-header {
    text-align: center;
    margin-bottom: 4rem;
}

.van-fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-van-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: stretch;
}

.fleet-van-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.fleet-van-image {
    background: var(--white);
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-van-image img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
}

.fleet-van-content {
    padding: 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.fleet-van-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.fleet-van-subtitle {
    font-size: 1rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.fleet-van-description {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.fleet-van-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--charcoal);
    font-weight: 500;
}

.feature-badge i {
    color: var(--primary-red);
    font-size: 1rem;
}

.fleet-van-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.fleet-van-actions .btn {
    flex: 1;
    text-align: center;
}

/* ===========================
   IMPORTANT NOTES SECTION
   =========================== */

   .important-notes-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.important-notes-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.note-item {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: left;
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
}

.note-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.note-badge-info {
    background-color: #f5f5f5 !important;
    color: #1976d2;
}

.note-badge-success {
    background-color: #e8f5e9;
    color: #388e3c;
}

.note-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.note-item p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.note-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ===========================
   PROCESS STEPS SECTION
   =========================== */

   .process-steps-section {
    padding: 5rem 0;
}

.process-steps-bg-white {
    background: var(--white);
}

.process-steps-bg-gray {
    background: var(--gray-light);
}

.process-steps-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.process-step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.process-step-number i {
    font-size: 1.75rem;
}

.process-step-content {
    flex: 1;
}

.process-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.process-step-description {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.process-step-description strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* ===========================
   SPLIT CONTENT MODERN SECTION
   =========================== */

   .split-content-modern {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.split-content-bg-white {
    background: var(--white);
}

.split-content-bg-gray {
    background: var(--gray-light);
}

.split-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.split-content-image-side {
    position: relative;
    width: 100%;
    padding: 0 4rem;
    margin-bottom: 4rem;
}

.modern-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 0;
    overflow: hidden;
}

.modern-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #c62828 50%, var(--primary-red) 100%);
}

.modern-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
}

.image-decoration {
    display: none;
}

.split-content-text-side {
    padding: 0 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.content-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.split-content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.split-content-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    max-width: 900px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.split-content-bg-white .info-card {
    background: var(--gray-light);
    border-color: transparent;
}

.info-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.1);
}

.info-card-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.info-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin: 0;
}

/* ===========================
   CONTENT HIGHLIGHTS SECTION
   =========================== */

   .content-highlights-section {
    padding: 5rem 0;
}

.content-highlights-bg-white {
    background: var(--white);
}

.content-highlights-bg-gray {
    background: var(--gray-light);
}

.content-highlights-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.content-highlights-image-right {
    direction: rtl;
}

.content-highlights-image-right > * {
    direction: ltr;
}

.content-highlights-image {
    position: relative;
}

.content-highlights-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.content-highlights-content {
    padding: 1rem 0;
}

.content-highlights-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-highlights-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.highlights-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
}

.highlight-item i {
    color: var(--primary-red);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.highlight-item strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* ===========================
   BENEFITS SHOWCASE SECTION
   =========================== */

   .benefits-showcase-section {
    padding: 5rem 0;
}

.benefits-showcase-bg-white {
    background: var(--white);
}

.benefits-showcase-bg-gray {
    background: var(--gray-light);
}

.benefits-showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-showcase-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #c62828 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-showcase-item:hover::before {
    transform: scaleX(1);
}

.benefit-showcase-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
}

.benefit-showcase-item:hover .benefit-showcase-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.4);
}

.benefit-showcase-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.benefit-showcase-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-showcase-description {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* ===========================
   COMPARISON SECTION
   =========================== */

   .comparison-section {
    padding: 5rem 0;
}

.comparison-section-white {
    background: var(--white);
}

.comparison-section-gray {
    background: var(--gray-light);
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-item {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.comparison-image {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    padding: 2rem 1rem;
}

.comparison-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.comparison-item:nth-child(2) .comparison-image img {
    transform: scaleX(-1);
}

.comparison-content {
    padding: 2rem;
}

.comparison-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.comparison-description {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.comparison-best-for {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-light);
}

.best-for-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.best-for-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.best-for-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.best-for-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===========================
   PAGE CONTENT
   =========================== */

   .page-content {
    padding: 4rem 0;
}

.page-title {
    margin-bottom: 2rem;
}

.entry-content {
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* ===========================
   RESPONSIVE
   =========================== */

   @media (max-width: 1024px) {
    .header-phones {
        display: none;
    }

    /* Benefits Section Tablet */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Fleet Section Tablet */
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Services Section Tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Footer Tablet */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    /* Template Parts Tablet */
    .content-block-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-block-image-right .content-block-inner {
        direction: ltr;
    }

    .features-grid-cols-3,
    .features-grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-cards-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-card-image {
        padding: 1.75rem 1.25rem;
        min-height: 160px;
    }

    .vehicle-card-image img {
        max-height: 140px;
    }

    /* Seating Layouts Tablet */
    .seating-layouts-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .layout-image-single {
        padding: 2rem 1.5rem;
    }

    .layout-description-single {
        font-size: 1rem;
    }

    /* Van Fleet Tablet */
    .van-fleet-grid {
        gap: 2rem;
    }

    .fleet-van-card {
        grid-template-columns: 1fr;
    }

    .fleet-van-content {
        padding: 1.75rem 2rem 2rem;
    }

    .fleet-van-title {
        font-size: 1.5rem;
    }

    .fleet-van-image {
        min-height: 220px;
        padding: 2rem 1.5rem;
    }

    /* Important Notes Tablet */
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Comparison Section Tablet */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Process Steps Tablet */
    .process-step {
        padding: 2rem;
        gap: 1.5rem;
    }

    .process-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-step-title {
        font-size: 1.35rem;
    }

    /* Benefits Showcase Tablet */
    .benefits-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Content Highlights Tablet */
    .content-highlights-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-highlights-image-right {
        direction: ltr;
    }

    /* Split Content Modern Tablet */
    .split-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-content-title {
        font-size: 2rem;
    }

    .split-content-image-side {
        padding: 0 2rem;
        margin-bottom: 3rem;
    }

    .split-content-text-side {
        padding: 0 2rem;
    }

    .modern-image-wrapper {
        height: 400px;
    }

    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-right .btn {
        display: none;
    }

    .main-navigation {
        display: none;
    }

    .main-navigation.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-menu a {
        padding: 1rem;
    }

    /* Mobile Dropdowns */
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-left: 3px solid var(--primary-red);
        box-shadow: none;
        background: var(--gray-light);
        margin: 0;
        padding: 0;
        display: none;
    }

    .menu-item-has-children.active .sub-menu {
        display: block;
    }

    .sub-menu a {
        padding: 0.75rem 1rem 0.75rem 2rem;
        font-size: 0.875rem;
    }

    .sub-menu a:hover {
        padding-left: 2.5rem;
    }

    /* Mobile CTA Button */
    .nav-menu .menu-item-cta a {
        margin: 0.5rem 1rem;
        text-align: center;
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust-badge {
        font-size: 0.875rem;
    }

    /* Benefits Section Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-box {
        padding: 1.75rem 1.25rem;
    }

    .benefit-stat {
        font-size: 1.5rem;
    }

    /* Fleet Section Mobile */
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fleet-card-image {
        height: 220px;
    }

    .fleet-footer p {
        font-size: 1.25rem;
    }

    .fleet-footer-buttons {
        flex-direction: column;
    }

    .fleet-footer-buttons .btn {
        width: 100%;
    }

    /* Services Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-column:last-child {
        grid-column: 1;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Template Parts Mobile */
    .page-hero-small {
        min-height: 200px;
        padding: 2rem 0;
    }

    .page-hero-medium {
        min-height: 300px;
        padding: 3rem 0;
    }

    .page-hero-large {
        min-height: 400px;
        padding: 4rem 0;
    }

    .content-block-inner {
        gap: 2rem;
    }

    .content-block-list li {
        font-size: 0.95rem;
    }

    .features-grid-cols-2,
    .features-grid-cols-3,
    .features-grid-cols-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.75rem 1.25rem;
    }

    /* Vehicle Card Grid Mobile */
    .vehicle-card-image {
        padding: 1.5rem 1rem;
        min-height: 140px;
    }

    .vehicle-card-image img {
        max-height: 120px;
    }

    .vehicle-card-body {
        padding: 1.25rem;
    }

    .vehicle-card-name {
        font-size: 1.25rem;
    }

    .vehicle-specs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .spec-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .spec-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .spec-label {
        font-size: 0.8rem;
    }

    .spec-value {
        font-size: 0.95rem;
    }

    /* Seating Layouts Mobile */
    .seating-layouts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .layout-title {
        font-size: 1.25rem;
    }

    .layout-image {
        padding: 1.5rem;
    }

    .layout-description {
        font-size: 0.95rem;
    }

    .seating-layouts-footer {
        padding: 1.5rem;
    }

    .seating-layouts-footer p {
        font-size: 0.95rem;
    }

    .layout-image-single {
        padding: 1.5rem 1rem;
    }

    .layout-description-single {
        font-size: 0.95rem;
    }

    /* Van Fleet Mobile */
    .van-fleet-grid {
        gap: 2rem;
    }

    .fleet-van-content {
        padding: 1.5rem;
    }

    .fleet-van-title {
        font-size: 1.35rem;
    }

    .fleet-van-subtitle {
        font-size: 0.9rem;
    }

    .fleet-van-description {
        font-size: 0.9rem;
    }

    .fleet-van-image {
        min-height: 180px;
        padding: 1.25rem;
    }

    .fleet-van-actions {
        flex-direction: column;
    }

    .fleet-van-actions .btn {
        width: 100%;
    }

    .feature-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    /* Important Notes Mobile */
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .note-item {
        padding: 1.5rem;
    }

    .note-item h3 {
        font-size: 1.1rem;
    }

    .note-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.65rem;
    }

    /* Comparison Section Mobile */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-image {
        padding: 1.5rem 1rem;
    }

    .comparison-content {
        padding: 1.5rem;
    }

    .comparison-title {
        font-size: 1.5rem;
    }

    /* Process Steps Mobile */
    .process-step {
        flex-direction: column;
        padding: 1.75rem;
        gap: 1.25rem;
        text-align: center;
    }

    .process-step:hover {
        transform: translateY(-5px);
    }

    .process-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .process-step-title {
        font-size: 1.25rem;
    }

    .process-step-description {
        font-size: 0.95rem;
    }

    /* Benefits Showcase Mobile */
    .benefits-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-showcase-item {
        padding: 2rem 1.5rem;
    }

    .benefit-showcase-icon {
        width: 80px;
        height: 80px;
    }

    .benefit-showcase-icon i {
        font-size: 2rem;
    }

    .benefit-showcase-title {
        font-size: 1.2rem;
    }

    /* Content Highlights Mobile */
    .content-highlights-title {
        font-size: 1.75rem;
    }

    .content-highlights-intro {
        font-size: 1rem;
    }

    .highlight-item {
        font-size: 0.95rem;
    }

    /* Split Content Modern Mobile */
    .split-content-modern {
        padding: 4rem 0;
    }

    .split-content-title {
        font-size: 1.75rem;
    }

    .split-content-description {
        font-size: 1rem;
    }

    .content-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .info-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .info-card-content h4 {
        font-size: 1rem;
    }

    .info-card-content p {
        font-size: 0.9rem;
    }

    .split-content-modern {
        padding: 4rem 0;
    }

    .split-content-image-side {
        padding: 0 1rem;
        margin-bottom: 2.5rem;
    }

    .split-content-text-side {
        padding: 0 1rem;
    }

    .modern-image-wrapper {
        height: 300px;
    }

    .modern-image-wrapper img {
        padding: 1rem;
    }

    .split-content-title {
        font-size: 1.75rem;
    }

    .split-content-description {
        font-size: 1rem;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .best-for-list li {
        font-size: 0.9rem;
    }
}

/* ===========================
   POLICIES CONTENT SECTION
   =========================== */

   .policies-content-section {
    padding: 5rem 0;
    background: var(--white);
}

.policies-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Sidebar Navigation */
.policies-sidebar {
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.policies-nav {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 2rem 1.5rem;
}

.policies-nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policies-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policies-nav-list li {
    margin-bottom: 0.5rem;
}

.policies-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--gray-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.policies-nav-link:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateX(5px);
}

.policies-nav-link.active {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
    color: var(--white);
    font-weight: 600;
}

.policies-nav-divider {
    height: 1px;
    background: var(--gray-dark);
    opacity: 0.2;
    margin: 1.5rem 0;
}

.policies-nav-secondary {
    margin-top: 1rem;
}

.policies-nav-secondary .policies-nav-link {
    font-weight: 600;
    color: var(--charcoal);
}

.policies-nav-secondary .policies-nav-link:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Scroll padding for anchor links */
html {
    scroll-padding-top: 100px;
}

.policies-content {
    max-width: 900px;
}

.policy-section {
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-light);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
    border-radius: 2px;
}

.policy-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.25rem;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy-section ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.policy-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 0.9rem;
}

.policy-section a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #c62828;
    text-decoration: underline;
}

.policy-section em {
    font-style: italic;
    color: var(--gray-dark);
}

.policy-section strong {
    font-weight: 700;
    color: var(--charcoal);
}

/* Policy Visual Elements */

/* Icon Cards Grid */
.policy-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.policy-icon-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.policy-icon-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-icon-badge {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.policy-icon-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.policy-icon-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin: 0;
}

/* Deposit Cards */
.policy-deposit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.policy-deposit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 3px solid var(--primary-red);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
}

.deposit-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.deposit-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.deposit-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.deposit-description {
    font-size: 0.95rem;
    color: var(--gray-dark);
}

/* Payment Badges */
.policy-payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.payment-badge:hover {
    border-color: var(--primary-red);
    background: var(--gray-light);
}

.payment-badge i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* Info Box */
.policy-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.policy-info-required {
    background: linear-gradient(135deg, #fff3e0 0%, #ffebee 100%);
    border-left: 5px solid var(--primary-red);
}

.info-box-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
}

.info-box-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.info-box-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 0.75rem;
}

.info-box-content p:last-child {
    margin-bottom: 0;
}

/* Insurance Pricing Cards */
.policy-insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.insurance-pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.insurance-pricing-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.insurance-card-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-light);
    margin-bottom: 1.5rem;
}

.insurance-card-header i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    display: block;
}

.insurance-card-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
}

.insurance-description {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.insurance-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.insurance-option {
    background: var(--gray-light);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
}

.insurance-single-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.insurance-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.insurance-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-dark);
}

.insurance-detail,
.insurance-coverage {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: 0.5rem;
}

.insurance-price-contact {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
}

.insurance-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-dark);
    margin: 0;
}

.policy-cta {
    text-align: center;
    padding: 3rem 2rem 4rem;
    background: var(--gray-light);
    border-radius: 12px;
    border: none;
}

.policy-cta h2 {
    padding-left: 0;
}

.policy-cta h2::before {
    display: none;
}

.policy-contact {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
    flex-wrap: wrap;
}

.policy-contact .btn {
    color: var(--white);
}

.policy-contact .btn-primary {
    color: var(--white);
}

.policy-contact .btn-secondary {
    color: var(--charcoal);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .policies-layout {
        grid-template-columns: 240px 1fr;
        gap: 3rem;
    }

    .policies-sidebar {
        top: 100px;
    }

    .policies-nav {
        padding: 1.5rem 1.25rem;
    }

    .policies-nav-title {
        font-size: 1rem;
    }

    .policies-nav-link {
        font-size: 0.9rem;
        padding: 0.65rem 0.85rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .policies-content-section {
        padding: 4rem 0;
    }

    .policies-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .policies-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 3rem;
    }

    .policies-nav {
        padding: 1.5rem;
    }

    .policies-nav-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .policies-nav-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .policies-nav-secondary {
        grid-column: 1 / -1;
        display: flex;
        gap: 0.5rem;
    }

    .policies-nav-secondary li {
        flex: 1;
        margin: 0;
    }

    .policies-nav-link {
        font-size: 0.85rem;
        padding: 0.65rem 0.75rem;
        text-align: center;
    }

    .policies-nav-divider {
        display: none;
    }

    .policy-section {
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
        padding-left: 1.25rem;
    }

    .policy-section h2::before {
        height: 24px;
    }

    .policy-section h3 {
        font-size: 1.25rem;
    }

    .policy-section h4 {
        font-size: 1.1rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 1rem;
    }

    .policy-cta {
        padding: 2rem 1.5rem;
    }

    .policy-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .policy-contact .btn {
        width: 100%;
    }

    /* Visual Elements Responsive */
    .policy-icon-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .policy-icon-card {
        padding: 1.5rem 1.25rem;
    }

    .policy-icon-badge {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .policy-deposit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .policy-deposit-card {
        padding: 2rem 1.5rem;
    }

    .deposit-icon {
        font-size: 2.5rem;
    }

    .deposit-amount {
        font-size: 2.5rem;
    }

    .policy-payment-badges {
        gap: 0.75rem;
    }

    .payment-badge {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }

    .policy-info-box {
        flex-direction: column;
        padding: 1.5rem;
    }

    .info-box-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .info-box-content h4 {
        font-size: 1.1rem;
    }

    .policy-insurance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .insurance-pricing-card {
        padding: 1.75rem 1.5rem;
    }

    .insurance-card-header i {
        font-size: 2rem;
    }

    .insurance-price {
        font-size: 2rem;
    }
}


@media(max-width: 767px){
    .hero-content { flex-direction: column; }
    .hero-content > div { width:100% !important; }
    .hero-banner .check-icon { font-size:1.2rem; }
    .hero-content .right-col .form-area { padding:2rem 1.5rem; }
}

/* ===========================
   FAQ PAGE
   =========================== */

   .faq-content-section {
    padding: 5rem 0;
    background: var(--white);
}

/* Search Box */
.faq-search-box {
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
}

.faq-search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-dark);
    font-size: 1.25rem;
}

.faq-search-box input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 4rem;
    font-size: 1.1rem;
    border: 2px solid var(--gray-light);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.faq-search-box input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Layout */
.faq-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Categories Sidebar */
.faq-categories {
    position: sticky;
    top: 120px;
}

.faq-categories h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-category-list li {
    margin-bottom: 0.5rem;
}

.faq-category-link {
    display: block;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-category-link:hover,
.faq-category-link.active {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
    color: var(--white);
    transform: translateX(5px);
}

/* FAQ Main Content */
.faq-main-content {
    max-width: 900px;
}

.faq-category-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.faq-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-red);
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-question i {
    flex-shrink: 0;
    margin-left: 1rem;
    font-size: 1rem;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-answer ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.faq-answer ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 0.9rem;
}

.faq-answer a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer strong {
    font-weight: 700;
    color: var(--charcoal);
}

/* Driving Tips Section */
.faq-tips-section {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3e0 100%);
    padding: 3rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-red);
}

.faq-tips-section .faq-category-title {
    border-bottom-color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-tips-section .faq-category-title i {
    color: var(--primary-red);
}

.faq-tips-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.faq-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
}

.faq-tip-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.faq-tip-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.faq-tip-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin: 0;
}

/* FAQ CTA Section */
.faq-cta-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--gray-light);
    border-radius: 12px;
    text-align: center;
}

.faq-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.faq-cta-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-buttons .btn-primary {
    color: var(--white);
}

.faq-cta-buttons .btn-secondary {
    color: var(--charcoal);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 220px 1fr;
        gap: 3rem;
    }

    .faq-tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .faq-content-section {
        padding: 4rem 0;
    }

    .faq-search-box {
        margin-bottom: 3rem;
    }

    .faq-search-box input {
        font-size: 1rem;
        padding: 1rem 1rem 1rem 3.5rem;
    }

    .faq-search-box i {
        left: 1rem;
        font-size: 1.1rem;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-categories {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }

    .faq-categories h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .faq-category-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .faq-category-link {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        text-align: center;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .faq-answer p,
    .faq-answer ul li {
        font-size: 1rem;
    }

    .faq-tips-section {
        padding: 2rem 1.5rem;
    }

    .faq-tips-grid {
        gap: 1.25rem;
    }

    .faq-tip-card {
        padding: 1.5rem;
    }

    .tip-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .faq-tip-card h4 {
        font-size: 1.15rem;
    }

    .faq-tip-card p {
        font-size: 0.95rem;
    }

    .faq-cta-section {
        padding: 2rem 1.5rem;
    }

    .faq-cta-content h3 {
        font-size: 1.5rem;
    }

    .faq-cta-content p {
        font-size: 1rem;
    }

    .faq-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-cta-buttons .btn {
        width: 100%;
    }
}

/* ========================================
   EXPLORE SOUTHWEST PAGE
   ======================================== */

/* Section Header Centered */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Introduction Section */
.explore-intro-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.explore-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.explore-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.explore-intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.explore-intro-content p:last-child {
    margin-bottom: 0;
}

/* Distance Section */
.explore-distance-section {
    padding: 5rem 0;
    background: var(--white);
}

.distance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.distance-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.distance-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.distance-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.distance-icon i {
    font-size: 2rem;
    color: var(--white);
}

.distance-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.distance-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.distance-miles {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-red);
}

.distance-time {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Destinations Section with Images */
.explore-destinations-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.destination-header {
    margin-bottom: 1rem;
}

.destination-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.destination-distance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.9;
}

.destination-overlay p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.destination-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.dest-tag {
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.destination-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 152, 0, 0.9);
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Travel Rentals Destinations Section */
.destinations-section {
    padding: 5rem 0;
    background: var(--white);
}

.destinations-section .destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.destinations-section .destination-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: auto;
    min-height: auto;
}

.destinations-section .destination-card:hover {
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.destinations-section .destination-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.destinations-section .destination-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.destinations-section .destination-distance,
.destinations-section .destination-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.destinations-section .destination-distance i,
.destinations-section .destination-time i {
    color: var(--red);
    font-size: 1rem;
}

.destinations-section .destination-description {
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0;
}

/* Van Showcase Section */
.explore-vans-showcase-section {
    padding: 5rem 0;
    background: var(--white);
}

.vans-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.van-showcase-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.van-showcase-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.van-showcase-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.van-showcase-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.van-capacity-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.van-capacity-badge i {
    font-size: 1rem;
}

.van-showcase-content {
    padding: 2rem;
}

.van-showcase-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.van-showcase-subtitle {
    font-size: 1rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.van-showcase-content > p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.van-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.van-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.van-features-list i {
    color: var(--primary-red);
    font-size: 0.9rem;
}

.van-destinations {
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.van-destinations strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.van-dest-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.van-showcase-content .btn {
    width: 100%;
    display: inline-block;
    text-decoration: none;
}

.van-showcase-content .btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.van-showcase-content .btn-primary:hover {
    background: #c61a1f;
    color: var(--white);
    text-decoration: none;
}

/* Tips Section */
.explore-tips-section {
    padding: 5rem 0;
    background: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.tip-info-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.tip-info-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tip-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.tip-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tip-info-card > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.tip-examples {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-examples li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.tip-examples li:last-child {
    border-bottom: none;
}

.tip-examples strong {
    color: var(--text-dark);
}

/* Services Section */
.explore-services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-link-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    text-decoration: none;
}

.service-link-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    display: block;
}

.service-link-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-link-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

/* CTA Section */
.explore-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
    color: var(--white);
}

.explore-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.explore-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.explore-cta-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.explore-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.explore-cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-red);
}

.explore-cta-buttons .btn-primary:hover {
    background: var(--charcoal);
    color: var(--white);
}

.explore-cta-buttons .btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.explore-cta-buttons .btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-red);
}

.explore-cta-contact {
    display: flex;
    gap: 3rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.cta-contact-item i {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .distance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vans-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header-center h2 {
        font-size: 2rem;
    }

    .section-header-center p {
        font-size: 1rem;
    }

    .explore-intro-content h2 {
        font-size: 2rem;
    }

    .explore-intro-content p {
        font-size: 1rem;
    }

    /* Distance Grid Mobile */
    .distance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Destinations Mobile */
    .destination-card {
        height: 300px;
    }

    .destination-overlay {
        padding: 1.5rem;
    }

    .destination-header h3 {
        font-size: 1.5rem;
    }

    /* Van Showcase Mobile */
    .van-showcase-image {
        height: 200px;
        padding: 1rem;
    }

    .van-showcase-content {
        padding: 1.5rem;
    }

    .services-links-grid {
        grid-template-columns: 1fr;
    }

    .explore-cta-content h2 {
        font-size: 2rem;
    }

    .explore-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .explore-cta-buttons .btn {
        width: 100%;
    }

    .explore-cta-contact {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ===================================
   ABOUT US PAGE STYLES
   =================================== */

/* About History Section */
.about-history-section {
    padding: 5rem 0;
    background: var(--white);
}

.history-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.history-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.history-image {
    width: 100%;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* About Commitment Section */
.about-commitment-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.commitment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.commitment-content blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
    border-left: 4px solid var(--primary-red);
    padding-left: 2rem;
    margin: 0;
}

.commitment-image {
    width: 100%;
}

.commitment-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* About Difference Section */
.about-difference-section {
    padding: 5rem 0;
    background: var(--white);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.difference-item {
    text-align: center;
    padding: 2rem;
}

.difference-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.difference-icon i {
    font-size: 3rem;
    color: var(--white);
}

.difference-item:hover .difference-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.difference-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.difference-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* About Page Responsive Styles */
@media (max-width: 1024px) {
    .history-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .commitment-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .history-content h2 {
        font-size: 2rem;
    }

    .history-content p {
        font-size: 1rem;
    }

    .commitment-content h2 {
        font-size: 2rem;
    }

    .commitment-content blockquote {
        font-size: 1.125rem;
        padding-left: 1.5rem;
    }

    .difference-item {
        padding: 1.5rem;
    }

    .difference-icon {
        width: 80px;
        height: 80px;
    }

    .difference-icon i {
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===================================
   REVIEWS PAGE STYLES
   =================================== */

   .reviews-widget-section {
    padding: 5rem 0;
    background: var(--white);
}

.reviews-widget-container {
    margin-top: 3rem;
}

.reviews-widget-placeholder {
    background: var(--gray-light);
    border: 2px dashed var(--gray-dark);
    border-radius: 12px;
    padding: 5rem 2rem;
    text-align: center;
}

.reviews-widget-placeholder i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.reviews-widget-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.reviews-widget-placeholder span {
    font-size: 1rem;
    color: var(--text-gray);
}

/* ===================================
   CAREER OPPORTUNITIES PAGE STYLES
   =================================== */

   .careers-section {
    padding: 5rem 0;
    background: var(--white);
}

.careers-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.careers-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.careers-intro .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.careers-intro p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.careers-positions {
    margin-bottom: 5rem;
}

.careers-positions h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.careers-positions > p {
    font-size: 1.125rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.position-card {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.position-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.position-icon i {
    font-size: 2rem;
    color: var(--white);
}

.position-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.position-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.careers-apply {
    max-width: 800px;
    margin: 0 auto;
}

.careers-apply h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.careers-apply > p {
    font-size: 1.125rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.career-form-container {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: 12px;
}

/* ===================================
   LOCATIONS PAGE STYLES
   =================================== */

   .location-details-section {
    padding: 5rem 0;
    background: var(--white);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.location-info-card {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.info-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.info-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.info-content a {
    color: var(--white);
    text-decoration: none;
}

.info-content a:hover {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.hours-table {
    list-style: none;
    padding: 0;
    width: 100%;
    margin-top: 0.5rem;
}

.hours-table tr {
    line-height: 2;
}

.hours-table td {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.hours-table td:first-child {
    padding-right: 1rem;
}

.location-map {
    height: 100%;
    min-height: 600px;
}

.location-info {
    background: var(--primary-red);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.map-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.location-features-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.parking-block { margin-top:60px; }
.parking-block .section-title { text-align:left !important; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

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

   .contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.method-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.method-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.phone-number {
    margin: 0.25rem 0;
}

.phone-number a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    display: block;
}

.phone-number a:hover {
    color: #c61a1f;
}

.address {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0.5rem 0 1rem;
}

.method-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.method-link:hover {
    gap: 0.75rem;
}

.method-link i {
    font-size: 0.875rem;
}

.contact-hours-box {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hours-header i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.hours-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-dark);
}

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

.hours-row .day {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hours-row .time {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.contact-reservation-note {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c61a1f 100%);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    color: var(--white);
}

.note-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.note-content strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.note-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.note-content a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.note-content a:hover {
    text-decoration: none;
}

.contact-form-wrapper {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: 12px;
}

.contact-form-header {
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-form-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.modal-content.contact-form-wrapper {
    padding: 1.5rem;
}
.modal-content.contact-form-wrapper .modal-header * {
    margin-bottom: 0;
}

.modal-content.contact-form-wrapper .modal-header {
    justify-content: space-between;
}

.modal-content.contact-form-wrapper .modal-header button.close {
    background: var(--primary-red);
    border: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 100%;
    font-weight: 600;
    border: 1px solid var(--primary-red);
    transition: all 0.3s ease;
}

.modal-content.contact-form-wrapper .modal-header button.close span {
    margin-top: -6px;
}

.modal-content.contact-form-wrapper .modal-header button.close:hover {
    background: #fff;
    color: var(--primary-red);
}

.modal-content.contact-form-wrapper .gform-body .gfield {
    width: 100%!important;
}

.modal-content.contact-form-wrapper .gform-footer {
    justify-content: center;
}

.directions-section .directions-content.two-cols { display:flex; gap:3rem; }
.directions-section .directions-content.two-cols > div { width:calc(50% - 1.5rem); }
.directions-section .directions-content.two-cols h3 { font-size:1.4rem !important; font-weight:600; }
.directions-section .directions-content.two-cols ol { margin-left:1.1rem; margin-bottom:0.5rem; }

/* ===================================
   CONTACT FORMS STYLES
   =================================== */

   .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--gray-dark);
    border-radius: 6px;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.contact-form button[type="submit"] {
    margin-top: 1rem;
}

/* ===================================
   CONFIRMATION PAGE STYLES
   =================================== */

   .confirmation-section {
    padding: 8rem 0;
    background: var(--white);
}

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

.confirmation-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.confirmation-icon i {
    font-size: 4rem;
    color: var(--white);
}

.confirmation-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.confirmation-message {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.confirmation-details {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.confirmation-details p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.confirmation-details p:last-child {
    margin-bottom: 0;
}

.confirmation-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.confirmation-contact p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: var(--text-gray);
}

.contact-option i {
    color: var(--primary-red);
}

.contact-option a {
    color: var(--primary-red);
    text-decoration: none;
}

.contact-option a:hover {
    text-decoration: underline;
}

/* ===================================
   RESPONSIVE STYLES FOR NEW PAGES
   =================================== */

   @media (max-width: 1024px) {
    .positions-grid {
        grid-template-columns: 1fr;
    }

    .location-layout {
        grid-template-columns: 1fr 1fr;
    }

    .location-map {
        min-height: 400px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 991px){
    .location-layout {
        grid-template-columns: 1fr;
    }
    .directions-section .directions-content.two-cols { flex-direction:column; }
.directions-section .directions-content.two-cols > div { width:100%; }
}

@media (max-width: 768px) {
    .careers-intro h2 {
        font-size: 2rem;
    }

    .careers-positions h3,
    .careers-apply h3 {
        font-size: 1.75rem;
    }

    .career-form-container {
        padding: 2rem;
    }

    .location-info h2 {
        font-size: 2rem;
    }

    .info-item {
        flex-direction: column;
    }

    .info-icon {
        margin: 0 auto;
    }

    .info-content {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-method-card {
        flex-direction: column;
        text-align: center;
    }

    .method-icon {
        margin: 0 auto;
    }

    .phone-number a {
        font-size: 1.25rem;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .contact-reservation-note {
        flex-direction: column;
        text-align: center;
    }

    .note-icon {
        margin: 0 auto;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .confirmation-content h1 {
        font-size: 2.25rem;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .confirmation-actions .btn {
        width: 100%;
    }
}

/* ===================================
   AREA SERVE PAGES STYLES
   =================================== */

/* Area Introduction Section */
.area-intro-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.area-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.area-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.area-intro-content .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.area-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.area-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.area-feature i {
    font-size: 1.25rem;
    color: var(--primary-red);
}

.area-feature span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Area Uses Section */
.area-uses-section {
    padding: 5rem 0;
    background: var(--white);
}

.area-uses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.area-use-card {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.area-use-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.use-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.use-icon i {
    font-size: 2rem;
    color: var(--white);
}

.area-use-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.area-use-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Area Fleet Section */
.area-fleet-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.area-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.area-fleet-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

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

.fleet-card-image {
    background: var(--gray-light);
    padding: 3rem 2rem;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.area-fleet-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--text-dark);
}

.area-fleet-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    padding: 0 1.5rem 1.5rem;
}

.area-fleet-card .btn {
    margin: 0 1.5rem 2rem;
}

/* Area Directions Section */
.area-directions-section {
    padding: 5rem 0;
    background: var(--white);
}

.directions-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.directions-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.directions-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.directions-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.direction-step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.directions-info {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.directions-info i {
    font-size: 1.5rem;
    color: var(--primary-red);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.directions-info p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.directions-map {
    height: 100%;
    min-height: 600px;
}

.directions-map .map-container {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Area Serve Responsive Styles */
@media (max-width: 1024px) {
    .area-uses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-fleet-grid {
        grid-template-columns: 1fr;
    }

    .directions-layout {
        grid-template-columns: 1fr;
    }

    .directions-map {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .area-intro-content h2 {
        font-size: 2rem;
    }

    .area-intro-content .lead {
        font-size: 1.125rem;
    }

    .area-features {
        flex-direction: column;
        align-items: stretch;
    }

    .area-feature {
        justify-content: center;
    }

    .area-uses-grid {
        grid-template-columns: 1fr;
    }

    .directions-content h2 {
        font-size: 2rem;
    }

    .direction-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-content {
        text-align: center;
    }
}

/* ===========================
   BLOG STYLES
   =========================== */

/* Blog Hero */
.blog-hero,
.post-hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 4rem 0;
    text-align: center;
}

.blog-hero h1,
.post-hero h1 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.blog-hero p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.post-category-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta i {
    color: var(--red);
}

/* Blog Layout */
.blog-wrapper,
.post-wrapper {
    padding: 4rem 0;
    background: #fafafa;
}

.blog-layout,
.post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    gap: 2rem;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.blog-card-meta i {
    color: var(--red);
    margin-right: 0.25rem;
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--red);
}

.blog-card-excerpt {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-link {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.blog-card-link:hover {
    gap: 0.75rem;
}

/* Pagination */
.blog-pagination {
    margin-top: 3rem;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid var(--gray-light);
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.blog-pagination .page-numbers:hover {
    border-color: var(--red);
    color: var(--red);
}

.blog-pagination .current {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

/* Sidebar */
.blog-sidebar,
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--red);
}

/* Search Widget */
.search-wrapper {
    display: flex;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    overflow: hidden;
}

.search-field {
    flex: 1;
    padding: 0.75rem;
    border: none;
    font-size: 0.95rem;
}

.search-submit {
    background: var(--red);
    color: white;
    border: none;
    padding: 0 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.search-submit:hover {
    background: var(--red-dark);
}

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.recent-post-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.recent-post-title a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s;
}

.recent-post-title a:hover {
    color: var(--red);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--gray-dark);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s;
}

.category-item a:hover {
    color: var(--red);
}

.category-count {
    background: var(--gray-light);
    color: var(--gray-dark);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* CTA Widget */
.widget-cta-content {
    text-align: center;
}

.widget-cta-content h3 {
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.widget-cta-content p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.cta-divider {
    text-align: center;
    color: var(--gray-dark);
    margin: 1rem 0;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

/* Social Widget */
.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    color: var(--charcoal);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--red);
    color: white;
    transform: translateY(-3px);
}

/* Single Post Styles */
.post-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.post-featured-image {
    margin: -2rem -2rem 2rem;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.post-body h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: var(--charcoal);
}

.post-body h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--charcoal);
}

.post-body p {
    margin-bottom: 1.25rem;
}

.post-body ul,
.post-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body blockquote {
    background: var(--gray-light);
    border-left: 4px solid var(--red);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Post Tags */
.post-tags {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
    color: var(--gray-dark);
}

.post-tags i {
    color: var(--red);
    margin-right: 0.5rem;
}

.post-tags a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.post-tags a:hover {
    color: var(--red);
}

/* Post Share */
.post-share {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 8px;
}

.post-share h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
}

.share-button:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-linkedin {
    background: #0077b5;
}

.share-email {
    background: var(--gray-dark);
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.nav-previous,
.nav-next {
    display: flex;
    flex-direction: column;
}

.nav-next {
    text-align: right;
    align-items: flex-end;
}

.nav-label {
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.post-navigation a {
    font-size: 1.1rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s;
}

.post-navigation a:hover {
    color: var(--red);
}

/* Related Posts */
.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.related-posts h2 {
    font-size: 1.75rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-post-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.related-post-card:hover {
    transform: translateY(-3px);
}

.related-post-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 1rem;
}

.related-post-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-post-content a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s;
}

.related-post-content a:hover {
    color: var(--red);
}

.related-post-date {
    font-size: 0.875rem;
    color: var(--gray-dark);
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.no-posts h2 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.no-posts p {
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

/* Comments Section */
.post-comments {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--gray-light);
}

/* Comments Title */
.comments-title {
    font-size: 1.75rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.comment {
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author .avatar {
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 700;
    color: var(--charcoal);
    font-size: 1.1rem;
}

.comment-metadata {
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.comment-metadata a {
    color: var(--gray-dark);
    text-decoration: none;
}

.comment-content {
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-content p {
    margin-bottom: 1rem;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.reply {
    display: inline-block;
}

.reply a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.reply a:hover {
    text-decoration: underline;
}

/* Nested Comments */
.children {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 2rem;
}

.children .comment {
    background: var(--gray-light);
}

/* Comment Reply Form */
.comment-respond {
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.comment-reply-title {
    font-size: 1.75rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.comment-reply-title small {
    float: right;
    font-size: 0.875rem;
    font-weight: normal;
}

.comment-reply-title small a {
    color: var(--gray-dark);
    text-decoration: none;
}

.comment-reply-title small a:hover {
    color: var(--red);
}

/* Comment Form */
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-notes {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 6px;
    background: white;
    color: var(--charcoal);
    transition: all 0.3s ease;
    font-family: inherit;
}

.comment-form-comment textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.comment-form-cookies-consent label {
    font-size: 0.95rem;
    color: var(--gray-dark);
    cursor: pointer;
}

.form-submit {
    margin-top: 1rem;
}

.form-submit .submit,
.form-submit input[type="submit"],
#submit {
    background: #E31E24 !important;
    color: white !important;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-submit .submit:hover,
.form-submit input[type="submit"]:hover,
#submit:hover {
    background: #b91c1c !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

/* Logged in as */
.logged-in-as {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.logged-in-as a {
    color: var(--red);
    text-decoration: none;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

/* Required field indicator */
.required {
    color: var(--red);
}

/* No comments message */
.no-comments {
    text-align: center;
    padding: 2rem;
    color: var(--gray-dark);
    font-style: italic;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-layout,
    .post-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar,
    .post-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .widget-cta,
    .widget-social {
        grid-column: span 2;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-hero h1,
    .post-hero h1 {
        font-size: 2rem;
    }

    .post-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .blog-sidebar,
    .post-sidebar {
        grid-template-columns: 1fr;
    }

    .post-navigation {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-next {
        text-align: left;
        align-items: flex-start;
    }

    .share-buttons {
        justify-content: center;
    }

    /* Comments Responsive */
    .comment-respond {
        padding: 1.5rem;
    }

    .comment-reply-title {
        font-size: 1.5rem;
    }

    .children {
        margin-left: 1rem;
    }

    .comment {
        padding: 1rem;
    }
}

/* ===========================
   GRAVITY FORMS STYLES
   =========================== */

/* Form Title and Description */
.gform_wrapper .gform_title {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.gform_wrapper .gform_description {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Form Layout */
.gform_wrapper {
    margin: 0;
}

.gform_wrapper .gform_body {
    margin: 0;
}

.gform_wrapper ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.gform_wrapper li {
    margin-bottom: 0.75rem !important;
    padding: 0 !important;
}

/* Two Column Layout */
.gform_wrapper .gfield--width-half {
    width: 48% !important;
    display: inline-block !important;
    vertical-align: top;
    margin-right: 4%;
}

.gform_wrapper .gfield--width-half:nth-child(even) {
    margin-right: 0;
}

/* Labels */
.gform_wrapper .gfield_label {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.gform_wrapper .gfield_required {
    color: #E31E24;
    font-weight: normal;
    margin-left: 0.25rem;
}

/* Input Fields */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper select,
.gform_wrapper textarea {
    width: 100% !important;
    padding: 0.875rem 1rem !important;
    font-size: 1rem !important;
    border: 2px solid #F5F5F5 !important;
    border-radius: 6px !important;
    background: white !important;
    color: #333333 !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
}

.gform_wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

/* Focus States */
.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
    outline: none !important;
    border-color: #E31E24 !important;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1) !important;
}

/* Submit Button */
.gform_wrapper .gform_footer {
    padding: 0.5rem 0 0 !important;
    margin: 1rem 0 0 !important;
    text-align: left;
}

.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
    background: #E31E24 !important;
    color: white !important;
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    min-width: 150px;
}

.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover {
    background: #b91c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3) !important;
}

/* Validation Messages */
.gform_wrapper .validation_message,
.gform_wrapper .gfield_description.validation_message {
    background: #fee;
    border: 1px solid #fcc;
    color: #c00;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.gform_wrapper .validation_error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c00;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
}

.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea {
    border-color: #c00 !important;
}

/* Confirmation Message */
.gform_confirmation_message {
    background: #e8f5e9;
    border: 2px solid #4caf50;
    color: #2e7d32;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.125rem;
    margin: 2rem 0;
}

/* File Upload Field */
.gform_wrapper .ginput_container_fileupload input[type="file"] {
    padding: 0.5rem !important;
    border: 2px dashed var(--gray-light) !important;
    background: #fafafa !important;
}

/* Radio and Checkboxes */
.gform_wrapper .gfield_radio li,
.gform_wrapper .gfield_checkbox li {
    margin-bottom: 0.5rem !important;
}

.gform_wrapper .gfield_radio li label,
.gform_wrapper .gfield_checkbox li label {
    font-weight: normal;
    margin-left: 0.5rem;
    cursor: pointer;
}

.gform_wrapper input[type="radio"],
.gform_wrapper input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

/* Hidden Labels (for accessibility) */
.gform_wrapper .gfield_visibility_hidden {
    position: absolute !important;
    left: -9999px !important;
}

/* Section Breaks */
.gform_wrapper .gsection {
    border-bottom: 2px solid var(--gray-light);
    margin: 2rem 0 !important;
    padding-bottom: 1rem;
}

.gform_wrapper .gsection_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

/* Responsive Gravity Forms */
@media (max-width: 768px) {
    .gform_wrapper .gfield--width-half {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .gform_wrapper .gform_footer {
        text-align: center;
    }

    .gform_wrapper .gform_button,
    .gform_wrapper input[type="submit"] {
        width: 100% !important;
    }
}

/* ===========================
   WYSIWYG CONTENT STYLES
   =========================== */

   .wysiwyg-content {
    color: var(--gray-dark);
    line-height: 1.8;
}

.wysiwyg-content h1,
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4 {
    color: var(--charcoal);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.wysiwyg-content h1 {
    font-size: 2.5rem;
}

.wysiwyg-content h2 {
    font-size: 2rem;
}

.wysiwyg-content h3 {
    font-size: 1.5rem;
    color: var(--red);
}

.wysiwyg-content h4 {
    font-size: 1.25rem;
}

.wysiwyg-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.wysiwyg-content p:last-child { margin-bottom:0; }

.wysiwyg-content ul,
.wysiwyg-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.wysiwyg-content ul li,
.wysiwyg-content ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.wysiwyg-content ul {
    list-style-type: disc;
}

.wysiwyg-content ol {
    list-style-type: decimal;
}

.wysiwyg-content strong {
    font-weight: 700;
    color: var(--charcoal);
}

.wysiwyg-content a {
    color: var(--red);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.wysiwyg-content a:hover {
    color: var(--red-dark);
}

.wysiwyg-content blockquote {
    border-left: 4px solid var(--red);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-dark);
}

.wysiwyg-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
}

.wysiwyg-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.wysiwyg-content table th,
.wysiwyg-content table td {
    padding: 0.75rem;
    border: 1px solid var(--gray-light);
    text-align: left;
}

.wysiwyg-content table th {
    background: var(--gray-light);
    font-weight: 700;
    color: var(--charcoal);
}

/* Content Section Wrapper */
.content-section {
    padding: 5rem 0;
}

/* Accessibility page */
.accessibility-class {
    padding: 40px 0;    
}
.accessibility-class iframe{
    border: 1px solid var(--primary-red);
    border-radius: 8px;
}

.content-section .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive WYSIWYG */
@media (max-width: 768px) {
    .wysiwyg-content h1 {
        font-size: 2rem;
    }

    .wysiwyg-content h2 {
        font-size: 1.75rem;
    }

    .wysiwyg-content h3 {
        font-size: 1.375rem;
    }

    .wysiwyg-content h4 {
        font-size: 1.125rem;
    }

    .wysiwyg-content p,
    .wysiwyg-content ul li,
    .wysiwyg-content ol li {
        font-size: 1rem;
    }

    .wysiwyg-content ul,
    .wysiwyg-content ol {
        padding-left: 1.5rem;
    }

    /* Travel Destinations - Mobile */
    .destinations-section .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .destinations-section .destination-card {
        padding: 1.5rem;
    }

    .destinations-section .destination-name {
        font-size: 1.5rem;
    }

    .destinations-section .destination-meta {
        gap: 1rem;
    }
}

@media(max-width: 375px){
    header .mobile-cta { flex-direction:column; }
    header .mobile-cta .btn { width:100%; max-width:220px; margin:auto; }
}

.hero-content .right-col .form-area .form-group{
    margin-bottom: 15px;
}
.hero-content .right-col .form-area .form-group label{
    color: var(--charcoal) !important;
}
.hero-content .right-col .form-area .datepicker table{
    padding: 0.5rem;
    margin: -5px 0 0;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.not-found .page-title{
    text-align: center;
    text-transform: uppercase;
}
.not-found .row {
    display: flex;
    flex-wrap: wrap;
}
.not-found .row  .col-sm-7 {
    flex: 60% 0 0;
}
.not-found .row  .col-sm-5 {
    flex: 40% 0 0;
}
.not-found .row .nav-menu ul {
    list-style-type: none;
    padding-left: 0;
}
.not-found .row .nav-menu {
    display: list-item;
    list-style-type: decimal;
    margin-left: 1rem;
}
.not-found .row .nav-menu a{
    padding: 0.5rem 1.5rem;
}
.not-found .row input.search-field{
    padding: 0.875rem 1rem !important;
    font-size: 1rem !important;
    border: 2px solid #F5F5F5 !important;
    border-radius: 6px !important;
    background: white !important;
    color: #333333 !important;
    transition: all 0.3s 
ease !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
}
.not-found .row input.search-submit {
    display: inline-block;
    position: absolute;
    margin-top: 1px !important;
    background: #E31E24 !important;
    color: white !important;
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    min-width: 150px;
    margin-left: 0.5rem;
}
.not-found .row input.search-submit:hover {
    background: #b91c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3) !important;
}
.not-found .row .nav-menu:marker{
display: none;
}
    
@media(max-width: 767px){
    .not-found .row {
    flex-direction: column;
    gap: 20px;
}
.not-found .row  .col-sm-7,
.not-found .row  .col-sm-5{
    flex: 100% 0 0;
}
}

@media (max-width: 1440px){
.home .hero-banner{
    min-height: 750px !important;
}
}
/*--Sand Filter-Css--*/
.van-types-grid .filter-box form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
}
.van-types-grid .filter-box{
    justify-content: flex-start;
}

.van-types-grid .filter-box form select {
    padding: 14px 10px;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    display: inline-block !important;
    margin-right: 7px;
}
.van-types-grid .filter-box .btn-all{
    gap: 12px;
}
/*--Mobile-Responsive--*/
@media (max-width: 767px) {
.van-types-grid .filter-box form {
        width: 100%;
    }

.van-types-grid .filter-box form select {
        width: 100%;
        margin: 0 0 10px 0
}
.van-types-grid .filter-box .btn-all{
    flex-wrap: wrap;
}
}
/*--Sand Listing-Css--*/
.sand-list-box {
    background: white;
    color: black;
    padding: 15px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    margin-top: 20px;
}
.sand-list-box .sand-list-title {
    border-bottom: 1px solid #333;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.sand-list-box .sand-list-details {
    min-height: 75px;
    margin: 0px !important;
}
.sand-list-box .sand-list-photo {
    text-align: center;
    margin-bottom: 5px;
}
.sand-list-box .btn-group-justified {
    display: flex;
    width: 100%;
    border-collapse: separate;
    gap: 8px;
}
/*--Mobile-Responsive--*/

@media (max-width: 991px) {
.sand-list-box .sand-list-photo img{
    width: 100%;
}
}

/*--Sand Details-Css--*/
.sand-details-tabs-row {
    margin-top: 30px;
    overflow: hidden !important;
    margin-bottom: 60px;
}

 p.v_price_class {
    font-size: 24px;
    font-weight: 500;
}
.button .back-button {
    background-color: #a7a7a7;
    color: #fff;
    padding: 5px 5px 6px 5px;
} 
.sand-details-buttons .btn-outline-primary {
    margin-top: 5px;
}

.sand-details-tabs .nav-tabs {
    border-bottom: 0;
    background: #333;
}

.sand-details-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
}
.sand-details-tabs .nav-tabs .nav-item a.active {
    background-color: var(--primary-red) !important;
    border: 0;
    color: white !important;
    font-weight: bold;
    margin: 0;
}
.sand-details-tabs .nav-tabs .nav-item a {
    text-decoration: none !important;
    border: 0;
    background: #ececec !important;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 8px;
    padding-bottom: 8px;
    text-transform: uppercase;
    margin-right: 2px;
    color: #333 !important;
    font-weight: normal;
    font-family: inherit;
}

.sand-details-tabs .tab-content {
    padding: 1rem;
    padding-top: 2rem;
}
.sand-details-tabs .sand-details-thumb {
    padding: 0px 0;
    margin-bottom: 20px !important;
    display: inline-block;
}

.sand-details-side {
    background: #ececec;
    margin-left: 0;
    padding: 0;
    color: #fff;
    height:100%;
}

.sand-details-side h5 {
    background: var(--primary-red);
    padding: 15px;
    color: #fff;
}
.sand-details-side .sand-details-features {
    color: #333;
    padding: 15px;
}

/*--Mobile-Responsive--*/

@media (max-width: 1024px) {
.single-sales-inventory .container {
    max-width: 100%;
}
    .sand-details-tabs .sand-details-thumb{
        display:block;
    }
    .sand-details-tabs .sand-details-thumb .img-fluid{
        width:100%;
    }
}

/* --Top-Rent-Landing-css--*/
/*** Homepage ***/
/*** Homepage ***/
.page-template-new-landing-page .hero-banner ,
 .page-template-landing-page-template .hero-banner {
    background: url(/wp-content/uploads/2025/11/a1vanrentalaz.jpg) center center / cover no-repeat !important;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 0;
}
.page-template-new-landing-page .hero-banner::before,
 .page-template-landing-page-template .hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.8) 60%, rgba(26, 26, 26, .95) 100%) !important;
}
.page-template-new-landing-page .hero-content ,
.page-template-landing-page-template .hero-content {max-width: 1400px !important; align-items: center !important;}
.page-template-new-landing-page .hero-content p a {
    color: #fff;
}
.page-template-new-landing-page .hero-headline,
.page-template-landing-page-template .hero-headline {font-size: clamp(2.5rem, 5vw, 3.8rem) !important;}

.page-template-new-landing-page .tsd-form-holder ,
.page-template-landing-page-template .tsd-form-holder {background: transparent !important;}

.page-template-new-landing-page .hero-content .form-area .tsd-banner-form .tsd-form-holder, 
.page-template-landing-page-template .hero-content .form-area .tsd-banner-form .tsd-form-holder {
    background: transparent;
}
.page-template-new-landing-page .features-grid,
 .page-template-landing-page-template .features-grid{
	counter-reset: feature-counter;
}
.page-template-new-landing-page .features-grid .feature-item .feature-number-icons,
 .page-template-landing-page-template .features-grid .feature-item .feature-number-icons{
	counter-increment: feature-counter;
}
.page-template-new-landing-page .features-grid .feature-item .feature-number-icons::before,
 .page-template-landing-page-template .features-grid .feature-item .feature-number-icons::before{
	content: counter(feature-counter);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--primary-red);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 15px;

}

/*--Mobile-Responsive--*/
@media (max-width: 1440px){
.page-template-new-landing-page .hero-banner,
.page-template-landing-page-template .hero-banner{
    min-height: 750px !important;
}
}
@media (min-width: 767px) {
	.page-template-new-landing-page .hero-content .left-col ,
	 .page-template-landing-page-template .hero-content .left-col {width: calc(60% - 1rem) !important;}

	 .page-template-new-landing-page .hero-content .right-col,
	 .page-template-landing-page-template .hero-content .right-col {width: calc(40% - 1rem) !important;}

	  .page-template-new-landing-page .hero-content .left-col,
	 .page-template-landing-page-template .hero-content .left-col {padding-right: 30px;}
}
@media(max-width: 768px){
	 .page-template-new-landing-page .site-header .header-right .btn,
    .page-template-landing-page-template .site-header .header-right .btn {
    display: block;
    padding: 0.75rem 1.1rem;
    font-size: 0.9rem;
}
.page-template-new-landing-page .site-header  .mobile-menu-toggle,
.page-template-landing-page-template .site-header  .mobile-menu-toggle {
    display: none;
}
.page-template-new-landing-page  .site-header .site-logo img,
.page-template-landing-page-template .site-header .site-logo img {
    height: 35px;
}
.page-template-new-landing-page .site-header  .container,
.page-template-landing-page-template .site-header  .container {
    padding: 0 1.3rem;
} 
}


/* --Blog-Lisitng-Css-- */
  .blog-listing {
      padding: 80px 24px;
      max-width: 1248px;
      margin-left: auto;
      margin-right: auto
  }

  .blog-listing .archive-filter-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px
  }

  .archive-category-form select {
      width: 100%;
      height: calc(1.5em + .75rem + 2px);
      padding: .375rem 1.75rem .375rem .75rem;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      color: #495057;
      vertical-align: middle;
      background-color: #fff;
      border: 1px solid #ced4da;
      border-radius: .25rem;
      outline: 0
  }

  .blog-listing .posts-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px
  }

  .blog-listing .post-meta * {
      display: inline-block !important;
  }

  .blog-listing .post-meta {
      margin-top: 0;
      display: inline-block;
      margin-bottom: 0.8rem;
  }

  .blog-listing .posts-grid article.blog-post .entry-title {
      font-size: 22px;
      font-weight: 600;
      line-height: 1.3
  }

  .blog-listing .posts-grid article.blog-post .post-content .entry-content {
      height: 100%;
      display: flex;
      flex-direction: column
  }

  .blog-listing .posts-grid article.blog-post .post-content {
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: none;
      padding: 0;
  }

  .blog-listing .posts-grid article.blog-post .read-more-link {
      padding-top: 16px;
      border-top: 1px solid rgba(47, 62, 76, .08);
      display: block;
      margin-top: auto;
  }

  .blog-listing .posts-grid article.blog-post {
      background: #fff;
      border-radius: 16px;
      overflow: visible;
      position: relative;
      box-shadow: 0 4px 6px rgba(47, 62, 76, .05), 0 10px 30px rgba(47, 62, 76, .08);
      border: 1px solid rgba(47, 62, 76, .08);
      padding: 32px;
  }

 .search-widget .search-form .search-form-group {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

 .search-widget .search-form .search-field {
    border: 1px solid #ced4da;
    outline:none;
    width: 100%;

}

 .search-widget .search-form  .search-submit {
    padding: .75rem;
    background: var(--primary-red);
}

 .search-widget .search-form .search-submit:hover {
    background: #c61a1f;
}
  .blogs-details-class .entry-content h2,
  .blogs-details-class .post-title {
      font-size: 2rem
  }

.blog-listing .navigation .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.blog-listing .navigation .nav-links .page-numbers {
    padding: 5px;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ced4da;
    flex-wrap: wrap;
}

.blog-listing .navigation .nav-links .page-numbers.current {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

  .single-post #main-content .blogs-details-class {
      padding: 80px 24px;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 40px
  }

  .single-post #main-content .post-hero .post-meta {
      margin-bottom: 20px
  }

  .single-post-sidebar {
      padding: 0
  }

  .sidebar-section {
      padding: 0;
      box-shadow: none
  }

  .sidebar-section .recent-posts-widget {
      margin-bottom: 30px
  }

  .sidebar-section .recent-posts-widget h3 {
      font-size: 18px
  }

  .sidebar-section .recent-posts-widget ul>li {
      margin-bottom: 10px
  }

  .single-post-sidebar .sidebar-section .search-widget {
      margin-bottom: 20px
  }

  .single-post-sidebar {
      width: 30%;
      padding-left: 20px
  }


  .single-post #main-content .blogs-details-class .post-hero {
      background: transparent;
      padding: 0;
      text-align: inherit;
  }

  .single-post #main-content .post-hero .post-meta *,
  .single-post #main-content .blogs-details-class .post-hero .post-meta {
      display: inline-block;
  }

  @media (max-width: 768px) {
      .blog-listing {
          padding: 60px 0;
      }

      .blog-listing .posts-grid article.blog-post {
          padding: 20px;
      }

      .blog-listing .posts-grid {
          grid-template-columns: repeat(1, 1fr);
          gap: 20px
      }

      .blog-listing .archive-filter-bar {
          flex-direction: column
      }

      .blog-listing .archive-filter-bar .archive-category-form,
      .blog-listing .archive-filter-bar .search-widget {
          width: 100%
      }
        .single-post #main-content .blogs-details-class {
          padding-top: 60px;
          padding-bottom: 60px
      }

      .blogs-details-class {
          flex-wrap: wrap;
          gap: 30px !important
      }

      .blogs-details-class .single-post-sidebar {
          width: 100%;
          padding: 0 15px
      }

      .sidebar-section .recent-posts-widget ul {
          padding-left: 15px
      }

      .blogs-details-class .entry-content h2,
      .blogs-details-class .post-title {
          font-size: 1.5rem
      }
  }


/* Hide section subtitle on top-rated-cargo-van-rentals page */
.page-top-rated-cargo-van-rentals .section-subtitle {
    display: none;
}

/* Hide section subtitle on top-rated-minivan-rentals page */
.page-top-rated-minivan-rentals .section-subtitle {
    display: none;
}



/* Hide section subtitle on top-rated-minivan-rentals page */
body.page-id-4523 .related-options-subtitle .section-subtitle {
    display: none;
}

/* Hide section subtitle on top-rated-minivan-rentals page */
body.page-id-4470 .section-subtitle {
    display: none;
}
.layout-description-single {
    text-align: center; /* Optional: center text inside */
}