

    /* =============================================
   MERAM TARZI HERO SECTION - CSS v3
   Soluk arama kutusu + Oval hızlı linkler carousel
   ============================================= */

    /* ===== HERO FULLSCREEN ===== */
    .hero-fullscreen {
        position: relative;
        height: calc(100vh - 130px);
        max-height: 750px;
        min-height: 500px;
        width: 100%;
        overflow: hidden;
    }

    /* Arkaplan Slider */
    .hero-bg-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-bg-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 87%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .hero-bg-slide.active {
        opacity: 1;
    }

    .hero-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
                to right,
                rgba(0, 61, 130, 0.6) 0%,
                rgba(0, 61, 130, 0.25) 30%,
                rgba(0, 0, 0, 0.15) 100%
        );
        z-index: 2;
    }

    /* Ana İçerik Wrapper */
    .hero-content-wrapper {
        position: relative;
        z-index: 10;
        height: 100%;
    }

    /* ===== SOL - BAŞKAN ===== */
    .hero-mayor {
        position: absolute;
        bottom: 100px;
        left: 40px;
        z-index: 15;
    }

    .hero-mayor-image {
        max-width: 300px;
    }

    .hero-mayor-image img {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    }

    .hero-mayor-info {
        position: absolute;
        bottom: 10px;
        left: 20px;
        color: white;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .hero-mayor-name {
        font-size: 22px;
        font-weight: 700;
        margin: 0;
        font-style: italic;
    }

    .hero-mayor-title,
    .hero-mayor-social {
        display: none;
    }

    /* ===== ORTA - ARAMA KUTUSU (SOLUK/ŞEFFAF) ===== */
    .hero-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 550px;
        padding: 0 20px;
        z-index: 12;
    }

    .hero-slogan {
        display: none;
    }

    .hero-search-box {
        width: 100%;
    }

    /* Soluk/Şeffaf Arama Input */
    .hero-search-input {
        display: flex;
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s;
    }

    .hero-search-input:focus-within {
        background: rgba(0, 0, 0, 0.5);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .hero-search-input input {
        flex: 1;
        background: transparent;
        border: none;
        padding: 16px 22px;
        font-size: 15px;
        color: white;
        outline: none;
    }

    .hero-search-input input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .hero-search-input button {
        background: transparent;
        border: none;
        padding: 16px 22px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .hero-search-input button:hover {
        color: white;
    }

    /* Hızlı Arama Etiketleri - Arama altı */
    .hero-search-tags {
        display: flex;
        align-items: center;
        gap: 0;
        margin-top: 12px;
        background: rgba(0, 100, 100, 0.85);
        backdrop-filter: blur(5px);
        border-radius: 8px;
        overflow: hidden;
    }

    .hero-search-tags .tag-label {
        color: white;
        font-size: 11px;
        font-weight: 700;
        padding: 12px 16px;
        background: rgba(0, 0, 0, 0.15);
        white-space: nowrap;
    }

    .hero-search-tags a {
        color: white;
        font-size: 12px;
        font-weight: 500;
        padding: 12px 14px;
        text-decoration: none;
        transition: all 0.3s;
        white-space: nowrap;
    }

    .hero-search-tags a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* ===== SAĞ - HAVA DURUMU ===== */
    .hero-right {
        position: absolute;
        top: 25px;
        right: 30px;
        z-index: 15;
        text-align: right;
    }

    .hero-weather {
        color: white;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }

    .weather-date {
        color: #4ade80;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .weather-location {
        font-size: 13px;
        line-height: 1.4;
        opacity: 0.9;
        margin-bottom: 12px;
    }

    .weather-info {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
    }

    .weather-icon {
        font-size: 36px;
        opacity: 0.9;
    }

    .weather-temp {
        font-size: 42px;
        font-weight: 700;
    }

    .hero-slider-dots {
        display: flex;
        justify-content: flex-end;
        gap: 8px;
        margin-top: 18px;
    }

    .hero-slider-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s;
    }

    .hero-slider-dots .dot.active {
        background: #003d82;
        width: 24px;
        border-radius: 5px;
    }

    .hero-right-buttons {
        display: none !important;
    }

    /* ===== ALT HIZLI LİNKLER - OVAL CAROUSEL ===== */
    .hero-quick-links {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(90deg,
        rgba(0, 80, 80, 0.95) 0%,
        rgba(0, 100, 90, 0.95) 50%,
        rgba(0, 120, 100, 0.95) 100%
        );
        backdrop-filter: blur(10px);
        z-index: 20;
        padding: 12px 0;
    }

    .quick-links-container {
        position: relative;
        display: flex;
        align-items: center;
        max-width: 100%;
        padding: 0 60px;
    }

    /* Carousel Okları */
    .quick-links-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: white;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 25;
    }

    .quick-links-arrow:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-50%) scale(1.05);
    }

    .quick-links-arrow.prev {
        left: 10px;
    }

    .quick-links-arrow.next {
        right: 10px;
    }

    .quick-links-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    /* Slider Track */
    .quick-links-slider {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        padding: 8px 5px;
    }

    .quick-links-slider::-webkit-scrollbar {
        display: none;
    }

    /* Oval Link Items */
    .quick-link-item {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 22px 12px 14px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50px; /* OVAL */
        color: white;
        text-decoration: none;
        transition: all 0.3s;
        scroll-snap-align: start;
        white-space: nowrap;
    }

    .quick-link-item:hover {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
        text-decoration: none;
        color: white;
    }

    .quick-link-icon {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
    }

    .quick-link-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .quick-link-title {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.2;
    }

    .quick-link-desc {
        font-size: 10px;
        opacity: 0.7;
        line-height: 1.2;
    }

    /* Toggle Butonu Kaldırıldı */
    .quick-links-toggle {
        display: none !important;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1399.98px) {
        .hero-mayor-image {
            max-width: 260px;
        }

        .quick-link-item {
            padding: 10px 18px 10px 12px;
        }
    }

    @media (max-width: 1199.98px) {
        .hero-fullscreen {
            height: calc(100vh - 120px);
            max-height: 650px;
        }

        .hero-mayor {
            left: 25px;
            bottom: 90px;
        }

        .hero-mayor-image {
            max-width: 230px;
        }

        .hero-search-tags a {
            padding: 10px 12px;
            font-size: 11px;
        }

        .weather-temp {
            font-size: 36px;
        }

        .weather-icon {
            font-size: 30px;
        }

        .quick-links-container {
            padding: 0 50px;
        }

        .quick-links-arrow {
            width: 38px;
            height: 38px;
            font-size: 14px;
        }
    }

    @media (max-width: 991.98px) {
        .hero-fullscreen {
            height: calc(100vh - 80px);
            max-height: 580px;
            min-height: 420px;
        }

        .hero-mayor {
            display: none;
        }

        .hero-right {
            top: 15px;
            right: 20px;
        }

        .weather-temp {
            font-size: 30px;
        }

        .weather-icon {
            font-size: 26px;
        }

        .weather-date {
            font-size: 13px;
        }

        .weather-location {
            font-size: 11px;
        }

        .hero-center {
            max-width: 480px;
        }

        .hero-search-tags {
            overflow-x: auto;
            scrollbar-width: none;
        }

        .quick-link-item {
            padding: 10px 16px 10px 10px;
            gap: 10px;
        }

        .quick-link-icon {
            width: 34px;
            height: 34px;
            font-size: 14px;
        }

        .quick-link-title {
            font-size: 12px;
        }

        .quick-link-desc {
            display: none;
        }
    }

    @media (max-width: 767.98px) {
        .hero-fullscreen {
            height: calc(100vh - 70px);
            max-height: 500px;
            min-height: 380px;
        }

        .hero-right {
            top: 10px;
            right: 15px;
        }

        .weather-temp {
            font-size: 26px;
        }

        .weather-icon {
            font-size: 22px;
        }

        .hero-slider-dots {
            display: none;
        }

        .hero-center {
            max-width: 90%;
        }

        .hero-search-input input {
            padding: 14px 16px;
            font-size: 14px;
        }

        .hero-search-input button {
            padding: 14px 16px;
        }

        .hero-search-tags {
            display: none;
        }

        .hero-quick-links {
            padding: 10px 0;
        }

        .quick-links-container {
            padding: 0 45px;
        }

        .quick-links-arrow {
            width: 34px;
            height: 34px;
            font-size: 12px;
        }

        .quick-links-arrow.prev {
            left: 8px;
        }

        .quick-links-arrow.next {
            right: 8px;
        }

        .quick-link-item {
            padding: 8px 14px 8px 8px;
            gap: 8px;
        }

        .quick-link-icon {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }

        .quick-link-title {
            font-size: 11px;
        }
    }

    @media (max-width: 575.98px) {
        .hero-fullscreen {
            height: calc(100vh - 60px);
            max-height: 420px;
            min-height: 320px;
        }

        .hero-right {
            display: none;
        }

        .hero-search-input input {
            padding: 12px 14px;
            font-size: 13px;
        }

        .quick-links-slider {
            gap: 10px;
        }

        .quick-link-item {
            padding: 8px 12px 8px 8px;
        }

        .quick-link-title {
            font-size: 10px;
        }
    }
