

/* =========================================================
   MODELLER SAYFASI
========================================================= */

.models-page{
    padding:80px 0 90px;
    min-height:60vh;
}

.models-page-intro{
    max-width:850px;
    margin:0 auto 45px;
    text-align:center;
}

.models-page-intro .eyebrow{
    margin-bottom:12px;
}

.models-page-intro h1{
    margin:0 0 14px;
}

.models-page-intro p{
    margin:0 auto;
    max-width:700px;
    color:#8fa4c2;
    font-size:17px;
    line-height:1.7;
}


/* =========================================================
   MODEL GRID
========================================================= */

.models-page .model-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}

.models-page .model-card{
    display:block;
    position:relative;
    overflow:hidden;
    text-decoration:none;
    cursor:pointer;
}

.models-page .model-image{
    position:relative;
    overflow:hidden;
}

.models-page .model-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}


/* =========================================================
   MODEL ROZETLERİ
========================================================= */

.models-page .model-badge{
    position:absolute;
    top:14px;
    left:14px;
    z-index:20;
    padding:7px 11px;
    border-radius:9px;
    font-size:11px;
    font-weight:900;
    line-height:1;
    letter-spacing:.3px;
    color:#fff;
    background:#e53935;
    box-shadow:0 5px 16px rgba(0,0,0,.28);
    animation:foxyBadgePulse 1.8s ease-in-out infinite;
}

.models-page .model-badge.special{
    background:#d4a017;
    color:#111;
}

.models-page .model-badge.popüler,
.models-page .model-badge.populer{
    background:#8e44ad;
}

@keyframes foxyBadgePulse{

    0%,100%{
        opacity:1;
        transform:scale(1);
    }

    50%{
        opacity:.72;
        transform:scale(1.04);
    }

}


/* =========================================================
   İLÇE
========================================================= */

.models-page .model-district{
    position:absolute;
    top:14px;
    right:14px;
    left:auto;
    z-index:20;

    display:inline-flex;
    align-items:center;
    gap:5px;

    padding:7px 10px;

    border-radius:9px;

    background:#ffd43b;
    color:#111;

    font-size:11px;
    font-weight:900;
    line-height:1;

    box-shadow:0 5px 16px rgba(0,0,0,.28);
}

.models-page .model-district{
    display:inline-flex;
    align-items:center;
    gap:5px;
}

.models-page .model-district svg{
    width:15px;
    height:15px;
    flex:0 0 15px;
    fill:none;
    stroke:#111;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.models-page .model-district svg circle{
    fill:#111;
    stroke:none;
}


/* =========================================================
   MODEL BODY
========================================================= */

.models-page .model-body{
    display:block;
    padding:16px;
}

.models-page .model-name{
    display:block;
    margin:0 0 7px;
    padding:0;
    font-size:20px;
    line-height:1.2;
    font-weight:800;
}

.models-page .model-stats{
    display:block;
    margin:0 0 14px;
    padding:0;
    font-size:14px;
    line-height:20px;
    white-space:nowrap;
}

.models-page .model-contact{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    gap:10px;
    margin:0;
    padding:0;
}

.models-page .model-phone{
    display:block;
    min-width:0;
    margin:0;
    padding:0;
    font-size:14px;
    line-height:20px;
    font-weight:700;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.models-page .model-whatsapp{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;

    padding:8px 13px;

    border-radius:8px;

    background:#25D366;
    color:#fff !important;

    text-decoration:none !important;

    font-size:13px;
    font-weight:800;
    line-height:16px;

    transition:.2s ease;
}

.models-page .model-whatsapp:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
    box-shadow:0 5px 14px rgba(37,211,102,.25);
}


/* =========================================================
   BOŞ DURUM
========================================================= */

.models-empty{
    padding:55px 20px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:rgba(255,255,255,.025);
}

.models-empty h2{
    margin:0 0 10px;
}

.models-empty p{
    margin:0;
    color:#8fa4c2;
}


/* =========================================================
   ALT ALAN
========================================================= */

.models-bottom{
    margin-top:65px;
    padding:45px 35px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    background:#0d1628;
    text-align:center;
}

.models-bottom .eyebrow{
    margin-bottom:10px;
}

.models-bottom h2{
    margin:0 0 12px;
}

.models-bottom p{
    max-width:720px;
    margin:0 auto 24px;
    color:#8fa4c2;
    line-height:1.7;
}

.models-bottom-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}


/* =========================================================
   MOBİL
========================================================= */

@media(max-width:900px){

    .models-page .model-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:700px){

    .models-page{
        padding:60px 0 65px;
    }

    .models-page .model-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .models-bottom{
        margin-top:45px;
        padding:35px 22px;
    }

    .models-bottom-actions{
        flex-direction:column;
    }

    .models-bottom-actions .hero-btn{
        width:100%;
        max-width:320px;
    }

}

@media(max-width:600px){

    .models-page .model-badge,
    .models-page .model-district{
        top:9px;
        padding:6px 8px;
        font-size:10px;
    }

    .models-page .model-badge{
        left:9px;
    }

    .models-page .model-district{
        right:9px;
    }

}

