/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI', Tahoma, sans-serif;
    background:#f8fafc;
    color:#1e293b;
    line-height:1.6;
    padding-top:80px;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* =========================
   HEADER
========================= */

.header{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.05);
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:5px 20px;
}

.logo img{
    height:70px;
    width:auto;
}

.navbar ul{
    list-style:none;
    display:flex;
    gap:25px;
    margin:0;
    padding:0;
}

.navbar a{
    color:#334155;
    font-weight:500;
}

.navbar a:hover{
    color:#2563eb;
}

.header-buttons{
    display:flex;
    gap:10px;
    align-items:center;
}

.btn-login{
    border:1px solid #2563eb;
    padding:10px 18px;
    border-radius:8px;
    color:#2563eb;
}

.btn-register{
    background:#2563eb;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:32px;
    cursor:pointer;
    color:#2563eb;
}

/* =========================
   HERO
========================= */

.hero,
.about-hero{
    background:linear-gradient(135deg,#2563eb,#1e40af);
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.hero-content{
    max-width:800px;
    margin:auto;
}

.hero h1,
.about-hero h1{
    font-size:46px;
    margin-bottom:20px;
}

.hero p,
.about-hero p{
    max-width:850px;
    margin:auto;
    font-size:19px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;
}

.btn-primary{
    background:#16a34a;
    color:#fff;
    padding:12px 25px;
    border-radius:8px;
}

.btn-secondary{
    background:#fff;
    color:#2563eb;
    padding:12px 25px;
    border-radius:8px;
}

/* =========================
   SECTIONS
========================= */

.section,
.about-section,
.mission-section,
.values-section{
    padding:80px 0;
}

.about-section{
    background:#fff;
}

.about-section h2{
    font-size:32px;
    margin-bottom:20px;
}

.about-section p{
    margin-bottom:15px;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:36px;
}

/* =========================
   CARDS
========================= */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card,
.info-box,
.value-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.info-box,
.value-card{
    height:100%;
    transition:.3s;
}

.info-box:hover,
.value-card:hover{
    transform:translateY(-5px);
}

.info-box h3,
.value-card h4{
    color:#16a34a;
    margin-bottom:10px;
}

/* =========================
   GROWTH
========================= */

.growth-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
    margin:30px 0;
}

.growth-box{
    background:#2563eb;
    color:#fff;
    padding:25px;
    text-align:center;
    border-radius:10px;
    font-size:24px;
    font-weight:bold;
}

.growth-text{
    text-align:center;
}

/* =========================
   TABLE
========================= */

.bonus-table{
    width:100%;
    border-collapse:collapse;
}

.bonus-table th,
.bonus-table td{
    border:1px solid #ddd;
    padding:12px;
}

/* =========================
   CTA
========================= */

.cta-box{
    background:#2563eb;
    color:#fff;
    text-align:center;
    padding:60px 20px;
    border-radius:20px;
}

/* =========================
   HAKKIMIZDA İSTATİSTİKLER
========================= */

.stats-section{
    padding:80px 0;
    background:#f8fafc;
}

.stats-section .stat-box{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    min-height:170px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.stats-section .stat-box h2{
    color:#16a34a;
    font-size:42px;
    margin-bottom:10px;
}

.stats-section .stat-box p{
    margin:0;
    color:#64748b;
}

/* =========================
   ABOUT IMAGE
========================= */

.about-img{
    width:100%;
    max-height:420px;
    object-fit:cover;
    border-radius:16px;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#0f172a;
    color:#fff;
    margin-top:60px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:40px;
    align-items:flex-start;
}

.footer-left h3{
    color:#60a5fa;
    margin-bottom:10px;
}

.footer-left p{
    color:#cbd5e1;
}

.footer-right{
    display:grid;
    grid-template-columns:repeat(3, auto);
    gap:12px 35px;
    justify-content:end;
}

.footer-right a{
    color:#cbd5e1;
    text-decoration:none;
    font-size:15px;
}

.footer-right a:hover{
    color:#60a5fa;
}

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#94a3b8;
}

/* =========================
   MOBILE TAB BAR
========================= */

.mobile-tabbar{
    display:none;
}

/* =========================
   DARK MODE
========================= */

.theme-toggle{
    border:none;
    background:#f1f5f9;
    padding:10px 12px;
    border-radius:8px;
    cursor:pointer;
    font-size:18px;
}

body.dark-mode{
    background:#0f172a;
    color:#e2e8f0;
}

body.dark-mode .header{
    background:#1e293b;
}

body.dark-mode .card,
body.dark-mode .info-box,
body.dark-mode .value-card,
body.dark-mode .stat-box{
    background:#1e293b;
    color:#e2e8f0;
}

body.dark-mode .navbar a{
    color:#e2e8f0;
}

body.dark-mode .footer{
    background:#020617;
}

body.dark-mode .mobile-tabbar{
    background:#1e293b;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    body{
        padding-top:0;
        padding-bottom:75px;
    }

    .header{
        position:relative;
    }

    .header .container{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .logo img{
        height:55px;
        margin:auto;
    }

    .menu-toggle{
        display:block;
    }

    .navbar{
        width:100%;
    }

    .navbar ul{
        display:none;
        flex-direction:column;
        width:100%;
        margin-top:15px;
        background:#fff;
        border-radius:10px;
        padding:15px;
        box-shadow:0 5px 20px rgba(0,0,0,.08);
    }

    .navbar.active ul{
        display:flex;
    }

    .header-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn-login,
    .btn-register{
        display:block;
        width:100%;
        text-align:center;
    }

    .hero,
    .about-hero{
        padding:70px 20px;
    }

    .hero h1,
    .about-hero h1{
        font-size:32px;
    }

    .hero p,
    .about-hero p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .section,
    .about-section,
    .mission-section,
    .values-section{
        padding:50px 15px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .growth-grid{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-right{
        grid-template-columns:1fr;
        justify-content:center;
    }

    .mobile-tabbar{
        display:flex;
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        height:65px;
        background:#ffffff;
        box-shadow:0 -4px 15px rgba(0,0,0,.12);
        z-index:9999;
        justify-content:space-around;
        align-items:center;
    }

    .mobile-tabbar a{
        color:#334155;
        text-align:center;
        font-size:12px;
        text-decoration:none;
        display:flex;
        flex-direction:column;
        gap:4px;
    }

    .mobile-tabbar i{
        font-size:20px;
        color:#2563eb;
    }

    table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
    }
}
.agreement-card{
    max-width:900px;
    margin:auto;
    line-height:1.8;
}

.agreement-card h2{
    margin-bottom:30px;
    color:#2563eb;
}

.agreement-card h3{
    margin-top:30px;
    margin-bottom:12px;
    color:#16a34a;
}

.agreement-card ul{
    padding-left:25px;
    margin-bottom:20px;
}

.agreement-card li{
    margin-bottom:8px;
}
.whatsapp-button{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    box-shadow:0 5px 20px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;

}

.whatsapp-button:hover{

    transform:scale(1.1);

    background:#1ebe5d;

}

/* Professional polish and accessibility */
:root{
    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --success:#16a34a;
    --surface:#ffffff;
    --page:#f8fafc;
    --text:#1e293b;
    --muted:#64748b;
    --radius:14px;
}

html{scroll-behavior:smooth;overflow-x:hidden}
body{overflow-x:hidden}
button,input,select,textarea{font:inherit}
a,button{transition:color .2s,background-color .2s,transform .2s,box-shadow .2s}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
    outline:3px solid rgba(37,99,235,.35);
    outline-offset:3px;
}
.header-inner{min-height:80px}
.logo{display:block;flex-shrink:0}
.btn-login,.btn-register,.btn-primary,.btn-secondary{display:inline-flex;align-items:center;justify-content:center;font-weight:600}
.btn-login:hover,.btn-register:hover,.btn-primary:hover,.btn-secondary:hover{transform:translateY(-1px)}
.card,.info-box,.value-card,.auth-card,.singlepost{border:1px solid rgba(148,163,184,.18)}
.section{max-width:1200px;margin-inline:auto;padding-inline:20px}
.section-title{display:block}
.alert-error{background:#fee2e2;color:#991b1b;padding:14px 16px;border-radius:10px;margin-bottom:18px}
.alert-success{background:#dcfce7;color:#166534;padding:14px 16px;border-radius:10px;margin-bottom:18px}

body.dark-mode .about-section,
body.dark-mode .mission-section,
body.dark-mode .blog-section,
body.dark-mode .blog-detail-section{background:#0f172a!important}
body.dark-mode .auth-card,
body.dark-mode .singlepost,
body.dark-mode .blog-card{background:#1e293b;color:#e2e8f0}
body.dark-mode .blog-info h2,
body.dark-mode .blog-content,
body.dark-mode .blog-content h1,
body.dark-mode .blog-content h2,
body.dark-mode .blog-content h3{color:#e2e8f0}

@media(max-width:992px){
    .header .container{gap:14px}
    .navbar ul{gap:14px}
    .header-buttons .btn-login,.header-buttons .btn-register{padding:9px 12px}
    .footer-right{grid-template-columns:repeat(2,minmax(0,1fr));justify-content:stretch}
}

@media(max-width:768px){
    .header .container{display:grid;grid-template-columns:1fr auto;flex-direction:initial;text-align:left;padding:8px 16px}
    .logo img{margin:0;height:54px}
    .menu-toggle{display:block;grid-column:2;grid-row:1}
    .navbar{grid-column:1/-1;display:none}
    .navbar.active{display:block}
    .navbar ul{display:flex;margin:0;box-shadow:none;border:1px solid #e2e8f0;padding:8px}
    .navbar a{display:block;padding:10px 12px;border-radius:8px}
    .header-buttons{grid-column:1/-1;display:none;flex-direction:row}
    .navbar.active~.header-buttons{display:flex}
    .header-buttons .btn-login,.header-buttons .btn-register{width:auto;flex:1}
    .hero,.about-hero{padding:56px 18px}
    .hero h1,.about-hero h1{font-size:clamp(28px,9vw,38px);line-height:1.15}
    .section-title h2,.section-title{font-size:28px}
    .card,.info-box,.value-card{padding:22px}
    .footer{margin-top:36px}
    .footer-container{padding:34px 20px;gap:28px}
    .footer-right{grid-template-columns:repeat(2,minmax(0,1fr));text-align:left}
    .whatsapp-button{width:52px;height:52px;right:14px;bottom:78px;font-size:26px}
}

@media(max-width:420px){
    .container{padding-inline:14px}
    .footer-right{grid-template-columns:1fr;text-align:center}
    .mobile-tabbar span{font-size:11px}
}

body.panel-page{
    padding-top:0;
    padding-bottom:0;
    overflow-x:hidden;
}

body.panel-page .footer,
body.panel-page .mobile-tabbar,
body.panel-page .whatsapp-button{
    display:none!important;
}

@media(prefers-reduced-motion:reduce){
    *,*::before,*::after{scroll-behavior:auto!important;transition:none!important;animation:none!important}
}
