.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 20px 70px;
    z-index: 9;
    /* overflow: hidden; */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top !important;
    background-image: url(/img/biletara-slider-arkaplan.webp);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/otel-arayuz/assets/images/biletara-slider-arkaplan.webp') center/cover;
    opacity: 0.25;
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 960px;
    width: 100%;
}

.hero h1 {    
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    font-size: 2.2rem;
}

.hero h1 strong {
    font-weight: 900;
}

.text-highlight {
    color: var(--white);
    font-weight: 300;
    opacity: 0.85;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 55px;
    font-weight: 400;
}

/* Service Tabs */
.category-th {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
}

.switch-searchbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px 12px 0 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
}

.switch-searchbar i {
    font-size: 0.95rem;
}

.switch-searchbar:hover {
    background: rgba(255,255,255,0.25);
    color: var(--white);
}

.switch-searchbar.active {
    background: var(--white);
    color: #dd2825;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.category-th {
  position: absolute;
  z-index: -1 !important;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  gap: 6px;
}

@media (min-width: 600px) {
    .hero-content {width: 520px; }
}

@media (min-width: 768px) {
    .hero-content {width: 680px; }
}

@media (min-width: 992px) {
    .hero-content {width: 910px; }
    .hero-content h1 {font-size: 3.2rem !important;}
}

@media (max-width: 992px) {
    .hero h1 {        
        font-size: 1.2rem !important;
    }

    .hero {     
        padding: 60px 20px 70px !important;        
        /* overflow: hidden; */
    }
}

@media(max-width: 576px){

    .category-th {
        top: -35px !important;
    }

    .hero {
        align-items: start !important;
        padding: 10px 20px 70px !important;
    }

    .hero-subtitle {        
        margin-bottom: 40px !important;
    }

    .flight-trip-row{
        display: none !important;
    }

    .hero {    
        min-height: 425px !important;
    }

    .hero-subtitle {
        font-size: 0.9rem;        
    }
}