@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* Fallback font yÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼kleme */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fBBc4.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc4.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 0 !important;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Landing Page Styles */
.landing-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

    .landing-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

.landing-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem 2.5rem 1rem;
    background: rgba(30, 30, 30, 0.18);
    border-radius: 32px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin-top: 2.5rem;
}

.landing-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 32px rgba(0,0,0,0.85), 0 1px 0 #fff;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.1;
    text-align: center;
    background: rgba(0,0,0,0.18);
    border-radius: 18px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
}

.landing-subtitle {
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 2.2rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    color: #f8f9fa;
    background: rgba(0,0,0,0.13);
    border-radius: 12px;
    padding: 0.3rem 1.2rem;
    display: inline-block;
}

.landing-content .d-flex {
    gap: 2rem;
}

.landing-content a.btn {
    min-width: 240px;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 2rem;
    padding: 1rem 2.2rem;
    box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.10);
    background: rgba(255,255,255,0.75);
    color: #222;
    border: none;
    transition: all 0.18s cubic-bezier(.4,2,.6,1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

    .landing-content a.btn i {
        font-size: 1.5rem;
    }

    .landing-content a.btn.btn-outline-light {
        background: rgba(255,255,255,0.18);
        color: #fff;
        border: 2px solid #fff;
    }

    .landing-content a.btn:hover, .landing-content a.btn:focus {
        background: #fff;
        color: #222;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
        transform: translateY(-2px) scale(1.04);
    }

    .landing-content a.btn.btn-outline-light:hover, .landing-content a.btn.btn-outline-light:focus {
        background: #fff;
        color: #222;
        border: 2px solid #fff;
    }

@media (max-width: 768px) {
    .landing-content {
        padding: 1.2rem 0.2rem 1.2rem 0.2rem;
        margin-top: 1.2rem;
    }

    .landing-title {
        font-size: 2.2rem;
        padding: 0.3rem 0.7rem;
    }

    .landing-subtitle {
        font-size: 1.1rem;
        padding: 0.2rem 0.5rem;
    }

    .landing-content .d-flex {
        gap: 1rem;
        flex-direction: column;
    }

    .landing-content a.btn {
        min-width: 160px;
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}

/* ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â 'ÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å"zellikler ve istatistikler iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â 'ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in boÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸luk ve hizalama iyileÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸tirmeleri */
.py-5.bg-white {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
    margin-bottom: 0 !important;
}

.row.g-4 > [class^='col-'] {
    margin-bottom: 0 !important;
}

.display-4.fw-bold.text-dark {
    font-size: 2.7rem;
    font-weight: 800 !important;
    margin-bottom: 0.7rem;
}

.lead.text-muted {
    font-size: 1.2rem;
    margin-bottom: 2.2rem;
}

.text-center.p-4 {
    padding: 2.2rem 0.5rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

    .text-center.p-4 h4 {
        margin-top: 1.2rem;
        margin-bottom: 0.5rem;
        font-size: 1.35rem;
        font-weight: 700;
    }

    .text-center.p-4 p {
        margin-bottom: 0;
        font-size: 1.05rem;
        color: #666;
    }

.bg-primary.bg-gradient, .bg-success.bg-gradient, .bg-warning.bg-gradient {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.bg-dark.text-white {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
    margin-bottom: 0 !important;
}

.row.text-center > [class^='col-'] {
    margin-bottom: 0 !important;
}

.p-3 {
    padding: 1.2rem 0.5rem !important;
}

/* ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°statistikler iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â 'ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in iyileÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸tirme */
.bg-dark.text-white .row.text-center {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
}

.bg-dark.text-white .p-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    margin-bottom: 0;
}

.bg-dark.text-white .display-4 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.bg-dark.text-white .lead {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Footer ve alt bar arasÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± boÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸luklarÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± kaldÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±r */
footer.bg-dark.text-light.py-4.mt-5 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0.5rem !important;
}

/* Alt bar ile footer arasÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ndaki boÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸luÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸u sÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±fÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±rla */
.bg-dark.text-white + .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Mobilde footer altÃƒâ€žÃ‚Â±ndaki boÃƒâ€¦Ã…Â¸ alanÃƒâ€žÃ‚Â± kaldÃƒâ€žÃ‚Â±r */
@media (max-width: 768px) {
    footer.bg-dark.text-light.py-4.mt-5 {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0.25rem !important;
        padding-top: 0.5rem !important;
    }

    body {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    html {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* Mobil Uyumluluk OptimizasyonlarÃƒâ€žÃ‚Â± */
@media (max-width: 768px) {
    /* Header OptimizasyonlarÃƒâ€žÃ‚Â± */
    .header-nav-box {
        flex-direction: column !important;
        padding: 0.8rem 0.3rem !important;
        gap: 0.8rem !important;
    }

    .header-link {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.5rem !important;
        gap: 0.2rem !important;
        margin: 0.1rem !important;
    }

        .header-link i {
            font-size: 0.7rem !important;
            margin-right: 0.2rem !important;
        }

    .header-action-btn {
        padding: 0.4rem 0.5rem !important;
        font-size: 0.75rem !important;
        gap: 0.2rem !important;
        min-width: auto !important;
    }

    .action-icon {
        width: 12px !important;
        height: 12px !important;
    }

    .action-text {
        font-size: 0.75rem !important;
    }

    .header-user-btn {
        gap: 0.3rem !important;
        padding: 0.3rem 0.4rem !important;
    }

        .header-user-btn img,
        .header-user-btn span {
            width: 26px !important;
            height: 26px !important;
            font-size: 1rem !important;
        }

    .user-name-short {
        font-size: 0.7rem !important;
        max-width: 60px !important;
        margin-left: 0.3rem !important;
    }

    /* Hero Section OptimizasyonlarÃƒâ€žÃ‚Â± */
    .hero-section {
        min-height: 180px !important;
        max-height: 180px !important;
        padding: 1rem 0.5rem !important;
    }

    .hero-title {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.4rem !important;
    }

    .hero-subtitle {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .hero-buttons {
        gap: 0.6rem !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
        border-radius: 20px !important;
        min-width: 120px !important;
    }

        .hero-btn i {
            font-size: 0.7rem !important;
            margin-right: 0.2rem !important;
        }

    /* Header Box OptimizasyonlarÃƒâ€žÃ‚Â± */
    .header-box-container {
        padding: 1rem 0.8rem !important;
        border-radius: 12px !important;
        margin: 0.8rem 0 !important;
    }

    .header-box-title {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.4rem !important;
    }

    .header-box-subtitle {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    .header-box-description {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .header-box-icon {
        font-size: 1.6rem !important;
        margin-bottom: 0.6rem !important;
    }

    .header-box-actions {
        gap: 0.5rem !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .header-box-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
        border-radius: 20px !important;
        min-width: 140px !important;
        width: 100% !important;
        max-width: 180px !important;
    }

    .header-box-stats {
        gap: 0.6rem !important;
        flex-direction: column !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }

    .header-box-stat {
        padding: 0.6rem !important;
        min-width: 80px !important;
        border-radius: 8px !important;
    }

    .header-box-stat-number {
        font-size: 1.1rem !important;
        margin-bottom: 0.2rem !important;
        font-weight: bold !important;
    }

    .header-box-stat-label {
        font-size: 0.7rem !important;
    }

    /* Sistem Prensipleri OptimizasyonlarÃƒâ€žÃ‚Â± */
    .system-principles {
        padding: 1.2rem 0.3rem !important;
    }

    .system-principles-title {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.2rem !important;
        text-align: center !important;
    }

    .system-box2 {
        padding: 1rem !important;
        border-radius: 12px !important;
        margin-bottom: 0.8rem !important;
    }

        .system-box2 .fw-bold:first-child {
            font-size: 1.4rem !important;
            margin-bottom: 0.4rem !important;
        }

        .system-box2 .fw-bold:nth-child(2) {
            font-size: 0.8rem !important;
            margin-bottom: 0.4rem !important;
        }

        .system-box2 div:last-child {
            font-size: 0.75rem !important;
            line-height: 1.2 !important;
        }

    .system-info-alert {
        padding: 0.8rem !important;
        border-radius: 12px !important;
        font-size: 0.8rem !important;
        margin-top: 1.2rem !important;
    }

        .system-info-alert ul {
            margin-bottom: 0.4rem !important;
            padding-left: 0.8rem !important;
        }

        .system-info-alert li {
            margin-bottom: 0.3rem !important;
            line-height: 1.4 !important;
        }

    /* PopÃƒÆ'Ã‚Â¼ler MaÃƒâ€žÃ…Â¸azalar OptimizasyonlarÃƒâ€žÃ‚Â± */
    .popular-stores {
        padding: 1.2rem 0.3rem !important;
    }

    .popular-stores-title {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.2rem !important;
        text-align: center !important;
    }

        .popular-stores-title i {
            font-size: 1.1rem !important;
            margin-right: 0.4rem !important;
        }

    .store-card {
        min-height: 280px !important;
        border-radius: 12px !important;
        margin-bottom: 0.8rem !important;
    }

        .store-card .card-img-top {
            height: 100px !important;
            border-radius: 12px 12px 0 0 !important;
            object-fit: contain !important;
        }

        .store-card .card-body {
            padding: 0.6rem !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: space-between !important;
            height: 180px !important;
        }

        .store-card .card-title {
            font-size: 0.8rem !important;
            margin-bottom: 0.2rem !important;
        }

        .store-card .card-text {
            font-size: 0.7rem !important;
            margin-bottom: 0.6rem !important;
        }

        .store-card .btn {
            padding: 0.3rem 0.6rem !important;
            font-size: 0.7rem !important;
            border-radius: 15px !important;
            margin-top: auto !important;
        }

    /* Newsletter OptimizasyonlarÃƒâ€žÃ‚Â± */
    .newsletter-card {
        margin: 1.2rem 0 !important;
    }

        .newsletter-card .card-body {
            padding: 1rem 0.8rem !important;
        }

    .newsletter-title {
        font-size: 1.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.4rem !important;
    }

        .newsletter-title i {
            font-size: 1rem !important;
            margin-right: 0.3rem !important;
        }

    .newsletter-subtitle {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    .newsletter-card .input-group {
        margin-bottom: 0.8rem !important;
        flex-direction: column !important;
    }

    .newsletter-card .input-group-lg {
        height: auto !important;
    }

    .newsletter-card .form-control {
        font-size: 0.8rem !important;
        padding: 0.6rem 0.7rem !important;
        border-radius: 6px !important;
        margin-bottom: 0.4rem !important;
    }

    .newsletter-card .input-group-text {
        padding: 0.6rem 0.7rem !important;
        border-radius: 6px !important;
    }

        .newsletter-card .input-group-text i {
            font-size: 0.7rem !important;
        }

    .newsletter-card .btn {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }

    /* Footer OptimizasyonlarÃƒâ€žÃ‚Â± */
    .footer-modern .container {
        padding: 1rem !important;
    }

    .footer-top-box {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1rem !important;
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }

    .footer-logo {
        width: 120px !important;
        height: auto !important;
    }

    .footer-top-box .fs-3 {
        font-size: 1.5rem !important;
        margin-bottom: 0.25rem !important;
    }

    .footer-top-box .text-white {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }

    .footer-top-box .mb-1 {
        font-size: 0.85rem !important;
        margin-bottom: 0.25rem !important;
    }

    .footer-top-box .ps-4 {
        padding-left: 0 !important;
        font-size: 0.8rem !important;
    }

    .footer-link {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.75rem !important;
    }

    .footer-social {
        width: 28px !important;
        height: 28px !important;
    }

        .footer-social svg {
            width: 20px !important;
            height: 20px !important;
        }

    .footer-modern .d-flex.flex-wrap {
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .footer-modern .small {
        font-size: 0.75rem !important;
    }

    /* Test YayÃƒâ€žÃ‚Â±nÃƒâ€žÃ‚Â± Modal OptimizasyonlarÃƒâ€žÃ‚Â± */
    .test-yayin-modal .modal-dialog {
        margin: 1rem !important;
    }

    .test-yayin-modal .modal-body {
        padding: 1.5rem 1rem !important;
    }

    .test-yayin-modal .modal-title {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .test-yayin-modal .card {
        padding: 1rem !important;
        border-radius: 12px !important;
    }

    .test-yayin-modal .card-body {
        padding: 1rem !important;
    }

    .test-yayin-modal .card h5 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .test-yayin-modal .card p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }

    .test-yayin-modal .alert-info {
        padding: 1rem !important;
        border-radius: 12px !important;
    }

        .test-yayin-modal .alert-info h6 {
            font-size: 1rem !important;
            margin-bottom: 0.5rem !important;
        }

        .test-yayin-modal .alert-info p {
            font-size: 0.85rem !important;
            margin-bottom: 0.75rem !important;
        }

        .test-yayin-modal .alert-info ul {
            padding-left: 1rem !important;
        }

        .test-yayin-modal .alert-info li {
            font-size: 0.8rem !important;
            margin-bottom: 0.25rem !important;
            line-height: 1.3 !important;
        }

    .test-yayin-modal .btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        border-radius: 12px !important;
    }

    .test-yayin-modal .form-check-label {
        font-size: 0.85rem !important;
    }

    .test-yayin-modal .form-check-input {
        width: 16px !important;
        height: 16px !important;
    }

    /* Cadde Modal OptimizasyonlarÃƒâ€žÃ‚Â± */
    #caddeModal .modal-dialog {
        margin: 1rem !important;
        max-width: calc(100% - 2rem) !important;
    }

    #caddeModal .modal-body {
        padding: 1rem !important;
    }

    #caddeModal .modal-title {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
    }

    #caddeModal h6 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }

    #caddeModal .list-group-item {
        font-size: 0.9rem !important;
        padding: 0.75rem 1rem !important;
    }

    #caddeModal .alert-info {
        padding: 1rem !important;
        border-radius: 12px !important;
        font-size: 0.85rem !important;
    }

    #caddeModal #modalMap {
        height: 300px !important;
        border-radius: 12px !important;
    }

    /* Mobilde AlÃƒâ€žÃ‚Â±Ãƒâ€¦Ã…Â¸veriÃƒâ€¦Ã…Â¸ Yapan KadÃƒâ€žÃ‚Â±n Animasyonunu Gizle */
    .shopping-woman-animation {
        display: none !important;
    }

    /* Mobilde Swiper Pagination Optimizasyonu */
    .swiper-pagination {
        bottom: 10px !important;
    }

    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        margin: 0 4px !important;
    }

    /* Mobilde Container Padding Optimizasyonu */
    .container {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .container-fluid {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

/* ÃƒÆ'Ã¢â‚¬Â¡ok KÃƒÆ'Ã‚Â¼ÃƒÆ'Ã‚Â§ÃƒÆ'Ã‚Â¼k Ekranlar iÃƒÆ'Ã‚Â§in Ek Optimizasyonlar */
@media (max-width: 480px) {
    .header-box-container {
        padding: 1.5rem 1rem !important;
    }

    .header-box-title {
        font-size: 1.8rem !important;
    }

    .hero-title {
        font-size: 1.6rem !important;
    }

    .system-principles-title,
    .popular-stores-title {
        font-size: 1.8rem !important;
    }

    .newsletter-title {
        font-size: 1.3rem !important;
    }

    .footer-top-box .fs-3 {
        font-size: 1.3rem !important;
    }

    .test-yayin-modal .modal-title {
        font-size: 1.3rem !important;
    }

    .header-link {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.6rem !important;
    }

    .hero-btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        min-width: 120px !important;
    }

    .header-box-btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        min-width: 140px !important;
    }

    .store-card .btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
    }

    .newsletter-card .form-control {
        font-size: 0.85rem !important;
        padding: 0.6rem 0.8rem !important;
    }

    .newsletter-card .btn {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.85rem !important;
    }

    /* AVM ve ÃƒÆ'Ã¢â‚¬Â¡arÃƒâ€¦Ã…Â¸Ãƒâ€žÃ‚Â± SayfalarÃƒâ€žÃ‚Â± ÃƒÆ'Ã¢â‚¬Â¡ok KÃƒÆ'Ã‚Â¼ÃƒÆ'Ã‚Â§ÃƒÆ'Ã‚Â¼k Ekran OptimizasyonlarÃƒâ€žÃ‚Â± */
    .hero-section .display-5 {
        font-size: 1.8rem !important;
    }

    .hero-section .lead {
        font-size: 0.9rem !important;
    }

    .hero-badge {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.6rem !important;
    }

        .hero-badge i {
            font-size: 0.7rem !important;
        }

        .hero-badge strong {
            font-size: 0.75rem !important;
        }

    .kurumsal-ic2-ic {
        font-size: 0.9rem !important;
    }

    .number {
        font-size: 1.3rem !important;
    }

        .number + small {
            font-size: 0.7rem !important;
        }

    .bg-white.rounded-4.shadow-lg.p-4 h5 {
        font-size: 1rem !important;
    }

    .bg-white.rounded-4.shadow-lg.p-4 p {
        font-size: 0.8rem !important;
    }

    .bg-white.rounded-4.shadow-lg.p-4 i {
        font-size: 2rem !important;
    }

    .avm-tab-link {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.6rem !important;
    }

    .avm-breadcrumb-list {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.6rem !important;
    }

    .hero-title-kampanya {
        font-size: 1.8rem !important;
    }

    .hero-subtitle-kampanya {
        font-size: 0.9rem !important;
    }

    .kampanya-list li {
        font-size: 0.8rem !important;
        padding: 0.6rem 0.8rem !important;
    }

        .kampanya-list li i {
            font-size: 0.9rem !important;
        }

    .kampanya-banner-modern {
        padding: 1rem !important;
    }

    .kampanya-card-modern {
        padding: 1rem !important;
    }

        .kampanya-card-modern h3 {
            font-size: 1.1rem !important;
        }

        .kampanya-card-modern p {
            font-size: 0.8rem !important;
        }

    .fw-bold.text-danger {
        font-size: 1.3rem !important;
    }

    .display-5.fw-bold {
        font-size: 1.8rem !important;
    }

    .display-6.fw-bold {
        font-size: 1.6rem !important;
    }

    .card-body {
        padding: 0.75rem !important;
    }

    .card-title {
        font-size: 1rem !important;
    }

    .card-text {
        font-size: 0.8rem !important;
    }

    .btn-lg {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
    }

    .btn-sm {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
    }

    .alert {
        padding: 0.75rem !important;
        font-size: 0.8rem !important;
    }

        .alert h4, .alert h5, .alert h6 {
            font-size: 1rem !important;
        }

    .form-control, .form-select {
        font-size: 0.8rem !important;
        padding: 0.6rem 0.8rem !important;
    }

    .form-label {
        font-size: 0.8rem !important;
    }

    .modal-title {
        font-size: 1.1rem !important;
    }

    .modal-body {
        padding: 1rem 0.75rem !important;
    }

    .modal-header {
        padding: 0.75rem !important;
    }

    .list-group-item {
        font-size: 0.8rem !important;
        padding: 0.6rem 0.8rem !important;
    }

    .badge {
        font-size: 0.7rem !important;
        padding: 0.2rem 0.4rem !important;
    }

    .progress {
        height: 0.6rem !important;
    }

    .progress-bar {
        font-size: 0.7rem !important;
    }

    .table {
        font-size: 0.75rem !important;
    }

        .table th, .table td {
            padding: 0.4rem 0.6rem !important;
        }

    .page-link {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.75rem !important;
    }

    .dropdown-menu {
        font-size: 0.8rem !important;
    }

    .dropdown-item {
        padding: 0.4rem 0.8rem !important;
    }

    .navbar-brand {
        font-size: 1.1rem !important;
    }

    .navbar-nav .nav-link {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.6rem !important;
    }

    .sidebar .nav-link {
        font-size: 0.8rem !important;
        padding: 0.6rem 0.8rem !important;
    }

    .footer h5 {
        font-size: 1rem !important;
    }

    .footer p, .footer li {
        font-size: 0.75rem !important;
    }

    /* Utility SÃƒâ€žÃ‚Â±nÃƒâ€žÃ‚Â±flarÃƒâ€žÃ‚Â± ÃƒÆ'Ã¢â‚¬Â¡ok KÃƒÆ'Ã‚Â¼ÃƒÆ'Ã‚Â§ÃƒÆ'Ã‚Â¼k Ekran OptimizasyonlarÃƒâ€žÃ‚Â± */
    .fs-1 {
        font-size: 1.8rem !important;
    }

    .fs-2 {
        font-size: 1.6rem !important;
    }

    .fs-3 {
        font-size: 1.3rem !important;
    }

    .fs-4 {
        font-size: 1.1rem !important;
    }

    .fs-5 {
        font-size: 1rem !important;
    }

    .fs-6 {
        font-size: 0.9rem !important;
    }

    .display-1 {
        font-size: 2.2rem !important;
    }

    .display-2 {
        font-size: 2rem !important;
    }

    .display-3 {
        font-size: 1.8rem !important;
    }

    .display-4 {
        font-size: 1.6rem !important;
    }

    .display-5 {
        font-size: 1.4rem !important;
    }

    .display-6 {
        font-size: 1.2rem !important;
    }
}

/* Tablet OptimizasyonlarÃƒâ€žÃ‚Â± */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-box-title {
        font-size: 2.5rem !important;
    }

    .hero-title {
        font-size: 2.2rem !important;
    }

    .system-principles-title,
    .popular-stores-title {
        font-size: 2.2rem !important;
    }

    .newsletter-title {
        font-size: 1.8rem !important;
    }

    .header-link {
        font-size: 0.9rem !important;
        padding: 0.6rem 1rem !important;
    }

    .hero-btn {
        padding: 0.8rem 1.8rem !important;
        font-size: 0.95rem !important;
    }

    .header-box-btn {
        padding: 0.8rem 1.8rem !important;
        font-size: 0.95rem !important;
    }
}

/* AVM ve ÃƒÆ'Ã¢â‚¬Â¡arÃƒâ€¦Ã…Â¸Ãƒâ€žÃ‚Â± SayfalarÃƒâ€žÃ‚Â± Mobil OptimizasyonlarÃƒâ€žÃ‚Â± */
@media (max-width: 768px) {
    /* AVM Hero Section OptimizasyonlarÃƒâ€žÃ‚Â± */
    .hero-section .display-5 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .hero-section .lead {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-badge {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.75rem !important;
        border-radius: 20px !important;
        margin-bottom: 0.5rem !important;
    }

        .hero-badge i {
            font-size: 0.8rem !important;
        }

        .hero-badge strong {
            font-size: 0.85rem !important;
        }

    /* AVM HakkÃƒâ€žÃ‚Â±nda BÃƒÆ'Ã‚Â¶lÃƒÆ'Ã‚Â¼mÃƒÆ'Ã‚Â¼ OptimizasyonlarÃƒâ€žÃ‚Â± */
    .kurumsal-ic2-ic {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

        .kurumsal-ic2-ic p {
            margin-bottom: 1rem !important;
        }

    .number {
        font-size: 1.5rem !important;
    }

        .number + small {
            font-size: 0.8rem !important;
        }

    /* AVM ÃƒÆ'Ã¢â‚¬â€œzellikler BÃƒÆ'Ã‚Â¶lÃƒÆ'Ã‚Â¼mÃƒÆ'Ã‚Â¼ OptimizasyonlarÃƒâ€žÃ‚Â± */
    .bg-white.rounded-4.shadow-lg.p-4 h5 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .bg-white.rounded-4.shadow-lg.p-4 p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    .bg-white.rounded-4.shadow-lg.p-4 i {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }

    /* Tab MenÃƒÆ'Ã‚Â¼leri Mobil OptimizasyonlarÃƒâ€žÃ‚Â± */
    .avm-tabs-menu {
        gap: 0.5rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .avm-tab-link {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.75rem !important;
        border-radius: 20px !important;
        white-space: nowrap !important;
        min-width: auto !important;
    }

    /* Breadcrumb Mobil OptimizasyonlarÃƒâ€žÃ‚Â± */
    .avm-breadcrumb-list {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.75rem !important;
        border-radius: 12px !important;
    }

        .avm-breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
            font-size: 0.8rem !important;
            margin: 0 0.25rem !important;
        }

    /* Kampanyalar SayfasÃƒâ€žÃ‚Â± Mobil OptimizasyonlarÃƒâ€žÃ‚Â± */
    .hero-title-kampanya {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle-kampanya {
        font-size: 1rem !important;
        line-height: 1.3 !important;
    }

    .hero-image-kampanya {
        max-height: 250px !important;
        border-radius: 16px !important;
    }

    .kampanya-list li {
        font-size: 0.9rem !important;
        padding: 0.75rem 1rem !important;
        margin-bottom: 0.75rem !important;
        border-radius: 12px !important;
    }

        .kampanya-list li i {
            font-size: 1rem !important;
            margin-right: 0.5rem !important;
        }

    .kampanya-banner-modern {
        padding: 1.5rem !important;
        margin: 1.5rem 0 !important;
        border-radius: 16px !important;
    }

    .kampanya-card-modern {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }

        .kampanya-card-modern h3 {
            font-size: 1.3rem !important;
            margin-bottom: 1rem !important;
        }

        .kampanya-card-modern p {
            font-size: 0.9rem !important;
            line-height: 1.4 !important;
        }

        .kampanya-card-modern .btn {
            padding: 0.75rem 1.5rem !important;
            font-size: 0.9rem !important;
            border-radius: 25px !important;
        }

    /* Genel BaÃƒâ€¦Ã…Â¸lÃƒâ€žÃ‚Â±k OptimizasyonlarÃƒâ€žÃ‚Â± */
    .fw-bold.text-danger {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .display-5.fw-bold {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .display-6.fw-bold {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    /* Kart OptimizasyonlarÃƒâ€žÃ‚Â± */
    .card {
        border-radius: 16px !important;
    }

    .card-body {
        padding: 1rem !important;
    }

    .card-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .card-text {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    /* Buton OptimizasyonlarÃƒâ€žÃ‚Â± */
    .btn {
        border-radius: 20px !important;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

    .btn-sm {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }

    /* Alert OptimizasyonlarÃƒâ€žÃ‚Â± */
    .alert {
        padding: 1rem !important;
        border-radius: 12px !important;
        font-size: 0.9rem !important;
    }

        .alert h4, .alert h5, .alert h6 {
            font-size: 1.1rem !important;
            margin-bottom: 0.75rem !important;
        }

    /* Form OptimizasyonlarÃƒâ€žÃ‚Â± */
    .form-control, .form-select {
        font-size: 0.9rem !important;
        padding: 0.75rem 1rem !important;
        border-radius: 12px !important;
    }

    .form-label {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* Modal OptimizasyonlarÃƒâ€žÃ‚Â± */
    .modal-title {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
    }

    .modal-body {
        padding: 1.5rem 1rem !important;
    }

    .modal-header {
        padding: 1rem !important;
    }

    /* List Group OptimizasyonlarÃƒâ€žÃ‚Â± */
    .list-group-item {
        font-size: 0.9rem !important;
        padding: 0.75rem 1rem !important;
        border-radius: 8px !important;
    }

    /* Badge OptimizasyonlarÃƒâ€žÃ‚Â± */
    .badge {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.5rem !important;
        border-radius: 12px !important;
    }

    /* Progress Bar OptimizasyonlarÃƒâ€žÃ‚Â± */
    .progress {
        height: 0.75rem !important;
        border-radius: 10px !important;
    }

    .progress-bar {
        font-size: 0.75rem !important;
    }

    /* Table OptimizasyonlarÃƒâ€žÃ‚Â± */
    .table {
        font-size: 0.85rem !important;
    }

        .table th, .table td {
            padding: 0.5rem 0.75rem !important;
        }

    /* Pagination OptimizasyonlarÃƒâ€žÃ‚Â± */
    .pagination {
        gap: 0.25rem !important;
    }

    .page-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
    }

    /* Dropdown OptimizasyonlarÃƒâ€žÃ‚Â± */
    .dropdown-menu {
        border-radius: 12px !important;
        font-size: 0.9rem !important;
    }

    .dropdown-item {
        padding: 0.5rem 1rem !important;
    }

    /* Navbar OptimizasyonlarÃƒâ€žÃ‚Â± */
    .navbar-brand {
        font-size: 1.2rem !important;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem !important;
        padding: 0.5rem 0.75rem !important;
    }

    /* Sidebar OptimizasyonlarÃƒâ€žÃ‚Â± */
    .sidebar {
        border-radius: 16px !important;
    }

        .sidebar .nav-link {
            font-size: 0.9rem !important;
            padding: 0.75rem 1rem !important;
            border-radius: 8px !important;
        }

    /* Footer OptimizasyonlarÃƒâ€žÃ‚Â± */
    .footer h5 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }

    .footer p, .footer li {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    /* Utility SÃƒâ€žÃ‚Â±nÃƒâ€žÃ‚Â±flarÃƒâ€žÃ‚Â± OptimizasyonlarÃƒâ€žÃ‚Â± */
    .fs-1 {
        font-size: 2rem !important;
    }

    .fs-2 {
        font-size: 1.8rem !important;
    }

    .fs-3 {
        font-size: 1.5rem !important;
    }

    .fs-4 {
        font-size: 1.3rem !important;
    }

    .fs-5 {
        font-size: 1.1rem !important;
    }

    .fs-6 {
        font-size: 1rem !important;
    }

    .display-1 {
        font-size: 2.5rem !important;
    }

    .display-2 {
        font-size: 2.2rem !important;
    }

    .display-3 {
        font-size: 2rem !important;
    }

    .display-4 {
        font-size: 1.8rem !important;
    }

    .display-5 {
        font-size: 1.6rem !important;
    }

    .display-6 {
        font-size: 1.4rem !important;
    }
}

/* Mobilde kartlar ve istatistikler daha sÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±kÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± olsun */
@media (max-width: 768px) {
    .landing-title {
        font-size: 2.2rem;
    }

    .landing-subtitle {
        font-size: 1.1rem;
    }

    .display-4.fw-bold.text-dark {
        font-size: 1.5rem;
    }

    .text-center.p-4 {
        min-height: 140px;
        padding: 1.2rem 0.2rem !important;
    }

    .bg-dark.text-white .p-3 {
        min-height: 80px;
        padding: 0.7rem 0.2rem !important;
    }

    .bg-dark.text-white .display-4 {
        font-size: 1.3rem;
    }

    .bg-dark.text-white .lead {
        font-size: 0.95rem;
    }
}

.entrance-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.entrance-left, .entrance-right {
    flex: 1;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.entrance-left {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.entrance-right {
    background: linear-gradient(135deg, #4834d4 0%, #686de0 100%);
}

    .entrance-left:hover, .entrance-right:hover {
        transform: scale(1.02);
    }

.entrance-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.entrance-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.entrance-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
}

    .entrance-subtitle .small {
        font-size: 0.9rem;
        opacity: 0.9;
        font-style: italic;
    }

    .entrance-subtitle i {
        width: 20px;
        text-align: center;
    }

.entrance-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .entrance-btn:hover {
        background: white;
        color: #333;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

/* Video Background Styles */
.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .entrance-section {
        flex-direction: column;
    }

    .entrance-left, .entrance-right {
        height: 50vh;
    }

    .video-background {
        width: 100vw;
        height: 100vh;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Map Overlay Styles */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

    .map-overlay .leaflet-container {
        background: transparent !important;
    }

    .map-overlay .leaflet-control-container {
        display: none !important;
    }

    .map-overlay .leaflet-attribution-flag {
        display: none !important;
    }

.container, main, .py-5 {
    flex-shrink: 0;
}

footer {
    flex-shrink: 0;
}

/* AVM KartlarÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± ve Slider */
.avm-swiper {
    width: 100%;
    padding-bottom: 2.5rem;
}

.avm-card {
    background: rgba(255,255,255,0.85);
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(31, 38, 135, 0.10);
    overflow: hidden;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 340px;
    border: 1.5px solid #f0f0f0;
    position: relative;
}

.avm-card-effect:hover, .avm-card-effect:focus {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 36px 0 rgba(31, 38, 135, 0.18);
    border-color: #e0e0e0;
    z-index: 2;
}

.avm-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    transition: filter 0.18s;
}

.avm-card-effect:hover .avm-card-img, .avm-card-effect:focus .avm-card-img {
    filter: brightness(1.08) saturate(1.1);
}

.avm-card-body {
    padding: 1.2rem 1rem 1rem 1rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.avm-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #222;
}

.avm-card-desc {
    font-size: 1.05rem;
    color: #666;
    font-weight: 400;
}

.swiper-button-next, .swiper-button-prev {
    color: #333;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px rgba(31,38,135,0.10);
    top: 40%;
    transition: background 0.18s;
}

    .swiper-button-next:hover, .swiper-button-prev:hover {
        background: #fff;
    }

.swiper-pagination-bullet {
    background: #333;
    opacity: 0.4;
    transition: opacity 0.18s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007bff;
}

@media (max-width: 768px) {
    .avm-card {
        min-height: 220px;
    }

    .avm-card-img {
        height: 120px;
    }

    .avm-card-body {
        padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    }
}

/* MaÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸aza KartlarÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stilleri */
.store-card {
    transition: all 0.4s ease;
    cursor: pointer;
    background: white;
    overflow: hidden;
}

    .store-card:hover {
        transform: translateY(-15px) scale(1.03);
        box-shadow: 0 25px 50px rgba(0,0,0,0.2) !important;
    }

    .store-card .card-img-wrapper {
        position: relative;
        overflow: hidden;
    }

    .store-card .card-img-top {
        transition: transform 0.4s ease;
    }

    .store-card:hover .card-img-top {
        transform: scale(1.1);
    }

    .store-card .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        transition: opacity 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .store-card:hover .card-overlay {
        opacity: 1;
    }

    .store-card .card-body {
        padding: 1.5rem;
    }

    .store-card .card-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: #2c3e50;
    }

    .store-card .card-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

/* Gradient Butonlar */
.btn-gradient-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

    .btn-gradient-primary:hover {
        background: linear-gradient(45deg, #0056b3, #004085);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,123,255,0.4);
        color: white;
    }

.btn-gradient-success {
    background: linear-gradient(45deg, #28a745, #1e7e34);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

    .btn-gradient-success:hover {
        background: linear-gradient(45deg, #1e7e34, #155724);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(40,167,69,0.4);
        color: white;
    }

.btn-gradient-warning {
    background: linear-gradient(45deg, #ffc107, #e0a800);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

    .btn-gradient-warning:hover {
        background: linear-gradient(45deg, #e0a800, #d39e00);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255,193,7,0.4);
        color: white;
    }

.btn-gradient-info {
    background: linear-gradient(45deg, #17a2b8, #138496);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

    .btn-gradient-info:hover {
        background: linear-gradient(45deg, #138496, #117a8b);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(23,162,184,0.4);
        color: white;
    }

.btn-gradient-purple {
    background: linear-gradient(45deg, #6f42c1, #5a32a3);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

    .btn-gradient-purple:hover {
        background: linear-gradient(45deg, #5a32a3, #4c2b8a);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(111,66,193,0.4);
        color: white;
    }

.btn-gradient-orange {
    background: linear-gradient(45deg, #fd7e14, #e55a00);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

    .btn-gradient-orange:hover {
        background: linear-gradient(45deg, #e55a00, #cc4a00);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(253,126,20,0.4);
        color: white;
    }

.btn-gradient-secondary {
    background: linear-gradient(45deg, #6c757d, #545b62);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

    .btn-gradient-secondary:hover {
        background: linear-gradient(45deg, #545b62, #495057);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(108,117,125,0.4);
        color: white;
    }

.btn-gradient-teal {
    background: linear-gradient(45deg, #17a2b8, #138496);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

    .btn-gradient-teal:hover {
        background: linear-gradient(45deg, #138496, #117a8b);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(23,162,184,0.4);
        color: white;
    }

.btn-gradient-danger {
    background: linear-gradient(45deg, #dc3545, #c82333);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

    .btn-gradient-danger:hover {
        background: linear-gradient(45deg, #c82333, #bd2130);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(220,53,69,0.4);
        color: white;
    }

/* Swiper MaÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸aza Slider Stilleri */
.store-swiper {
    padding: 2rem 0;
}

    .store-swiper .swiper-slide {
        width: 270px;
        min-width: 220px;
        max-width: 100%;
        margin-right: 20px;
        display: flex;
        height: auto;
    }

    .store-swiper .swiper-button-next,
    .store-swiper .swiper-button-prev {
        background: rgba(255,255,255,0.2);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        color: white;
    }

        .store-swiper .swiper-button-next:hover,
        .store-swiper .swiper-button-prev:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }

    .store-swiper .swiper-pagination-bullet {
        background: white;
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    .store-swiper .swiper-pagination-bullet-active {
        opacity: 1;
        transform: scale(1.3);
    }

/* Responsive MaÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸aza KartlarÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
@media (max-width: 992px) {
    .store-swiper .swiper-slide {
        width: 220px;
        min-width: 160px;
        margin-right: 14px;
    }
}

@media (max-width: 600px) {
    .store-swiper .swiper-slide {
        width: 90vw;
        min-width: 0;
        margin-right: 8px;
    }
}

/* Harita Stilleri */
#map {
    height: 100%;
    width: 100%;
    border-radius: 0;
}

/* Hero Section Stilleri */
.hero-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 250px !important;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
}

    .hero-btn-primary:hover {
        background: linear-gradient(45deg, #0056b3, #004085);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

.hero-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

    .hero-btn-secondary:hover {
        background: rgba(255,255,255,0.3);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

/* MaÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸aza KartlarÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
.store-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

    .store-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .store-card img {
        border-radius: 22px 22px 0 0;
        background: #fff3e0;
    }

.swiper-slide {
    height: auto;
}

/* Gradient Butonlar */
.btn-gradient-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
}

.btn-gradient-success {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
}

.btn-gradient-warning {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    color: white;
    border: none;
}

.btn-gradient-info {
    background: linear-gradient(45deg, #17a2b8, #6f42c1);
    color: white;
    border: none;
}

.btn-gradient-purple {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    color: white;
    border: none;
}

.btn-gradient-danger {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
    border: none;
}

/* Responsive TasarÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±m */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 200px;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Modern Header (Glassmorphism + Logo Box) */
.modern-header {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.logo-box {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(221,36,118,0.10), 0 1.5px 8px #ff512f22;
    padding: 6px 18px 6px 10px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.2s, background 0.2s;
}

    .logo-box img {
        height: 54px;
        width: auto;
        display: block;
        filter: drop-shadow(0 2px 8px #ff512f22);
    }

/* Modern Tek SatÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±r MenÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â 'ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ (scroll yok) */
.modern-header .navbar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
    width: 100%;
    /* overflow-x: auto; */
    /* scrollbar-width: thin; */
    /* scrollbar-color: #ff512f #fff3; */
}
    /* .modern-header .navbar-nav::-webkit-scrollbar { display: none; } */

    .modern-header .navbar-nav .nav-link,
    .modern-header .navbar-nav .nav-box {
        background: rgba(255,255,255,0.22) !important;
        color: #fff !important;
        font-weight: 600;
        border-radius: 8px;
        margin: 0;
        padding: 10px 28px;
        transition: background 0.18s, color 0.18s, box-shadow 0.18s;
        box-shadow: 0 1.5px 8px #ff512f11;
        display: flex;
        align-items: center;
        font-size: 1.08rem;
        white-space: nowrap;
    }

        .modern-header .navbar-nav .nav-link:hover,
        .modern-header .navbar-nav .nav-box:hover,
        .modern-header .navbar-nav .nav-link.active,
        .modern-header .navbar-nav .nav-box.active {
            background: #fff !important;
            color: #c3002f !important;
            box-shadow: 0 4px 16px #ff512f22;
        }

    .modern-header .navbar-nav .menu-icon-bg {
        background: #ffe082;
        color: #ff512f;
        border-radius: 8px;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        margin-right: 10px;
    }

@media (max-width: 991px) {
    .modern-header .navbar-nav {
        gap: 8px;
    }

        .modern-header .navbar-nav .nav-link,
        .modern-header .navbar-nav .nav-box {
            padding: 8px 14px;
            font-size: 1rem;
        }

        .modern-header .navbar-nav .menu-icon-bg {
            width: 22px;
            height: 22px;
            font-size: 1rem;
            margin-right: 6px;
        }
}

.modern-header .btn-cta-join {
    background: linear-gradient(90deg, #ffe082 0%, #ff512f 100%);
    color: #b71c50;
    border-radius: 25px;
    font-weight: 700;
    padding: 8px 28px;
    margin-left: 10px;
    box-shadow: 0 2px 12px #ff512f22;
    border: 2px solid #fff3;
    transition: background 0.3s, box-shadow 0.3s, color 0.2s;
}

    .modern-header .btn-cta-join:hover {
        background: linear-gradient(90deg, #ff512f 0%, #ffe082 100%);
        color: #fff;
        box-shadow: 0 6px 24px #ff512f33;
        border: 2px solid #ffe082;
    }

.modern-header .btn-login {
    background: #fff;
    color: #dd2476;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 22px;
    margin-left: 10px;
    transition: background 0.2s, color 0.2s;
    border: 2px solid #ff512f33;
}

    .modern-header .btn-login:hover {
        background: #ffe082;
        color: #dd2476;
        border: 2px solid #ff512f;
    }

/* Header Box Container Styles */
.header-box-container {
    background: linear-gradient(135deg, #ff6f61 0%, #c3002f 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(221, 36, 118, 0.15);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.8s ease-out;
}

    .header-box-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        border-radius: 20px;
        pointer-events: none;
    }

.header-box-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.header-box-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 1.2;
}

.header-box-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffe082;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.header-box-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.header-box-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.header-box-btn {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header-box-btn-primary {
    background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(24, 90, 157, 0.3);
}

    .header-box-btn-primary:hover {
        background: linear-gradient(90deg, #185a9d 0%, #43cea2 100%);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(24, 90, 157, 0.4);
    }

.header-box-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

    .header-box-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.3);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

.header-box-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

    .header-box-btn-outline:hover {
        background: #fff;
        color: #c3002f;
        transform: translateY(-2px);
    }

.header-box-icon {
    font-size: 1.2rem;
}

.header-box-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.header-box-stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.header-box-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffe082;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-box-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 0.25rem;
}

.header-box-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0.5rem 0.5rem 0.5rem 0;
    backdrop-filter: blur(5px);
}

    .header-box-badge.highlight {
        background: linear-gradient(90deg, #ffe082 0%, #ff512f 100%);
        color: #b71c50;
        font-weight: 600;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .header-box-container {
        padding: 1.5rem;
        margin: 1rem 0;
        border-radius: 15px;
    }

    .header-box-title {
        font-size: 2rem;
    }

    .header-box-subtitle {
        font-size: 1.1rem;
    }

    .header-box-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .header-box-btn {
        justify-content: center;
        width: 100%;
    }

    .header-box-stats {
        gap: 1rem;
    }

    .header-box-stat {
        min-width: 100px;
    }

    .header-box-stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-box-container {
        padding: 1rem;
    }

    .header-box-title {
        font-size: 1.75rem;
    }

    .header-box-subtitle {
        font-size: 1rem;
    }

    .header-box-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .header-box-stat {
        min-width: auto;
    }
}

/* Header Box Variants */
.header-box-container.success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.header-box-container.info {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

.header-box-container.warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.header-box-container.dark {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
}

.header-box-container.purple {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
}

/* Header Box with Image Background */
.header-box-container.with-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .header-box-container.with-image::before {
        background: linear-gradient(135deg, rgba(195, 0, 47, 0.9) 0%, rgba(255, 111, 97, 0.8) 100%);
    }

/* Header Box with Pattern */
.header-box-container.with-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border-radius: 20px;
    pointer-events: none;
}

/* Header Box Animation Variants */
.header-box-container.animate-slide-in {
    animation: slideInFromLeft 0.8s ease-out;
}

.header-box-container.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.header-box-container.animate-bounce-in {
    animation: bounceIn 0.8s ease-out;
}

/* AOS ile uyumlu header box animasyonlarÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
.header-box-container[data-aos] {
    animation: none !important;
}

    .header-box-container[data-aos] .header-box-content {
        animation: none !important;
    }

/* Header Box Container - Header ÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â 'ÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å"zel Stilleri */
.header-box-container:has(nav) {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(221, 36, 118, 0.08);
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

    .header-box-container:has(nav) .header-box-content {
        padding: 0 !important;
    }

    .header-box-container:has(nav)::before {
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        border-radius: 0;
    }

/* Header Box Container - Navbar ÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â 'ÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å"zel Stilleri */
.header-box-container .navbar {
    background: transparent !important;
    border: none !important;
}

.header-box-container .navbar-brand {
    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 12px #ff512f88;
}

    .header-box-container .navbar-brand i {
        font-size: 2.2rem;
        margin-right: 10px;
        color: #ffe082;
    }

.header-box-container .nav-link,
.header-box-container .dropdown-item {
    color: #fff !important;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s, background 0.2s;
    border-radius: 18px;
    padding: 8px 18px;
}

    .header-box-container .nav-link:hover,
    .header-box-container .dropdown-item:hover {
        color: #ff512f !important;
        background: #fff;
        text-shadow: 0 2px 8px #ffe08288;
    }

.header-box-container .btn-cta {
    background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 28px;
    box-shadow: 0 2px 12px #185a9d22;
    transition: background 0.3s, box-shadow 0.3s;
}

    .header-box-container .btn-cta:hover {
        background: linear-gradient(90deg, #185a9d 0%, #43cea2 100%);
        color: #fff;
        box-shadow: 0 6px 24px #185a9d33;
    }

.header-box-container .btn-cta-join {
    background: linear-gradient(90deg, #ffe082 0%, #ff512f 100%);
    color: #dd2476;
    border-radius: 25px;
    font-weight: 700;
    padding: 8px 28px;
    margin-left: 10px;
    box-shadow: 0 2px 12px #ff512f22;
    transition: background 0.3s, box-shadow 0.3s, color 0.2s;
}

    .header-box-container .btn-cta-join:hover {
        background: linear-gradient(90deg, #ff512f 0%, #ffe082 100%);
        color: #fff;
        box-shadow: 0 6px 24px #ff512f33;
        border: 2px solid #ffe082;
    }

.header-box-container .btn-login {
    background: #fff;
    color: #dd2476;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 22px;
    margin-left: 10px;
    transition: background 0.2s, color 0.2s;
    border: 2px solid #ff512f33;
}

    .header-box-container .btn-login:hover {
        background: #ffe082;
        color: #dd2476;
        border: 2px solid #ff512f;
    }

.header-box-container .user-info {
    color: #fff;
    font-size: 1rem;
    margin-left: 18px;
    display: flex;
    align-items: center;
}

    .header-box-container .user-info img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 8px;
        border: 2px solid #ffe082;
    }

    .header-box-container .user-info .fa-user-circle {
        font-size: 2rem;
        margin-right: 8px;
        color: #ffe082;
    }

    .header-box-container .user-info .dropdown-menu {
        min-width: 180px;
    }

    .header-box-container .user-info .dropdown-item {
        color: #333 !important;
    }

        .header-box-container .user-info .dropdown-item:hover {
            background: #ffe08222;
            color: #dd2476 !important;
        }

.header-box-container .nav-link-analiz {
    color: #ffe082 !important;
    font-weight: 700;
    font-size: 1.05rem;
    animation: fadeInUp 1.2s 1.2s both;
    background: #fff2;
    border-radius: 18px;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Sticky Google Ads */
.sticky-ad {
    position: fixed;
    top: 90px;
    z-index: 1050;
    width: 160px;
    height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    pointer-events: auto;
}

.sticky-ad-left {
    left: 0;
}

.sticky-ad-right {
    right: 0;
}

@media (max-width: 1399px) {
    .sticky-ad {
        display: none !important;
    }
}

/* ===== INDEX PAGE STYLES ===== */

/* Hero Section */
.hero-section {
    position: relative;
    background: #7a0020;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px rgba(221,36,118,0.10);
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 24px #dd247688, 0 1px 0 #ff512f;
    letter-spacing: 1.5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffe082;
    text-shadow: 0 2px 8px #ff512f88;
    font-weight: 500;
}

.hero-btn {
    background: linear-gradient(90deg,#7a0020 0%,#ff512f 100%);
    color: #fff;
    border: 3px solid #ffe082;
    box-shadow: 0 4px 24px #7a002044;
    font-size: 1.15rem;
    border-radius: 32px;
    padding: 14px 38px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px #7a002088;
    transition: all .3s;
}

.avm-carsi-btn:hover {
    background: linear-gradient(90deg, #ff512f 0%, #7a0020 100%) !important;
    color: #fff !important;
    box-shadow: 0 8px 32px #ff512f44;
}

.hero-stat {
    background: linear-gradient(90deg,#ff512f 0%,#ffe082 100%);
    border: 3px solid #ffe082;
    border-radius: 18px;
    padding: 18px 32px;
    box-shadow: 0 2px 12px #ff512f22;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* System Boxes */
.system-box2 {
    cursor: pointer;
}

    .system-box2:hover {
        transform: translateY(-8px) scale(1.04);
        box-shadow: 0 8px 32px #b71c5044;
        z-index: 2;
    }

/* Store Cards */
.store-card {
    border-radius: 22px !important;
    box-shadow: 0 8px 32px #b71c5022;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
    border: 2px solid #ffe082;
    background: #fffdfa;
}

    .store-card:hover {
        transform: scale(1.045) translateY(-8px);
        box-shadow: 0 16px 48px #ff512f33;
        border-color: #ff512f;
    }

    .store-card img {
        border-radius: 22px 22px 0 0;
        background: #fff3e0;
    }

    .store-card .btn {
        background: linear-gradient(90deg,#ff512f 0%,#b71c50 100%);
        color: #fff;
        border-radius: 18px;
        font-weight: 700;
        font-size: 1rem;
        box-shadow: 0 2px 8px #ff512f22;
        border: none;
        transition: background 0.2s, box-shadow 0.2s;
    }

        .store-card .btn:hover {
            background: linear-gradient(90deg,#b71c50 0%,#ff512f 100%);
            box-shadow: 0 4px 16px #ff512f44;
        }

/* Newsletter Section */
.input-group-lg .form-control {
    font-size: 1.1rem;
    background: #fffdfa;
}

.input-group-lg .input-group-text {
    font-size: 1.2rem;
    background: #fffdfa;
}

.btn-danger, .btn-warning {
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 2px 8px #ff512f22;
}

.btn-warning {
    background: linear-gradient(90deg,#ffe082 0%,#ff512f 100%) !important;
    color: #b71c50 !important;
    border: none;
}

    .btn-warning:hover {
        background: linear-gradient(90deg,#ff512f 0%,#ffe082 100%) !important;
        color: #fff !important;
    }

/* Test YayÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±nÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Modal */
.test-yayin-modal .modal-content {
    border-radius: 24px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe082 100%);
    box-shadow: 0 20px 60px rgba(255,81,47,0.3);
}

.test-yayin-modal .modal-header {
    background: linear-gradient(135deg, #ff6f61 0%, #c3002f 100%);
}

.test-yayin-modal .modal-title {
    color: #b71c50;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
}

.test-yayin-modal .alert-warning {
    background: linear-gradient(90deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border-radius: 16px;
    font-size: 1.1rem;
}

.test-yayin-modal .card {
    background: rgba(255,255,255,0.8);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.test-yayin-modal .alert-info {
    background: linear-gradient(90deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border-radius: 16px;
}

.test-yayin-modal .btn {
    background: linear-gradient(90deg, #ff512f 0%, #b71c50 100%);
    color: #fff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 16px rgba(255,81,47,0.3);
    transition: all 0.3s;
}

.test-yayin-modal .form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #ff512f;
    border-radius: 4px;
}

.test-yayin-modal .form-check-label {
    color: #b71c50;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
}

/* Sticky Ads */
.sticky-ad {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.sticky-ad-left {
    left: 10px;
}

.sticky-ad-right {
    right: 10px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .sticky-ad {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

/* System Principles Section */
.system-principles {
    background: linear-gradient(90deg, #f6f8fa 0%, #e3e6f3 100%);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(100,36,221,0.10);
    margin-top: 64px;
}

.system-principles-title {
    font-size: 2.3rem;
    color: #2c3e50;
    letter-spacing: 1px;
}

.system-info-alert {
    max-width: 800px;
    margin: auto;
    font-size: 1.05rem;
    background: rgba(255,255,255,0.18);
    color: #7c2ae8;
    border: none;
    border-radius: 16px;
}

/* Popular Stores Section */
.popular-stores {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe082 100%);
    margin-top: 48px;
}

.popular-stores-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg,#ff512f 0%,#b71c50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 24px #ff512f44;
    letter-spacing: 1px;
}

/* Newsletter Section */
.newsletter-card {
    border-radius: 28px;
    background: linear-gradient(90deg, #ff6f61 0%, #c3002f 100%);
    box-shadow: 0 8px 32px #ff512f22;
}

.newsletter-title {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(90deg,#fffde7 0%,#ffe082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px #fffde799;
    letter-spacing: 0.5px;
}

.newsletter-subtitle {
    color: #fffde7;
    font-size: 1.15rem;
}

/* ===== AD BANNER STYLES ===== */

/* Ad Banner Container */
.ad-banner {
    position: relative;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.ad-banner-top {
    position: sticky;
    top: 0;
    z-index: 1001;
}

.ad-banner-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1001;
}

.ad-banner-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    padding: 10px;
}

.ad-container {
    width: 100%;
    max-width: 728px;
    margin: 0 auto;
    text-align: center;
}

/* Ad Close Button */
.ad-close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 1002;
}

    .ad-close-btn:hover {
        background: rgba(0, 0, 0, 0.7);
    }

/* Ad Open Button */
.ad-open-btn {
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-open-btn-top {
    top: 10px;
    right: 10px;
}

.ad-open-btn-bottom {
    bottom: 10px;
    right: 10px;
}

.ad-open-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Ad Banner Hide Animation */
.ad-banner.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.ad-banner-bottom.hide {
    transform: translateY(100%);
}

/* Responsive Ad Banner */
@media (max-width: 768px) {
    .ad-banner-content {
        min-height: 60px;
        padding: 5px;
    }

    .ad-container {
        max-width: 320px;
    }

    .ad-open-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Hide ads on very small screens */
@media (max-width: 480px) {
    .ad-banner {
        display: none !important;
    }
}

/* ===== LAYOUT STYLES ===== */

body {
    background: #f6f8fa;
}

.main-header {
    background: linear-gradient(90deg, #ff6f61 0%, #c3002f 100%);
    box-shadow: 0 4px 24px rgba(221,36,118,0.08);
    position: sticky;
    top: 0px;
    z-index: 100;
    animation: fadeInDown 1s;
    overflow: hidden;
}

    .main-header .navbar-brand {
        font-weight: bold;
        font-size: 2rem;
        color: #fff;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        text-shadow: 0 2px 12px #ff512f88;
    }

        .main-header .navbar-brand i {
            font-size: 2.2rem;
            margin-right: 10px;
            color: #ffe082;
        }

    .main-header .nav-link, .main-header .dropdown-item {
        color: #fff !important;
        font-weight: 500;
        font-size: 1.1rem;
        transition: color 0.2s, background 0.2s;
        border-radius: 18px;
        padding: 8px 18px;
    }

        .main-header .nav-link:hover, .main-header .dropdown-item:hover {
            color: #ff512f !important;
            background: #fff;
            text-shadow: 0 2px 8px #ffe08288;
        }

    .main-header .btn-cta {
        background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
        color: #fff;
        border-radius: 25px;
        font-weight: 600;
        padding: 8px 28px;
        box-shadow: 0 2px 12px #185a9d22;
        transition: background 0.3s, box-shadow 0.3s;
    }

        .main-header .btn-cta:hover {
            background: linear-gradient(90deg, #185a9d 0%, #43cea2 100%);
            color: #fff;
            box-shadow: 0 6px 24px #185a9d33;
        }

    .main-header .btn-cta-join {
        background: linear-gradient(90deg, #ffe082 0%, #ff512f 100%);
        color: #dd2476;
        border-radius: 25px;
        font-weight: 700;
        padding: 8px 28px;
        margin-left: 10px;
        box-shadow: 0 2px 12px #ff512f22;
        transition: background 0.3s, box-shadow 0.3s, color 0.2s;
        border: 2px solid #fff3;
    }

        .main-header .btn-cta-join:hover {
            background: linear-gradient(90deg, #ff512f 0%, #ffe082 100%);
            color: #fff;
            box-shadow: 0 6px 24px #ff512f33;
            border: 2px solid #ffe082;
        }

    .main-header .btn-login {
        background: #fff;
        color: #dd2476;
        border-radius: 25px;
        font-weight: 600;
        padding: 8px 22px;
        margin-left: 10px;
        transition: background 0.2s, color 0.2s;
        border: 2px solid #ff512f33;
    }

        .main-header .btn-login:hover {
            background: #ffe082;
            color: #dd2476;
            border: 2px solid #ff512f;
        }

    .main-header .user-info {
        color: #fff;
        font-size: 1rem;
        margin-left: 18px;
        display: flex;
        align-items: center;
    }

        .main-header .user-info img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 8px;
            border: 2px solid #ffe082;
        }

        .main-header .user-info .fa-user-circle {
            font-size: 2rem;
            margin-right: 8px;
            color: #ffe082;
        }

        .main-header .user-info .dropdown-menu {
            min-width: 180px;
        }

        .main-header .user-info .dropdown-item {
            color: #333 !important;
        }

            .main-header .user-info .dropdown-item:hover {
                background: #ffe08222;
                color: #dd2476 !important;
            }

    .main-header .nav-link-analiz {
        color: #ffe082 !important;
        font-weight: 700;
        font-size: 1.05rem;
        animation: fadeInUp 1.2s 1.2s both;
        background: #fff2;
        border-radius: 18px;
    }

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }

.btn-header {
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-left: 10px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 25px !important;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
}

    .hero-btn-primary:hover {
        background: linear-gradient(45deg, #0056b3, #004085);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

.hero-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

    .hero-btn-secondary:hover {
        background: rgba(255,255,255,0.3);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

.map-section {
    background: #f8f9fa;
    padding: 50px 0;
}

#map {
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.store-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

    .store-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .store-card img {
        border-radius: 22px 22px 0 0;
        background: #fff3e0;
    }

.swiper-slide {
    height: auto;
}

/* Alt menÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼lerin saÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸da aÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±lmasÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± iÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in */
.dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
    margin-left: 0.1rem;
}

.dropdown-menu .dropdown-toggle:after {
    float: right;
}

.custom-dropdown-menu {
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #ff512f22;
    padding: 0.2rem 0;
    border: none;
    margin-top: 6px;
    background: #fff;
}

    .custom-dropdown-menu .dropdown-item {
        color: #b71c50 !important;
        background: #fff !important;
        font-size: 0.97rem;
        padding: 8px 14px;
        border-radius: 0 !important;
        border-bottom: 1px solid #ffe082;
        transition: background 0.2s, color 0.2s;
    }

        .custom-dropdown-menu .dropdown-item:hover,
        .custom-dropdown-menu .dropdown-item:focus,
        .custom-dropdown-menu .dropdown-item.active {
            background: #ff512f !important;
            color: #fff !important;
        }

        .custom-dropdown-menu .dropdown-item:last-child {
            border-bottom: none;
        }

.navbar-nav .nav-link.dropdown-toggle {
    background: #fff2;
    border-radius: 16px;
    font-weight: 700;
    color: #fff !important;
    padding: 10px 28px;
    transition: background 0.2s, color 0.2s;
}

    .navbar-nav .nav-link.dropdown-toggle.show,
    .navbar-nav .nav-link.dropdown-toggle:focus,
    .navbar-nav .nav-link.dropdown-toggle:hover {
        background: #fff;
        color: #ff512f !important;
        box-shadow: 0 2px 12px #ff512f22;
    }

.nav-box {
    color: #b71c50 !important;
    background: #fff3e0;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    font-weight: 700;
    padding: 4px 12px;
    font-size: 0.97rem;
    box-shadow: 0 1px 3px #ff512f0a;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
}

    .nav-box .menu-icon-bg {
        color: #ff512f;
        background: #ffe082;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 6px;
        font-size: 0.95rem;
        box-shadow: none;
        margin-right: 2px;
        transition: background 0.2s, color 0.2s;
    }

    .nav-box .menu-title {
        font-weight: 700;
        letter-spacing: 0.1px;
        font-size: 0.97rem;
        white-space: nowrap;
        color: #fff !important;
    }

    .nav-box:hover, .nav-box.active, .nav-box.show, .nav-box:focus {
        color: #ff512f;
    }

        .nav-box:hover .menu-icon-bg,
        .nav-box.active .menu-icon-bg,
        .nav-box.show .menu-icon-bg {
            background: #fff;
            color: #ff512f;
        }

        .nav-box:hover .menu-title,
        .nav-box.active .menu-title,
        .nav-box.show .menu-title {
            color: #fff !important;
        }


/* AVM, ÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¡arÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± ve Neden Biz? menÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼leri iÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in yazÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± rengi beyaz */
.navbar-nav:hover .nav-item:nth-child(1) .nav-box:hover,
.navbar-nav:hover .nav-item:nth-child(2) .nav-box:hover,
.navbar-nav:hover .nav-link-analiz,
.navbar-nav:hover .nav-item:nth-child(1) .nav-box:hover .menu-title:hover,
.navbar-nav:hover .nav-item:nth-child(2) .nav-box:hover .menu-title:hover,
.navbar-nav:hover .nav-link-analiz:hover .menu-title:hover {
    color: #ff512f !important;
}

/* Responsive adjustments for nav-box */
@media (max-width: 991px) {
    .nav-box {
        padding: 7px 10px;
        font-size: 0.95rem;
    }

        .nav-box .menu-icon-bg {
            width: 26px;
            height: 26px;
            font-size: 0.95rem;
        }
}

@media (max-width: 991px) {
    .nav-box {
        padding: 4px 7px;
        font-size: 0.93rem;
    }

        .nav-box .menu-icon-bg {
            width: 18px;
            height: 18px;
            font-size: 0.85rem;
        }
}

/* ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸letme + ve GiriÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ butonlarÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± iÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in ÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶zel stiller */
.nav-box.isletme-plus {
    background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
    color: #fff !important;
    border: 2px solid #fff3;
    box-shadow: 0 2px 12px #185a9d22;
    animation: pulse-glow 2s infinite;
}

    .nav-box.isletme-plus .menu-icon-bg {
        background: #fff;
        color: #185a9d;
        animation: rotate-plus 3s ease-in-out infinite;
    }

    .nav-box.isletme-plus .menu-title {
        color: #fff !important;
        font-weight: 800;
    }

    .nav-box.isletme-plus:hover {
        background: linear-gradient(90deg, #185a9d 0%, #43cea2 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 24px #185a9d33;
    }

.nav-box.giris-btn {
    background: linear-gradient(90deg, #ffe082 0%, #ff512f 100%);
    color: #dd2476 !important;
    border: 2px solid #fff3;
    box-shadow: 0 2px 12px #ff512f22;
    animation: bounce-in 1s ease-out;
}

    .nav-box.giris-btn .menu-icon-bg {
        background: #fff;
        color: #ff512f;
        animation: check-mark 2s ease-in-out infinite;
    }

    .nav-box.giris-btn .menu-title {
        color: #dd2476 !important;
        font-weight: 800;
    }

    .nav-box.giris-btn:hover {
        background: linear-gradient(90deg, #ff512f 0%, #ffe082 100%);
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 24px #ff512f33;
    }

        .nav-box.giris-btn:hover .menu-title {
            color: #fff !important;
        }

/* Animasyonlar */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 12px #185a9d22;
    }

    50% {
        box-shadow: 0 4px 20px #185a9d44;
    }
}

@keyframes rotate-plus {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }
}

@keyframes bounce-in {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes check-mark {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive adjustments for nav-box */

/* Modal Stilleri */
.modal-content {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
    margin: 15px;
}

.modal-header {
    background: linear-gradient(135deg, #ff6f61 0%, #c3002f 100%);
    color: white;
    padding: 1.5rem 2rem 1rem 2rem;
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 2rem;
    background: #fff;
}

.modal-title {
    color: #c3002f;
    font-size: 2rem;
    font-weight: 800;
    /* margin-bottom: 1.5rem; */
    text-shadow: 0 2px 8px rgba(195, 0, 47, 0.1);
}

/* Modal Icon Stilleri */
.modal-header .rounded-circle {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

#girisModal .modal-header .rounded-circle {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
}

/* Modal Header ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§erik DÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼zeni */
.modal-header .position-relative {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header .position-absolute {
    margin-top: 0;
}

/* Form Stilleri */
.form-floating {
    margin-bottom: 1rem;
}

.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

    .form-control:focus, .form-select:focus {
        border-color: #ff6f61;
        box-shadow: 0 0 0 0.2rem rgba(255, 111, 97, 0.25);
        background: #fff;
    }

.form-floating label {
    color: #6c757d;
    font-weight: 500;
    padding: 1rem 1.25rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: #ff6f61;
    font-weight: 600;
}

/* Alert Stilleri */
.alert {
    border-radius: 16px;
    border: none;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    border-left: 4px solid #2196f3;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
    border-left: 4px solid #ff9800;
}

/* Button Stilleri */
.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    border: none;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-success {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

    .btn-success:hover {
        background: linear-gradient(135deg, #45a049 0%, #1b5e20 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    }

.btn-primary {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    }

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

    .btn-secondary:hover {
        background: linear-gradient(135deg, #5a6268 0%, #343a40 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
    }

/* Modal Icon Stilleri */
.modal-header .rounded-circle {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

#girisModal .modal-header .rounded-circle {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
}

/* Form Check Stilleri */
.form-check-input {
    border-radius: 6px;
    border: 2px solid #dee2e6;
    width: 1.2rem;
    height: 1.2rem;
}

    .form-check-input:checked {
        background-color: #ff6f61;
        border-color: #ff6f61;
    }

.form-check-label {
    font-weight: 500;
    color: #495057;
}

/* Link Stilleri */
.modal-body a {
    color: #ff6f61;
    font-weight: 600;
    transition: color 0.3s ease;
}

    .modal-body a:hover {
        color: #c3002f;
        text-decoration: none;
    }

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Form Validation Stilleri */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Loading State */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Success Animation */
@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.btn-success:active {
    animation: successPulse 0.3s ease;
}

/* Modal Backdrop */
.modal-backdrop {
    background-color: rgba(195, 0, 47, 0.3);
}

    .modal-backdrop.show {
        opacity: 1;
    }

/* Google GiriÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ Butonu */
.btn-google {
    background: #fff;
    color: #757575;
    border: 2px solid #dadce0;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .btn-google:hover {
        background: #f8f9fa;
        border-color: #c1c1c1;
        color: #5f6368;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .btn-google:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

/* Divider Stilleri */
.divider {
    position: relative;
    margin: 1.5rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #dee2e6 50%, transparent 100%);
}

.divider-text {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
    background: #fff;
    z-index: 1;
}

/* Google SVG Icon Animation */
.btn-google svg {
    transition: transform 0.3s ease;
}

.btn-google:hover svg {
    transform: scale(1.1);
}

/* Loading State for Google Button */
.btn-google:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-google.loading {
    position: relative;
    color: transparent;
}

    .btn-google.loading::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: 2px solid #4285F4;
        border-top: 2px solid transparent;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸letme ve GiriÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ ButonlarÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± ArasÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± BoÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸luk ve BÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼yÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼k Font */
.isletme-plus {
    margin-right: 18px;
    font-size: 1.18rem !important;
    font-weight: 700 !important;
    padding: 0.85rem 2.2rem !important;
    letter-spacing: 0.5px;
}

.giris-btn {
    font-size: 1.18rem !important;
    font-weight: 700 !important;
    padding: 0.85rem 2.2rem !important;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .isletme-plus, .giris-btn {
        font-size: 1rem !important;
        padding: 0.7rem 1.2rem !important;
    }

    .isletme-plus {
        margin-right: 10px;
    }
}

/* Neden Biz? Hover Efekti */
.nav-link-neden {
    background: transparent;
    color: #fff;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border-radius: 12px;
    font-weight: 700;
}

    .nav-link-neden:hover, .nav-link-neden:focus {
        background: #fff !important;
        color: #c3002f !important;
        box-shadow: 0 4px 16px #ff512f22;
        text-decoration: none;
    }

/* Google AdSense Reklam Stilleri */
.ad-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

    .ad-container:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        transform: translateY(-1px);
    }

    .ad-container ins {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 90px;
    }

    /* Reklam yÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼kleme animasyonu */
    .ad-container::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: 2px solid #f3f3f3;
        border-top: 2px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        z-index: 1;
    }

    .ad-container.loaded::before {
        display: none;
    }

/* Mobil cihazlarda reklam dÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼zeni */
@media (max-width: 768px) {
    .ad-container {
        margin-bottom: 15px;
    }

        .ad-container ins {
            min-height: 60px;
        }
}

/* Reklam Alanları - Masaüstünde Görünür */
.ad-sidebar {
    display: block;
    visibility: visible;
    opacity: 1;
    min-height: 250px;
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.ad-left {
    display: block;
    min-height: 250px;
}

.ad-right {
    display: block;
    min-height: 250px;
}

.ad-container {
    display: block;
    min-height: 250px;
}

.reklamust, .reklamalt {
    display: block;
    visibility: visible;
    opacity: 1;
    min-height: 90px;
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

/* AdSense loading states */
.adsbygoogle:not(.adsbygoogle-loaded) {
    min-height: 90px;
    background: transparent;
}

.adsbygoogle.adsbygoogle-loaded {
    min-height: auto;
}

.adsbygoogle.adsbygoogle-error {
    min-height: 90px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px dashed #e74c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 12px;
    position: relative;
}

    .adsbygoogle.adsbygoogle-error::before {
        content: "ÃƒÂ¢Ã…Â¡Ã‚Â ÃƒÂ¯Ã‚Â¸Ã‚Â Reklam yÃƒÆ'Ã‚Â¼klenemedi";
        text-align: center;
        padding: 10px;
    }

    /* 403 hatalarÃƒâ€žÃ‚Â± iÃƒÆ'Ã‚Â§in ÃƒÆ'Ã‚Â¶zel stil */
    .adsbygoogle.adsbygoogle-error[data-error="403"] {
        background: rgba(255, 193, 7, 0.1);
        border-color: #ffc107;
        color: #856404;
    }

        .adsbygoogle.adsbygoogle-error[data-error="403"]::before {
            content: "ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ¢â‚¬â„¢ Reklam eriÃƒâ€¦Ã…Â¸imi engellendi";
        }

    /* Slot size hatalarÃƒâ€žÃ‚Â± iÃƒÆ'Ã‚Â§in ÃƒÆ'Ã‚Â¶zel stil */
    .adsbygoogle.adsbygoogle-error[data-error="slot-size"] {
        background: rgba(108, 117, 125, 0.1);
        border-color: #6c757d;
        color: #495057;
    }

        .adsbygoogle.adsbygoogle-error[data-error="slot-size"]::before {
            content: "ÃƒÂ°Ã…Â¸Ã¢â‚¬Å"Ã‚Â Reklam boyutu belirlenemedi";
        }

/* Hidden ad containers should not take up space */
.d-none .ad-container,
.d-none .adsbygoogle {
    min-height: 0 !important;
    height: 0 !important;
    overflow: hidden;
}

/* Production'da tÃƒÆ'Ã‚Â¼m debug stillerini devre dÃƒâ€žÃ‚Â±Ãƒâ€¦Ã…Â¸Ãƒâ€žÃ‚Â± bÃƒâ€žÃ‚Â±rak */
.ad-sidebar::before,
.ad-sidebar::after,
.ad-container::before,
.ad-container::after {
    display: none !important;
    content: none !important;
}

/* Debug CSS'ini kaldır - Normal reklam görünümü için */
.ad-sidebar::before,
.ad-sidebar::after {
    display: none;
    content: none;
}

.ad-container::before,
.ad-container::after {
    display: none;
    content: none;
}

@keyframes debugPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 30px rgba(255, 0, 0, 0.4);
    }
}

/* Responsive Reklam Alanları - Masaüstünde Görünür, Mobilde Gizli */
@media (max-width: 575px) {
    /* Mobil (xs) - Reklamlar gizli */
    .ad-sidebar {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .ad-left, .ad-right {
        display: none !important;
        height: 0 !important;
    }

    .ad-container {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    /* Küçük tablet (sm) - Reklamlar gizli */
    .ad-sidebar {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .ad-left, .ad-right {
        display: none !important;
        height: 0 !important;
    }

    .ad-container {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* Tablet (md) - Reklamlar gizli */
    .ad-sidebar {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .ad-left, .ad-right {
        display: none !important;
        height: 0 !important;
    }

    .ad-container {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
    }
}

@media (min-width: 768px) {
    /* Tablet ve üzeri (md ve üzeri) - Reklamlar görünür */
    .ad-sidebar {
        display: block;
        height: auto;
        min-height: 250px;
        margin: 10px 0;
        padding: 10px;
    }

    .ad-container {
        display: block;
        height: auto;
        min-height: 250px;
    }

    .reklamust, .reklamalt {
        display: block !important;
        height: auto;
        min-height: 90px;
        margin: 10px 0;
        padding: 10px;
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 8px;
    }
}

/* Reklam yÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼kleme durumu iÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in stil */
.ad-container.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* MenÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼de kullanÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±cÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± adÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± ve profil iÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in taÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ma ÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶nleyici stil */
.main-header .user-info .user-name-short {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 1200px) {
    .main-header .user-info .user-name-short {
        max-width: 90px;
    }

    .main-header .navbar-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.5rem;
    }
}

@media (max-width: 991px) {
    .main-header .user-info .user-name-short {
        max-width: 70px;
        font-size: 0.95rem;
    }

    .main-header .navbar-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.3rem;
    }
}

/* MenÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼de taÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ma olursa yatay scroll gÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶ster */
.main-header .navbar-nav {
    flex-wrap: wrap;
    min-width: 0;
    overflow: hidden;
}

.header-nav-container {
    gap: 12px;
    overflow: hidden;
}

.header-nav-list {
    white-space: nowrap;
    overflow: hidden;
}

.main-header .navbar-nav::-webkit-scrollbar {
    height: 6px;
    background: #ffe08233;
}

.main-header .navbar-nav::-webkit-scrollbar-thumb {
    background: #ff512f66;
    border-radius: 4px;
}

/* Reklam BannerlarÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
.ad-banner {
    width: 100vw;
    left: 0;
    right: 0;
    box-sizing: border-box;
    background: linear-gradient(90deg, #ffb347 0%, #ff5858 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    position: fixed;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100px;
    min-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ad-banner-top {
    top: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.ad-banner-bottom {
    bottom: 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.ad-banner-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 12px 0;
    height: 100px;
}

    .ad-banner-content > ins.adsbygoogle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100% !important;
        height: 100px !important;
        margin: 0 auto !important;
    }

.ad-close-btn {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff3;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

    .ad-close-btn:hover {
        background: #fff6;
        color: #d00;
    }

.ad-open-btn {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background: #ff5858;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

.ad-open-btn-top {
    top: 8px;
}

.ad-open-btn-bottom {
    bottom: 8px;
}

@media (max-width: 600px) {
    .ad-banner-content {
        font-size: 0.95rem;
        padding: 8px 0;
    }

    .ad-banner {
        font-size: 1rem;
    }

    .ad-close-btn, .ad-open-btn {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
}

body {
    overflow-x: hidden;
}

/* Typing Effect Styles */
.typing-text {
    position: relative;
    display: inline-block;
}

    .typing-text::after {
        content: '|';
        position: absolute;
        right: -8px;
        top: 0;
        color: #fff;
        font-weight: bold;
        animation: blink 1s infinite;
    }

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}

.typing-text.typing-complete::after {
    display: none;
}

.ad-banner.hide {
    max-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none;
}

@media (max-width: 600px) {
    .main-header,
    .modern-header {
        top: 60px;
    }
}

/* View ve partial dosyalarÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ndan taÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±nan ÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶zel CSS kodlarÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */

.tab-pane {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DiÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸er taÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±nan ÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶zel stiller buraya eklenecek */

/* AVM Anchor MenÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ */
.avm-anchor-menu {
    border-bottom: 1px solid #eee;
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 2px 12px #b71c5011;
    z-index: 10;
}

    .avm-anchor-menu .anchor-link {
        color: #b71c50;
        font-weight: 600;
        font-size: 1.08rem;
        padding: 8px 22px 8px 22px;
        border-radius: 8px 8px 0 0;
        text-decoration: none;
        transition: color 0.18s, background 0.18s, border 0.18s;
        border-bottom: 2.5px solid transparent;
        background: none;
        outline: none;
    }

        .avm-anchor-menu .anchor-link.active,
        .avm-anchor-menu .anchor-link:focus {
            color: #c3002f;
            border-bottom: 2.5px solid #c3002f;
            background: #fff6;
        }

        .avm-anchor-menu .anchor-link:hover {
            color: #ff512f;
            background: #fff3;
        }

@media (max-width: 768px) {
    .avm-anchor-menu .anchor-link {
        font-size: 0.98rem;
        padding: 7px 10px;
    }
}

/* Boxed ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§erik */
.boxed-content {
    max-width: 1200px;
    margin: 32px auto 32px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px #b71c5011;
    padding: 32px 24px;
    width: 100%;
}

@media (max-width: 991px) {
    .boxed-content {
        padding: 18px 6px;
        margin: 16px 0;
        border-radius: 10px;
    }
}

/* AVM Sekme MenÃƒÆ'Ã†â€™Ãƒâ€  Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ */
.avm-tabs-menu {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px #b71c5011;
    padding: 18px 0 0 0;
    margin-bottom: 32px;
}

.avm-tab-link {
    color: #b71c50;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 10px 32px 12px 32px;
    border-radius: 12px 12px 0 0;
    text-decoration: none;
    transition: all 0.18s;
    position: relative;
    background: none;
    box-shadow: none;
    display: inline-block;
}

    .avm-tab-link.active {
        color: #c3002f;
        background: #fff;
        box-shadow: 0 6px 24px #c3002f11;
        z-index: 2;
    }

        .avm-tab-link.active::after {
            content: "";
            display: block;
            height: 4px;
            border-radius: 2px;
            background: #c3002f;
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: -4px;
        }

    .avm-tab-link:hover {
        color: #ff512f;
        box-shadow: 0 2px 12px #c3002f22;
        background: #fff6;
    }

@media (max-width: 991px) {
    .avm-tab-link {
        font-size: 1.05rem !important;
        padding: 8px 12px 10px 12px !important;
    }
}

#magazaPagination button {
    min-width: 32px;
    min-height: 32px;
    padding: 2px 8px;
    border-radius: 10px;
    background: linear-gradient(90deg, #fff 0%, #ffe082 100%);
    color: #c3002f;
    border: 2px solid #ffe082;
    font-weight: 400;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
    box-shadow: 0 2px 8px #c3002f11;
    transition: all 0.18s;
    outline: none;
}

    #magazaPagination button.fw-bold, #magazaPagination button.active {
        font-weight: 700;
    }

/* Reklam kutuları - Gizli */
.reklamust, .reklamalt {
    /* display: none !important; */
    /* visibility: hidden !important; */
    /* opacity: 0 !important; */
    /* height: 0 !important; */
    /* min-height: 0 !important; */
    /* margin: 0 !important; */
    /* padding: 0 !important; */
    /* overflow: hidden !important; */
}

.adsbygoogle {
    display: inline-block;
    min-width: 320px;
    min-height: 90px;
    width: 100%;
    max-width: 100%;
    /* Production'da tamamen temiz gÃƒÆ'Ã‚Â¶rÃƒÆ'Ã‚Â¼nÃƒÆ'Ã‚Â¼m */
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Production'da ÃƒÆ'Ã‚Â¼st ve alt reklam alanlarÃƒâ€žÃ‚Â± iÃƒÆ'Ã‚Â§in tÃƒÆ'Ã‚Â¼m debug stillerini devre dÃƒâ€žÃ‚Â±Ãƒâ€¦Ã…Â¸Ãƒâ€žÃ‚Â± bÃƒâ€žÃ‚Â±rak */
.reklamust::before,
.reklamust::after,
.reklamalt::before,
.reklamalt::after,
.reklamust .adsbygoogle::before,
.reklamust .adsbygoogle::after,
.reklamalt .adsbygoogle::before,
.reklamalt .adsbygoogle::after {
    display: none !important;
    content: none !important;
}



/* Breadcrumb */
.breadcrumb-box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.avm-breadcrumb-list {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px #b71c5011;
    padding: 10px 28px;
    font-size: 1.08rem;
    font-weight: 500;
    margin-bottom: 0;
    align-items: center;
}

    .avm-breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
        content: ">";
        color: #c3002f99;
        font-size: 0.98em;
        margin: 0 7px 0 5px;
        vertical-align: middle;
    }

.breadcrumb-link {
    color: #b71c50;
    text-decoration: none;
    transition: color 0.18s;
}

    .breadcrumb-link:hover {
        color: #ff512f;
        text-decoration: underline;
    }

.avm-breadcrumb-list .breadcrumb-item.active {
    color: #c3002f;
    font-weight: 700;
    background: none;
    text-shadow: 0 2px 8px #c3002f11;
}

@media (max-width: 991px) {
    .avm-breadcrumb-list {
        font-size: 0.97rem;
        padding: 6px 10px;
    }
}

/* Sayfalama */
#magazaPagination button {
    min-width: 32px;
    min-height: 32px;
    padding: 2px 8px;
    border-radius: 10px;
    background: linear-gradient(90deg, #fff 0%, #ffe082 100%);
    color: #c3002f;
    border: 2px solid #ffe082;
    font-weight: 400;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
    box-shadow: 0 2px 8px #c3002f11;
    transition: all 0.18s;
    outline: none;
}

    #magazaPagination button.fw-bold, #magazaPagination button.active {
        font-weight: 700;
    }

/* Modern Header Styles */
.header-modern {
    background: #ffffff;
    border-bottom: 1px solid #c70732;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
    background: linear-gradient(93deg, #ff6f61 0%, #c3002f 100%);
}

.header-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    background: var(--bs-white);
    border-radius: 8px;
    /* padding: 4px; */
    margin-top: 10px;
}

    .header-logo:hover {
        transform: scale(1.05);
    }

/* Header Social Icons */
.header-social {
    width: 45px;
    height: 45px;
    background: rgba(195, 0, 47, 0.1);
    border: 2px solid rgba(195, 0, 47, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

    .header-social:hover {
        background: rgba(195, 0, 47, 0.2);
        border-color: rgba(195, 0, 47, 0.4);
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 20px rgba(195, 0, 47, 0.2);
    }

/* Header Navigation Box */
.header-nav-box {
    background: linear-gradient(269deg, #ff6f61 0%, #c3002f 100%);
    border-radius: 12px;
    /* border: 1px solid var(--bs-gray-200); */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
}

/* Header Links */
.header-link {
    /* background: rgba(195, 0, 47, 0.05); */
    border-radius: 8px;
    border: 1px solid rgba(195, 0, 47, 0.1);
    transition: all 0.3s ease;
    position: relative;
    /* overflow: hidden; */
    height: 44px;
    display: flex;
    align-items: center;
    color: var(--bs-white) !important;
}

    .header-link::before {
        /* content: ''; */
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(195, 0, 47, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .header-link:hover::before {
        left: 100%;
    }

    .header-link:hover {
        background: rgb(196 16 46 / 50%);
        border-color: rgba(195, 0, 47, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(195, 0, 47, 0.1);
        color: var(--bs-white) !important;
    }

    .header-link.active {
        background: rgba(195, 0, 47, 0.15);
        border-color: rgb(250 32 53);
        box-shadow: 0 4px 12px rgba(195, 0, 47, 0.1);
        color: var(--bs-body-bg) !important;
    }

/* Header Action Buttons */
.header-action-btn {
    background: rgba(195, 0, 47, 0.1);
    border: 2px solid rgba(195, 0, 47, 0.2);
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    color: #c3002f;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    height: 44px;
}

    .header-action-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(195, 0, 47, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .header-action-btn:hover::before {
        left: 100%;
    }

    .header-action-btn:hover {
        background: rgba(195, 0, 47, 0.2);
        border-color: rgba(195, 0, 47, 0.4);
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 20px rgba(195, 0, 47, 0.2);
        color: #c3002f;
    }

.action-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 0, 47, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #c3002f;
}

.header-action-btn:hover .action-icon {
    background: rgba(195, 0, 47, 0.3);
    transform: rotate(180deg);
}

.action-text {
    font-weight: 600;
    color: var(--bs-white);
}

/* Header User Button */
.header-user-btn {
    background: rgba(195, 0, 47, 0.1);
    border: 2px solid rgba(195, 0, 47, 0.2);
    border-radius: 10px;
    padding: 0.2rem 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

    .header-user-btn:hover {
        background: rgba(195, 0, 47, 0.2);
        border-color: rgba(195, 0, 47, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(195, 0, 47, 0.2);
    }

/* Mobil Menü Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .mobile-menu-toggle:hover {
        transform: scale(1.1);
    }

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
    color: var(--bs-white);
}

    .hamburger-icon span {
        width: 100%;
        height: 4px;
        background: var(--bs-body-bg);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

.mobile-menu-toggle:hover .hamburger-icon span {
    background: #c3002f;
}

/* Mobil Offcanvas Menü */
.offcanvas {
    border-left: 1px solid #e9ecef;
}

.offcanvas-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.offcanvas-title {
    color: #333;
    font-weight: 600;
}

/* Mobil Navigasyon Linkleri */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: #c3002f;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .mobile-nav-link:hover {
        background: rgba(195, 0, 47, 0.1);
        color: #c3002f;
        transform: translateX(5px);
    }

    .mobile-nav-link.active {
        background: rgba(195, 0, 47, 0.15);
        color: #c3002f;
        border-left: 4px solid #c3002f;
    }

    .mobile-nav-link i {
        width: 20px;
        text-align: center;
        margin-right: 0.5rem;
    }

/* Mobil Aksiyon Butonları */
.mobile-actions {
    margin-top: 1rem;
}

.mobile-action-btn {
    background: rgba(195, 0, 47, 0.1);
    border: 2px solid rgba(195, 0, 47, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #c3002f;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mobile-action-btn:hover {
        background: rgba(195, 0, 47, 0.2);
        border-color: rgba(195, 0, 47, 0.4);
        color: #c3002f;
        transform: translateY(-2px);
    }

    .mobile-action-btn.giris-btn {
        background: #c3002f;
        border-color: #c3002f;
        color: white;
    }

        .mobile-action-btn.giris-btn:hover {
            background: #a00024;
            border-color: #a00024;
            color: white;
        }

/* Mobil Kullanıcı Bilgileri */
.mobile-user-info {
    padding: 1rem;
    background: rgba(195, 0, 47, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(195, 0, 47, 0.1);
}

.mobile-user-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .mobile-menu-item:hover {
        background: rgba(195, 0, 47, 0.1);
        color: #c3002f;
        transform: translateX(5px);
    }

    .mobile-menu-item i {
        width: 20px;
        text-align: center;
        margin-right: 0.5rem;
    }

/* Responsive Header */
@media (max-width: 768px) {
    .header-nav-box {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 10px 15px !important;
        width: 100% !important;
        position: relative;
    }

    .header-logo {
        height: 50px;
        order: 1;
        flex-shrink: 0;
        margin-right: auto;
    }

    .mobile-menu-toggle {
        order: 2;
        flex-shrink: 0;
        margin-left: auto;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Logo container'ı sol tarafa sabitle */
    .header-nav-box > div:first-child {
        order: 1;
        flex-shrink: 0;
        margin-right: auto;
    }

    /* Desktop navigation'ı gizle */
    .d-none.d-md-flex {
        display: none !important;
    }

    /* Logo link'ini sol tarafa sabitle */
    .header-nav-box > div:first-child > a {
        display: block;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .header-nav-box {
        padding: 8px 12px !important;
    }

    .header-logo {
        height: 65px;
    }

    .mobile-menu-toggle {
        padding: 6px;
        right: 12px;
        /* color: aliceblue; */
    }

    .hamburger-icon {
        width: 24px;
        height: 24px;
        /* color: aliceblue !important; */
    }
}
