* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
    url('./rice.webp') no-repeat center/cover;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    background: #8B0000;
    padding: 15px 40px;
}

.navbar h1 {
    color: white;
}

.navbar ul {
    display: flex;
    margin-left: auto;
    list-style: none;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
}

/* ── HERO ── */
.bus-hero {
    background-color: #8B0000;
    color: white;
    text-align: center;
    padding: 60px 40px;
}

.bus-hero-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 12px;
}

.bus-hero h2 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 12px;
}

.bus-hero p {
    font-size: 18px;
    opacity: 0.85;
    letter-spacing: 1px;
}

/* ── MARQUEE ── */
.marquee {
    background: #8B0000;
    color: white;
    padding: 10px;
    overflow: hidden;
    white-space: nowrap;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 18s linear infinite;
    font-weight: bold;
    font-size: 14px;
}

@keyframes scrollText {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ── SECTIONS ── */
.bus-section {
    padding: 50px 60px;
}

.bus-section h2 {
    color: #8B0000;
    font-size: 30px;
    font-weight: bold;
    border-bottom: 3px solid #8B0000;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.section-sub {
    color: #666;
    font-size: 15px;
    margin-bottom: 28px;
}

.alt-section {
    background-color: rgba(139, 0, 0, 0.04);
}

/* ── DIVIDER ── */
.bus-divider {
    border: none;
    border-top: 3px solid #8B0000;
    margin: 0 60px;
}

/* ── BADGE ── */
.badge {
    display: inline-block;
    background: #8B0000;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* ── HUB GRID ── */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.hub-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(139, 0, 0, 0.15);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: background 0.2s;
}

.hub-card:hover {
    background: rgba(255, 255, 255, 0.85);
}

.hub-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8B0000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.hub-card h3 {
    color: #8B0000;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 6px;
}

.hub-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ── CARD GRIDS ── */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ── BUS CARD ── */
.bus-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(139, 0, 0, 0.15);
    border-radius: 16px;
    padding: 20px;
    transition: background 0.2s;
}

.bus-card:hover {
    background: rgba(255, 255, 255, 0.9);
}

.bus-card h3 {
    color: #8B0000;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
}

.bus-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

/* ── HIGHLIGHT CARD (Incentive Travel) ── */
.highlight-card {
    text-align: center;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

/* ── SERVICE ICON ── */
.service-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

/* ── FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(139, 0, 0, 0.15);
    border-radius: 14px;
    overflow: hidden;
    transition: background 0.2s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.85);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    text-align: left;
    font-size: 15px;
    font-weight: bold;
    color: #8B0000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-arrow {
    font-size: 12px;
    color: #8B0000;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .card-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .bus-section {
        padding: 36px 24px;
    }

    .bus-divider {
        margin: 0 24px;
    }
}

@media (max-width: 600px) {
    .hub-grid,
    .card-grid-3 {
        grid-template-columns: 1fr;
    }

    .bus-hero h2 {
        font-size: 30px;
    }

    .bus-section {
        padding: 28px 16px;
    }
}