/* Base Styles & Variables */
:root {
    --primary-color: #f03636;
    --primary-hover: #d32020;
    --dark-bg: #1c2534;
    --darker-bg: #111827;
    --light-bg: #f4f5f8;
    --text-color: #666;
    --heading-color: #333;
    --white: #ffffff;
    --border-color: #eaeaea;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

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

.text-white {
    color: var(--white);
}

.mt-4 {
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn i {
    margin-left: 8px;
}

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

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--heading-color);
}

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

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Section Header */
.section-subtitle {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.section-header .section-title {
    display: inline-block;
}

.section-header .section-title::before,
.section-header .section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: var(--border-color);
}

.section-header .section-title.text-white::before,
.section-header .section-title.text-white::after {
    background-color: rgba(255,255,255,0.2);
}

.section-header .section-title::before {
    left: -70px;
}

.section-header .section-title::after {
    right: -70px;
}

/* Topbar */
.topbar {
    background-color: var(--darker-bg);
    color: #ccc;
    font-size: 13px;
    padding: 10px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-item {
    margin-right: 20px;
}

.topbar-item i {
    color: var(--primary-color);
    margin-right: 5px;
}

.topbar-right {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: #ccc;
    margin-left: 15px;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 70px;
}

.logo h2 {
    margin: 0;
    font-size: 28px;
    color: var(--dark-bg);
}

.logo h2 span {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--heading-color);
}

.nav-list {
    display: flex;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list li a {
    font-weight: bold;
    font-size: 20px;
    color: var(--heading-color);
    padding: 10px 0;
    display: block;
    position: relative;
}

.nav-list li a i {
    font-size: 10px;
    margin-left: 3px;
}

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

.header-actions {
    display: flex;
    align-items: center;
}

.action-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    color: var(--heading-color);
    position: relative;
}

.action-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.cart-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    background-color: var(--light-bg);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

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

.hero-bg-angled {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background-color: var(--dark-bg);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
    z-index: 1;
}

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

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    padding: 220px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-wedding {
    background-image: url('../images/wedding-car.png');
}

.slide-tour {
    background-image: url('../images/tour-car.png');
}

.slide-luxury {
    background-image: url('../images/luxury-car.png');
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.slider-controls button {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin: 0 -30px;
}

.slider-controls button:hover {
    background: var(--primary-color);
}

.hero-text {
    width: 80%;
    max-width: 800px;
    text-align: center;
    color: var(--white);
}

.hero-text h1 {
    color: var(--white);
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--white);
}

.hero-text p {
    margin-bottom: 30px;
    font-size: 16px;
    opacity: 0.9;
}

.hero-image {
    width: 55%;
    text-align: right;
}

@keyframes moveCar {
    0% { transform: scale(1.1) translateX(0); }
    50% { transform: scale(1.1) translateX(-15px); }
    100% { transform: scale(1.1) translateX(0); }
}

.hero-image img {
    margin-left: auto;
    transform: scale(1.1);
    animation: moveCar 4s ease-in-out infinite;
}

/* Booking Form */
.booking-form-container {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: absolute;
    bottom: -80px;
    left: 15px;
    right: 15px;
    z-index: 10;
}

.booking-form {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-color);
    outline: none;
    transition: var(--transition);
}

.form-group select:focus,
.form-group input:focus {
    border-color: var(--primary-color);
}

.submit-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
/* Stats Banner Section */
.stats-banner {
    background: linear-gradient(90deg, #8a1016 0%, #b51a21 50%, #8a1016 100%);
    padding: 15px 0;
    color: var(--white);
}

.stats-banner-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.stats-banner-item {
    padding: 5px 15px;
}

.stats-banner-item h3 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 1px;
    color: var(--white);
}

.stats-banner-item p {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    text-transform: capitalize;
    color: var(--white);
}

/* About Section */
.about {
    margin-top: 20px;
    padding: 40px 0;
}

.about-inner.new-about-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
}

.about-image-wrapper {
    width: 50%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.about-image-overlay p {
    color: var(--white);
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.call-btn {
    background: var(--white);
    color: var(--heading-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.about-text-new {
    width: 50%;
}

.about-text-new .section-title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-italic {
    color: var(--primary-color);
    font-style: italic;
}

.about-description {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin-bottom: 30px;
}

.about-feature-item {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon-circle {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 3px;
}

.feature-text h4 {
    font-size: 18px;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

.btn-round-icon {
    display: inline-flex;
    align-items: center;
    padding: 12px 15px 12px 25px;
    border-radius: 30px;
}

.btn-round-icon .icon-circle {
    width: 30px;
    height: 30px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.about-bottom {
    display: flex;
    gap: 50px;
    align-items: center;
}

.why-choose {
    width: 40%;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.feature-list li {
    font-size: 14px;
    color: var(--heading-color);
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.stats-grid {
    width: 60%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-box::after {
    content: '\f1b9';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 60px;
    opacity: 0.1;
}

.stat-box i {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 15px;
}

.stat-box h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 1px;
}
/* Solutions Section */
.solutions-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/wedding-car.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.solutions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.solutions-title-area h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
}

.solutions-title-area .text-gray {
    color: #bbb;
}

.solutions-title-area .italic {
    font-style: italic;
    font-weight: 500;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-pill:hover {
    background-color: #d11;
    color: var(--white);
}

.btn-pill i {
    background: var(--white);
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

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

.solution-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.solution-card.active-card, .solution-card:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.solution-card .icon-circle-bg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--dark-bg);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.solution-card.active-card .icon-circle-bg, .solution-card:hover .icon-circle-bg {
    color: var(--dark-bg);
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--dark-bg);
    transition: color 0.3s ease;
}

.solution-card.active-card h3, .solution-card:hover h3 {
    color: var(--white);
}

.solution-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.solution-card.active-card p, .solution-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.solution-card .learn-more {
    margin-top: 15px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s, color 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.solution-card.active-card .learn-more, .solution-card:hover .learn-more {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    display: inline-flex;
    width: fit-content;
}

.solution-card:hover .learn-more {
    gap: 12px;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #f7f8fa;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.step-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.step-number {
    font-family: 'Georgia', serif;
    font-size: 55px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px #ddd;
    line-height: 1;
}
.step-icon {
    width: 35px;
    height: 35px;
    background-color: #fbecec;
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.step-card h3 {
    font-family: 'Georgia', serif;
    font-size: 22px;
    color: var(--dark-bg);
    margin-bottom: 15px;
    font-weight: 500;
}
.step-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* Perfect Car Section */
.perfect-car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.p-car-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.p-car-card:hover {
    transform: translateY(-5px);
}
.p-car-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.p-car-body {
    padding: 25px;
}
.p-car-header {
    margin-bottom: 15px;
}
.p-car-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 0;
    text-transform: capitalize;
}
.p-car-specs-new {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.p-car-specs-new li {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}
.p-car-specs-new li i {
    color: var(--primary-color, #e53935);
    font-size: 14px;
}
.p-car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.p-car-price {
    font-size: 16px;
    color: var(--primary-color, #e53935);
    font-weight: 600;
}
.p-car-price strong {
    font-size: 18px;
    font-weight: 700;
}
.p-car-btn {
    padding: 10px 24px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}

/* Easy Steps Section */
.easy-steps-section {
    background-color: var(--white);
    overflow: hidden;
}
.easy-steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.easy-steps-image {
    width: calc(50% - 20px);
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
}
.easy-steps-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.easy-steps-content {
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.easy-steps-badge {
    display: inline-flex;
    align-items: center;
    background-color: #fce8e8;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #e53935;
    margin-bottom: 20px;
    width: fit-content;
}
.easy-steps-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #e53935;
    border-radius: 50%;
    margin-right: 8px;
}
.easy-steps-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--dark-bg);
}
.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    cursor: default;
}
.step-item:hover {
    transform: translateX(10px);
}
.step-item:last-child {
    margin-bottom: 0;
}
.step-circle {
    width: 50px;
    height: 50px;
    background-color: #fce8e8;
    color: #e53935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    margin-right: 25px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.step-item:hover .step-circle {
    background-color: #e53935;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.3);
}
.step-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-bg);
}
.step-text p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .easy-steps-image, .easy-steps-content {
        width: 100%;
    }
    .easy-steps-image {
        min-height: 350px;
        order: 2;
    }
    .easy-steps-content {
        order: 1;
    }
    .easy-steps-content h2 {
        font-size: 32px;
    }
}

/* Services Section */
.services-section {
    position: relative;
    background-image: url('../images/slider-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    z-index: 1;
}
.services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 20, 25, 0.85); /* Dark overlay */
    z-index: -1;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.services-title-area {
    max-width: 600px;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.text-center .subtitle {
    flex-direction: column;
}

.text-center .red-line {
    margin-right: 0;
    margin-bottom: 5px;
}

.red-line {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin-right: 15px;
}

.services-title-area h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
}

.btn-outline-round {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    padding: 12px 25px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    transition: var(--transition);
}

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

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

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 25px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    border: 1px solid var(--white);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.dark-card {
    background-color: #1a1a1a;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.service-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    font-size: 16px;
}

.service-content {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    color: var(--white);
}

.service-content p {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
    color: var(--white);
}

.explore-link {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    transition: var(--transition);
}

.service-card:hover .explore-link {
    gap: 15px;
    color: var(--primary-color);
}
/* Hot Offers */
.hot-offers {
    background-color: var(--dark-bg);
}

.filter-tabs {
    margin-top: 20px;
}

.filter-tabs button {
    background: var(--white);
    border: none;
    padding: 8px 25px;
    margin: 0 5px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.filter-tabs button.active,
.filter-tabs button:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.car-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.car-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-img .tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
}

.car-content {
    padding: 25px;
}

.car-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.location {
    font-size: 13px;
    margin-bottom: 15px;
}

.location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    margin-bottom: 15px;
}

.car-specs span {
    width: 50%;
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.car-specs span i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
}

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

.car-footer .price {
    font-size: 14px;
    color: var(--text-color);
}

.car-footer .price span {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--font-heading);
}


/* Partner Banner */
.partner-banner {
    background-color: var(--dark-bg);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.partner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-color: #8c1e1e; /* Darker red matching the screenshot gradient */
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.8;
}

.banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-text h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 10px;
}

.banner-text h2 span {
    color: var(--primary-color);
}

.banner-text p {
    color: #ccc;
    font-size: 16px;
}

.banner-contact {
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    padding: 15px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.banner-contact .icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-right: 15px;
}

.banner-contact .contact-text span {
    color: #ccc;
    font-size: 13px;
    text-transform: capitalize;
}

.banner-contact .contact-text h4 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 0;
}

/* Latest News */
.news {
    background-color: var(--white);
}

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

.news-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.news-img {
    position: relative;
    height: 220px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 3px solid var(--white);
}

.date-badge span:first-child {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.date-badge span:last-child {
    font-size: 12px;
}

.news-content {
    padding: 35px 25px 25px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
    text-transform: none;
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-color);
}

.news-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* CTA Booking Section */
.cta-booking-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/slider-2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}
.cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 20, 25, 0.75);
    z-index: 1;
}
.cta-booking-section .relative-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.cta-booking-section h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}
.cta-booking-section p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.cta-btn-red {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
}
.btn-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 12px;
}
.cta-btn-white {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px 12px 30px;
    background: var(--white);
    color: var(--dark-bg);
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: var(--transition);
}
.cta-btn-white:hover {
    background: #f1f1f1;
}
.btn-icon-circle-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
}
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: space-between;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover::after {
    opacity: 1;
}
@media (max-width: 1200px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* FAQ & Booking Section */
.faq-booking-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 50px;
    align-items: flex-start;
}
.faq-content .subtitle {
    margin-bottom: 10px;
}
.faq-accordion {
    margin-top: 30px;
}
.faq-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}
.faq-question h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-bg);
}
.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}
.faq-question:hover {
    background: #fafafa;
}
.faq-answer {
    padding: 0 25px 20px;
    display: none;
    color: var(--text-color);
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.booking-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.booking-form-wrapper h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark-bg);
}
.booking-form-wrapper p {
    color: var(--text-color);
    margin-bottom: 25px;
}
.booking-form .form-group {
    margin-bottom: 20px;
}
.booking-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #f9f9f9;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark-bg);
    transition: var(--transition);
}
.booking-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}
.w-100 {
    width: 100%;
}

/* Features Sidebar */
.features-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid transparent;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}
.feature-box:hover .icon-wrapper {
    background-color: var(--dark-bg);
}
.feature-box .icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}
.feature-box .content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-bg);
}
.feature-box .content p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f7f8fa;
}
.testimonial-slider-wrapper {
    position: relative;
    padding: 0 40px;
    margin-top: 40px;
}
.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testimonial-slider::-webkit-scrollbar {
    display: none;
}
.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    min-width: calc(33.333% - 20px);
    scroll-snap-align: start;
    position: relative;
    border: 1px solid #eee;
}
.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 14px;
}
.testimonial-card .quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #f1f1f1;
}
.testimonial-card .review-text {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.client-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 5px;
}
.client-info span {
    font-size: 13px;
    color: var(--primary-color);
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}
.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.prev-btn {
    left: -10px;
}
.next-btn {
    right: -10px;
}
@media (max-width: 991px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }
    .testimonial-slider-wrapper {
        padding: 0;
    }
    .slider-btn {
        display: none;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: #a0a0a0;
}

.footer-top {
    background-color: var(--darker-bg);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0;
}

.contact-boxes {
    display: flex;
    justify-content: space-between;
}

.contact-box {
    display: flex;
    align-items: center;
}

.contact-box .icon {
    width: 50px;
    height: 50px;
    background: rgba(240, 54, 54, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.contact-box .text h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-box .text p {
    margin: 0;
    color: #ccc;
}

.footer-main {
    padding: 70px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-logo span {
    color: var(--primary-color);
}

.about-widget p {
    margin-bottom: 20px;
}

.about-widget .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
}

.about-widget .social-links a:hover {
    background: var(--primary-color);
}

.links-widget ul li {
    margin-bottom: 12px;
}

.links-widget ul li a {
    display: flex;
    align-items: center;
}

.links-widget ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 12px;
}

.links-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.subscribe-widget p {
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    position: relative;
}

.subscribe-form input {
    width: 100%;
    padding: 12px 15px;
    background: var(--darker-bg);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 4px;
    outline: none;
}

.subscribe-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.subscribe-form button:hover {
    background: var(--primary-hover);
}

.footer-bottom {
    background: var(--darker-bg);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .services-grid, .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content {
        flex-direction: column;
    }
    .hero-text, .hero-image {
        width: 100%;
    }
    .hero-bg-angled {
        width: 100%;
        clip-path: none;
    }
    .booking-form {
        flex-wrap: wrap;
    }
    .form-group {
        flex: 1 1 45%;
    }
    .about-inner.new-about-layout, .about-bottom {
        flex-direction: column;
    }
    .about-image-wrapper, .about-text-new {
        width: 100%;
    }
    .why-choose, .stats-grid {
        width: 100%;
    }
    .car-grid, .testimonial-grid, .news-grid, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.serif-title {
    font-size: 42px;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    .slide {
        padding: 100px 0;
    }
    .stats-banner-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stats-banner-item h3 {
        font-size: 36px;
    }
    .services-grid, .solutions-grid, .steps-grid, .perfect-car-grid, .faq-booking-grid {
        grid-template-columns: 1fr;
    }
    .services-header, .solutions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .services-title-area h2, .solutions-title-area h2 {
        font-size: 32px;
    }
    .about-text-new .section-title {
        font-size: 28px;
    }
    .serif-title {
        font-size: 28px;
    }
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }
    .menu-toggle {
        display: block;
        margin-left: auto;
    }
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }
    .nav-list {
        display: none; /* Hide on very small screens for now, need JS to toggle */
    }
    .car-grid, .testimonial-grid, .news-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    .banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .contact-boxes {
        flex-direction: column;
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .form-group {
        flex: 1 1 100%;
    }
}

/* =========================================
   About Us Page Styles
   ========================================= */

/* Page Banner */
.page-banner {
    background-image: url('../images/slider-1.webp'); /* Update to the actual banner image */
    background-size: cover;
    background-position: center;
    padding: 70px 0 40px; /* Reduced top padding to 70px and bottom padding to 40px */
    position: relative;
}
.page-banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(32, 44, 60, 0.95), rgba(220, 53, 69, 0.9));
}
.page-banner h1 {
    color: var(--white);
    font-size: 60px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.page-banner h1 span {
    color: var(--primary-color);
}
.page-banner .breadcrumb {
    color: var(--white);
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.page-banner .breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}
.page-banner .breadcrumb a:hover {
    color: var(--primary-color);
}
.page-banner .breadcrumb i {
    color: var(--primary-color);
}

/* About Page Section */
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-page-images {
    position: relative;
    height: 100%;
    min-height: 400px;
}
.about-img-main {
    width: 75%;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
.about-img-sub {
    width: 55%;
    border-radius: 10px;
    position: absolute;
    bottom: -20px;
    right: 0;
    z-index: 2;
    border: 10px solid var(--white);
}
.about-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}
.about-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.tab-btn {
    background-color: var(--dark-bg);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}
.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
}
.tab-content {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 20px;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}
.check-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Why Choose Us Section */
.bg-light {
    background-color: #f4f6f9;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.why-choose-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.why-choose-content p {
    color: #666;
    margin-bottom: 30px;
}
.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    padding: 0;
}
.features-list li {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-box {
    background-color: #2c3e50;
    color: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.stat-box:hover {
    transform: translateY(-5px);
}
.stat-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--white);
}
.stat-box h3 {
    font-size: 32px;
    margin-bottom: 5px;
}
.stat-box p {
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.car-watermark {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 60px;
    color: rgba(255,255,255,0.1);
}

/* Team Section */
.line-deco {
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #ccc;
    vertical-align: middle;
    margin: 0 15px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.team-member {
    background: #2c3e50;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}
.team-member:hover {
    transform: translateY(-10px);
}
.member-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.member-info {
    padding: 20px;
    color: var(--white);
}
.member-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}
.member-info span {
    font-size: 12px;
    color: #ccc;
    display: block;
    margin-bottom: 15px;
}
.member-info .social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 3px;
    margin: 0 3px;
    font-size: 12px;
    transition: 0.3s;
}
.member-info .social-links a:hover {
    background-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-page-grid, .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .about-page-images {
        min-height: 300px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* MVV Section Styles */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.mvv-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}
.mvv-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.mvv-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: #f4f6f9;
    color: var(--primary-color);
    font-size: 35px;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}
.mvv-card:hover .mvv-icon {
    background-color: var(--primary-color);
    color: var(--white);
}
.mvv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.mvv-card p {
    color: #666;
    line-height: 1.6;
}

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

/* Car Rental Page Styles */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.rental-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    color: var(--text-color);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.rental-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.rental-card-img {
    height: 220px;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.rental-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rental-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.rental-card-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--heading-color);
    font-weight: 600;
}
.rental-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-color);
}
.rental-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.rental-specs i {
    color: var(--primary-color);
}
.rental-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}
.rental-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}
.btn-book {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-book:hover {
    background-color: var(--dark-bg);
    color: var(--white);
}

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

/* =========================================
   Service Page Styles
   ========================================= */

/* Services Hero */
.srv-hero-section {
    padding-top: 70px; 
    padding-bottom: 70px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
}
.srv-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
.srv-hero-content h1 {
    font-size: 55px;
    font-family: var(--font-heading);
    color: #4a2f2f;
    line-height: 1.15;
    margin-bottom: 25px;
}
.srv-hero-content h1 span {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 400;
}
.srv-hero-content p {
    color: var(--text-color);
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.8;
}
.srv-hero-btns {
    display: flex;
    gap: 15px;
}
.btn-outline {
    border: 2px solid var(--border-color);
    color: var(--text-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 14px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--white);
    background-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2);
    transform: translateY(-3px);
}
.srv-hero-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
}
.srv-hero-img:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.srv-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Detailed Services Grid */
.detailed-services-section {
    background-color: #f9f9f9;
}
.detailed-srv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.d-srv-card {
    display: flex;
    background: #800000; /* Deep Maroon */
    border-radius: 12px;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}
.d-srv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.3);
}
.d-srv-img {
    flex: 0 0 35%;
    background: var(--white);
    overflow: hidden;
    position: relative;
}
.d-srv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.d-srv-card:hover .d-srv-img img {
    transform: scale(1.1);
}
.d-srv-content {
    flex: 0 0 65%;
    padding: 35px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.d-srv-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    font-family: var(--font-heading);
    opacity: 0.1;
    font-weight: 700;
}
.d-srv-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600;
}
.d-srv-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.85);
    flex-grow: 1;
}
.btn-book-full {
    background-color: #ffc107;
    color: #000;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}
.btn-book-full i {
    margin-right: 8px;
    font-size: 16px;
}
.btn-book-full:hover {
    background-color: var(--white);
    color: #800000;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    transform: translateY(-3px);
}

/* Why Choose Us Banner */
.why-choose-banner {
    background-color: #800000;
    padding: 70px 0;
    color: var(--white);
    position: relative;
}
.why-choose-banner h2 {
    color: var(--white);
    margin-bottom: 50px;
    font-size: 36px;
    text-align: center;
}
.wcb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.wcb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    font-size: 15px;
    padding: 25px 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}
.wcb-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.wcb-item i {
    color: #ffc107;
    font-size: 35px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}
.wcb-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Yellow Contact Bar */
.yellow-contact-bar {
    background-color: #ffc107;
    padding: 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.ycb-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    font-weight: 700;
    color: #000;
    font-size: 18px;
}
.ycb-item {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.ycb-item:hover {
    transform: scale(1.05);
    color: #800000;
}
.ycb-item i {
    margin-right: 12px;
    font-size: 22px;
}

/* Frequently Requested Experiences */
.freq-exp-section {
    background-color: #fdfdfd;
}
.freq-exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.freq-btn {
    background-color: #800000;
    color: var(--white);
    padding: 18px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}
.freq-btn:hover {
    background-color: #ffc107;
    color: #000;
    border-left: 4px solid #800000;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.freq-btn i:first-child {
    color: #ffc107;
    margin-right: 15px;
    font-size: 20px;
    width: 20px;
    text-align: center;
    transition: all 0.4s ease;
}
.freq-btn:hover i:first-child {
    color: #800000;
}
.freq-btn span {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.5;
    transition: all 0.4s ease;
}
.freq-btn:hover span {
    opacity: 1;
    transform: translateX(5px);
}

/* Bottom CTA */
.bottom-cta-section {
    position: relative;
}
.cta-heading {
    font-size: 50px;
    font-family: var(--font-heading);
    color: #4a2f2f;
    line-height: 1.3;
}
.cta-heading span {
    color: #ffc107;
    font-style: italic;
    font-weight: 400;
}
.bottom-cta-section .btn-primary {
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2);
}
.bottom-cta-section .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 53, 69, 0.3);
}

/* Responsive Service Page */
@media (max-width: 1199px) {
    .detailed-srv-grid {
        grid-template-columns: 1fr;
    }
    .d-srv-img {
        flex: 0 0 40%;
    }
}
@media (max-width: 991px) {
    .srv-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .srv-hero-btns {
        justify-content: center;
    }
    .wcb-grid {
        grid-template-columns: 1fr 1fr;
    }
    .freq-exp-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .d-srv-card {
        flex-direction: column;
    }
    .d-srv-img {
        height: 250px;
    }
    .wcb-grid, .freq-exp-grid {
        grid-template-columns: 1fr;
    }
    .ycb-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .srv-hero-content h1 {
        font-size: 40px;
    }
    .cta-heading {
        font-size: 35px;
    }
}

/* Floating Action Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.floating-btn:hover {
    transform: scale(1.1);
    color: #fff;
}
.floating-whatsapp {
    left: 30px;
    background-color: #25D366;
}
.floating-call {
    right: 30px;
    background-color: #e53935;
}
@media (max-width: 768px) {
    .floating-btn {
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .floating-whatsapp {
        left: 20px;
    }
    .floating-call {
        right: 20px;
    }
}
