/* MNU Travels - public site styles (plain CSS, no build step) */

.site-header {
    z-index: 1030;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--mnu-text);
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--mnu-primary);
}

/* Hero slider */
.hero-slide {
    position: relative;
    min-height: 460px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 77, 183, 0.85) 0%, rgba(30, 77, 183, 0.35) 100%);
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
}

.hero-slide h1 {
    font-weight: 700;
}

/* Section spacing */
.section {
    padding: 4rem 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #6b7280;
    margin-bottom: 2.5rem;
}

/* Cards */
.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eef0f4;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}

.vehicle-card img,
.package-card img {
    height: 200px;
    object-fit: cover;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(30, 77, 183, 0.1);
    color: var(--mnu-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    z-index: 1040;
    text-decoration: none;
}

.whatsapp-float:hover {
    color: #fff;
    filter: brightness(1.05);
}

/* Contact CTA */
.cta-section {
    background-color: var(--mnu-primary);
    color: #fff;
}

/* FAQ accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(30, 77, 183, 0.08);
    color: var(--mnu-primary);
}
