.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222 !important;
    padding: 25px 15px;
    transition: all 0.3s ease;
    width: bolder;
}

/* Hover effect (premium feel) */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fd0d0d !important; /* Bootstrap primary */
    letter-spacing: 1.5px;
}

/* ================= HEADER CAROUSEL MOBILE FIX ================= */
@media (max-width: 768px) {

    /* Carousel height control */
    #header-carousel .carousel-item {
        min-height: 420px;
        position: relative;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Caption overlay */
    .carousel-caption {
        padding: 20px;
        background: rgba(0, 0, 0, 0.65);
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* Small heading */
    .carousel-caption h6 {
        font-size: 13px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    /* Main heading */
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 22px !important;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    /* Special AND text */
    .carousel-caption span {
        font-size: 14px !important;
        letter-spacing: 3px !important;
    }

    /* Button */
    .carousel-caption .btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    /* Controls size */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }
}

/* ================= STATS SECTION ================= */

@media (max-width: 767px) {

    /* Stats number */
    .container-xxl .row.text-center h1 {
        font-size: 26px;
        margin-bottom: 5px;
    }

    /* Stats title */
    .container-xxl .row.text-center h6 {
        font-size: 14px;
    }

    /* Stats description */
    .container-xxl .row.text-center p {
        font-size: 13px;
        margin-bottom: 20px;
    }
}
/* ========== CAR DELIVERY STATS : 2 PER ROW ON MOBILE ========== */
@media (max-width: 767px) {

    /* Target only stats row */
    .row.text-center > .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Number size */
    .row.text-center h1 {
        font-size: 26px;
        margin-bottom: 4px;
    }

    /* Title */
    .row.text-center h6 {
        font-size: 14px;
    }

    /* Description */
    .row.text-center p {
        font-size: 13px;
        margin-bottom: 20px;
    }
}
/* ========== PREMIUM SERVICES : 2 PER ROW ON MOBILE ========== */
@media (max-width: 767px) {

    /* Force 2 columns */
    .container-fluid .row.g-4 > .col-lg-3,
    .container-fluid .row.g-4 > .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Card padding & spacing */
    .container-fluid .h-100 {
        margin-bottom: 15px;
    }

    /* Image height for mobile */
    .container-fluid .h-100 img {
        height: 160px !important;
        object-fit: cover;
    }

    /* Title font size */
    .container-fluid h5 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    /* Description font size */
    .container-fluid p {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Link font size */
    .container-fluid a.text-danger {
        font-size: 13px;
    }
}
/* Booking Section – Mobile Fix */
@media (max-width: 767px) {
    .bg-primary.h-100 {
        height: auto !important; /* automatic height based on content */
        padding: 2rem 1.5rem !important; /* reduce padding for mobile */
    }

    .bg-primary.h-100 h1 {
        font-size: 22px;
    }

    .bg-primary.h-100 input,
    .bg-primary.h-100 select {
        height: 45px !important; /* reduce input/select height */
    }

    .bg-primary.h-100 textarea {
        height: 60px !important; /* reduce textarea height */
    }

    .bg-primary.h-100 button {
        padding: 10px 0;
        font-size: 14px;
    }
}

/* =======================
   CONTACT SECTION MOBILE
======================= */
@media (max-width: 767px) {

    /* Section padding reduce */
    section.container-fluid.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Heading alignment */
    .container > .row.mb-5 {
        text-align: center;
    }

    .container > .row.mb-5 h1 {
        font-size: 1.8rem;
    }

    .container > .row.mb-5 p {
        font-size: 1rem;
    }

    /* Contact info cards spacing */
    .row.g-4.mb-5 > div {
        text-align: center;
    }

    .row.g-4.mb-5 i {
        display: block;
        margin-bottom: 8px;
        font-size: 1.3rem;
    }

    /* Map height fix */
    iframe {
        min-height: 260px !important;
    }

    /* Form padding reduce */
    .p-5.border.rounded-4 {
        padding: 1.5rem !important;
    }

    /* Floating inputs spacing */
    .form-floating > label {
        font-size: 0.9rem;
    }

    /* Button height */
    .btn.btn-danger {
        font-size: 1rem;
        padding: 0.75rem !important;
    }
}/* Happy Moments Section */
.happy-moments-section {
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

/* Card */
.moment-card {
    padding: 15px;
}

.moment-img {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Image */
.moment-img img {
    width: 100%;
    height: 180px; /* rectangle height */
    object-fit: cover; /* cover keeps aspect ratio */
    border-radius: 18px;
    transition: transform 0.6s ease;
}

/* Hover Zoom */
.moment-img:hover img {
    transform: scale(1.12);
}

/* Overlay */
.moment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.moment-img:hover .moment-overlay {
    opacity: 1;
}

.moment-overlay i {
    font-size: 42px;
    color: #ff4d4d;
    animation: pulse 1.5s infinite;
}

/* Heart animation */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}


