@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

:root{
    --primary-color: #00D9A6;
    --text-color: #000000;
    --gradient-color: linear-gradient(135deg, #00D9A6, #61CE70);
    --text-paracolor: rgba(0,0,0,0.63);
    --service-gradient: linear-gradient(#000000, #666666);
    --form-color: rgba(102, 102, 102, 0.40);
}
html{
    scroll-behavior: smooth;
}
body {
    background-color: #fff;
}

/* === Navigation Bar === */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #092726;
    padding: 0 2rem;
    height: 70px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    border-radius: 50px;
    margin: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Logo styling */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    vertical-align: middle;
}

/* Navigation links */
.nav-links {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.nav-links ul {
    display: flex;
    list-style: none;
}

.nav-links ul li {
    margin: 0 1rem;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links ul li a:hover {
    color: #5fd3c7;
}

/* Hide mobile toggle buttons by default */
.menu-btn, .close-btn {
    display: none !important; 
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

main{
    padding-top: 30px;
}

.hero {
    background-image: url('./assets/TAXI_FARE-1.jpg');
    background-size: cover;
    background-position: 120px 60px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at bottom left,
        rgba(95, 211, 199, 0.25),
        rgba(255, 255, 255, 0.1) 60%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    top: -20px;
}

.hero-tagline {
    font-size: 4rem;
    font-weight: 700;
    color: #001f1e;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-tagline span {
    color: #00a89a;
}

.hero .booking-text {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #001f1e;
}

.hero .booking-text .highlight {
    background-color: #17544f;
    font-weight: 700;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
}

.hero .booking-text .bold {
    font-weight: 700;
}

/* Star Rating */
.hero .rating {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    margin-bottom: 1.5rem; 
}

.hero .stars {
    margin-bottom: 0.5rem; 
    display: flex;
    color: #FFD700;
    font-size: 1.5rem;
}

.hero .customers {
    font-size: 1.5rem;
    font-weight: 700;
    color: #001f1e;
}

.hero .customers a {
    color: #004d44;
    text-decoration: none;
}

/* Call to Action Buttons */
.hero .cta-buttons {
    display: flex;
    flex-direction: row; 
    gap: 1rem;
    top: -10px;
    margin-top: 2rem;
    align-items: flex-start; 
    justify-content: flex-start; 
}

.hero .cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 3.5rem; 
    box-sizing: border-box; 
}

.hero .call-btn {
    background-color: #004d44;
    color: #5fd3c7;
    border: 2px solid #004d44;
}

.hero .book-btn {
    background-color: #00a89a;
    color: white;
    border: 2px solid #00a89a;
    white-space: nowrap;
}

.hero .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero .call-btn i {
    margin-right: 0.5rem;
}


 /* about section */
 .about {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.about-content {
    width: 50%;
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

.about-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.about-heading .highlight {
    color: var(--primary-color);
}

.about-divider {
    width: 150px;
    height: 6px;
    background: var(--gradient-color);
    margin: 2rem 0;
    border-radius: 10px;
}

.about-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-paracolor);
    margin-bottom: 2rem;
    max-width: 500px;
}

.about-features {
    list-style-type: none;
    margin: 1.5rem 0 2.5rem;
}

.about-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-paracolor);
}

.about-features li::before {
    content: "•";
    color: #00CC8E;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.25rem;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-color);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 204, 142, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 204, 142, 0.4);
    background: var(--service-gradient);
}

/* about image area */
.about-image-area {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-illustration {
    width: 100%;
    max-width: 750px;
    height: auto;
    object-fit: contain;
    animation: fadeIn 1.5s ease-out, float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes carFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes sway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    /* background-color: red; */
}

.cars-section {
    padding: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    /* background-color: red; */
}

.section-title {
    width: 100%;
    max-width: 500px;
}

.section-title h2 {
    font-size: 55px;
    margin-bottom: 10px;
}

.section-title h2 span {
    color: var(--primary-color);
    /* font-weight: 600; */
    display: block;
    margin-bottom: 5px;
}

.section-title .underline {
    width: 150px;
    height: 6px;
    background: var(--gradient-color);
    margin: 2rem 0;
    border-radius: 10px;
}

.section-description {
    width: 100%;
    max-width: 550px;
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    flex: 0 0 calc(25% - 20px);
    margin: 0 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.slider-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-item:hover img {
    transform: scale(1.05);
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-nav-button {
    background: var(--gradient-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slider-nav-button:hover {
    background: var(--gradient-color);
}

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

/* Services Section Styles */
.services-section {
    padding: 40px 0;
}

.services-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.services-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}

.services-title span {
    color: #0DD99F;
    display: block;
    font-size: 42px;
    margin-top: 5px;
}

.services-underline {
    width: 100px;
    height: 4px;
    background-color: #0DD99F;
    margin-top: 20px;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    top: 0;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    top: -10px;
}

.service-header {
    background: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-body {
    padding: 20px;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    opacity: 1; /* Changed from 0 to ensure content is always visible */
    transform: translateY(0); /* Reset initial transform to ensure visibility */
    transition: transform 0.3s ease;
}

.service-card:hover .service-feature {
    transform: translateX(5px); /* Simple right shift on hover */
    transition: transform 0.3s ease;
}

.service-icon {
    color: #0DD99F;
    font-size: 18px;
    margin-right: 10px;
    margin-top: 3px;
}

.service-text {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* Staggered transition delays for hover effect */
.service-card:hover .service-feature:nth-child(1) { transition-delay: 0.05s; }
.service-card:hover .service-feature:nth-child(2) { transition-delay: 0.1s; }
.service-card:hover .service-feature:nth-child(3) { transition-delay: 0.15s; }


.review-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #0a0a0a;
    background-image: url('./assets/bgimage.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.review-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.review-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    z-index: 2;
}

.reviews-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.quote-mark {
    font-size: 80px;
    line-height: 1;
    color: #0de8c8;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
}

.active .quote-mark {
    opacity: 1;
    transform: translateY(0);
}

.review-text {
    font-size: 28px;
    color: white;
    margin-bottom: 40px;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease 0.4s, opacity 0.6s ease 0.4s;
}

.active .review-text {
    opacity: 1;
    transform: translateY(0);
}

.reviewer-name {
    font-size: 24px;
    font-weight: bold;
    color: #0de8c8;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease 0.6s, opacity 0.6s ease 0.6s;
}

.active .reviewer-name {
    opacity: 1;
    transform: translateY(0);
}

.reviewer-title {
    font-size: 18px;
    color: #cccccc;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease 0.8s, opacity 0.6s ease 0.8s;
}

.active .reviewer-title {
    opacity: 1;
    transform: translateY(0);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: #0de8c8;
    border-color: #0de8c8;
    transform: scale(1.2);
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at bottom left,
        rgba(95, 211, 199, 0.15),
        rgba(255, 255, 255, 0.05) 60%
    );
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001f1e;
    margin-bottom: 20px;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #00a89a;
    border-radius: 2px;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #004d44;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #001f1e;
    margin-bottom: 5px;
}

.phone-link, .email-link {
    font-size: 1.1rem;
    color: #00a89a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover, .email-link:hover {
    color: #004d44;
    text-decoration: underline;
}

/* Form Styles */
.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-row .form-group {
    flex: 1 1 calc(50% - 10px);
    min-width: 120px;
}

label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #001f1e;
}

input, textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00a89a;
    box-shadow: 0 0 0 2px rgba(0, 168, 154, 0.2);
}

.form-hint {
    font-size: 0.8rem;
    color: #666;
}

.submit-btn {
    background-color: #00a89a;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
    text-align: center;
}

.submit-btn:hover {
    background-color: #004d44;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Form Animation Classes */
.form-submitted {
    transform: scale(0.98);
    opacity: 0.8;
}

/* Input Ripple Effect */
/* .input-ripple {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
    width: 50px;
    height: 50px;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Car Animation */
/* @keyframes floatCar {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
} */

Screen Reader Only Class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Custom Notification Styles */
/* .custom-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    min-width: 250px;
    max-width: 80%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.custom-notification.success {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.custom-notification.error {
    background-color: #ff5252;
    color: var(--text-color);
}

.custom-notification.info {
    background-color: #333;
    color: var(--text-color);
}

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

.notification-close {
    background: none;
    border: none;
    color: black;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
    padding: 0 5px;
} */

/* Footer Section Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-column {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: white;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #0de8c8;
    transition: width 0.3s ease;
    color: white;
}

.footer-column:hover .footer-heading::after {
    width: 100%;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #0de8c8;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #0de8c8;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.address-details, .contact-details {
    color: #ccc;
    margin-bottom: 15px;
}

.contact-details a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #0de8c8;
}

/* Routes Section */
.routes-section {
    border-top: 1px solid #333;
    padding-top: 40px;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.routes-column {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.5s;
}

.routes-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.routes-links {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

.routes-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.routes-links a:hover {
    color: #0de8c8;
}

/* Social and Copyright */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #0de8c8;
    color: #000;
    transform: translateY(-5px);
}

.copyright {
    color: #aaa;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .about-heading {
        font-size: 3.5rem;
    }
}
@media (max-width: 1024px) {
    .slider-item {
        flex: 0 0 calc(33.33% - 20px);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 992px) {
    .about {
        flex-direction: column;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .about-content {
        width: 100%;
        margin-bottom: 2rem;
    }

    .about-image-area {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 2rem;
    }

    .about-illustration {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .routes-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .contact-section-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .contact-info {
        padding: 3rem 2rem 5rem;
    }
    
    .desktop-direction {
        display: none;
    }
    
    .mobile-direction {
        display: flex;
    }
    
    .curved-edge-container {
        position: absolute;
        left: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        height: 50px;
        overflow: hidden;
    }
    
    .curved-edge {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        transform: rotate(90deg);
        transform-origin: bottom left;
    }
    
    .car-image-container {
        text-align: center;
    }
    
    .contact-car-image {
        max-width: 300px;
    }
}


@media (max-width: 768px) {

    .navbar {
        border-radius: 0;
        margin: 0;
        top: 0;
        left: 0;
        right: 0;
    }
    
    /* Show menu button on mobile only */
    .menu-btn {
        display: block !important;
    }
    
    /* Navigation menu styling for mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 190px;
        height: 100vh;
        background-color: rgba(9, 39, 38, 0.95);
        text-align: left;
        z-index: 1001;
        transition: right 0.4s ease;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        width: 100%;
        padding-top: 60px;
    }
    
    .nav-links ul li {
        margin: 0;
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links ul li a {
        font-size: 1.1rem;
    }
    
    /* Show close button inside nav menu only on mobile */
    .close-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 25px;
    }

    .hero-tagline {
        font-size: 2.5rem;
    }
    
    .hero .booking-text {
        font-size: 1.5rem;
    }
    
    .hero .stars {
        font-size: 1.5rem;
    }
    
    .hero .customers {
        font-size: 1.2rem;
    }

    .about-heading {
        font-size: 3rem;
    }

    .about-text {
        font-size: 1.1rem;
    }
    .section-header {
        flex-direction: column;
    }
    
    .section-title, .section-description {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .slider-item {
        flex: 0 0 calc(50% - 20px);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-header {
        height: auto;
        padding: 15px;
        font-size: 18px;
    }

    .review-text {
        font-size: 22px;
        padding: 0 10px;
    }
    
    .reviewer-name {
        font-size: 20px;
    }
    
    .reviewer-title {
        font-size: 16px;
    }
    
    .quote-mark {
        font-size: 60px;
    }
    
    .review-container {
        padding: 60px 15px;
    }
    
    .reviews-slider {
        height: 350px;
    }

    .hero-section {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
    
    .routes-column {
        text-align: center;
    }
    
    .routes-links {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 580px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-title {
        font-size: 24px;
    }
    
    .services-title span {
        font-size: 32px;
    }
}

@media screen and (max-width: 576px) {
    .about-heading {
        font-size: 2.5rem;
    }

    .about-divider {
        width: 100px;
        height: 4px;
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 3rem;
    }
    
    .hero .booking-text {
        font-size: 1.2rem;
    }

    .slider-item {
        flex: 0 0 calc(100% - 20px);
    }
    .review-text {
        font-size: 18px;
    }
    
    .reviewer-name {
        font-size: 18px;
    }
    
    .reviewer-title {
        font-size: 14px;
    }
    
    .quote-mark {
        font-size: 50px;
    }
    
    .review-container {
        padding: 40px 10px;
    }
    
    .reviews-slider {
        height: 320px;
    }

    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .submit-btn {
        width: 100%;
    }

}

@media (max-width: 476px) {
    .hero {
        background-size: 30em;
        background-position: bottom;
    }

    .hero .cta-buttons {
        flex-direction: row; 
        justify-content: center;
        width: 100%; 
        position: relative;
        bottom: 0; 
        margin-top: 3rem; 
    }
    
    .hero .cta-btn {
        flex: 1; 
        max-width: 45%; 
        font-size: 1rem; 
        padding: 0.7rem 1rem; 
        height: 3rem; 
    }
}

/* 1️ 477px - 1130px */
@media (min-width: 477px) and (max-width: 1130px) {
    .hero {
        background-size: cover;
        background-position: 58% 170px;
    }
}

/* 2️ 1131px - 1320px */
@media (min-width: 1131px) and (max-width: 1320px) {
    .hero {
        background-size: cover;
        background-position: 0 120px;
    }
}

/* 3️ 1321px - 1369px */
@media (min-width: 1321px) and (max-width: 1369px) {
    .hero {
        background-size: cover;
        background-position: 0 70px;
    }
}

