@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../webfonts/fa-regular-400.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../webfonts/fa-brands-400.woff2") format("woff2");
}

:root {
    --primary-color: #ff8c00;
    --primary-gradient: linear-gradient(135deg, #ff8c00 0%, #ff5500 100%);
    --primary-hover: #e07b00;
    --dark-color: #0b132b;
    --dark-lighter: #1c2541;
    --dark-gray: #374151;
    --light-bg: #f8fafc;
    --light-border: #f1f5f9;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --text-primary: #0f172a;
    --text-muted: #64748b;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 20px 40px rgba(15, 23, 42, 0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Global Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);

    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

button,
input,
select {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 50px 0;
}

.section-bg {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-header span {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 152, 0, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.6);
}

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

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

.btn-outline {
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Header & Navbar */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-bottom: none;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.logo {
    display: flex;
    align-items: center;
    min-width: 150px;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo>img {
    max-width: 185px;
    height: auto;
    transition: var(--transition);
}

.header.scrolled .logo>img {
    max-width: 170px;
    color: var(--primary-color);
}

.logo-icon {
    color: var(--primary-color);
    font-size: 1.6rem;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-call-nav {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    padding: 8px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.3);
    text-decoration: none;
    transition: var(--transition);
}

.btn-call-nav:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
    color: var(--white);
}

.btn-call-nav i {
    font-size: 1.25rem;
}

.btn-call-nav-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-call-nav-text span {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-call-nav-text strong {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-login {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 10px 20px;
}

.btn-login:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(rgba(11, 19, 43, 0.75), rgba(11, 19, 43, 0.85)), var(--hero-bg) no-repeat center center/cover;
    overflow: hidden;
    color: var(--white);
}

.hero .hero-tag {
    background-color: var(--primary-color) !important;
    color: #0b132b !important;
    font-weight: 700;
    border-radius: 4px;
    padding: 6px 14px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.25rem;
    margin: 15px auto 20px auto;
    font-weight: 800;
    line-height: 1.25;
    max-width: 900px;
    font-family: var(--font-heading);
}

.hero p {
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.hero::before {
    display: none;
}

.hero-stripes {
    display: none;
}

.hero-stripe {
    display: none;
}

.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

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

.hero-counters-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    flex-wrap: wrap;
}

.hero-counter-item {
    text-align: center;
    color: var(--white);
}

.hero-counter-item h3,
.hero-counter-item .counter-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffb703;
    /* golden yellow */
    line-height: 1.1;
    font-family: var(--font-heading);
}

.hero-counter-item p {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 5px 0 0 0 !important;
}

.hero-counter-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 152, 0, 0.1);
    color: #e65100;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container img {
    width: 105%;
    max-width: 650px;
    mix-blend-mode: multiply;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Search Box Container (Overlapping Hero) */
.search-widget-container {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.search-widget {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 24px 30px;
    border: 1px solid var(--border-color);
    border-top: 5px solid var(--primary-color);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    color: var(--text-primary);
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.input-icon-wrapper select,
.input-icon-wrapper input {
    width: 100%;
    padding: 12px 14px 12px 38px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-primary);
    background-color: var(--light-bg);
    cursor: pointer;
    transition: var(--transition);
}

.input-icon-wrapper select:focus,
.input-icon-wrapper input:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.btn-search {
    height: 46px;
    padding: 0 32px;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--light-border);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(255, 152, 0, 0.2);
}

.step-icon-wrapper {
    width: 76px;
    height: 76px;
    background-color: rgba(255, 152, 0, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: var(--transition);
}

.step-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.step-card:hover .step-icon-wrapper {
    background-color: var(--primary-color);
}

.step-card:hover .step-icon-wrapper i {
    color: var(--white);
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(15, 23, 42, 0.05);
    transition: var(--transition);
}

.step-card:hover .step-number {
    color: rgba(255, 152, 0, 0.15);
}

/* Explore Popular Cars / Car Listing */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    background-color: var(--light-bg);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.tab-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-btn.active {
    background-color: var(--dark-color);
    color: var(--white);
    border-color: var(--dark-color);
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.car-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--light-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.car-image {
    position: relative;
    background-color: #f8fafc;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.car-image img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.car-card:hover .car-image img {
    transform: scale(1.06);
}

.car-tag {
    position: absolute;
    top: 16px;
    z-index: 3;
    left: 16px;
    background-color: var(--dark-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.car-heart {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.car-heart:hover {
    color: #ef4444;
}

.car-content {
    padding: 24px;
}

.car-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.car-rating span {
    color: var(--text-muted);
}

.car-content h3 {
    font-size: 1.3rem;
    margin-bottom: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-border);
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.spec-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.car-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.car-price {
    font-family: var(--font-heading);
}

.car-price span {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
}

.car-price small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.btn-book {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    background-color: var(--dark-color);
    color: var(--white);
    font-weight: 600;
}

.btn-book:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Popular Car Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--light-border);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-color);
}

.category-icon {
    width: 60px;
    height: 40px;
    margin: 0 auto 16px auto;
    opacity: 0.8;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    opacity: 1;
    transform: scale(1.1);
}

.category-card h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Facts Section (Dark Background Counter with Parallax Car Image) */
.facts-section {
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.9) 0%, rgba(28, 37, 65, 0.9) 100%), url('../images/facts_bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.facts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 152, 0, 0.08) 0%, transparent 40%);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.fact-card {
    background-color: var(--dark-lighter);
    border-radius: var(--radius-md);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.fact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 152, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.fact-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 152, 0, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.fact-card:hover .fact-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
}

.fact-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.fact-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Why Choose Us Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    border: 1px solid var(--light-border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(255, 152, 0, 0.2);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 152, 0, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(5deg);
}

.benefit-header h3 {
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials Section (Swiper Grid) */
.testimonials-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0px 0 40px 0;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    padding: 10px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--light-border);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Goa Features 3-Column Grid */
.goa-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 15px;
}

.quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 4rem;
    color: rgba(255, 152, 0, 0.08);
}

.testimonial-rating {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid rgba(255, 152, 0, 0.2);
}

.client-details h4,
.client-details h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.client-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    width: 24px;
}

/* FAQ Section (Accordion) */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: var(--white);
    user-select: none;
}

.faq-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-icon-toggle {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 152, 0, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.85rem;
}

.faq-item.active .faq-icon-toggle {
    transform: rotate(180deg);
    background-color: var(--primary-color);
    color: var(--white);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--light-bg);
}

.faq-item.active .faq-body {
    max-height: 1000px;
    transition: max-height 0.5s ease-in-out;
}

.faq-content {
    padding: 20px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
}

/* App Promo Banner */
.app-promo-banner {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-lighter) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-color: rgba(255, 152, 0, 0.15);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.app-promo-content {
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.app-promo-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.app-promo-content p {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 30px;
}

.app-badges {
    display: flex;
    gap: 16px;
}

.app-badge-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.app-badge-btn i {
    font-size: 1.8rem;
}

.app-badge-btn.dark-btn {
    background-color: var(--dark-color);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-badge-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.app-promo-img-container {
    position: absolute;
    bottom: -40px;
    right: 50px;
    width: 40%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.app-promo-img-container img {
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

/* News & Insights (Blog) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--light-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.06);
}

.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content h3,
.blog-content h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h3 a,
.blog-content h2 a {
    color: var(--text-primary);
}

.blog-content h3 a:hover,
.blog-content h2 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.blog-readmore:hover {
    color: var(--primary-color);
}

/* Footer Section */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-about p {
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
}

.newsletter-input-wrapper input {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-input-wrapper button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-input-wrapper button:hover {
    background-color: var(--primary-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .search-form {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid,
    .cars-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .app-promo-banner {
        flex-direction: column;
        padding: 50px 40px;
        gap: 40px;
    }

    .app-promo-content {
        max-width: 100%;
        text-align: center;
    }

    .app-badges {
        justify-content: center;
    }

    .app-promo-img-container {
        position: relative;
        bottom: 0;
        right: 0;
        width: 80%;
        max-width: 450px;
        margin: 0 auto;
    }

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

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 95px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 95px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 20px 50px;
        gap: 20px;
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-actions {
        margin-left: auto;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 120px;
    }

    .hero::before {
        width: 100%;
        clip-path: none;
        opacity: 0.08;
    }

    .hero-stripes {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-tag {
        margin: 0 auto 20px auto;
    }

    .search-widget-container {
        margin-top: -60px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .btn-search {
        width: 100%;
    }

    .steps-grid,
    .cars-grid,
    .blog-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ==========================================
   FASTRENTAL NEW DESIGN & SPEC LAYOUTS
   ========================================== */

/* Indian Fleet Car Card Spec Badges */
.car-min-booking {
    color: #16a34a;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: inline-block;
}

.car-price-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.car-price-rating-row .car-rating {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.car-price-rating-row .car-rating i {
    color: #ffb703;
    font-size: 0.85rem;
}

.car-price-rating-row .car-rating span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 2px;
}

.car-price-inr {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 900;
    color: #0b132b;
}

.car-price-inr span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.spec-circle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 20px;
}

.spec-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1;
}

.spec-circle-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.spec-circle-item:hover .spec-circle-icon {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.spec-circle-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Car Card CTA Grid Buttons */
.car-card-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    margin-top: 15px;
}

.btn-call {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-call:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #3e7a4d;
    color: var(--white);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #31603c;
    transform: translateY(-2px);
}

/* Quick Information About Services (Goa) */
.goa-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.goa-content h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.goa-content p {
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.7;
}

.goa-content a {
    color: #1e3a8a;
    text-decoration: underline;
    font-weight: 600;
}

.goa-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.goa-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 140, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: var(--transition);
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.goa-item:hover {
    transform: translateX(6px);
    background-color: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.2);
}

.goa-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.2);
}

.goa-item:hover .goa-item-icon {
    background-color: var(--dark-color);
    box-shadow: 0 4px 10px rgba(11, 19, 43, 0.2);
}

.goa-item-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

/* Self Drive Cars from Top Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.brand-logo-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--light-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.brand-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-color);
}

.brand-logo-img {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-img svg {
    height: 100%;
    width: auto;
    max-width: 140px;
    fill: var(--text-primary);
    transition: var(--transition);
}

.brand-logo-img img {
    height: 100%;
    max-height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.brand-logo-card:hover .brand-logo-img svg {
    fill: var(--primary-color);
}

.brand-logo-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Details Split Page Grid Layout */
.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.details-main {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--light-border);
    box-shadow: var(--shadow-sm);
}

.details-main-img {
    background-color: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 40px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid var(--light-border);
}

.details-main-img img {
    max-height: 100%;
    object-fit: contain;
}

.details-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 24px;
}

.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--light-border);
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3,
.sidebar-widget h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    display: inline-block;
}

.sidebar-booking-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.sidebar-booking-price span {
    color: var(--primary-color);
}

.sidebar-booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-booking-form input,
.sidebar-booking-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background-color: var(--light-bg);
}

.sidebar-booking-form button {
    width: 100%;
    margin-top: 10px;
}

.car-details-desc h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.car-details-desc p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.feature-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-check-item i {
    color: #16a34a;
}

/* Responsive Overrides for detail views & new layout */
@media (max-width: 1024px) {

    .goa-grid,
    .brands-grid,
    .details-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

/* Hero Section PNG Slideshow Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider .slide {
    position: absolute;
    width: 105%;
    max-width: 650px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.25));
    pointer-events: none;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.section-compact {
    padding: 40px 0 !important;
}

.section-compact .section-header {
    margin-bottom: 25px !important;
}

/* Mobile Bottom Sticky Nav bar styles */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: var(--white);
        box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        justify-content: space-around;
        align-items: center;
        border-top: 1px solid var(--border-color);
    }

    .mobile-bottom-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        font-size: 0.7rem;
        font-weight: 700;
        text-decoration: none;
        gap: 4px;
        flex: 1;
    }

    .mobile-bottom-item i {
        font-size: 1.25rem;
        color: var(--primary-color);
    }

    /* Add padding to body so sticky nav doesn't cover content */
    body {
        padding-bottom: 60px !important;
    }
}

/* Mobile Hero Reverse Layout (Image on Top, Text underneath) */
@media (max-width: 768px) {
    .hero-grid {
        display: flex !important;
        flex-direction: column-reverse !important;
        text-align: center;
        gap: 20px;
    }

    .hero-image-container {
        margin-top: 50px !important;
        margin-bottom: 18px !important;
        height: 250px !important;
    }

    .hero-slider {
        height: 250px !important;
    }

    .hero-slider .slide {
        max-width: 450px !important;
    }
}

/* Mobile CSS Scroll-snap Swiper for Self Drive Cars In Goa */
/* Mobile scroll-snap slider removed. Standard stacked responsive grid layout is used now. */

/* Top filter dropdown styles for cars.php */
.top-filter-bar {
    background-color: var(--white);
    padding: 15px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
    flex-wrap: wrap;
}

.top-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
}

.top-filter-item select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--light-bg);
    cursor: pointer;
    font-weight: 600;
}

/* App Promo Full Width styling overrides */
.app-promo-section {
    position: relative;
    overflow: hidden;
}

.app-promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-color: rgba(255, 152, 0, 0.15);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.app-promo-container-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Custom Swiper navigation buttons / bullets pagination styling */
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* responsive styles for goa features grid */
@media (max-width: 768px) {
    .goa-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .app-promo-container-inner {
        flex-direction: column;
        text-align: center;
    }

    .app-promo-content {
        max-width: 100% !important;
    }
}

/* Footer Locations & Centered Links Hover States */
.footer-locations a:hover,
.footer-bottom-links-centered a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVENESS OVERRIDES (LAPTOP, TABLET & MOBILE)
   ========================================================================== */

/* 1. Global Section Padding for Mobile Only (Exactly 50px top & bottom) */
@media (max-width: 768px) {

    section,
    .section,
    .hero,
    .app-promo-section,
    .facts-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    /* First section immediately under the 80px fixed header needs extra padding */


    /* Spacings below section headers (exactly 25px on mobile) */
    .section-header {
        margin-bottom: 25px !important;
    }


}

/* 2. Tablet Responsiveness (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Search Form 2x2 Grid */
    .search-form {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .btn-search {
        height: 50px !important;
    }

    /* Content Grids */
    .cars-grid,
    .blog-grid,
    .steps-grid,
    .benefits-grid,
    .facts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* 3. Mobile Responsiveness (max-width: 768px) */
@media (max-width: 768px) {

    /* Search Form Stacked */
    .search-form {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .btn-search {
        width: 100% !important;
        height: 48px !important;
    }

    .search-widget-container {
        margin-top: -40px !important;
    }

    /* Hero Title sizes */
    .hero-content h1 {
        font-size: 2.25rem !important;
        line-height: 1.2 !important;
    }

    .hero-content p {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }

    /* Layout Grids (Stacked with nice vertical gap) */
    .cars-grid,
    .blog-grid,
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
        /* Proper vertical gap for stacked car boxes */
    }

    .categories-grid,
    .facts-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }

    /* Image heights */
    .details-grid div[style*="height: 380px"] {
        height: 260px !important;
    }

    .app-promo-img-container {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 20px auto 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    .app-promo-img-container img {
        max-height: 220px !important;
        width: auto !important;
    }

    /* 5 Spec circles in one line on mobile (no wrapping, proper scale & gap) */
    .spec-circle-container {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 4px !important;
        margin: 15px 0 !important;
        padding-bottom: 15px !important;
    }

    .spec-circle-item {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .spec-circle-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.9rem !important;
    }

    .spec-circle-label {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Optimize car card details, spacing and buttons on mobile */
    .car-content {
        padding: 20px 14px !important;
    }

    .car-card-actions {
        grid-template-columns: 1fr 1.15fr !important;
        gap: 6px !important;
        margin-top: 12px !important;
    }

    .btn-call,
    .btn-whatsapp {
        padding: 11px 4px !important;
        font-size: 0.76rem !important;
        gap: 3px !important;
        border-radius: 6px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
    }

    .testimonial-card {
        padding: 18px !important;
    }

    .testimonial-rating {
        margin-bottom: 12px !important;
    }

    .testimonial-text {
        font-size: 15px !important;
    }
}

@media (max-width: 600px) {

    .cars-grid,
    .blog-grid,
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr !important;

    }

    .categories-grid,
    .facts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

/* 4. Small Mobile Screen Tweaks (max-width: 480px) */


@media (max-width: 480px) {
    .app-badges {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .app-badge-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .testimonials-swiper {
        padding: 0px 0 14px 0;
    }

    /* Footer centering & adjustments */
    .footer-locations,
    .footer-disclaimer {
        text-align: center !important;
    }
}

/* ==========================================================================
   POLICY & TERMS PAGES STYLING
   ========================================================================== */
.policy-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.policy-container {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    max-width: 1120px;
    margin: 0 auto;
}

.policy-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 24px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-title i {
    color: var(--primary-color);
}

.policy-content h2 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: var(--font-heading);
    border-left: 4px solid var(--primary-color);
    padding-left: 12px;
}

.policy-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.policy-content li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 16px;
}

.policy-contact-box {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-weight: 600;
}

.policy-contact-box i {
    color: var(--primary-color);
    margin-right: 8px;
}

.policy-contact-box .phone-icon {
    margin-top: 8px;
    display: inline-block;
}

@media (max-width: 768px) {
    .policy-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .policy-container {
        padding: 30px 20px;
    }

    .policy-title {
        font-size: 22px !important;
        margin-bottom: 16px;
        padding-bottom: 8px;
        gap: 8px;
    }

    .policy-content h2 {
        font-size: 1.2rem;
        margin-top: 25px;
    }

    .policy-content p,
    .policy-content li {
        font-size: 16px !important;
    }
}

/* ==========================================================================
   CAR DETAILS PAGE STYLING
   ========================================================================== */
.breadcrumbs-banner {
    position: relative;
    padding: 80px 0;
    color: var(--white);
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.breadcrumbs-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.6) 0%, rgba(28, 37, 65, 0.7) 100%) !important;
    z-index: -1;
}

.breadcrumbs-banner .container {
    position: relative;
    z-index: 2;
}

.breadcrumbs-banner h1 {
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
    color: var(--white) !important;
    font-family: var(--font-heading) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4) !important;
}

.breadcrumbs-banner p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.1rem !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
}

@media (max-width: 768px) {
    .breadcrumbs-banner {
        padding: 50px 0 !important;
    }
}

.car-details-title {
    font-size: 2.25rem;
    font-weight: 850;
    margin-bottom: 24px;
    color: #0b132b;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.car-details-image-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.car-details-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 140, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.car-details-image-card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.car-details-image-card:hover img {
    transform: scale(1.03);
}

.car-details-booking-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.booking-verified-badge {
    background-color: #e6fcf5 !important;
    color: #0ca678 !important;
    border: 1px solid #c3fae8;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.booking-price-container {
    margin-top: 5px;
    margin-bottom: 20px;
}

.booking-price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-price-value {
    font-size: 2.25rem;
    font-weight: 850;
    color: #0b132b;
    font-family: var(--font-heading);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.booking-price-unit {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.booking-trust-list {
    list-style: none;
    padding: 20px 0 0 0 !important;
    margin: 0 0 24px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-color);
}

.booking-trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
}

.booking-trust-list li i {
    font-size: 1.05rem;
}

.booking-actions-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.car-details-booking-card .btn-call,
.car-details-booking-card .btn-whatsapp {
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: var(--shadow-sm) !important;
    width: 100% !important;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    transition: var(--transition);
}

.car-details-booking-card .btn-whatsapp {
    background-color: #25d366 !important;
    color: var(--white) !important;
}

.car-details-booking-card .btn-whatsapp:hover {
    background-color: #128c7e !important;
    transform: translateY(-2px);
}

/* Trust Guarantee Card */
.trust-guarantee-card {
    margin-top: 20px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-guarantee-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0b132b;
    font-weight: 700;
    font-size: 0.92rem;
}

.trust-guarantee-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.trust-guarantee-list {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.85rem;
    color: #475569;
}

.trust-guarantee-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.trust-guarantee-list li i {
    color: #10b981;
    font-size: 0.95rem;
}

/* Specs Grid */
.car-details-specs-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
    padding: 22px 20px !important;
    background-color: var(--white) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.04) !important;
}

.spec-detail-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 12px 15px !important;
    background-color: var(--light-bg) !important;
    border-radius: var(--radius-sm) !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
}

.spec-detail-icon {
    width: 48px !important;
    height: 48px !important;
    background-color: rgba(255, 140, 0, 0.1) !important;
    color: var(--primary-color) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.25rem !important;
    flex-shrink: 0 !important;
}

.spec-detail-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.3 !important;
}

.spec-detail-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.spec-detail-value {
    font-size: 0.98rem;
    color: #0b132b;
    font-weight: 800;
}

.car-details-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.details-faq-accordion {
    max-width: 100% !important;

}

/* Sub-FAQ accordion styling */
.sub-faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 8px;
    background-color: var(--white);
    transition: var(--transition);
}

.sub-faq-item:hover {
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.sub-faq-header {
    padding: 14px 20px;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0b132b;
    transition: var(--transition);
}

.sub-faq-header:hover {
    color: var(--primary-color);
}

.sub-faq-header i {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.sub-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
}

.sub-faq-content {
    padding: 14px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    line-height: 1.6;
}

/* Desktop Grid Area Layout */
@media (min-width: 1025px) {
    .details-grid {
        display: grid !important;
        grid-template-columns: 2.2fr 1.1fr !important;
        gap: 30px !important;
        align-items: start !important;
    }

    .car-details-image-card {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .car-details-booking-card-wrapper {
        grid-column: 2 !important;
        grid-row: 1 / span 3 !important;
        position: sticky !important;
        top: 100px !important;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .car-details-specs-card {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    .details-info-block {
        grid-column: 1 !important;
        grid-row: 3 !important;
    }
}

@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .car-details-specs-card {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 20px !important;
    }
}

@media (max-width: 768px) {
    .car-details-title {
        font-size: 1.65rem !important;
        margin-bottom: 18px;
    }

    .car-details-image-card {
        height: 280px !important;
        padding: 15px !important;
    }

    .car-details-booking-card {
        padding: 20px !important;
    }

    .car-details-features-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 576px) {
    .car-details-specs-card {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 15px !important;
        margin-bottom: 30px !important;
    }

    .spec-detail-item {
        gap: 8px !important;
        padding: 8px !important;
    }

    .spec-detail-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.95rem !important;
    }

    .spec-detail-value {
        font-size: 0.85rem !important;
    }

    .spec-detail-label {
        font-size: 0.62rem !important;
    }
}

/* Search bar styling */
.filter-search-input {
    padding: 8px 12px;
    padding-right: 32px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--light-bg);
    font-weight: 600;
    font-size: 0.9rem;
    width: 200px;
    transition: var(--transition);
}

.filter-search-input:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    outline: none;
}

/* ==========================================================================
   LIGHT GRAY FOOTER STYLING
   ========================================================================== */
.footer {
    background-color: #f8fafc !important;
    color: #334155 !important;
    padding: 40px 0 20px 0 !important;
    border-top: 1px solid #e2e8f0 !important;
    font-family: var(--font-body) !important;
}

.footer-locations {
    color: #475569 !important;
    line-height: 1.8 !important;
    font-size: 16px !important;
    /* Font-size 16px as requested */
    font-family: var(--font-body) !important;
}

.footer-locations h3 {
    color: #0f172a !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-family: var(--font-heading) !important;
}

.footer-locations div {
    margin-bottom: 12px !important;
}

.footer-locations strong {
    color: #334155 !important;
    font-weight: 700 !important;
    margin-right: 5px !important;
}

.footer-locations a {
    color: #475569 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    /* Font-size 16px as requested */
}

.footer-locations a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}

.footer-disclaimer {
    border-top: 1px solid #e2e8f0 !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
    color: #64748b !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    text-align: justify !important;
    font-family: var(--font-body) !important;
}

.footer-bottom-links-centered {
    border-top: 1px solid #e2e8f0 !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
    text-align: center !important;
    font-size: 0.9rem !important;
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    line-height: 2 !important;
}

.footer-bottom-links-centered a {
    color: #475569 !important;
    margin: 0 12px !important;
    text-decoration: none !important;
}

.footer-bottom-links-centered a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .footer-bottom-links-centered {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        line-height: 1.5 !important;
    }

    .footer-bottom-links-centered a {
        margin: 0 !important;
    }
}

/* Car Details Accordion Content Mobile Overrides */
.car-details-faq-content {
    padding: 24px 24px !important;
    color: #475569 !important;
    line-height: 1.8 !important;
    font-size: 0.95rem !important;
}

@media (max-width: 768px) {
    .car-details-faq-content {
        padding: 24px 20px !important;
    }
}

/* Pre-footer Keywords Section */
.pre-footer-keywords {
    background-color: var(--white);
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.keywords-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.keywords-col h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.keywords-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.keywords-col ul li a {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.keywords-col ul li a:hover {
    color: #0b132b;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .keywords-grid {

        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 576px) {
    .keywords-grid {
        grid-template-columns: 1fr;
        gap: 30px 30px;
    }

}

/* Footer Orange Styling */
.footer {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 60px 0 30px 0 !important;
    border: none !important;
}

.footer-col h4 {
    color: var(--white) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 1rem !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.5px !important;
}

.footer-col h4::after {
    display: none !important;
}

.footer-links a,
.footer-bottom-links-centered a {
    color: var(--white) !important;
    opacity: 0.95 !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: 0.2s !important;
}

.footer-links a:hover,
.footer-bottom-links-centered a:hover {
    color: #0b132b !important;
    padding-left: 0 !important;
    opacity: 1 !important;
}

.footer-bottom-links-centered {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.9) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding-top: 20px !important;
    margin-top: 30px !important;
}

.footer-bottom-links-centered {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding-top: 20px !important;
    margin-top: 15px !important;
}



@media (max-width: 600px) {
    .footer-grid-three {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

}


/* Mobile Hero Sizing Compression & Layout Tweaks */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.12rem !important;
        margin-top: 10px !important;
        margin-bottom: 12px !important;
    }

    .hero p {
        font-size: 1.11rem !important;
        margin-bottom: 20px !important;

    }

    .footer-col h4 {

        margin-bottom: 13px !important;
    }

    .hero .hero-counter-item p {
        font-size: 0.90rem !important;


    }

    .hero-counter-item h3,
    .hero-counter-item .counter-number {
        font-size: 2.3rem;
    }

    .hero-tag {
        font-size: 0.75rem !important;
        padding: 4px 10px !important;
    }

    .search-widget {
        margin-bottom: 20px !important;
    }

    .hero-counters-row {
        margin-top: 25px !important;
        gap: 15px !important;
    }

    /* Facts items overrides for 2x2 grid */
    .fact-card {
        padding: 20px 10px !important;
    }

    .fact-number {
        font-size: 1.5rem !important;
        margin: 10px 0 5px 0 !important;
    }

    .fact-title {
        font-size: 0.75rem !important;
    }

    .fact-icon-wrapper {
        width: 44px !important;
        height: 44px !important;
        font-size: 1rem !important;
    }

    .logo>img {
        max-width: 160px;

    }

    .header.scrolled .logo>img {
        max-width: 150px;

    }

    .nav-links {

        top: 85px;
        height: calc(100vh - 120px);

    }
}

@media (max-width: 479px) {
    .nav-links {
        top: 78px;

    }

    .hero p {
        font-size: 0.94rem !important;
    }

    .search-widget {
        padding: 24px 22px;
    }

    .hero .hero-counter-item p {
        font-size: 0.68rem !important;
    }

    .hero-counter-item h3,
    .hero-counter-item .counter-number {
        font-size: 2.0rem;
    }

    .section-header h2,
    .goa-content-top h2,
    .app-promo-content h2 {
        font-size: 2.0rem !important;
    }

    .car-content h3 {

        margin-bottom: 8px;
    }

    .btn {

        padding: 11px 20px;
    }

    .section-footer {

        margin-top: 36px;
    }

    .app-promo-img-container {
        margin: 0px auto 0 auto !important;
    }

    .category-card {

        padding: 20px 20px;
    }

    .step-card {

        padding: 27px 22px;
    }

    .step-icon-wrapper {
        margin: 0 auto 18px auto;
    }

    .fact-icon-wrapper {

        margin: 0 auto 15px auto;
    }

    .logo>img {
        max-width: 160px;

    }

    .header.scrolled .logo>img {
        max-width: 140px;

    }

    .hero-tag {
        margin: 0 auto 15px auto;
    }

}

/* Premium Specs details grid styling removed and consolidated under CAR DETAILS PAGE STYLING */

/* ==========================================
   CARS FLEET LISTING PAGE GRID & SIDEBAR
   ========================================== */
.cars-page-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 20px;
}

.cars-sidebar {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 110px;
}

.sidebar-widget {
    margin-bottom: 25px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3,
.sidebar-widget h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    font-family: var(--font-heading);
}

.sidebar-search-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--light-bg);
    padding: 2px;
    transition: var(--transition);
}

.sidebar-search-box:focus-within {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.sidebar-search-box input {
    flex-grow: 1;
    padding: 10px 12px;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: none;
    border: none;
    width: 100%;
}

.sidebar-search-box button {
    padding: 10px 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-search-box button:hover {
    color: var(--primary-color);
}

.cars-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.results-counter {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================
   DYNAMIC BLOG CONTENT & LAYOUT STYLING
   ========================================== */
.blog-details-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.blog-main-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
}

.blog-cover-image {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.blog-cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-cover-image:hover img {
    transform: scale(1.02);
}

.blog-details-meta-row {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.blog-details-main-title {
    font-size: 2.5rem;
    font-weight: 850;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.blog-sidebar {
    position: sticky;
    top: 180px;
    /* Offset for the sticky header */
}

.sidebar-widget {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
}

.sidebar-widget h3,
.sidebar-widget h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-details-body-content {
    margin-top: 15px;
}

.blog-details-body-content h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 35px 0 15px 0;
    font-family: var(--font-heading);
}

.blog-details-body-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 28px 0 12px 0;
    font-family: var(--font-heading);
}

.blog-details-body-content p {
    font-size: 1.025rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 20px;
}

.blog-details-body-content ul,
.blog-details-body-content ol {
    margin: 15px 0 25px 20px;
}

.blog-details-body-content ul li {
    list-style-type: disc;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #475569;
}

.blog-details-body-content ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #475569;
}

.blog-details-body-content blockquote {
    border-left: 4px solid var(--primary-color);
    background-color: var(--light-bg);
    padding: 18px 22px;
    font-style: italic;
    font-size: 1.05rem;
    color: #475569;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 25px 0;
}

/* Premium Blog Tables styling */
.blog-details-body-content table,
.blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.blog-details-body-content th,
.blog-table th {
    background-color: var(--dark-color);
    color: var(--white);
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
}

.blog-details-body-content td,
.blog-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    color: #334155;
    background-color: var(--white);
}

.blog-details-body-content tr:nth-child(even) td,
.blog-table tr:nth-child(even) td {
    background-color: var(--light-bg);
}

.blog-details-body-content tr:hover td,
.blog-table tr:hover td {
    background-color: #f1f5f9;
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 992px) {
    .cars-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cars-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: end;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }

    .cars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .cars-grid {
        grid-template-columns: 1fr !important;
    }

    .blog-details-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .blog-main-card {
        padding: 20px !important;
    }

    .blog-cover-image {
        height: 280px !important;
    }

    .blog-details-main-title {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 576px) {
    .cars-sidebar {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ==========================================
   PUBLIC PHOTO GALLERY PAGE STYLING
   ========================================== */
.gallery-grid-public {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.gallery-card-public {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    background-color: var(--white);
    cursor: pointer;
}

.gallery-card-public img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card-public:hover img {
    transform: scale(1.08);
}

.gallery-overlay-public {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(11, 19, 43, 0.95) 0%, rgba(11, 19, 43, 0.4) 70%, rgba(11, 19, 43, 0) 100%);
    padding: 24px 20px 20px 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-card-public:hover .gallery-overlay-public {
    transform: translateY(0);
}

.gallery-overlay-public h3,
.gallery-overlay-public h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    font-family: var(--font-heading);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .gallery-grid-public {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-card-public {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .gallery-grid-public {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-card-public {
        height: 200px;
    }
}



/* ==========================================
   SELF-DRIVE FLEET CARS PAGE STYLING
   ========================================== */
.cars-hero-banner {
    position: relative;
    padding: 80px 0;
    color: var(--white);
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.cars-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.7) 0%, rgba(28, 37, 65, 0.8) 100%) !important;
    z-index: -1;
}

.cars-hero-banner .container {
    position: relative;
    z-index: 2;
}

.cars-hero-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
}

.cars-hero-banner p {
    color: rgba(255, 255, 255, 0.94) !important;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    font-weight: 500;
}

.cars-filter-section {
    background-color: var(--light-bg);
    padding: 50px 0;
}

.cars-intro-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.cars-intro-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.cars-intro-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.65;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 24px;
    margin-bottom: 20px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checklist-item i {
    color: #2e7d32;
    font-size: 1.2rem;
    margin-top: 3px;
}

.checklist-item span {
    font-size: 0.95rem;
    color: #334155;
    font-weight: 600;
    line-height: 1.4;
}

/* Expandable Content with smooth transition */
.seo-expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, border-top-color 0.4s ease, padding 0.4s ease, margin 0.4s ease;
    border-top: 1px dashed transparent;
    padding-top: 0;
    margin-top: 0;
}

.seo-expandable-content.expanded {
    border-top: 1px dashed var(--border-color);
    padding-top: 30px;
    margin-top: 25px;
}

.intro-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.intro-card-item {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.intro-card-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.intro-card-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cars-toggle-wrapper {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.cars-toggle-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    outline: none;
    transition: var(--transition);
}

.horizontal-filter-bar {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.filter-controls-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-select-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-select-wrapper strong {
    color: var(--dark-color);
    font-size: 0.95rem;
}

.filter-select-wrapper select {
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-weight: 600;
    color: #334155;
    outline: none;
    cursor: pointer;
    background-color: var(--light-bg);
    font-family: inherit;
    font-size: 0.9rem;
}

.clear-filters-btn {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.results-counter {
    color: #334155;
    font-weight: 600;
    font-size: 0.9rem;
}

.cars-bottom-content {
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.cars-bottom-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.cars-bottom-content-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cars-bottom-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.seo-numbered-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seo-number-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.seo-number-badge {
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 800;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.seo-number-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.seo-number-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.cars-bottom-toggle-wrapper {
    text-align: center;
    margin-top: 25px;
}

.cars-faq-section {
    background-color: var(--white);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.cars-faq-header {
    text-align: center;
    margin-bottom: 45px;
}

.cars-faq-header span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cars-faq-header h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-top: 10px;
    font-weight: 800;
    color: var(--dark-color);
}

.cars-faq-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 10px auto 0 auto;
    font-size: 1rem;
}

.cars-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

    .cars-intro-card {
        padding: 20px 24px;
    }

    .cars-intro-card h2 {
        font-size: 1.5rem;
    }

    .horizontal-filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 15px;
    }

    .filter-controls-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .filter-select-wrapper {
        justify-content: space-between;
    }

    .results-counter {
        text-align: center;
    }

    .cars-bottom-content h2 {
        font-size: 1.5rem;
    }

    .cars-bottom-content h3 {
        font-size: 1.25rem;
    }

    .cars-faq-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .seo-number-card {
        flex-direction: column;
        gap: 12px;
    }
}

.no-cars-card {
    grid-column: 1 / -1;
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 50px;
    text-align: center;
    border: 1px dashed var(--border-color);
}

.no-cars-card i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-cars-card p {
    color: var(--text-muted);
    margin-top: 8px;
}

/* Thar Page Custom Styling */
.thar-intro-container {
    margin-bottom: 30px;
    padding: 0;
}

.thar-intro-container h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.thar-intro-container p {
    color: #333 !important;
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.65;
}

.thar-intro-text-block {
    margin-bottom: 25px;
}

.thar-intro-text-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.thar-intro-text-block p {
    color: #333 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Force color: #333 for all content paragraphs and list tags */
p,
.cars-intro-card p,
.intro-card-item p,
.cars-bottom-content-desc,
.cars-bottom-content-text,
.seo-number-content p,
.checklist-item span,
.faq-content {
    color: #333 !important;
}

/* Banner gradient adjustment to show background image */
.cars-hero-banner::before {
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.6) 0%, rgba(28, 37, 65, 0.7) 100%) !important;
}

/* Pre-Footer Locations & Keywords Styling */
.pre-footer-locations {
    background-color: #f1f5f9;
    padding: 50px 0;
    text-align: center;
    font-family: var(--font-body);
    border-top: 1px solid var(--border-color);
}

.location-search-header {
    margin-bottom: 30px;
    display: inline-block;
}

.location-search-icon-wrapper {
    background-color: var(--primary-color);
    color: #0b132b;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.location-search-header h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #0b132b;
    margin: 0;
}

.locations-pipe-list {
    max-width: 1150px;
    margin: 0 auto 40px auto;
    line-height: 2;
    font-size: 0.95rem;
}

.locations-pipe-list a,
.car-type-group a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.locations-pipe-list a:hover,
.car-type-group a:hover {
    color: var(--primary-color);
}

.locations-pipe-separator {
    color: #cbd5e1;
    margin: 0 5px;
}

.car-types-pipe-lists {
    max-width: 1150px;
    margin: 0 auto;
    text-align: left;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.car-type-group {
    margin-bottom: 25px;
}

.car-type-group:last-child {
    margin-bottom: 0;
}

.car-type-group h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b132b;
    margin-bottom: 10px;
}

.car-type-group-links {
    line-height: 2;
    font-size: 0.9rem;
}

/* Footer layout elements styling (replacing inline styles) */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-info a i {
    font-size: 1rem;
}

.footer-socials-row {
    display: flex;
    gap: 12px;
}

.footer-socials-row a {
    color: var(--white);
    font-size: 1.25rem;
    transition: color 0.2s;
}

.footer-socials-row a:hover {
    color: var(--primary-color);
}

.footer-copyright-text {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.9;
}

.footer-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .footer-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid-four {
        grid-template-columns: 1fr;
    }
}

.breadcrumbs-banner p {
    color: rgba(255, 255, 255, 0.94) !important;
}

/* About Page Hero Banner Styling */
.about-hero-banner {
    position: relative;
    padding: 80px 0 !important;
    background-image: var(--about-banner-bg);
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    color: var(--white);
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    z-index: 1;
}

.about-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.6) 0%, rgba(28, 37, 65, 0.7) 100%) !important;
    z-index: -1;
}

.about-hero-banner h1 {
    font-size: 2.75rem;
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
}

.about-hero-banner p {
    color: rgba(255, 255, 255, 0.94) !important;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    font-weight: 500;
}

/* About Page Specific Styles */
.about-story-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-story-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-story-text-col {
    flex: 1;
    max-width: 58%;
}

.about-story-text-col h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-story-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #333 !important;
}

.about-story-content p {
    margin-bottom: 15px;
    color: #333 !important;
}

.about-story-image-col {
    flex: 1;
    max-width: 38%;
}

.about-story-image-card {
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-story-image-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Why Rent Section */
.about-features-section {
    padding: 80px 0;
    background-color: #fcfbf7;
    /* Subtle warm cream background from screenshot */
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.about-features-heading {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #ffe66d;
    /* Warm light yellow background for icons */
    color: #0b132b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(255, 230, 109, 0.3);
}

.about-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.about-feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333 !important;
    margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .about-story-row {
        flex-direction: column;
        gap: 30px;
    }

    .about-story-text-col,
    .about-story-image-col {
        max-width: 100%;
        width: 100%;
    }

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

@media (max-width: 768px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .about-story-text-col h2,
    .about-features-heading {
        font-size: 1.75rem;
    }
}

/* Similar Cars Swiper Sizing Adjustments */
.similar-cars-section .car-card {
    margin: 10px 0 !important;
}

.similar-cars-section .car-content {
    padding: 15px !important;
}

.similar-cars-section .car-content h3 {
    font-size: 1.0rem !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
}

.similar-cars-section .car-content h3 a {
    font-size: 1.0rem !important;
}

.similar-cars-section .car-price-inr {
    font-size: 1.1rem !important;
}

.similar-cars-section .spec-circle-container {
    gap: 4px !important;
    margin-bottom: 12px !important;
}

.similar-cars-section .spec-circle-item {
    padding: 2px !important;
}

.similar-cars-section .spec-circle-icon {
    width: 22px !important;
    height: 22px !important;
    font-size: 0.7rem !important;
}

.similar-cars-section .spec-circle-label {
    font-size: 0.65rem !important;
}

.similar-cars-section .car-card-actions {
    gap: 6px !important;
    margin-top: 10px !important;
}

.similar-cars-section .btn-call,
.similar-cars-section .btn-whatsapp {
    padding: 6px 8px !important;
    font-size: 0.75rem !important;
}

/* Single Car Details Short Description */
.car-details-short-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Vehicle Description Card Styling */
.car-details-description-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
}

.car-details-description-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.car-details-description-body {
    line-height: 1.8;
    color: #475569;
    font-size: 1rem;
}

.car-details-description-intro {
    font-weight: 700;
    color: #0b132b;
    margin-bottom: 15px;
}

.car-details-description-text {
    margin-bottom: 20px;
    text-align: left;
    /* No justify! */
}

.car-details-description-footer {
    border-top: 1px dashed var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0b132b;
    font-weight: 600;
    font-size: 0.95rem;
}

.car-details-description-footer i {
    color: var(--primary-color);
}

/* Similar Cars Section Styles */
.similar-cars-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.similar-cars-section h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.similar-cars-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Sub FAQ Active State Styles */
.sub-faq-item.active .sub-faq-body {
    max-height: 500px !important;
    overflow: visible !important;
}

.sub-faq-item.active .sub-faq-header i {
    transform: rotate(180deg) !important;
}

/* ==========================================
   WELCOME INTRO SECTION STYLING
   ========================================== */
.welcome-intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

.welcome-intro-section .container {
    display: flex;

    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.welcome-intro-content {
    flex: 1;
    min-width: 300px;
    max-width: 52%;
}

.welcome-intro-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 25px;
    line-height: 1.25;
}

.welcome-intro-text {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;

}

.welcome-intro-link {
    color: #0b132b;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 5px;
    font-size: 1.05rem;
    transition: border-color 0.2s;
}

.welcome-intro-link:hover {
    border-color: #0b132b;
}

.welcome-intro-image {
    flex: 1;
    min-width: 300px;
    max-width: 42%;
}

.welcome-intro-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    object-fit: cover;
}

@media (max-width: 768px) {

    .welcome-intro-content,
    .welcome-intro-image {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .car-details-description-card {

        padding: 20px;
    }
}

/* ==========================================
   LOCATION PAGE BANNER STYLING
   ========================================== */
.seo-subsection-item {
    margin-bottom: 20px;
}

.location-banner {
    padding: 30px 0 !important;
    background-image: url('../images/facts_bg.jpg') !important;
}

.location-banner::before {
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.9) 0%, rgba(28, 37, 65, 0.9) 100%) !important;
}

.location-banner-content {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location-banner-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.location-banner-content a:hover {
    color: var(--white);
}

.location-banner-content span {
    color: var(--white);
    font-weight: 500;
}

/* ==========================================
   LOCATION DESCRIPTION SECTION STYLING (Redesigned Split Layout)
   ========================================== */
.location-desc-section {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.location-split-layout {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 30px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

.location-main-content {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    padding: 27px;
    box-shadow: var(--shadow-sm);
}

.location-action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.location-btn-call,
.location-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.location-btn-call {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.location-btn-call:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: var(--dark-color);
}

.location-btn-whatsapp {
    background-color: #3e7a4d;
    color: #fff;
}

.location-btn-whatsapp:hover {
    background-color: #32623e;
    transform: translateY(-2px);
    color: #fff;
}

.location-main-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-main-title .star-icon {
    color: #f5cb1d;
    font-size: 1.6rem;
}

.location-body-content {
    line-height: 1.8;
    color: #475569;
    font-size: 1.0rem;
}

.location-body-content p {
    margin-bottom: 18px;
    color: #475569 !important;
}

.location-body-content p:last-child {
    margin-bottom: 0;
}

.location-body-content strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Sidebar Section Styles */
.location-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-sidebar-card {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.location-sidebar-card .card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.location-sidebar-card .card-title-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
}

.location-sidebar-card .card-action-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.location-sidebar-card .card-action-link:hover {
    text-decoration: underline;
}

.location-sidebar-card .card-map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.location-sidebar-card .card-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-sidebar-card .card-footer-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f8fafc;
    padding: 10px 12px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.location-sidebar-card .card-footer-row i {
    color: var(--primary-color);
}

.location-sidebar-card .card-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.location-sidebar-card .area-tag {
    background-color: #f1f5f9;
    color: #334155;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.location-sidebar-card .area-tag:hover {
    background-color: var(--primary-color);
    color: #0b132b;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .location-split-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .location-main-content {
        padding: 20px;
    }

    .location-action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .location-btn-call,
    .location-btn-whatsapp {
        width: 100%;
    }

    .location-main-title {
        font-size: 1.5rem;
    }
}

/* ==========================================
   CUSTOM PAGE GUIDELINES SECTION STYLING
   ========================================== */
.custom-guidelines-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.custom-guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.guideline-badge {
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.2);
}

.guideline-card {
    background-color: #f0f6ff;
    border: 1px solid #e2eaf8;
    border-radius: 10px;
    padding: 20px 24px;
    flex-grow: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
}

.guideline-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.guideline-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .custom-guideline-item {
        flex-direction: column;
        gap: 10px;
    }

    .guideline-badge {
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
    }

    .guideline-card {
        padding: 16px 20px;
        width: 100%;
    }
}

/* ==========================================
   CUSTOM PAGE V2 SCOPED STYLES
   ========================================== */
.custom-page-v2 {
    /* Scoped Headings sizes & orders */
}

.custom-page-v2 h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--dark-color);
}

.custom-page-v2 h2 {
    font-size: 2.0rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--dark-color);
}

.custom-page-v2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    color: var(--dark-color);
}

.custom-page-v2 h4 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    color: var(--dark-color);
}

.custom-page-v2 h5 {
    font-size: 1.0rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: var(--dark-color);
}

/* Split Grid Layout */
.custom-page-v2 .location-split-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 25px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

/* Left Content Area */
.custom-page-v2 .location-main-content {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

/* Right Sidebar Area */
.custom-page-v2 .location-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

/* Right Sidebar Card Wrapper */
.custom-page-v2 .location-sidebar-card {
    padding: 12px;
    background-color: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

/* Sidebar Image Styling */
.custom-page-v2 .location-sidebar-card img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .custom-page-v2 .location-split-layout {
        grid-template-columns: 1fr;
    }
}

/* Ensure car card title is exactly 20px on desktop as requested */
.custom-page-v2 .car-card h3,
.custom-page-v2 .car-card h3 a {
    font-size: 20px !important;
}

/* Guideline card style override for custom pages */
.custom-page-v2 .guideline-card {
    background-color: #f0f6ff;
    border: 1px solid #e2eaf8;
    border-radius: 10px;
    padding: 15px 20px 20px;
    flex-grow: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
}

/* Remove margin-bottom from FAQ accordion headings */
.custom-page-v2 .faq-accordion h3 {
    margin-bottom: 0 !important;
}

/* Mobile-only overrides for custom pages */
@media (max-width: 768px) {
    .custom-page-v2 .container {
        padding: 0 20px !important;
    }

    .custom-page-v2 h2 {
        font-size: 28px !important;
    }

    .breadcrumbs-banner h1 {
        font-size: 33px !important;
    }
}