/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #E0F7FA, #FFFFFF);
    min-height: 100vh;
    margin: 0;
    padding-top: 76px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.display-4 {
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    color: #555;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
    background-color: #004A8D;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    padding: 1rem 0;
    min-height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-brand-text {
    font-family: 'Pacifico', cursive;
    color: white !important;
    font-size: 1.8rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.navbar-van-icon {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.navbar-van-icon:hover {
    transform: rotate(5deg) scale(1.1);
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #FFC107 !important;
}

/* ==========================================================================
   CAROUSEL
   ========================================================================== */

.carousel-item img {
    height: 80vh;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    bottom: 20%;
    max-width: 800px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.carousel-caption h2 {
    color: #FFC107;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    background: linear-gradient(rgba(0, 74, 141, 0.4), rgba(0, 105, 148, 0.4)),
                url('../images/van.jpeg') center/cover no-repeat fixed;
    color: white;
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.logo-cta {
    width: 180px;
    max-width: 100%;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.5));
}

.cta-title {
    font-family: 'Pacifico', cursive;
    text-shadow: 0 4px 16px rgba(0,0,0,0.8);
    font-size: 3.5rem;
    color: white !important;
}

.tagline {
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    font-size: 1.4rem;
    color: white !important;
}

.btn-cta {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    border: none;
    transition: all 0.4s ease;
    padding: 1rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255,107,107,0.4);
    color: white;
}

/* ==========================================================================
   BOOKING PAGE
   ========================================================================== */

.service-card {
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid #e0e0e0;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem !important;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 168, 181, 0.25);
    border-color: #00A8B5;
}

.service-card.active {
    border-color: #00A8B5 !important;
    background: #e6f7fa !important;
    box-shadow: 0 12px 30px rgba(0, 168, 181, 0.3);
}

.form-section {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    padding: 20px 0;
}

.form-section.active {
    display: block;
    opacity: 1;
}

.booking-card {
    border: 1px solid #e0f0ff;
    background: white;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.form-label {
    color: #004A8D;
    font-weight: 600;
}

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem;
}

.form-control:focus, .form-select:focus {
    border-color: #00A8B5;
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 181, 0.25);
}

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    background: linear-gradient(135deg, #004A8D 0%, #006994 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 0;
}

.footer-logo {
    width: 250px;
    max-width: 100%;
    display: block;
    margin: 0 auto 25px auto;
    filter: none;
    background: transparent;
}

.footer-links a {
    color: white !important;
    text-decoration: none !important;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #FFC107 !important;
}

.social-icons a {
    color: white !important;
    opacity: 0.9;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 1.4rem;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-5px);
    background: #FFC107;
    color: #004A8D !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
    .navbar-brand-text {
        font-size: 1.5rem;
    }
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    .cta-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 70px;
    }
    .carousel-item img {
        height: 60vh;
    }
    .cta-title {
        font-size: 2.2rem;
    }
    .btn-cta {
        font-size: 1.3rem;
        padding: 0.8rem 2rem;
    }
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .navbar-brand-text {
        font-size: 1.2rem;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .btn-cta {
        font-size: 1.1rem;
        padding: 0.7rem 1.5rem;
    }
}