#hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    background: #1A1A2E;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: background-image 1.2s ease;
}

.hero-clear-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(12, 18, 35, .45) 0%,
        rgba(12, 18, 35, .68) 50%,
        rgba(12, 18, 35, .88) 100%
    );
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
}

.hero-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
}

.hero-title {
    margin-top: 24px;
    font-size: clamp(48px, 6vw, 90px);
    line-height: 1.05;
    font-weight: 1000;
    letter-spacing: -0.04em;
}

.gold-line {
    color: #F57F17;
}

.hero-subtitle {
    max-width: 780px;
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 1.8;
    color: #e5e7eb;
}

.hero-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-tab {
    min-width: 140px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-weight: 800;
    transition: .3s;
}

.hero-tab:hover,
.hero-tab.active-tab {
    background: #1A6B3C;
    border-color: #1A6B3C;
}

#main-search-controller {
    margin-top: 40px;
    background: #fff;
    border-radius: 32px;
    padding: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.hero-field {
    padding: 10px 18px;
    border-right: 1px solid #ececec;
}

.hero-field:last-child {
    border-right: none;
}

.hero-field label {
    display: block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.hero-field .relative {
    position: relative;
}

.hero-field i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #1A1A2E;
    font-size: 14px;
}

.hero-field input,
.hero-field select {
    width: 100%;
    padding-left: 24px;
    border: none;
    background: none;
    outline: none;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.search-submit-btn {
    height: 78px;
    border: none;
    border-radius: 22px;
    background: #1A6B3C;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    transition: .25s ease;
}

.search-submit-btn:hover {
    background: #145530;
}

#hero-stats-zone {
    margin-top: 55px;
}

.hero-stat {
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    border-radius: 30px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(14px);
}

.hero-stat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245,127,23,.18), transparent 45%);
}

.stat-number-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
}

.hero-counter {
    font-size: 92px;
    line-height: 1;
    font-weight: 1000;
    color: #fff;
    letter-spacing: -0.05em;
}

.stat-suffix {
    font-size: 52px;
    line-height: 1;
    font-weight: 1000;
    color: #F57F17;
}

.stat-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    #hero-section {
        min-height: auto;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-tab {
        min-width: 100px;
        height: 46px;
    }

    #main-search-controller {
        border-radius: 24px;
    }

    .hero-field {
        border-right: none;
        border-bottom: 1px solid #ececec;
    }

    .hero-field:last-child {
        border-bottom: none;
    }

    .hero-counter {
        font-size: 54px;
    }

    .stat-suffix {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .hero-stat {
        padding: 25px 12px;
    }
}