
/* ---------------------------------- */
/* GLOBAL */
/* ---------------------------------- */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}
body, html {
    overflow-x: hidden !important;
}

/* ---------------------------------- */
/* NAVBAR */
/* ---------------------------------- */

.navbar-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: transparent; /* IMPORTANT – bg image shows behind navbar */
}

.navbar-box {
    width: 90%;
    background: white;
    padding: 6px 35px;
    border-radius: 60px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0 auto;
}

.nav-links li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #0A954F;
}

.book-btn {
    background: #0F9D58;
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.book-btn:hover { background: #0c7c47; }


.book-btn-mobile {
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 25px;
    text-decoration: none;
    margin-left: auto;
}

.book-btn-mobile i { color: #000; }

.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding-right: 10px;
}

/* MOBILE NAV FIXES */
@media (max-width: 991px) {
    .nav-links, .book-btn {
        display: none !important;
    }

    .logo {
        margin: 0 auto;
        padding-left: 0;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.mobile-menu {
    width: 50%;
    min-width: 200px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 20px;
    font-size: 18px;

    position: fixed;          /* FIXED = stays under navbar always */
    top: 90px;                /* exactly under navbar */
    left: -60%;               /* hidden off-screen */
    z-index: 99999;

    transition: left 0.35s ease;
}

/* Show when opening */
.menu-open {
    left: 10%;               /* original popup spot */
}


.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu li { margin: 12px 0; }
.mobile-menu a { text-decoration: none; color: #000; font-weight: 500; }

/* cab booking */


/* ---------------------------------- */
/* BOOKING SECTION */
/* ---------------------------------- */
.first-section {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), url("../../images/cabbookinpagebg.jpg") no-repeat center center/cover;
    position: relative;  
    padding-top: 120px; 
    display: flex;
       justify-content: center;
    align-items: center;
}


.booking-section {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    
}

.booking-card {
    width: 70%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    border-radius: 35px;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.15);
 
}

.booking-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.booking-card label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.input-box { position: relative; }

.input-box input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.input-box .icon {
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 18px;
    color: #555;
}

.book-btn-full {
    width: 100%;
    padding: 14px 25px;
    border: none;
    border-radius: 40px;
    background: #0F9D58;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.book-btn-full:hover { background: #0c7c47; }
.input-box select {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    /* background: white; */
    appearance: none;
    cursor: pointer;
}


.input-box { position: relative; }

.input-box input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.input-box .icon {
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 18px;
    color: #555;
}

/* RESPONSIVE BOOKING */
@media (max-width: 992px) {
    .booking-card {
        width: 90%;
        padding: 20px;
    }
    .booking-section {
        margin-top: 20px; /* remove floating on mobile */
    }
    .first-sec-text p { display: none; }
}

@media (max-width: 576px) {
        .booking-card {
        padding: 15px;
        }
        .booking-card h3 {
        font-size: 20px;
        }
        .book-btn-full {
        font-size: 16px;
        }
}


/* footer  */
/* --- Global Styles for Footer --- */
.main-footer {
    width: 100%;
    /* margin-top: 10vh; */
    /* font-family: , sans-serif; Fallback font */
}

/* ========================================= */
/* 1. Newsletter Section (Top Green Part) */
/* ========================================= */
.newsletter-section {
    background-color: #38a55e; /* Vibrant green color */
    padding: 60px 100px 80px 100px; /* Adjust padding for visual balance */
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* Optional: Constrain content width */
    margin: 0 auto;
}

.newsletter-text {
    max-width: 450px;
    color: #fff;
}

.newsletter-heading {
    font-family: 'Poppins', sans-serif; /* Assuming Poppins based on the image style */
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.newsletter-description {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
}

.newsletter-form-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.email-input {
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.4); /* Semi-transparent background */
    width: 300px;
    outline: none;
}
.email-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.subscribe-button {
    background-color: #ffffff;
    color: #38a55e;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}
.subscribe-button:hover {
    background-color: #e6e6e6;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    bottom: -20px; /* Position half outside the section */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #4CAF50; /* A darker shade of green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Styling the arrow inside the button */
.back-to-top svg {
    transform: translateY(-2px); /* Slight lift for visual balance */
}


/* ========================================= */
/* 2. Main Footer (Bottom Dark Part) */
/* ========================================= */
.footer-bottom {
    background-color: #000000; /* Dark background color */
    color: #ffffff;
    padding: 80px 100px 40px 100px;
}

.footer-content {
    max-width: 1400px; /* Match newsletter width */
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    /* This section contains the navigation links and social icons */
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
    transition: color 0.3s;
}
.footer-nav a:first-child { margin-left: 0; }
.footer-nav a:hover {
    color: #38a55e;
}

.pipe {
    color: #777;
    font-size: 16px;
    font-weight: 300;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s;
}
.social-icon:hover {
    background-color: #38a55e;
    border-color: #38a55e;
}

.footer-separator {
    border: none;
    height: 1px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.footer-copyright-policy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ccc;
}

.privacy-policy {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.privacy-policy:hover {
    color: #38a55e;
}


/* ========================================= */
/* 📱 Responsive Adjustments (Max width 768px) */
/* ========================================= */
@media (max-width: 768px) {
    /* Newsletter Section */
    .newsletter-section {
        padding: 40px 20px 60px 20px;
    }

    .newsletter-content {
        flex-direction: column; /* Stack text and form */
        align-items: flex-start;
        gap: 30px;
    }

    .newsletter-heading {
        font-size: 28px;
    }

    .newsletter-form-container {
        flex-direction: column; /* Stack input and button */
        width: 100%;
        gap: 10px;
    }

    .email-input {
        width: 100%;
    }

    .subscribe-button {
        width: 100%;
    }

    /* Main Footer Section */
    .footer-bottom {
        padding: 60px 20px 30px 20px;
    }

    .footer-links-social {
        flex-direction: column; /* Stack links and social icons */
        align-items: flex-start;
        gap: 20px;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap; /* Allow links to wrap */
    }

    .footer-nav a, .pipe {
        margin: 0 5px;
    }

    .footer-copyright-policy {
        flex-direction: column; /* Stack copyright and policy */
        gap: 10px;
        align-items: flex-start;
    }
}