:root {
    --primary: #c5a059;
    /* Premium Metallic Gold */
    --primary-light: #e0c08d;
    --primary-dark: #a6823a;
    --text-white: #ffffff;
    --text-dark: #121212;
    /* Rich Black */
    --bg-light: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8fafc;
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Header Styling --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
    transition: var(--transition);
}

/* Scrolled state simplified */
.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary) !important;
}

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

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

main {
    flex: 1;
}

/* --- Home Page Styling --- */
.slider-container {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    /* Use vw to ensure full screen width */
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

/* .slide::after removed */

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.slide-bg::after {
    display: none;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    color: white;
    padding: 0 2rem;
}

.slide-content h1 {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
    color: #ffffff;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.9), 0px 0px 5px rgba(0, 0, 0, 0.8);
}

.slide-content h1 .brand-text {
    color: #FFC107;
    /* Solid bright amber/gold */
    font-weight: 900;
    display: block;
    margin-top: 10px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.9), 0px 0px 5px rgba(0, 0, 0, 0.8);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.7s;
    color: #ffffff;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.9);
}

.slide.active h1,
.slide.active p {
    opacity: 1;
    transform: translateY(0);
}

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

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.9s;
}

.slide.active .btn-group {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.section {
    padding: 80px 0;
}

/* Entrance Animations */
.feature-card,
.service-card,
.rental-card {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card.reveal,
.service-card.reveal,
.rental-card.reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

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

.feature-card {
    padding: 40px;
    border-radius: 20px;
    background: #ffffff;
    text-align: center;
    border: 1px solid #f1f1f1;
    transition: var(--transition);
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    font-family: 'Inter', sans-serif;
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.15);
    border-color: var(--primary);
}

/* --- Services Section Styling --- */
#our-services {
    background: var(--primary);
    position: relative;
    padding: 80px 0;
}

#our-services .about-title-container h2 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#our-services .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

#our-services .feature-card {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

#our-services .feature-card i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

#our-services .feature-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

#our-services .feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

#our-services .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

#our-services .feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Numbering system for cards */
#our-services .card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    transition: all 0.5s ease;
}

#our-services .feature-card:hover .card-number {
    color: rgba(197, 160, 89, 0.1);
    transform: scale(1.1);
}

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

.service-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.15);
    border-color: var(--primary);
}

.service-card-inner {
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-card .btn-text {
    margin-top: 20px;
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.service-card .btn-text i {
    font-size: 0.8rem;
    display: inline;
    margin-left: 5px;
}

/* --- About Us Animation --- */
.about-title-container {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
}

.about-title-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.underline-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 6px;
    background: #f1f1f1;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.underline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, var(--primary-light), var(--primary));
    transform-origin: left;
    animation: growUnderline 3s infinite ease-in-out;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.4);
}

.running-car {
    position: absolute;
    top: -24px;
    left: -30px;
    color: var(--primary);
    font-size: 1.5rem;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
    animation: driveCar 3s infinite linear;
    text-shadow: 1px 1px 0px var(--primary-dark);
}

@keyframes driveCar {
    0% {
        left: -10%;
    }

    100% {
        left: 110%;
    }
}

@keyframes growUnderline {
    0% {
        transform: scaleX(0);
    }

    20% {
        transform: scaleX(0);
    }

    80% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(1);
    }
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    /* Ensure it wraps on smaller screens */
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.25rem;
}

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

.stat-item h4 {
    font-size: 2.25rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

.about-image-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

/* --- Footer Styling --- */
.footer {
    background-color: var(--primary);
    padding: 4rem 0 2rem;
    margin-top: auto;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    padding-left: 5px;
    opacity: 0.7;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(18, 18, 18, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-style: bold;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 0.7;
}

.footer .btn-now {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
}


.taxi-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.taxi-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    transition: var(--transition);
    z-index: 10;
    flex-shrink: 0;
}

.taxi-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.taxi-carousel-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.taxi-carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.taxi-carousel-track::-webkit-scrollbar {
    display: none;
}

.taxi-carousel-track .rental-card {
    width: 300px;
    flex-shrink: 0;
    max-width: 80vw;
    scroll-snap-align: start;
}

.rental-card {
    background-color: #fff;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.rental-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.15);
    border-color: var(--primary);
}

.rental-img-box {
    width: 100%;
    height: 200px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rental-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.rental-img-box img.fix-size {
    transform: scale(1.35);
}

.rental-card:hover .rental-img-box img {
    transform: scale(1.05);
}

.rental-card:hover .rental-img-box img.fix-size {
    transform: scale(1.4);
}

.rental-info {
    padding: 0 25px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rental-info h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.sub-title {
    color: #475569;
    font-size: 1.1rem;
    font-weight: 500;
}

/* --- Nav Actions --- */
.nav-cta {
    background: var(--primary) !important;
    padding: 10px 25px !important;
    border-radius: 8px !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3) !important;
}

.nav-cta::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* --- Responsive Media Queries --- */

/* Tablets and small desktops */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80%);
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        /* Align from top */
        align-items: flex-start;
        /* Left align items */
        gap: 1.2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        padding: 120px 40px;
        /* More top padding for breathing room */
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 1.2rem;
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        display: block;
    }

    .nav-links a::after {
        display: none !important;
        /* Hide underline effect on mobile */
    }

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

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

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

    .slider-nav {
        bottom: 100px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {

    *,
    *::before,
    *::after {
        box-sizing: border-box !important;
    }

    html,
    body {
        width: 100% !important;
        overflow-x: hidden !important;
        position: relative;
        margin: 0;
        padding: 0;
    }

    .container {
        padding: 0 5% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }

    /* Slider */
    .slider-container {
        height: 55vh !important;
        width: 100% !important;
    }

    .slide {
        width: 100% !important;
    }

    .slide-bg {
        background-size: cover !important;
        background-repeat: no-repeat;
        background-position: center;
        height: 100%;
    }

    .slide-content {
        position: absolute;
        bottom: 130px;
        /* Safely above the pagination dots */
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 1rem;
    }

    .slide-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem;
    }

    .slide-content h1 .brand-text {
        font-size: 2.2rem !important;
        margin-top: 4px;
    }

    .slide-content p {
        font-size: 0.85rem !important;
        margin-bottom: 0;
    }

    .slider-nav {
        bottom: 80px;
        /* Centered between text and form overlap */
    }

    .section {
        padding: 40px 0 !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .about-content {
        display: block !important;
        /* Stack vertically */
        width: 100% !important;
    }

    .about-text {
        width: 100% !important;
        padding: 0 !important;
    }

    .about-text p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
        text-align: left;
    }

    .stats-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .feature-grid,
    .service-grid,
    .rental-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 20px !important;
    }

    .underline-wrapper {
        width: 70% !important;
        max-width: 250px !important;
    }

    .about-content div[style*="flex: 1"] {
        width: 100% !important;
        margin-top: 20px;
    }

    .btn {
        min-width: 140px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .feature-card {
        padding: 30px 20px !important;
    }
}

/* --- Contact Brief Section Styling --- */
.contact-brief {
    background: #f8fafc;
    /* Soft premium background */
    padding: 100px 0;
    overflow: hidden;
}

.contact-brief-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.whatsapp-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    border: 1px solid #f1f1f1;
    border-left: 8px solid var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    max-width: 520px;
}

.whatsapp-card.full-card {
    /* Kept for class consistency but removed width: 100% */
}

.wa-content-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.whatsapp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(197, 160, 89, 0.12);
}

.wa-icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: #25D366;
    /* Official WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.wa-details h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #25D366;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.wa-numbers-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.number-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.number-item i {
    color: var(--primary);
    font-size: 1rem;
    opacity: 0.8;
}

.wa-numbers-vertical a {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.2;
}

.wa-numbers-vertical a:hover {
    color: var(--primary);
}

.family-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.2));
}

.wa-sep {
    color: #cbd5e1;
    font-weight: 300;
}

.contact-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.btn-wa-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    border-radius: 12px;
    background: #25D366 !important;
    color: white !important;
    border: none;
}

.btn-wa-main:hover {
    background: #128C7E !important;
    /* Darker WhatsApp Green */
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Car Animation */
.car-display-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-brief {
        padding: 60px 0;
    }

    .contact-brief-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .contact-info-col .about-title-container {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-title {
        font-size: 1.75rem !important;
        /* Slightly smaller for better wrapping */
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .contact-desc {
        text-align: center !important;
        width: 100%;
        font-size: 1rem !important;
    }

    .whatsapp-card {
        justify-content: center;
        text-align: center;
        padding: 25px 15px;
        flex-direction: column;
        align-items: center;
        margin: 0 auto 35px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        /* Ensure padding doesn't add to width */
        border-left: none;
        border-top: 6px solid var(--primary);
    }

    .wa-content-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .wa-details h4 {
        text-align: center;
        margin-bottom: 12px;
    }

    .wa-numbers-vertical {
        align-items: center;
        text-align: center;
    }

    .wa-numbers-vertical a {
        font-size: 1.3rem;
    }

    .contact-actions {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .car-display-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .btn-wa-main {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* --- Trip Services Section Styling --- */
.trip-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.trip-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f1f1f1;
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
    border-color: var(--primary);
}

.trip-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.trip-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trip-card:hover .trip-img-box img {
    transform: scale(1.1);
}

.trip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 160, 89, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.trip-overlay span {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    padding: 8px 20px;
}

.trip-card:hover .trip-overlay {
    opacity: 1;
}

.trip-info {
    padding: 25px;
    text-align: center;
}

.trip-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trip-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
}

/* Responsive for Trip Services */
@media (max-width: 1024px) {
    .trip-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trip-service-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Professional Booking Section --- */
/* --- Professional Booking Section (Compact & Vertical) --- */
.booking-section {
    position: relative;
    z-index: 100;
    margin-top: -100px;
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    .booking-section {
        margin-top: -40px;
        /* Less overlap on mobile */
    }
}

.booking-form-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    max-width: 440px;
    margin: 0 auto;
    width: 95%;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.trip-type-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.trip-tab {
    flex: 1;
    padding: 12px 5px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.75rem;
    color: #64748b;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    text-transform: uppercase;
}

.trip-tab:last-child {
    border-right: none;
}

.trip-tab i {
    font-size: 1.25rem;
    color: #64748b;
}

.trip-tab input {
    display: none;
}

.trip-tab.active {
    background: #fffdf0;
    color: #f59e0b;
    box-shadow: inset 0 -2px 0 #ffd700;
}

.trip-tab.active i {
    color: #f59e0b;
}

.form-body {
    padding: 20px;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100% !important;
    max-width: 100% !important;
}

.form-group label {
    font-weight: 700;
    font-size: 0.8rem;
    color: #64748b;
    text-transform: none;
    letter-spacing: 0;
}

.input-wrapper {
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.08);
}

.input-wrapper i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1rem;
    pointer-events: none;
}

.input-wrapper .select-arrow {
    left: auto;
    right: 12px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    outline: none;
    min-height: 48px;
    box-sizing: border-box;
}

.input-wrapper input[type="datetime-local"] {
    cursor: pointer;
    position: relative;
}

.input-wrapper input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.input-wrapper select {
    appearance: none;
    cursor: pointer;
}

.book-now-btn {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    background: #b08b44;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.book-now-btn:hover {
    background: #96753a;
}

.helper-text {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: -4px;
    padding-left: 2px;
}

/* Service Radio Styling */
.service-radio-group {
    display: flex;
    gap: 20px;
    padding: 10px 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.radio-label input {
    accent-color: var(--primary);
}

width: fit-content;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #475569;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    height: 20px;
    width: 20px;
    background-color: white;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label:hover .radio-custom {
    border-color: var(--primary);
}

.radio-label input:checked~.radio-custom {
    background-color: var(--primary);
    border-color: var(--primary);
}

.radio-custom:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.radio-label input:checked~.radio-custom:after {
    display: block;
}

.radio-label input:checked~span:not(.radio-custom) {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .booking-section {
        margin-top: -60px;
        padding-bottom: 40px;
    }

    .trip-tab {
        padding: 18px 10px;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 8px;
    }

    .form-body {
        padding: 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        display: flex;
        flex-direction: column;
    }

    .form-group {
        max-width: 100% !important;
        grid-row: auto !important;
        grid-column: auto !important;
    }

    .service-radio-group {
        width: 100%;
        gap: 15px;
        padding: 12px 15px;
        flex-wrap: wrap;
    }

    .radio-label {
        font-size: 0.85rem;
    }

    .book-now-btn {
        height: 60px;
    }
}


.helper-text {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: -4px;
    padding-left: 2px;
    opacity: 0.8;
}

/* --- Contact Page Specific Styles --- */
.contact-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/slider3.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

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

.premium-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f3e5c7 0%, var(--primary) 50%, #a6823a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.premium-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.contact-details-section {
    background: #ffffff;
    padding-top: 120px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.contact-card-v2 {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-header-v2 {
    background: #f8fafc;
    padding: 60px 40px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.brand-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-title-v2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.reg-number {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.reg-number span {
    color: var(--text-dark);
    font-weight: 700;
}

.contact-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-info-list {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-right: 1px solid #f1f5f9;
}

.info-item-v2 {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.info-text h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 5px;
    font-weight: 700;
}

.info-text p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-booking-box {
    padding: 60px 80px;
    background: rgba(197, 160, 89, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.owner-info {
    margin-bottom: 30px;
}

.owner-info i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.owner-info h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.phone-numbers-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
}

.phone-btn-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 25px;
    background: #ffffff;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}

.phone-btn-v2:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.thanks-msg {
    font-style: italic;
    color: #64748b;
    font-weight: 500;
    font-size: 1rem;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f1f1;
}

/* Responsive for Contact Page */
@media (max-width: 991px) {
    .premium-title {
        font-size: 2.5rem;
    }

    .contact-details-section {
        padding-top: 40px;
        margin-top: 0;
    }

    .contact-grid-v2 {
        grid-template-columns: 1fr;
    }

    .contact-info-list {
        padding: 40px;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        align-items: center;
    }

    .info-item-v2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-booking-box {
        padding: 40px;
    }

    .contact-header-v2 h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .premium-title {
        font-size: 2rem;
    }

    .contact-header-v2 {
        padding: 40px 20px;
    }

    .contact-header-v2 h2 {
        font-size: 1.5rem;
    }

    .info-text p {
        font-size: 1.1rem;
    }

    .owner-info h4 {
        font-size: 1.5rem;
    }

    /* Hide top badge on mobile */
    .brand-badge {
        display: none;
    }

    /* Reduce font size for contact title and reg number */
    .contact-title-v2 {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
    }

    .reg-number {
        font-size: 0.85rem !important;
    }
}

/* Map Section and Subtitle */
.map-section {
    padding-bottom: 80px;
}

.section-subtitle {
    max-width: 600px;
    margin: 15px auto 40px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .map-wrapper iframe {
        height: 350px !important;
    }
}

/* Responsive for Taxi Carousel */
@media (max-width: 768px) {
    .taxi-carousel-container {
        position: relative;
        padding-bottom: 60px;
        /* Space for buttons at the bottom */
        display: block;
        /* Remove flex to give track full width */
    }

    .taxi-carousel-wrapper {
        width: 100%;
        padding: 10px 0;
    }

    .taxi-btn {
        position: absolute;
        bottom: 0;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .taxi-btn.taxi-prev {
        left: calc(50% - 60px);
    }

    .taxi-btn.taxi-next {
        right: calc(50% - 60px);
    }

    .taxi-carousel-track {
        gap: 20px;
    }

    .taxi-carousel-track .rental-card {
        max-width: 85vw;
        /* Make sure it fits nicely on screen */
    }
}

/* --- Success Modal Styling --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #ffffff;
    width: 90%;
    max-width: 450px;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
    animation: bounceIcon 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
}

@keyframes bounceIcon {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.modal-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.modal-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-footer {
    display: flex;
    justify-content: center;
}

.close-modal {
    padding: 12px 35px !important;
    border: none;
    cursor: pointer;
    font-size: 1rem !important;
    box-shadow: 0 10px 15px -3px rgba(197, 160, 89, 0.3);
}

.close-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(197, 160, 0.3);
}


.modal-close-x {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close-x:hover {
    background: #e2e8f0;
    color: var(--text-dark);
    transform: rotate(90deg);
}

/* --- Floating Call & WhatsApp --- */
.floating-call {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    /* Matching Green */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    /* WhatsApp Green */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Mobile adjustments for floating icons */
@media (max-width: 768px) {
    .floating-call {
        width: 40px;
        height: 40px;
        bottom: 70px;
        right: 20px;
        font-size: 22px;
    }

    .floating-whatsapp {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}