.ustmenu__language {
    display: inline-flex;
    gap: 8px;
}

.ustmenu__language .ustmenu__icon-link {
    padding: 6px 12px;
}
/* Layout-specific overrides extracted from legacy inline styles */

body .ustmenu {
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: rgba(33, 33, 33, 0.65);
    border-radius: 0 0 24px 24px;
    backdrop-filter: blur(10px);
}

.ustmenu__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
}

.ustmenu__logo img {
    max-height: 90px;
    width: auto;
}

.ustmenu__logo,
.ustmenu__toggle {
    flex: 0 0 auto;
}

/* Desktop: Panel görünür, Toggle gizli */
.ustmenu__panel {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.ustmenu__toggle {
    display: none;
}

.ustmenu__cta-group,
.ustmenu__meta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ustmenu__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #FF7A00;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ustmenu__cta:hover {
    background-color: #FF7A00;
    color: #fff;
}

.ustmenu__cta:hover img {
    filter: brightness(0) invert(1);
}

.ustmenu__cta img {
    max-height: 22px;
}

.ustmenu__icon-link,
.ustmenu__notice,
.ustmenu .cuzdan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #FF7A00;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.ustmenu__icon-link:hover {
    background-color: #FF7A00;
    color: #fff;
}

.ustmenu__icon-link:hover img {
    filter: brightness(0) invert(1);
}

.ustmenu__icon-link.active {
    background: #FF7A00;
    color: #fff;
}

.ustmenu__icon-link img,
.ustmenu .cuzdan img {
    max-height: 18px;
}

.ustmenu__wallet {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ustmenu .bekleyenodeme {
    background: rgba(238, 2, 2, 0.8);
    border: none;
}

.ustmenu .girisyap {
    cursor: pointer;
    position: relative;
}

.ustmenu .girisyap .altmenu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    left: auto;
    display: none;
    min-width: 240px;
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: slideDownDesktop 0.3s ease-out;
}

/* Desktop: Sadece click ile açılır */
.ustmenu .girisyap.active .altmenu {
    display: block;
}

@keyframes slideDownDesktop {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ustmenu .girisyap .altmenu::before {
    content: '';
    position: absolute;
    top: -4px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.ustmenu .girisyap .altmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ustmenu .girisyap .altmenu li {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.ustmenu .girisyap .altmenu li:hover {
    background: linear-gradient(135deg, #ee8502 0%, #f2993f 100%);
}

.ustmenu .girisyap .altmenu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #212529;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 12px;
}

.ustmenu .girisyap .altmenu li:hover a {
    color: #ffffff;
    padding-left: 20px;
}

.ustmenu .girisyap .altmenu li:hover a::before {
    filter: brightness(0) invert(1);
}

/* İkonlar için Font Awesome (Desktop) */
.ustmenu .girisyap .altmenu li a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 15px;
    width: 20px;
    text-align: center;
    color: #888888;
    transition: all 0.2s ease;
}

.ustmenu .girisyap .altmenu li:hover a::before {
    color: #ffffff;
}

/* Desktop - Font Awesome İkonları (data-menu-item based) */
.ustmenu .girisyap .altmenu li a[data-menu-item="referral"]::before {
    content: '\f135'; /* fa-rocket - Referans Kodu */
}

.ustmenu .girisyap .altmenu li a[data-menu-item="opportunities"]::before {
    content: '\f0eb'; /* fa-lightbulb - Fırsatlar */
}

.ustmenu .girisyap .altmenu li a[data-menu-item="jobs"]::before {
    content: '\f0cb'; /* fa-list-alt - İşlerim */
}

.ustmenu .girisyap .altmenu li a[data-menu-item="subscription"]::before {
    content: '\f09d'; /* fa-credit-card - Üyeliğim */
}

.ustmenu .girisyap .altmenu li a[data-menu-item="settings"]::before {
    content: '\f013'; /* fa-cog - Ayarlar */
}

.ustmenu .girisyap .altmenu li a[data-menu-item="notifications"]::before {
    content: '\f0f3'; /* fa-bell - Bildirimler */
}

.ustmenu .girisyap .altmenu li a[data-menu-item="comments"]::before {
    content: '\f075'; /* fa-comment - Yorumlar */
}

.ustmenu .girisyap .altmenu li a[data-menu-item="logout"]::before {
    content: '\f2f5'; /* fa-sign-out-alt - Çıkış */
}

/* Çıkış Yap - fa-sign-out-alt */
.ustmenu .girisyap .altmenu li:last-child a {
    color: #e63946;
}

.ustmenu .girisyap .altmenu li:last-child a::before {
    color: #e63946;
    transform: scaleX(-1); /* İkonu sağa baktır */
}

.ustmenu .girisyap .altmenu li:last-child:hover {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
}

.ustmenu .girisyap .altmenu li:last-child:hover a,
.ustmenu .girisyap .altmenu li:last-child:hover a::before {
    color: #ffffff;
}

.ustmenu__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
}

.ustmenu__toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
    margin: 0 auto;
}

.slidermenu,
.slideraramabolum,
header .carousel {
    z-index: 1;
}

/* ============================================
   SLIDER SECTION - Modern Flex Layout
   ============================================ */

header .carousel-inner {
    position: relative;
    min-height: 750px; /* Tüm kategorilerin sığması için yükseltildi */
    overflow: visible; /* İçeriğin görünmesi için */
}

header .carousel-item {
    min-height: 750px; /* Carousel item da aynı yükseklikte olmalı */
    background-size: cover;
    background-position: center;
}

.slider-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto; /* Auto yaparak içeriğin yüksekliğine göre büyümesine izin ver */
    min-height: 100%; /* En az parent kadar yüksek ol */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 24px 50px;
    gap: 24px;
    pointer-events: none;
    overflow: visible; /* Tüm içeriği göster */
}

.slider-layer > .slideraramabolum,
.slider-layer > .slidermenu {
    pointer-events: auto;
    width: 100%;
}

/* Search Section */
.slideraramabolum {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

.slideraramabolum .container {
    width: 100%;
    max-width: 960px;
    padding: 0 16px;
}

.slideraramabolum form {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.slider-search-field {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.slider-search-field .arama {
    width: 100%;
    min-height: 60px;
    border-radius: 999px;
    border: none;
    padding: 0 24px;
    font-size: 16px; /* iOS Safari zoom'u engellemek için minimum 16px */
    font-weight: 500;
    color: #212529;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    outline: none;
    -webkit-text-size-adjust: 100%; /* iOS Safari font-size ayarını zorla */
}

.slider-search-field .arama:focus {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
    background: #fff;
}

.slider-search-field .arama::placeholder {
    color: #999;
    font-weight: 400;
}

.slider-search-field .buton {
    display: none;
}

/* Search Results - Positioned dynamically by JS */
.slider-search-results {
    position: fixed;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    max-height: 360px;
    overflow-y: auto;
    display: none;
    z-index: 10000;
    pointer-events: auto;
}

/* Mobile Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-search-wrapper {
    position: fixed;
    top: 20px;
    left: 16px;
    right: 80px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-search-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-search-wrapper input {
    width: 100%;
    min-height: 60px;
    border-radius: 999px;
    padding: 0 24px;
    font-size: 16px; /* iOS Safari zoom'u engellemek için minimum 16px */
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: white;
    -webkit-text-size-adjust: 100%; /* iOS Safari font-size ayarını zorla */
}

.mobile-results-wrapper {
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    bottom: 20px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-results-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-results-wrapper #subCategories {
    position: static !important;
    width: 100% !important;
    max-height: none !important;
    display: block !important;
    margin: 0;
    top: auto !important;
    left: auto !important;
}

/* Mobile search results özel stilleri */
.mobile-results-wrapper .searchOption {
    padding: 12px 16px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
}

.mobile-results-wrapper .hic-option-left {
    width: 100% !important;
}

.mobile-results-wrapper .hic-option-title {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    line-height: 1.4 !important;
}

.mobile-results-wrapper .hic-option-root {
    align-self: flex-start !important;
    margin-left: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    word-wrap: break-word !important;
    line-height: 1.3 !important;
    padding: 6px 12px !important;
    font-size: 11px !important;
    text-align: left !important;
}

.search-close-btn {
    position: fixed;
    top: 28px;
    right: 20px; /* Biraz daha içeride, zoom durumunda da merkezi kalır */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.search-close-btn.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.search-close-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.search-close-btn svg {
    color: #333;
}

@media (max-width: 992px) {
    body.search-active {
        overflow: hidden;
    }

    body.search-active .slider-search-results {
        top: 90px !important;
        left: 16px !important;
        right: 16px !important;
        width: calc(100% - 32px) !important;
        max-height: calc(100vh - 120px) !important;
        border-radius: 16px;
        z-index: 10000;
    }
}

.slider-search-results .searchOption {
    padding: 14px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    color: #212529;
    transition: background 0.2s ease;
    border-left: 3px solid transparent;
}

.slider-search-results .searchOption:hover {
    background: rgba(255, 122, 0, 0.08);
    border-left-color: #FF7A00;
}

.slider-search-results .hic-option-title {
    font-weight: 600;
    font-size: 15px;
}

.slider-search-results .hic-option-root {
    font-size: 12px;
    color: #fff;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9A44 100%);
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
}

.slider-search-results .hic-search-empty,
.slider-search-results .hic-search-loading {
    justify-content: center;
    gap: 12px;
    color: #666;
    font-style: italic;
}

.slider-search-results .hic-search-empty i,
.slider-search-results .hic-search-loading .hic-spinner {
    color: #ccc;
    font-size: 18px;
}

.slider-search-results .hic-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #FF7A00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Category Menu Section */
.slidermenu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    flex-shrink: 0; /* Küçülmeyi engelle */
    max-width: 100%; /* Genişlik taşmasını engelle */
}

.slidermenu .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 16px;
}

.slidermenu .menugenel {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
    max-width: 100%; /* Genişlik taşmasını engelle */
    box-sizing: border-box; /* Padding dahil genişlik hesaplama */
}

.slidermenu .menugenel a {
    text-decoration: none;
    flex: 0 1 auto;
}

.slidermenu .menugenel .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 16px;
    min-height: 120px;
    width: 140px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slidermenu .menugenel .menu:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.slidermenu .menugenel .menu img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.slidermenu .menugenel .menu:hover img {
    transform: scale(1.1);
}

.slidermenu .menugenel .menu .baslik {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.3;
    margin: 0;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.validation-summary-errors {
    margin: 5px 0 !important;
}

.toast-info {
    background-color: #ffb967 !important;
}

.boldTextyeni {
    font-weight: bold;
    color: #000;
}

.dtbutton,
.dtbutton2,
.dtbutton3,
.dtbuttonAdd,
.dtbuttonGelismis,
.dtbuttonyesil,
.dtbuttonfilter,
.dtbuttonsecili,
.dtbuttonozel,
.dtbuttondanger {
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
}

.dtbutton {
    background-color: #5D6D7E;
    color: #fff;
}

.dtbutton:hover {
    background-color: #0048ba;
    opacity: 0.7;
    color: #fff;
}

.dtbutton2 {
    background-color: #F4D03F;
    color: #fff;
}

.dtbutton3 {
    background-color: #28a745;
    color: #fff;
}

.dtbuttonAdd {
    background-color: #58D68D;
    color: #fff;
}

.dtbuttonAdd:hover {
    background-color: #28a745;
    opacity: 0.7;
    color: #fff;
}

.dtbuttonGelismis {
    background-color: #5dade2;
    color: #fff;
}

.dtbuttonyesil {
    background-color: #16A085;
    color: #000;
    font-weight: bold;
}

.dtbuttonfilter {
    background-color: #5499C7;
    color: #fff;
}

.dtbuttonsecili {
    background-color: #A569BD;
    color: #fff;
    font-weight: bold;
}

.dtbuttonozel {
    background-color: #f5f5f5;
    color: #000;
    font-weight: bold;
}

.dtbuttondanger {
    background-color: #EA7171;
    color: #fff;
    font-weight: bold;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

@media (min-width: 993px) {
    .ustmenu__panel {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 32px;
        flex: 1;
    }
}

@media (max-width: 992px) {
    header .carousel-inner {
        min-height: 600px; /* Yükseklik daha da azaltıldı */
        overflow: visible; /* İçeriğin görünmesi için */
    }
    
    header .carousel-item {
        min-height: 600px; /* Carousel item da aynı yükseklikte olmalı */
    }
    
    /* Header yüksekliğini hesaba kat */
    body .ustmenu {
        min-height: 94px; /* Logo + padding: 70px + 24px */
    }

    .slider-layer {
        justify-content: flex-start;
        padding-top: 105px; /* Header yüksekliği (94px) + minimal boşluk */
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 60px;
        gap: 16px;
        overflow: visible;
    }

    .slideraramabolum {
        order: 1;
        margin-top: 0;
        padding-top: 0;
    }

    .slidermenu {
        order: 2;
    }

    .slider-search-field .arama {
        min-height: 54px;
        font-size: 15px;
    }

    .slidermenu .menugenel {
        gap: 10px;
    }

    .slidermenu .menugenel .menu {
        width: 100px;
        min-height: 100px;
        padding: 14px 10px;
    }

    .slidermenu .menugenel .menu img {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    .slidermenu .menugenel .menu .baslik {
        font-size: 11px;
        height: 28px;
    }
    .ustmenu__logo {
        order: 1;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        margin-right: auto;
    }

    .ustmenu__logo img {
        max-height: 90px;
        min-height: 90px;
        object-fit: contain;
    }
    
    /* Mobilde logoyu daha da küçült */
    @media (max-width: 768px) {
        .ustmenu__logo img {
            max-height: 60px;
            min-height: 60px;
        }
    }

    .ustmenu__toggle {
        height: 46px;
        width: 46px;
        padding: 0;
        align-items: center;
    }

    .ustmenu__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: nowrap;
        padding-left: 16px;
        padding-right: 16px;
    }

    .ustmenu__toggle {
        display: inline-flex;
        margin-right: 8px;
        order: 2;
        margin-left: auto;
    }

    .ustmenu__panel {
        position: absolute;
        left: 16px;
        right: 16px;
        width: calc(100% - 32px);
        top: 100%;
        margin-top: 10px;
        background: rgba(33, 33, 33, 0.92);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        border-radius: 18px;
        padding: 18px 20px 24px;
        display: none;
        flex-direction: column;
        gap: 16px;
        z-index: 4;
    }

    .ustmenu--open .ustmenu__panel {
        display: flex;
    }

    .ustmenu__cta-group,
    .ustmenu__meta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .ustmenu__cta,
    .ustmenu__icon-link,
    .ustmenu .cuzdan,
    .ustmenu .bekleyenodeme {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .ustmenu__wallet {
        flex-direction: column;
        width: 100%;
    }

    /* Mobil: Modern ve Profesyonel Menü Tasarımı */
    
    /* CTA grup - flex-column yapalım */
    .ustmenu__cta-group {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    /* Hesabım container - tüm alanı kapsıyor */
    .ustmenu .girisyap.ustmenu__account {
        position: relative;
        background: transparent;
        color: #ffffff !important;
        border: none;
        border-radius: 0;
        padding: 0;
        font-weight: 700;
        font-size: 18px;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        cursor: default;
        transition: none;
        box-shadow: none;
        margin-bottom: 0;
        width: 100%;
        gap: 0;
    }
    
    /* Hesabım text - sadece yazı, ikon yok */
    .ustmenu .girisyap.ustmenu__account::before {
        content: 'Hesabım';
        display: block;
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        padding: 0 0 16px 0;
        border-bottom: 2px solid rgba(255, 255, 255, 0.15);
        margin-bottom: 0;
        letter-spacing: 0.3px;
        text-align: center;
    }

    .ustmenu .girisyap.ustmenu__account::after {
        display: none;
    }

    /* Orijinal img ve text'i gizle */
    .ustmenu .girisyap.ustmenu__account > img {
        display: none;
    }
    
    /* Orijinal text node'u gizlemek için */
    .ustmenu .girisyap.ustmenu__account {
        font-size: 0; /* Text node'u gizler */
    }

    /* Menü container - Hesabım'ın ALTINDA, font-size'ı geri getir */
    .ustmenu .girisyap.ustmenu__account .altmenu {
        position: static;
        display: block !important;
        box-shadow: none;
        margin: 16px 0 0 0;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 12px;
        animation: none;
        width: 100%;
        font-size: 15px; /* Font size geri gelsin */
        backdrop-filter: blur(10px);
    }

    .ustmenu .girisyap.ustmenu__account .altmenu::before {
        display: none;
    }

    .ustmenu .girisyap.ustmenu__account .altmenu ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .ustmenu .girisyap.ustmenu__account .altmenu ul li {
        border-top: none;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.2s ease;
        background: rgba(255, 255, 255, 0.12);
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .ustmenu .girisyap.ustmenu__account .altmenu ul li:first-child {
        border-top: none;
    }

    .ustmenu .girisyap.ustmenu__account .altmenu ul li:active {
        transform: scale(0.97);
        background: rgba(238, 133, 2, 0.2);
        border-color: rgba(238, 133, 2, 0.3);
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        color: #ffffff;
        font-weight: 500;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.2s ease;
        border-radius: 12px;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }

    /* Sağda chevron ok */
    .ustmenu .girisyap.ustmenu__account .altmenu li a::after {
        content: '';
        position: absolute;
        right: 16px;
        width: 6px;
        height: 6px;
        border-right: 2px solid rgba(255, 255, 255, 0.5);
        border-top: 2px solid rgba(255, 255, 255, 0.5);
        transform: rotate(45deg);
        transition: all 0.2s ease;
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li:active a::after {
        border-color: #ee8502;
        right: 14px;
    }

    /* İkonlar - Turuncu temalı */
    .ustmenu .girisyap.ustmenu__account .altmenu li a::before {
        content: '';
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        flex-shrink: 0;
        font-size: 20px;
        transition: all 0.2s ease;
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
    }

    /* Font Awesome İkonları - data-menu-item based */
    .ustmenu .girisyap.ustmenu__account .altmenu li a[data-menu-item="referral"]::before {
        content: '\f135'; /* fa-rocket - Referans Kodu */
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li a[data-menu-item="opportunities"]::before {
        content: '\f0eb'; /* fa-lightbulb - Fırsatlar */
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li a[data-menu-item="jobs"]::before {
        content: '\f0cb'; /* fa-list-alt - İşlerim */
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li a[data-menu-item="subscription"]::before {
        content: '\f09d'; /* fa-credit-card - Üyeliğim */
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li a[data-menu-item="settings"]::before {
        content: '\f013'; /* fa-cog - Ayarlar */
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li a[data-menu-item="notifications"]::before {
        content: '\f0f3'; /* fa-bell - Bildirimler */
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li a[data-menu-item="comments"]::before {
        content: '\f075'; /* fa-comment - Yorumlar */
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li a[data-menu-item="logout"]::before {
        content: '\f2f5'; /* fa-sign-out-alt - Çıkış */
    }

    /* Active durumda ikon turuncuya dönsün */
    .ustmenu .girisyap.ustmenu__account .altmenu li:active a::before {
        background: rgba(238, 133, 2, 0.3);
        color: #ee8502;
    }

    /* Çıkış butonu - Kırmızı vurgu */
    .ustmenu .girisyap.ustmenu__account .altmenu li:last-child {
        background: rgba(220, 38, 38, 0.15);
        border: 1px solid rgba(220, 38, 38, 0.3);
        margin-top: 4px;
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li:last-child a {
        color: #ff6b6b;
        font-weight: 600;
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li:last-child a::before {
        background: rgba(220, 38, 38, 0.2);
        color: #ff6b6b;
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li:last-child a::after {
        border-color: #ff6b6b;
    }

    .ustmenu .girisyap.ustmenu__account .altmenu li:last-child:active {
        background: rgba(220, 38, 38, 0.25);
        border-color: rgba(220, 38, 38, 0.4);
    }
    
    .ustmenu__language {
        width: 100%;
        justify-content: center;
    }

    /* CTA grubu için düzenleme */
    .ustmenu__cta-group {
        width: 100%;
    }

    .ustmenu__cta-group .girisyap.ustmenu__account {
        width: 100%;
        order: 1; /* Hesabım en üstte */
    }
    
    /* Hizmet Ver/Al butonunu Hesabım'dan ÖNCE göster */
    .ustmenu__cta-group .hizmetver {
        order: 0;
        margin-bottom: 12px;
    }
}


@media (min-width: 993px) {
    .ustmenu {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ustmenu__container {
        flex: 1;
    }

    .ustmenu__panel {
        position: static;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 32px;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
}

@media (max-width: 576px) {
    header .carousel-inner {
        min-height: 550px; /* Yükseklik daha da azaltıldı - çok daha kompakt */
        overflow: visible; /* İçeriğin görünmesi için */
    }
    
    header .carousel-item {
        min-height: 550px; /* Carousel item da aynı yükseklikte olmalı */
    }
    
    /* Header yüksekliğini hesaba kat */
    body .ustmenu {
        min-height: 94px; /* Logo + padding: 70px + 24px */
    }

    .slider-layer {
        justify-content: flex-start;
        padding-top: 100px; /* Header yüksekliği (94px) + minimal boşluk */
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 50px;
        gap: 12px;
        overflow: visible;
    }

    .slideraramabolum {
        order: 1;
        margin-top: 0;
        padding-top: 0;
    }

    .slidermenu {
        order: 2;
    }

    .slider-search-field .arama {
        min-height: 50px;
        font-size: 14px;
        padding: 0 18px;
    }

    .slidermenu .menugenel {
        gap: 8px;
    }
    
    .slidermenu .menugenel .menu {
        width: 90px;
        min-height: 90px;
        padding: 12px 8px;
    }

    .slidermenu .menugenel .menu img {
        width: 32px;
        height: 32px;
        margin-bottom: 6px;
    }

    .slidermenu .menugenel .menu .baslik {
        font-size: 10px;
        height: 26px;
    }
}

@media (max-width: 992px) {
    .ustmenu {
        position: relative;
    }

    .ustmenu__panel {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 100%;
        margin-top: 12px;
        width: calc(100% - 32px);
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        background: rgba(33, 33, 33, 0.92);
        border-radius: 18px;
        padding: 18px 20px 24px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        display: none;
        z-index: 4;
    }

    .ustmenu--open .ustmenu__panel {
        display: flex;
    }
}

/* ===================================
   Popüler Hizmetler - Modern Flex Layout
   =================================== */

/* Container yapısını modernleştir */
.anasayfahizmet {
    width: 100%;
    padding: 60px 0 80px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.anasayfahizmet .container {
    display: flex;
    flex-wrap: wrap;
    gap: 0; /* Grid sistemi için gap yok, padding ile ayarlıyoruz */
}

/* Başlık */
.anasayfahizmet .baslik {
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Hizmet kartları grid yapısı */
.anasayfahizmet .hizmetlistele {
    display: flex;
    padding: 12px;
    transition: transform 0.3s ease;
    width: 25%; /* Desktop: 4'lü grid */
    float: left;
}

.anasayfahizmet .hizmetlistele:hover {
    transform: translateY(-4px);
}

.anasayfahizmet .hizmetlistele a {
    text-decoration: none;
    width: 100%;
    display: block;
}

/* Kart içeriği */
.anasayfahizmet .hizmetlistele .ic {
    width: 100%;
    min-height: 275px;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.anasayfahizmet .hizmetlistele .ic:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Resim */
.anasayfahizmet .hizmetlistele .ic img {
    width: 100% !important;
    height: 215px !important;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

/* Başlık */
.anasayfahizmet .hizmetlistele .ic .hizmetbaslik {
    padding: 0 16px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 60px;
    height: 60px;
    flex: 1;
}

.anasayfahizmet .hizmetlistele .ic:hover .hizmetbaslik {
    color: #EE8502;
}

/* Teklif butonu - Modern stil */
.anasayfahizmet .hizmetlistele .ic .teklifistebuton {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, rgba(238, 133, 2, 0.97) 0%, rgba(255, 157, 31, 0.97) 100%);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    bottom: 0;
    left: 0;
}

.anasayfahizmet .hizmetlistele .ic .teklifistebuton i {
    transition: transform 0.3s ease;
}

.anasayfahizmet .hizmetlistele .ic:hover .teklifistebuton {
    opacity: 1;
    transform: translateY(0);
}

.anasayfahizmet .hizmetlistele .ic:hover .teklifistebuton i {
    transform: translateX(4px);
}

/* Tablet düzeni */
@media (max-width: 992px) and (min-width: 768px) {
    .anasayfahizmet {
        padding: 48px 0 60px;
    }

    .anasayfahizmet .baslik {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .anasayfahizmet .hizmetlistele {
        width: 33.333%; /* Tablet: 3'lü grid */
    }

    .anasayfahizmet .hizmetlistele .ic {
        min-height: 270px;
    }

    .anasayfahizmet .hizmetlistele .ic img {
        height: 190px !important;
    }

    .anasayfahizmet .hizmetlistele .ic .teklifistebuton {
        height: 80px;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        border-bottom-left-radius: 12px !important;
        border-bottom-right-radius: 12px !important;
        position: relative !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        margin-top: auto;
    }
    
    /* Tablet'te animasyonları kapat */
    .anasayfahizmet .hizmetlistele:hover {
        transform: none !important;
    }
    
    .anasayfahizmet .hizmetlistele .ic:hover {
        transform: none !important;
    }
    
    .anasayfahizmet .hizmetlistele .ic:hover .teklifistebuton {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Mobil düzeni - Tek sütun */
@media (max-width: 767px) {
    .anasayfahizmet {
        padding: 40px 0 50px;
    }

    .anasayfahizmet .baslik {
        font-size: 24px;
        margin-bottom: 32px;
        letter-spacing: -0.3px;
    }

    .anasayfahizmet .hizmetlistele {
        width: 100%; /* Mobil: Tek sütun */
        padding: 8px 12px;
    }

    .anasayfahizmet .hizmetlistele .ic {
        min-height: 260px;
        border-radius: 12px;
    }

    .anasayfahizmet .hizmetlistele .ic img {
        height: 200px !important;
    }

    .anasayfahizmet .hizmetlistele .ic .hizmetbaslik {
        font-size: 16px;
        padding: 14px 16px 10px;
        min-height: 54px;
    }

    .anasayfahizmet .hizmetlistele .ic .teklifistebuton {
        min-height: 46px;
        font-size: 14px;
        opacity: 1 !important;
        transform: translateY(0) !important;
        position: relative !important;
        margin-top: auto;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        border-bottom-left-radius: 12px !important;
        border-bottom-right-radius: 12px !important;
        top: auto !important;
        bottom: auto !important;
    }
    
    /* Mobilde TÜM animasyonları ve hover efektlerini kapat */
    .anasayfahizmet .hizmetlistele,
    .anasayfahizmet .hizmetlistele:hover,
    .anasayfahizmet .hizmetlistele:active {
        transform: none !important;
    }
    
    .anasayfahizmet .hizmetlistele .ic,
    .anasayfahizmet .hizmetlistele .ic:hover,
    .anasayfahizmet .hizmetlistele .ic:active {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    .anasayfahizmet .hizmetlistele .ic .teklifistebuton,
    .anasayfahizmet .hizmetlistele .ic:hover .teklifistebuton,
    .anasayfahizmet .hizmetlistele .ic:active .teklifistebuton {
        opacity: 1 !important;
        transform: translateY(0) !important;
        position: relative !important;
    }
    
    .anasayfahizmet .hizmetlistele .ic .hizmetbaslik,
    .anasayfahizmet .hizmetlistele .ic:hover .hizmetbaslik {
        color: #0f172a !important;
    }
}

/* ===================================
   Telefonuna İndir - Modern Flex Layout
   =================================== */

.mobilindir {
    width: 100%;
    padding: 80px 0;
    background: #f8f9fa;
}

.mobilindir .container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 30px;
}

/* Sol taraf - Mobil indirme */
.mobilindir .mobilresim {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    background: url(../tema/img/dashboard.jpeg) no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    position: relative;
    text-align: center;
}

.mobilindir .mobilresim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.75) 0%, 
        rgba(15, 23, 42, 0.85) 100%
    );
    border-radius: 20px;
    z-index: 1;
    backdrop-filter: blur(2px);
}

.mobilindir .mobilresim > * {
    position: relative;
    z-index: 2;
}

.mobilindir .mobilresim .qrkod {
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 18px;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobilindir .mobilresim .qrkod img {
    width: 130px;
    height: 130px;
    display: block;
    margin: 0 auto;
}

.mobilindir .mobilresim .baslik {
    font-size: 34px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 20px;
    letter-spacing: -0.6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 20px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    display: inline-block;
}

.mobilindir .mobilresim .aciklama {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 36px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 18px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    max-width: 85%;
}

.mobilindir .mobilresim .indirbuton {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.mobilindir .mobilresim .indirbuton a {
    transition: all 0.3s ease;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0;
}

.mobilindir .mobilresim .indirbuton a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.22);
}

.mobilindir .mobilresim .indirbuton img {
    height: 52px;
    width: auto;
    display: block;
    vertical-align: top;
    margin: 0;
    padding: 0;
    line-height: 0;
}

/* Sağ taraf - Özellikler */
.mobilindir .ozelliklistegenel {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobilindir .ozelliklistegenel .ozellikliste {
    flex: 1;
    display: flex;
}

.mobilindir .ozelliklistegenel .ozellikliste .ic {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    will-change: border-color, box-shadow;
}

.mobilindir .ozelliklistegenel .ozellikliste .ic:hover {
    border: 2px solid #EE8502;
    box-shadow: 0 4px 16px rgba(238, 133, 2, 0.12);
}

.mobilindir .ozelliklistegenel .ozellikliste .ic .ikon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #EE8502 0%, #ff9d1f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(238, 133, 2, 0.3);
}

.mobilindir .ozelliklistegenel .ozellikliste .ic .ikon i {
    font-size: 22px;
    color: #ffffff;
}

.mobilindir .ozelliklistegenel .ozellikliste .ic .ikon img {
    width: 24px;
    height: 24px;
}

.mobilindir .ozelliklistegenel .ozellikliste .ic > div:not(.ikon) {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobilindir .ozelliklistegenel .ozellikliste .ic .baslik {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.3px;
    margin: 0;
}

.mobilindir .ozelliklistegenel .ozellikliste .ic:hover .baslik {
    color: #EE8502;
}

.mobilindir .ozelliklistegenel .ozellikliste .ic .aciklama {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Tablet düzeni */
@media (max-width: 992px) and (min-width: 768px) {
    .mobilindir {
        padding: 60px 0;
    }

    .mobilindir .container {
        gap: 24px;
    }

    .mobilindir .mobilresim {
        padding: 50px 32px;
    }

    .mobilindir .mobilresim .qrkod {
        margin-bottom: 24px;
    }

    .mobilindir .mobilresim .qrkod img {
        width: 110px;
        height: 110px;
    }

    .mobilindir .mobilresim .baslik {
        font-size: 30px;
        padding: 18px 28px;
        margin-bottom: 18px;
    }

    .mobilindir .mobilresim .aciklama {
        font-size: 16px;
        padding: 16px 22px;
        margin-bottom: 32px;
    }

    .mobilindir .mobilresim .indirbuton img {
        height: 50px;
    }

    .mobilindir .ozelliklistegenel .ozellikliste .ic {
        padding: 20px;
        gap: 14px;
    }
    
    .mobilindir .ozelliklistegenel .ozellikliste .ic .ikon {
        width: 44px;
        height: 44px;
    }
    
    .mobilindir .ozelliklistegenel .ozellikliste .ic .ikon i {
        font-size: 20px;
    }
    
    .mobilindir .ozelliklistegenel .ozellikliste .ic .ikon img {
        width: 22px;
        height: 22px;
    }
    
    .mobilindir .ozelliklistegenel .ozellikliste .ic .baslik {
        font-size: 16px;
    }
}

/* Mobil düzeni */
@media (max-width: 767px) {
    .mobilindir {
        padding: 50px 0;
    }

    .mobilindir .container {
        flex-direction: column;
        gap: 32px;
    }

    .mobilindir .mobilresim {
        min-height: 580px;
        padding: 50px 24px;
        background-image: url(../tema/img/mobilindir.jpg);
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .mobilindir .mobilresim::before {
        background: linear-gradient(to bottom, 
            rgba(15, 23, 42, 0.7) 0%, 
            rgba(15, 23, 42, 0.85) 100%
        );
        backdrop-filter: blur(2px);
    }

    .mobilindir .mobilresim .qrkod {
        margin-bottom: 28px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        padding: 16px;
        display: inline-block;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .mobilindir .mobilresim .qrkod img {
        width: 110px;
        height: 110px;
        margin: 0 auto;
        display: block;
    }

    .mobilindir .mobilresim .baslik {
        font-size: 30px;
        color: rgba(255, 255, 255, 0.98);
        font-weight: 800;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        padding: 18px 28px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
        display: inline-block;
    }

    .mobilindir .mobilresim .aciklama {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.7;
        margin-bottom: 36px;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(10px);
        padding: 16px 20px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    }

    .mobilindir .mobilresim .indirbuton {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 14px;
    }

    .mobilindir .mobilresim .indirbuton a {
        width: auto;
        flex: 0 0 auto;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 14px;
        padding: 0;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .mobilindir .mobilresim .indirbuton a:hover {
        background: rgba(255, 255, 255, 0.22);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .mobilindir .mobilresim .indirbuton img {
        width: auto;
        height: 48px;
        display: block;
        transition: all 0.3s ease;
        vertical-align: top;
        margin: 0;
        padding: 0;
        line-height: 0;
    }

    .mobilindir .mobilresim .indirbuton a:active {
        transform: translateY(0) scale(0.97);
    }

    .mobilindir .ozelliklistegenel {
        gap: 16px;
    }

    .mobilindir .ozelliklistegenel .ozellikliste .ic {
        padding: 20px;
        gap: 14px;
    }

    .mobilindir .ozelliklistegenel .ozellikliste .ic .ikon {
        width: 44px;
        height: 44px;
    }
    
    .mobilindir .ozelliklistegenel .ozellikliste .ic .ikon i {
        font-size: 20px;
    }
    
    .mobilindir .ozelliklistegenel .ozellikliste .ic .ikon img {
        width: 22px;
        height: 22px;
    }

    .mobilindir .ozelliklistegenel .ozellikliste .ic .baslik {
        font-size: 16px;
    }

    .mobilindir .ozelliklistegenel .ozellikliste .ic .aciklama {
        font-size: 13px;
    }
}

/* ===================================
   Anasayfa Bilgi - Modern Flex Layout
   =================================== */

.anasayfabilgi {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.anasayfabilgi .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.anasayfabilgi .bilgiliste {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
}

.anasayfabilgi .bilgiliste .ic {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.anasayfabilgi .bilgiliste .ic:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.anasayfabilgi .bilgiliste .ic .numara {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EE8502 0%, #ff9d1f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(238, 133, 2, 0.4);
    z-index: 2;
}

.anasayfabilgi .bilgiliste .ic img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.anasayfabilgi .bilgiliste .ic .baslik {
    padding: 24px 28px 12px;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.anasayfabilgi .bilgiliste .ic:hover .baslik {
    color: #EE8502;
}

.anasayfabilgi .bilgiliste .ic .aciklama {
    padding: 0 28px 28px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* Tablet düzeni */
@media (max-width: 992px) and (min-width: 768px) {
    .anasayfabilgi {
        padding: 60px 0;
    }

    .anasayfabilgi .container {
        gap: 24px;
    }

    .anasayfabilgi .bilgiliste {
        min-width: calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .anasayfabilgi .bilgiliste .ic img {
        height: 220px;
    }

    .anasayfabilgi .bilgiliste .ic .numara {
        width: 52px;
        height: 52px;
        font-size: 20px;
        top: 20px;
        right: 20px;
    }

    .anasayfabilgi .bilgiliste .ic .baslik {
        font-size: 20px;
        padding: 20px 24px 10px;
    }

    .anasayfabilgi .bilgiliste .ic .aciklama {
        font-size: 14px;
        padding: 0 24px 24px;
    }
}

/* Mobil düzeni */
@media (max-width: 767px) {
    .anasayfabilgi {
        padding: 50px 0;
    }

    .anasayfabilgi .container {
        flex-direction: column;
        gap: 24px;
    }

    .anasayfabilgi .bilgiliste {
        min-width: 100%;
        max-width: 100%;
    }

    .anasayfabilgi .bilgiliste .ic {
        border-radius: 16px;
    }

    .anasayfabilgi .bilgiliste .ic img {
        height: 200px;
    }

    .anasayfabilgi .bilgiliste .ic .numara {
        width: 48px;
        height: 48px;
        font-size: 18px;
        top: 16px;
        right: 16px;
    }

    .anasayfabilgi .bilgiliste .ic .baslik {
        font-size: 20px;
        padding: 20px 24px 10px;
    }

    .anasayfabilgi .bilgiliste .ic .aciklama {
        font-size: 14px;
        padding: 0 24px 24px;
    }

    .anasayfabilgi .bilgiliste .ic:hover {
        transform: translateY(0);
    }
}

/* ===================================
   Footer - Modern Flex Layout (Eski Tasarım Bazlı)
   =================================== */

.altbilgi {
    width: 100%;
    background: #000000;
    padding: 50px 0 30px;
    color: #ffffff;
}

.altbilgi .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Logo alanı - Sol */
.altbilgi .logoalan {
    flex: 0 0 auto;
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.altbilgi .logoalan img {
    width: 130px;
    height: auto;
}

.altbilgi .sosyalmedya {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.altbilgi .sosyalmedya a {
    text-decoration: none;
}

.altbilgi .sosyalmedya .ikon {
    width: 38px;
    height: 38px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.altbilgi .sosyalmedya .ikon:hover {
    background: #EE8502;
    border-color: #EE8502;
    transform: scale(1.1);
}

/* Menü sütunları - Orta */
.altbilgi .siteharitasi,
.altbilgi .hizmet,
.altbilgi .politika {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Hizmetler - Modern 2 sütun grid düzeni */
.altbilgi .hizmet {
    flex: 2;
    min-width: 320px;
    display: block;
}

.altbilgi .hizmet .baslik {
    display: block;
    width: 100%;
    margin-bottom: 16px;
}

/* Hizmet linklerini grid ile düzenle */
.altbilgi .hizmet .menu-link {
    display: inline-block;
    width: calc(50% - 6px);
    vertical-align: top;
    box-sizing: border-box;
}

.altbilgi .hizmet .menu-link:nth-of-type(odd) {
    padding-right: 8px;
}

.altbilgi .hizmet .menu-link:nth-of-type(even) {
    padding-left: 8px;
}

.altbilgi .hizmet .menu-link .menu {
    width: 100%;
    padding: 6px 0;
}

.altbilgi .baslik {
    font-size: 14px;
    font-weight: 700;
    color: #EE8502;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.altbilgi .menu-link {
    text-decoration: none;
}

.altbilgi .menu {
    font-size: 13px;
    color: #cccccc;
    padding: 4px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1.6;
}

.altbilgi .menu:hover {
    color: #EE8502;
    padding-left: 5px;
}

/* Bilgi alanı - Sağ */
.altbilgi .bilgialan {
    flex: 0 0 auto;
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.altbilgi .indirlogogenel {
    display: flex;
    gap: 12px;
    flex-direction: column;
    width: 100%;
}

.altbilgi .indirlogo {
    width: 100%;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.altbilgi .indirlogo:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(238, 133, 2, 0.3);
    box-shadow: 0 4px 12px rgba(238, 133, 2, 0.2);
}

.altbilgi .indirlogo img {
    width: 100%;
    height: auto;
    max-height: 45px;
    object-fit: contain;
}

/* Alt footer - Copyright */
.footer {
    background: #000000;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.footer .copyright {
    color: #999999;
    font-size: 13px;
    flex: 1;
    min-width: 250px;
}

.footer .bankalogolar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .bankalogolar img {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer .bankalogolar img:hover {
    opacity: 1;
}

/* Tablet düzeni */
@media (max-width: 992px) and (min-width: 768px) {
    .altbilgi {
        padding: 40px 0 25px;
    }

    .altbilgi .container {
        gap: 30px;
    }

    .altbilgi .logoalan {
        width: 100%;
        align-items: center;
    }

    .altbilgi .logoalan img {
        margin: 0;
    }

    .altbilgi .sosyalmedya {
        justify-content: center;
    }

    .altbilgi .siteharitasi,
    .altbilgi .politika {
        min-width: calc(33.333% - 20px);
    }

    .altbilgi .hizmet {
        min-width: calc(66.666% - 15px);
        flex: 2;
    }

    .altbilgi .hizmet .menu-link {
        width: calc(50% - 6px);
    }

    .altbilgi .bilgialan {
        width: 100%;
        align-items: center;
    }

    .altbilgi .indirlogogenel {
        max-width: 400px;
    }
}

/* Mobil düzeni */
@media (max-width: 767px) {
    .altbilgi {
        padding: 35px 0 25px;
    }

    .altbilgi .container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .altbilgi .logoalan,
    .altbilgi .siteharitasi,
    .altbilgi .hizmet,
    .altbilgi .politika,
    .altbilgi .bilgialan {
        width: 100%;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    /* Logo alanı - mobil */
    .altbilgi .logoalan {
        gap: 20px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .altbilgi .logoalan img {
        margin: 0 auto;
        display: block;
    }

    /* Sosyal medya - ortalı */
    .altbilgi .sosyalmedya {
        justify-content: center !important;
        width: 100%;
        display: flex !important;
        margin: 0 auto;
        max-width: fit-content;
    }

    .altbilgi .sosyalmedya a {
        display: block;
    }

    /* Menü linkleri - mobil */
    .altbilgi .menu-link {
        width: 100%;
        display: block;
        text-align: center;
    }

    .altbilgi .menu {
        text-align: center;
        width: 100%;
        margin: 0;
        padding: 8px 0;
    }

    .altbilgi .menu:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .altbilgi .baslik {
        width: 100%;
        text-align: center;
        margin: 0 0 12px 0;
        padding: 0;
    }

    /* Hizmetler - tek sütun mobilde */
    .altbilgi .hizmet {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .altbilgi .hizmet .baslik {
        text-align: center;
        margin-bottom: 12px;
    }

    .altbilgi .hizmet .menu-link {
        width: 100%;
        display: block;
        text-align: center;
    }

    .altbilgi .hizmet .menu-link:nth-of-type(odd),
    .altbilgi .hizmet .menu-link:nth-of-type(even) {
        padding: 0;
    }

    .altbilgi .hizmet .menu-link .menu {
        padding: 8px 0;
    }

    /* İndirme logoları - mobil */
    .altbilgi .indirlogogenel {
        max-width: 320px;
        margin: 0 auto;
        justify-content: center;
        flex-direction: row !important;
        gap: 10px;
    }

    .altbilgi .indirlogo {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        width: auto;
        flex: 1;
    }

    /* Alt footer - mobil */
    .footer .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer .copyright {
        min-width: 100%;
        text-align: center;
    }

    .footer .bankalogolar {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Referral Modal Styles */
.referral-modal-modern .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.referral-modal-modern .modal-header {
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    color: white;
    padding: 2rem 2rem 1.5rem 2rem;
    border: none;
    position: relative;
}

.referral-modal-modern .modal-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.referral-modal-modern .modal-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(10px);
}

.referral-modal-modern .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.referral-modal-modern .btn-close-modern {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.referral-modal-modern .btn-close-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.referral-modal-modern .modal-body {
    padding: 2rem;
}

.referral-modal-modern .referral-info-box {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 149, 0, 0.1) 100%);
    border-left: 4px solid #FF7A00;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.referral-modal-modern .info-icon {
    color: #FF7A00;
    font-size: 24px;
    flex-shrink: 0;
}

.referral-modal-modern .info-content h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.referral-modal-modern .info-content p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.referral-modal-modern .form-group-modern {
    margin-bottom: 1.5rem;
}

.referral-modal-modern .form-group-modern label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.referral-modal-modern .input-wrapper {
    position: relative;
}

.referral-modal-modern .form-control-modern {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.referral-modal-modern .form-control-modern:focus {
    outline: none;
    border-color: #FF7A00;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1);
}

.referral-modal-modern .alert-danger-modern,
.referral-modal-modern .alert-success-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.referral-modal-modern .alert-danger-modern {
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.15) 0%, rgba(229, 62, 62, 0.15) 100%);
    color: #c53030;
    border-left: 4px solid #f56565;
}

.referral-modal-modern .alert-danger-modern i {
    font-size: 20px;
}

.referral-modal-modern .alert-success-modern {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.15) 0%, rgba(56, 161, 105, 0.15) 100%);
    color: #2f855a;
    border-left: 4px solid #48bb78;
}

.referral-modal-modern .alert-success-modern i {
    font-size: 20px;
}

.referral-modal-modern .modal-footer {
    padding: 1.5rem 2rem;
    border: none;
    background: #f7fafc;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.referral-modal-modern .btn-cancel-modern,
.referral-modal-modern .btn-submit-modern {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.referral-modal-modern .btn-cancel-modern {
    background: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.referral-modal-modern .btn-cancel-modern:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.referral-modal-modern .btn-submit-modern {
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.referral-modal-modern .btn-submit-modern:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.5);
}

.referral-modal-modern .btn-submit-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.referral-modal-modern .btn-loader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Modal backdrop animation */
.referral-modal-modern.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-out;
}

.referral-modal-modern.show .modal-dialog {
    transform: scale(1);
}

/* Responsive */
@media (max-width: 576px) {
    .referral-modal-modern .modal-dialog {
        margin: 1rem;
    }

    .referral-modal-modern .modal-header {
        padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    }

    .referral-modal-modern .modal-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .referral-modal-modern .modal-title {
        font-size: 1.25rem;
    }

    .referral-modal-modern .modal-body {
        padding: 1.5rem;
    }

    .referral-modal-modern .modal-footer {
        flex-direction: column;
        padding: 1.25rem 1.5rem;
    }

    .referral-modal-modern .btn-cancel-modern,
    .referral-modal-modern .btn-submit-modern {
        width: 100%;
        justify-content: center;
    }
}
