﻿@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&display=swap');

:root {
    --black: #000000;
    --dark-gray-1: #0a0a0a;
    --gray-1: #6d6e70;
    --gray-2: #777777;
    --gray-3: #869791;
    --green: #8cc63f;
    --gray-4: #aaaaaa;
    --gray-5: #cccccc;
    --gray-6: #cfcfcf;
    --gray-7: #d6d6d6;
    --gray-8: #dddddd;
    --gray-9: #e8e8e8;
    --primary-color: #f1981a;
    --primary-colo: #f1971a40;
    --light-gray: #fafafa;
    --red: #ff0000;
    --white: #ffffff;
    --dark-gray-2: #222222;
    --dark-gray-3: #232323;
    --dark-gray-4: #272727;
    --dark-gray-5: #333333;
    --gray-10: #555555;
    --black-opacity-0: rgba(0, 0, 0, 0);
    --black-opacity-40: rgba(0, 0, 0, 0.4);
    --black-opacity-50: rgba(0, 0, 0, 0.5);
    --black-opacity-75: rgba(0, 0, 0, 0.75);
    --white-opacity-75: rgba(255, 255, 255, 0.75);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size:17px;
    line-height:1.5;
    font-family: 'Catamaran', sans-serif;
}

/* ################# TOP BANNER STYLING ################# */

/* Add this at the top of your CSS file, after the root variables */
.top-banner {
    background-color: var(--black);
    padding: 8px 0;
}

.top-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: var(--white);
    margin-right: 15px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: #fff !important;
    font-size: 17px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #f1981a !important;
}

.contact-info i {
    margin-right: 5px;
}

.btn-login {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.btn-login:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .top-banner {
        display: none; 
    }
}

/* ################# NAVBAR STYLING ################# */

.navbar {
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 85px;
    width: 100px;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    padding: 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.phone-number {
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.phone-number i {
    color: var(--primary-color);
}

.btn-signup {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 1rem 0;
    }

    .navbar-nav {
        margin: 1rem 0;
    }

    .phone-number {
        margin: 1rem 0;
    }
}

/* ################# HERO SLIDER STYLING ################# */

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

#heroCarousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.285), rgba(0, 0, 0, 0.265));
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
}

.caption-content {
    max-width: 800px;
}

.caption-content .subtitle {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.caption-content .title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.2s forwards;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.carousel-indicators {
    margin-bottom: 100px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--white);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
    opacity: 1;
}

/* Booking Form */
.booking-form-container {
    margin-top: -200px;
    z-index: 10;
}
.form-label {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.input-group .form-control,
.input-group .form-select {
    background: var(--white);
    border: none;
    color: var(--black);
    padding: 12px 15px;
}

.input-group .form-control::placeholder {
    color: rgba(0, 0, 0, 0.644);
}

.border{
    border: 1px solid var(--primary-color);
}

.input-group .form-control:focus,
.input-group .form-select:focus {
    box-shadow: none;
    background: var(--white);
}

.combined-time {
    display: flex;
    gap: 5px; /* Space between the hour and minute dropdowns */
}

.combined-time .time-select {
    flex: 1; /* Make both dropdowns take equal space */
}


.trip-type {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
}

.form-check-input {
    background-color: transparent;
    border-color: var(--primary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--white);
    font-weight: 500;
}

.btn-book {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-book:hover {
    background: var(--dark-gray-1);
    color: var(--white);
    transform: translateY(-2px);
}

/* Add this to your existing CSS */
.return-fields {
    display: none; /* Initially hidden */
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

select option{
    color: #000000;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .caption-content .title {
        font-size: 2.5rem;
    }
    
    .booking-form {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100%;
    }
    
    .carousel-caption {
        text-align: center;
        padding: 0 20px;
    }
    
    .caption-content {
        margin: 0 auto;
    }
    
    .caption-content .title {
        font-size: 2rem;
    }
    
    .booking-form-container {
        position: static;
        margin-top: 20px;
        margin-bottom: 30px;
        background-color: var(--white);
    }
    
    .carousel-indicators {
        margin-bottom: 150px;
    }
}

@media (max-width: 576px) {
    .caption-content .title {
        font-size: 1.8rem;
    }
    
    .caption-content .subtitle {
        font-size: 1rem;
    }
}

/* ################# TRANSPORTATION SECTION STYLING ################# */

.transportation-intro {
    padding: 100px 0;
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('images/pattern-bg.png');
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.intro-content {
    padding-right: 30px;
}

.intro-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-content h1::after {
    width: 60px;
    height: 3px;
    bottom: -8px;
}

.intro-content p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.intro-content h2 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 600;
    margin: 20px 0 15px;
}

.service-highlights {
    margin: 15px 0;
    max-width: 85%;
}

.highlight-item {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.highlight-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray-1);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-item h3::before {
    content: '✓';
    background: var(--primary-color);
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.highlight-item p {
    color: var(--gray-2);
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.image-container {
    position: relative;
    padding: 20px;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    z-index: 0;
}

.image-container img {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    z-index: 1;
}

.image-container img:hover {
    transform: translate(5px, -5px);
}

@media (max-width: 991px) {
    .intro-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .intro-content .highlight-item {
        text-align: left;
    }
}

@media (max-width: 1200px) {
    .transportation-intro h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .transportation-intro h1 {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .transportation-intro h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .transportation-intro h1 {
        font-size: 1.5rem;
    }
}

/* ################# PRICING SECTION STYLING ################# */

.pricing-section {
    padding: 20px 0;
    background-color: var(--white);
}

.pricing-section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.pricing-container {
    display: flex;
    align-items: stretch;
    justify-content: center; /* Center the items */
}

.pricing-container > div { /* Assuming each item is a div */
    margin: 0 25px; /* Add margin only to left and right of each item */
}

.pricing-container > div:first-child {
    margin-left: 0; /* Remove left margin for the first item */
}

.pricing-container > div:last-child {
    margin-right: 0; /* Remove right margin for the last item */
}

.pricing-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-option {
    cursor: pointer;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-option:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.pricing-option h2 {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-option h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.pricing-option:hover h2::after {
    width: 60px;
}

.pricing-option p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.pricing-image-container {
    flex: 1;
}

.pricing-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Updated Responsive Styles */
@media (max-width: 991px) {
    .pricing-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .pricing-details, 
    .pricing-image-container {
        width: 100%;
    }

    .pricing-image-container img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 0;
    }

    .pricing-details {
        gap: 20px;
    }

    .pricing-option {
        padding: 20px;
    }

    .pricing-option h2 {
        font-size: 1.3rem;
    }

    .pricing-option p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 30px 0;
    }

    .pricing-container {
        gap: 30px;
    }

    .pricing-option {
        padding: 15px;
    }

    .pricing-option h2 {
        font-size: 1.2rem;
    }
}

/* ################# SERVICES SECTION STYLING ################# */

.services-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.services-section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.services-section .services-container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.services-list .service-card:nth-last-child(2),
.services-list .service-card:last-child {
    grid-column: span 2;
}

.service-card {
    position: relative;
    height: 350px;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.1) 100%);
}

.service-card h3,
.service-card p {
    position: absolute;
    left: 20px;
    right: 20px;
    color: var(--white);
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card h3 {
    bottom: 80px;
    font-size: 24px;
    font-weight: 700;
}

.service-card:hover h3 {
    bottom: unset;
    top: 30px;
}

.service-card p {
    bottom: 20px;
    font-size: 17px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        height: 300px;
    }

    .service-card h3 {
        font-size: 20px;
        bottom: 60px;
    }

    .service-card:hover h3 {
        top: 20px;
    }

    .service-card p {
        font-size: 13px;
        bottom: 15px;
    }
}

/* ################# INTRO SECTION STYLING ################# */

.intro-section {
    padding: 120px 0;
    background: linear-gradient(to right, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    opacity: 0.03;
    border-radius: 50%;
    top: -300px;
    right: -300px;
    z-index: 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content {
    position: relative;
    z-index: 1;
}

.intro-header h1 {
    font-size: 40px;
    letter-spacing: normal;
    color: var(--black);
    font-weight: 600;
    margin-bottom: -20px;
}

.intro-header h1 span {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gray-2);
    display: block;
    margin-top: 10px;
}

.intro-body {
    margin: 40px 0;
}
.intro-body h2 {
    color: #e68b26;
    font-size: 32px;
    font-weight: 500;
}
.intro-body ul {
  padding: 30px 0;
  display: flex;
}
.intro-body ul li {
    background: #e5e5e5;
    color: var(--dark-gray-5);
    font-size: 18px;
    font-weight: 600;
    margin: 0 10px 0 0;
    padding: 5px 15px;
    border-radius: 100px;
    border: solid 2px var(--primary-color);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.intro-main-text {
    font-size: 1.2rem;
    color: var(--dark-gray-3);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.intro-secondary-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--gray-10);
}
.intro-body a {
    color: var(--gray-10);
    font-weight: 600;
}
.intro-body a:hover {
    color: #e68b26;
}
.intro-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.cta-btn-explore, .cta-btn-contact {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 22px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cta-btn-explore {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.cta-btn-explore:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 152, 26, 0.2);
}

.cta-btn-contact {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.cta-btn-contact:hover {
    color: #fff;
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 152, 26, 0.2);
}

.intro-images {
    position: relative;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.main-image {
    grid-column: 1 / -1;
    height: 300px;
}

.small-image {
    height: 200px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .intro-header h1 span {
        font-size: 3rem;
    }
    
    .intro-main-text {
        font-size: 1.1rem;
    }
    
    .intro-secondary-text {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .intro-section {
        padding: 80px 0;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-content {
        text-align: center;
    }
    
    .intro-cta {
        justify-content: center;
    }
    
    .main-image {
        height: 250px;
    }
    
    .small-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .intro-header h1 span {
        font-size: 2.5rem;
    }
    
    .intro-cta {
        flex-direction: column;
    }
    
    .cta-btn-explore, .cta-btn-contact {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .intro-section {
        padding: 60px 0;
    }
    
    .intro-header h1 span {
        font-size: 2rem;
    }
    
    .intro-main-text {
        font-size: 1rem;
    }
    
    .intro-secondary-text {
        font-size: 0.95rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .main-image, .small-image {
        height: 200px;
    }
}


/* ################# FEATURES SECTION STYLING ################# */

.features-section {
    padding: 50px 0;
    background-color: var(--gray-9);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background-image: url('../Images/blob.svg');
    background-repeat: no-repeat;
    background-size: contain;
    top: -200px;
    right: -200px;
    z-index: 0;
    animation: rotate 20s infinite linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.features-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.features-content {
    text-align: center;
    padding: 3rem 0;
}

.features-title-wrapper {
    margin-bottom: 2rem;
}

.features-subtitle {
    font-size: 17px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.features-subtitle::before,
.features-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--primary-color);
}

.features-subtitle::before {
    right: calc(100% + 15px);
}

.features-subtitle::after {
    left: calc(100% + 15px);
}

.features-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
}

.btn-primary {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: var(--dark-gray-1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.features-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.review-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-card h3 {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.review-card:hover h3::after {
    width: 60px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-content {
        text-align: center;
    }
    
    .features-section::before {
        width: 600px;
        height: 600px;
        top: -100px;
        right: -100px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-main-title {
        font-size: 2rem;
    }
    
    .features-section::before {
        width: 400px;
        height: 400px;
        top: -50px;
        right: -50px;
    }
}


/* ################# MOBILE APP SECTION STYLING ################# */

.mobile-app {
    background: linear-gradient(135deg, var(--dark-gray-1) 0%, var(--primary-color) 100%);
    padding: 100px 0;
    color: var(--white);
    overflow: hidden;
}

.mobile-app-inner {
    /* width: 100%; */
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.mobile-app-content {
    padding-right: 30px;
}

.mobile-app-content h4 {
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-color);
    padding: 10px 20px 8px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
}

.mobile-app-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.mobile-app-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.mobile-app-content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.mobile-app-content li {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
}

.mobile-app-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    background: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.download-btn {
    display: flex;
    gap: 20px;
}

.download-btn a {
    padding: 15px 30px;
    border-radius: 10px;
    background: var(--black);
    color: var(--primary-color);
    border: 2px solid var(--black);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-btn a:hover {
    background: var(--black);
    color: var(--primary-color);
    border: 2px solid var(--black);
    transform: translateY(-3px);
}

.download-btn a i {
    font-size: 1.5rem;
}

.mobile-app-image {
    position: relative;
}

.mobile-app-image img {
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 991px) {
    .mobile-app-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mobile-app-content {
        padding-right: 0;
    }

    .mobile-app-content h1 {
        font-size: 2.2rem;
    }

    .mobile-app-content ul {
        justify-content: center;
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .mobile-app-content li {
        text-align: left;
    }

    .download-btn {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mobile-app-image {
        order: -1;
    }

    .mobile-app-image img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .mobile-app {
        padding: 60px 0;
    }

    .download-btn button {
        width: 100%;
        justify-content: center;
    }
}

/* ################# FLEET SECTION STYLING ################# */

.fleet-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.fleet-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0;
}

.fleet-description {
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
    font-weight: 500;
    text-align: center;
}

.vehicle-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    margin-bottom: 30px;
}

.vehicle-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.vehicle-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
}

.vehicle-image-wrapper img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    padding: 20px;
    transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-image-wrapper img {
    transform: scale(1.08);
}

.vehicle-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-tag {
    transform: translateY(-3px);
}

.vehicle-details {
    padding: 25px;
    background: var(--white);
}

.vehicle-name {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vehicle-name::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.vehicle-card:hover .vehicle-name::after {
    width: 60px;
}

.vehicle-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 15px;
    background: rgba(200, 140, 0, 0.101);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
}

.book-now-btn {
    width: 100%;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.book-now-btn:hover {
    color: var(--white);
}

.book-now-btn:hover::before {
    left: 0;
}

.book-now-btn i {
    transition: transform 0.3s ease;
}

.book-now-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .fleet-section {
        padding: 60px 0;
    }

    .vehicle-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .vehicle-image-wrapper {
        height: 180px;
    }

    .vehicle-details {
        padding: 20px;
    }

    .feature-item {
        font-size: 0.85rem;
    }
}


/* ################# FOOTER SECTION STYLING ################# */

footer {
    background-color: var(--dark-gray-3);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-inner {
    display: flex;
    gap: 15px;
    padding-bottom: 40px;
    justify-content: space-between;
}

.footer-box {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 15px;
    flex: 1;
}

.footer-box.box1 {
    flex: 0 0 35%;
    max-width: 35%;
}

.footer-box.box1 img {
    width: auto;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    align-self: flex-start;
    font-size: 19px;
}

.footer-box.box1 p {
    color: #b4b4b4;
    line-height: 1.5;
    margin-bottom: 25px;
    width: 80%;
    font-size: 16px;
}

.social-media-icons {
    display: flex;
    gap: 12px;
}

.social-media-icons i {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-media-icons i:hover {
    color: var(--dark-gray-2);
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-box h1 {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-box h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}
.footer-box p {
    color: #b4b4b4;
    font-size: 17px;
}

.footer-box a {
    color: #b4b4b4;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 17px;
}

.footer-box a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-box.box3 p {
    color: #b4b4b4;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-bottom {
    background: var(--dark-gray-3);
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    color: #888;
    font-size: 18px;
}

.footer-bottom a {
    color: #b4b4b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}
.loginBtn {
    width: 100%;
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 0px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
}
.loginBtn:hover {
    color: var(--white) !important;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Updated Responsive Adjustments */
@media (max-width: 991px) {
    .footer-inner {
        flex-wrap: wrap;
        gap: 50px;
    }

    .footer-box {
        flex: 1 1 calc(50% - 25px);
    }

    .footer-box.box1 {
        max-width: calc(50% - 25px);
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-box,
    .footer-box.box1 {
        max-width: 100%;
        width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-box h1 {
        font-size: 1.1rem;
    }
}










