/* =========================================================
   HOME PAGE STYLE
========================================================= */

/* ------------------------------
   HERO
------------------------------ */
.hero-section {
    padding-top: 90px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(245, 130, 32, 0.12);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-content p {
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.hero-features {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-feature-item strong {
    display: block;
    font-size: 15px;
    color: var(--primary-dark);
}

.hero-feature-item span {
    font-size: 13px;
    color: var(--text-light);
}

.hero-visual img {
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* ------------------------------
   SEARCH BOX
------------------------------ */
.search-section {
    padding-top: 0;
}

.search-box {
    padding: 28px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.search-box-header {
    margin-bottom: 20px;
}

.search-box-header h2 {
    font-size: 24px;
    margin-bottom: 6px;
}

.search-form {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 180px;
    gap: 16px;
    align-items: end;
}

/* ------------------------------
   WHY SECTION
------------------------------ */
.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.why-list li {
    padding-left: 18px;
    position: relative;
    color: var(--text);
}

.why-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-size: 14px;
}

/* ------------------------------
   CATEGORY FIX (HOME)
------------------------------ */
.category-section {
    background: var(--bg);
}

/* ------------------------------
   MODE SECTION
------------------------------ */
.mode-section {
    background: var(--bg-soft);
}

/* ------------------------------
   SCHEDULE
------------------------------ */
.schedule-section {
    background: var(--bg);
}

.schedule-item {
    background: var(--white);
}

/* ------------------------------
   CTA
------------------------------ */
.cta-section {
    padding-bottom: 90px;
}

/* ------------------------------
   SMALL FIXES
------------------------------ */
.hero-section + .search-section {
    margin-top: -40px;
}

.hero-section {
    padding-bottom: 120px;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 1024px) {

    .hero-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .search-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .hero-section {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .search-box {
        margin-top: -40px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-features {
        gap: 16px;
    }
}

@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 28px;
    }

    .search-box {
        padding: 20px;
    }
}