/* ===================================================== */
/*                 GLOBAL RESET                          */
/* ===================================================== */

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,var(--bg),var(--section));
    color:var(--text);
    overflow-x:hidden;
    padding-bottom:70px;
}

a{
    text-decoration:none;
    transition:0.3s;
}

a:hover{
    opacity:0.85;
}

h1,h2,h3{
    font-family:'Playfair Display',serif;
    letter-spacing:0.5px;
}

/* ===================================================== */
/*                        NAVBAR                         */
/* ===================================================== */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 60px;
    background:linear-gradient(135deg,#d032cfd4,#b723c9);
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 5px 25px rgba(255,0,128,0.25);
}

.logo-img{
    height:50px;
    object-fit:contain;
}

nav ul{
    list-style:none;
    display:flex;
    gap:35px;
}

nav ul li a{
    color:#fff;
    font-weight:500;
    position:relative;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#fff;
    transition:0.4s;
}

nav ul li a:hover::after{
    width:100%;
}

/* MOBILE MENU */

.mobile-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.mobile-toggle span{
    width:28px;
    height:3px;
    background:#fff;
}

@media(max-width:768px){

    nav{
        padding:18px 20px;
    }

    .mobile-toggle{
        display:flex;
        position:absolute;
        right:20px;
        top:22px;
    }

    nav ul{
        display:none;
        flex-direction:column;
        width:100%;
        background:#111;
        position:absolute;
        top:70px;
        left:0;
        padding:15px 0;
    }

    nav ul.show{
        display:flex;
    }

    nav ul li{
        padding:12px 20px;
        border-bottom:1px solid #222;
    }
}

/* ===================================================== */
/*                         HERO                          */
/* ===================================================== */

.premium-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.city-areas a {
    display:inline-block;
    padding:8px 15px;
    background:#000;
    color:#fff;
    margin:5px;
    border-radius:5px;
    text-decoration:none;
}
/* AREA PAGE DESIGN */

.area-hero{
    background:linear-gradient(135deg,#000,#222);
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.area-hero h1{
    font-size:40px;
    font-weight:700;
}

.area-content{
       min-height: auto;
    height: auto;
    overflow: visible;
    max-width:1000px;
    margin:auto;
    padding:40px 20px;
    line-height:1.8;
    font-size:16px;
}

.area-content h2{
    font-size:28px;
    margin-bottom:15px;
}

.area-content h3{
    margin-top:25px;
    font-size:22px;
}

.area-links{
    text-align:center;
    padding:40px;
    background:#f8f8f8;
}

.area-tags a{
    display:inline-block;
    padding:10px 18px;
    margin:5px;
    background:#000;
    color:#fff;
    border-radius:20px;
    text-decoration:none;
    transition:0.3s;
}

.area-tags a:hover{
    background:#e91e63;
}
.city-areas{
    text-align:center;
    padding:50px 20px;
}

.city-areas h2{
    font-size:32px;
    margin-bottom:20px;
}

.area-buttons a{
    display:inline-block;
    padding:10px 18px;
    margin:8px;
    background:#000;
    color:#fff;
    border-radius:25px;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.area-buttons a:hover{
    background:#e91e63;
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,rgba(0,0,0,0.85),rgba(0,0,0,0.4));
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1400px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.hero-left{
    flex:1;
    color:#fff;
}

.hero-left h1{
    font-size:55px;
    margin-bottom:20px;
    text-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.hero-left p{
    font-size:18px;
    margin-bottom:30px;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
    position:relative;
}

.hero-right img{
    width:260px;
    height:380px;
    object-fit:cover;
    border-radius:20px;
    position:absolute;
    box-shadow:0 20px 50px rgba(0,0,0,0.8);
}

/* MOBILE HERO */

@media(max-width:992px){
    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-left h1{
        font-size:34px;
    }
}

/* ===================================================== */
/*                   HOME VIDEO SECTION                  */
/* ===================================================== */

.home-video-section{
    width:100%;
    padding:100px 0;
    display:flex;
    justify-content:center;
}

.video-container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

.video-container video{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:25px;
}

@media(max-width:768px){
    .video-container video{
        height:280px;
    }
}

/* ===================================================== */
/*                 FEATURED PROFILE GRID                 */
/* ===================================================== */

.model-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1300px;
    margin:80px auto;
    padding:0 20px;
}

@media(max-width:768px){
    .model-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        margin:40px auto;
    }
}

.model-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.model-card:hover{
    transform:translateY(-10px);
}

.image-wrapper{
    position:relative;
}

.image-wrapper img{
    width:100%;
    height:380px;
    object-fit:cover;
}

@media(max-width:768px){
    .image-wrapper img{
        height:240px;
    }
}

.verified-badge{
    position:absolute;
    bottom:15px;
    right:15px;
    background:#28a745;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    color:#fff;
}

.card-info{
    padding:20px;
}

.name-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.contact-icons{
    display:flex;
    gap:8px;
}

.contact-icons a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:14px;
}

.call-icon{ background:#d4af37; }
.wa-icon{ background:#25D366; }
.tg-icon{ background:#0088cc; }

.star-rating{
    color:#FFD700;
    margin:8px 0;
}

.city{
    font-size:14px;
    color:#555;
}

.rate{
    font-weight:600;
    color:#c59d5f;
}

/* ===================================================== */
/*                 TABLE / CONTENT SECTION               */
/* ===================================================== */

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.premium-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.premium-table th,
.premium-table td{
    padding:15px;
    border:1px solid #ddd;
}

/* ===================================================== */
/*                         FOOTER                        */
/* ===================================================== */

footer{
    padding:60px 20px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    color:#fff;
    text-align:center;
    position: relative;
}
/* ===================================================== */
/*                  HOME PAGE ONLY STYLE                 */
/* ===================================================== */

.home-page .home-cities{
    background:linear-gradient(135deg,#fff0f6,#ffcce6);
    padding:70px 20px;
    text-align:center;
}

.home-page .home-cities h3{
    font-size:30px;
    margin-bottom:30px;
}

.home-page .home-cities ul{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    max-width:1000px;
    margin:auto;
    list-style:none;
}

.home-page .home-cities li{
    background:#fff;
    padding:15px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* ================= VIDEO ================= */

.home-page .home-video-section{
    padding:100px 0;
    display:flex;
    justify-content:center;
}

.home-page .video-container{
    max-width:1200px;
    width:100%;
}

.home-page .video-container video{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:25px;
}

@media(max-width:768px){
    .home-page .video-container video{
        height:280px;
    }
}

/* ================= FEATURE GRID ================= */

.home-page .model-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1300px;
    margin:80px auto;
    padding:0 20px;
}

@media(max-width:768px){
    .home-page .model-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }
}

/* ================= FEATURES ================= */

.home-page .home-features{
    background:linear-gradient(135deg,#fff0f6,#ffcce6);
    padding:120px 60px;
    text-align:center;
}

.home-page .feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    max-width:1200px;
    margin:auto;
}

/* ================= TABLE SECTION ================= */

.home-page .premium-table-section{
    background:linear-gradient(135deg,#fff0f6,#ffcce6);
    padding:120px 60px;
}

.home-page .table-title{
    font-size:40px;
    margin-bottom:50px;
}

.home-page .premium-table{
    border-radius:20px;
    overflow:hidden;
}

.home-page .premium-table th{
    background:linear-gradient(45deg,#d4af37,#f5d77a);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.home-page .feature-grid{
    grid-template-columns:1fr;
}

.home-page .premium-table-section{
    padding:60px 20px;
}

}
/* ===================================================== */
/*                 HOME PAGE – PREMIUM CLASSIC           */
/* ===================================================== */

.home{

--primary:#0f1c3f;
--secondary:#1f2e5a;
--gold:#d4af37;
--gold-soft:#f5d77a;
--ivory:#f8f5f0;
--soft:#f3ece4;
--text:#1b1b1b;
}

/* ================= HERO ================= */

.home .premium-hero{
min-height:80vh;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#e833d4,#e421b1);
}

/* ================= CITY SECTION ================= */

.home .home-cities{
background:linear-gradient(135deg,var(--ivory),var(--soft));
padding:90px 20px;
text-align:center;
}

.home .home-cities h3{
font-size:34px;
margin-bottom:50px;
color:var(--primary);
}

.home .home-cities ul{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
list-style:none;
}

.home .home-cities li{
background:#fff;
padding:18px;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,0.05);
transition:0.3s;
}

.home .home-cities li:hover{
transform:translateY(-6px);
box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

.home .home-cities a{
color:var(--primary);
font-weight:600;
font-size:17px;
}

/* ================= VIDEO SECTION ================= */

.home .home-video-section{
padding:100px 0;
display:flex;
justify-content:center;
background:#fff;
}

.home .video-container{
width:100%;
max-width:1200px;
}

.home .video-container video{
width:100%;
height:520px;
object-fit:cover;
border-radius:25px;
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

@media(max-width:768px){
.home .video-container video{
height:260px;
}
}

/* ================= FEATURED PROFILES ================= */

.home .model-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
max-width:1300px;
margin:100px auto;
padding:0 20px;
}

@media(max-width:768px){
.home .model-grid{
grid-template-columns:repeat(1,1fr);
gap:9px;
margin:60px auto;
}
}

.home .model-card{
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
transition:0.4s ease;
}

.home .model-card:hover{
transform:translateY(-12px);
box-shadow:0 30px 70px rgba(0,0,0,0.15);
}

.home .image-wrapper img{
width:100%;
height:380px;
object-fit:cover;
}

@media(max-width:768px){
.home .image-wrapper img{
height:240px;
}
}

.home .verified-badge{
position:absolute;
bottom:15px;
right:15px;
background:#28a745;
padding:6px 14px;
border-radius:30px;
font-size:12px;
color:#fff;
}

.home .card-info{
padding:25px;
}

.home .name-row{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
}

.home .name-row h3{
font-size:18px;
margin:0;
color:var(--primary);
}

.home .contact-icons{
display:flex;
gap:10px;
}

.home .contact-icons a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:14px;
transition:0.3s;
}

.home .call-icon{ background:var(--gold); }
.home .wa-icon{ background:#25D366; }
.home .tg-icon{ background:#0088cc; }

.home .contact-icons a:hover{
transform:scale(1.1);
}

.home .star-rating{
color:#FFD700;
margin:8px 0;
}

.home .city{
font-size:14px;
color:#666;
}

.home .rate{
font-weight:600;
color:var(--gold);
font-size:15px;
}

/* ================= FEATURES ================= */

.home .home-features{
background:linear-gradient(135deg,var(--ivory),var(--soft));
padding:120px 60px;
text-align:center;
}

.home .home-features h2{
font-size:40px;
margin-bottom:70px;
color:var(--primary);
}

.home .feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1200px;
margin:auto;
}

@media(max-width:992px){
.home .feature-grid{
grid-template-columns:1fr;
}
}

.home .feature-card{
background:#fff;
padding:45px 35px;
border-radius:25px;
box-shadow:0 20px 50px rgba(0,0,0,0.06);
transition:0.3s;
}

.home .feature-card:hover{
transform:translateY(-10px);
}

.home .feature-icon img{
width:100%;
height:220px;
object-fit:cover;
border-radius:15px;
margin-bottom:20px;
}

.home .feature-card h3{
color:var(--primary);
margin-bottom:15px;
}

/* ================= PREMIUM TABLE SECTION ================= */

.home .premium-table-section{
background:#fff;
padding:120px 60px;
}

.home .premium-description-box{
max-width:850px;
margin:0 auto 70px;
font-size:17px;
line-height:1.9;
text-align:center;
}

.home .table-title{
font-size:38px;
margin-bottom:40px;
color:var(--primary);
text-align:center;
}

.home .premium-table{
width:100%;
border-collapse:collapse;
border-radius:20px;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
background:#fff;
}

.home .premium-table th{
background:linear-gradient(45deg,var(--gold),var(--gold-soft));
padding:20px;
color:#000;
}

.home .premium-table td{
padding:18px;
border:1px solid #eee;
}

.home .premium-table tr:hover{
background:#faf7f0;
}

.home .whatsapp-link{
color:var(--gold);
font-weight:600;
}

/* ================= MOBILE FINAL FIX ================= */

@media(max-width:768px){

.home .home-cities{
padding:60px 20px;
}

.home .home-features{
padding:80px 20px;
}

.home .premium-table-section{
padding:80px 20px;
}

.home .table-title{
font-size:26px;
}

}
/* ===================================================== */
/*                 CITY PAGE – PREMIUM DESIGN            */
/* ===================================================== */

.city{

--primary:#0f1c3f;
--secondary:#1f2e5a;
--gold:#d4af37;
--gold-soft:#f5d77a;
--ivory:#f8f5f0;
--soft:#f3ece4;
--text:#1b1b1b;

}

/* ================= HERO ================= */

.city .city-hero{
padding:140px 20px 100px;
text-align:center;
background:linear-gradient(135deg,#e833d4,#222);
color:#fff;
position:relative;
}

.city .city-hero h1{
font-size:52px;
letter-spacing:2px;
font-family:'Playfair Display',serif;
}

/* ================= CONTENT ================= */

.city .city-content{
max-width:950px;
margin:80px auto;
padding:50px;
background:#fff;
border-radius:30px;
box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.city .city-text{
font-size:17px;
line-height:1.9;
color:#555;
text-align:center;
}

/* ================= PROFILE GRID ================= */

.city .city-profiles{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1300px;
margin:100px auto;
padding:0 20px 100px;
}

/* ================= PROFILE CARD ================= */

.city .profile-card{
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
transition:0.4s ease;
text-align:center;
}

.city .profile-card:hover{
transform:translateY(-12px);
box-shadow:0 30px 70px rgba(0,0,0,0.15);
}

/* IMAGE */

.city .profile-card img{
width:100%;
height:420px;
object-fit:cover;
display:block;
}

/* NAME */

.city .profile-card h3{
padding:20px 10px 10px;
font-size:20px;
color:var(--primary);
}

/* ACTION BUTTONS */

.city .profile-actions{
display:flex;
justify-content:center;
gap:15px;
padding:15px 0 25px;
}

.city .profile-actions a{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:16px;
transition:0.3s;
}

.city .call-btn{
background:var(--gold);
}

.city .wa-btn{
background:#25D366;
}

.city .tg-btn{
background:#0088cc;
}

.city .profile-actions a:hover{
transform:scale(1.15);
}

/* ================= RESPONSIVE ================= */

/* Tablet */

@media(max-width:1024px){

.city .city-profiles{
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.city .profile-card img{
height:350px;
}

}

/* Mobile */

@media(max-width:768px){

.city .city-hero{
padding:100px 20px 70px;
}

.city .city-hero h1{
font-size:32px;
}

.city .city-content{
margin:50px 15px;
padding:30px 20px;
border-radius:20px;
}

.city .city-text{
font-size:15px;
}

.city .city-profiles{
grid-template-columns:1fr;
gap:20px;
margin:60px auto;
}

.city .profile-card img{
height:300px;
}

.city .profile-card h3{
font-size:18px;
}

}
/* ===================================================== */
/*                PREMIUM NAVBAR DESIGN                  */
/* ===================================================== */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 60px;
background:linear-gradient(135deg,#dc3ca1,#c35fbb);
position:sticky;
top:0;
z-index:9999;
box-shadow:0 5px 25px rgba(0,0,0,0.3);
}

/* ================= LOGO ================= */

.logo-wrapper{
position:relative;
display:flex;
align-items:center;
}

.logo-img{
height:50px;
object-fit:contain;
}

/* Animated Stars */

.star{
position:absolute;
color:#d4af37;
font-size:14px;
opacity:0.8;
animation:glow 2s infinite alternate;
}

.star1{ top:-5px; left:-10px; }
.star2{ top:10px; right:-15px; }
.star3{ bottom:-5px; left:20px; }
.star4{ bottom:10px; right:10px; }

@keyframes glow{
from{ opacity:0.3; transform:scale(0.8); }
to{ opacity:1; transform:scale(1.2); }
}

/* ================= MENU ================= */

nav ul{
display:flex;
gap:35px;
list-style:none;
margin:0;
padding:0;
align-items:center;
}

nav ul li a{
color:#fff;
font-weight:500;
position:relative;
text-decoration:none;
padding:6px 0;
transition:0.3s;
}

nav ul li a::after{
content:"";
position:absolute;
bottom:-4px;
left:0;
width:0%;
height:2px;
background:#d4af37;
transition:0.3s;
}

nav ul li a:hover::after{
width:100%;
}

nav ul li a:hover{
color:#d4af37;
}

/* ================= MOBILE TOGGLE ================= */

.mobile-toggle{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.mobile-toggle span{
width:28px;
height:3px;
background:#fff;
border-radius:2px;
transition:0.3s;
}

/* ===================================================== */
/*                  MOBILE NAVBAR                        */
/* ===================================================== */

@media(max-width:992px){

nav{
padding:18px 20px;
}

.mobile-toggle{
display:flex;
position:absolute;
right:20px;
top:22px;
}

nav ul{
position:absolute;
top:70px;
left:0;
width:100%;
background:#111827;
flex-direction:column;
gap:0;
display:none;
padding:20px 0;
animation:slideDown 0.3s ease;
}

nav ul.show{
display:flex;
}

nav ul li{
padding:12px 20px;
text-align:center;
border-bottom:1px solid rgba(255,255,255,0.05);
}

nav ul li:last-child{
border:none;
}

@keyframes slideDown{
from{ opacity:0; transform:translateY(-10px); }
to{ opacity:1; transform:translateY(0); }
}

}

/* ===================================================== */
/*               CUSTOMER LOGIN POPUP                    */
/* ===================================================== */

.customer-modal{
position:fixed;
inset:0;
background:rgba(0,0,0,0.6);
display:none;
justify-content:center;
align-items:center;
z-index:99999;
backdrop-filter:blur(6px);
padding:20px;
}

.customer-box{
background:#fff;
padding:40px 35px;
border-radius:25px;
width:100%;
max-width:420px;
position:relative;
box-shadow:0 30px 70px rgba(0,0,0,0.3);
animation:fadeIn 0.3s ease;
}

@keyframes fadeIn{
from{ opacity:0; transform:scale(0.9); }
to{ opacity:1; transform:scale(1); }
}

.customer-box h2{
margin-bottom:25px;
text-align:center;
font-family:'Playfair Display',serif;
}

.customer-box input{
width:100%;
padding:12px 15px;
margin-bottom:15px;
border-radius:10px;
border:1px solid #ddd;
font-size:14px;
transition:0.3s;
}

.customer-box input:focus{
border-color:#d4af37;
outline:none;
box-shadow:0 0 0 2px rgba(212,175,55,0.2);
}

.customer-box button{
width:100%;
padding:12px;
background:#d4af37;
border:none;
border-radius:10px;
color:#000;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.customer-box button:hover{
background:#c49b2f;
}

.customer-box p{
text-align:center;
margin-top:15px;
font-size:14px;
}

.customer-box p a{
color:#d4af37;
font-weight:600;
text-decoration:none;
}

.close-btn{
position:absolute;
top:15px;
right:20px;
cursor:pointer;
font-size:18px;
}

/* ===================================================== */
/*                SMALL MOBILE FIX                       */
/* ===================================================== */

@media(max-width:480px){

.customer-box{
padding:30px 20px;
}

.logo-img{
height:40px;
}

}
/* ===================================================== */
/*          PREMIUM 18+ AGE VERIFICATION POPUP          */
/* ===================================================== */

.age-modal{
position:fixed;
inset:0;
background:#000;
display:none;
justify-content:center;
align-items:center;
z-index:999999;
padding:20px;
}

.age-box{
max-width:650px;
width:100%;
background:#0a0a0a;
color:#fff;
padding:50px 40px;
border-radius:25px;
text-align:center;
box-shadow:0 40px 80px rgba(255,0,80,0.3);
animation:fadeIn 0.4s ease;
}

@keyframes fadeIn{
from{opacity:0; transform:scale(0.95);}
to{opacity:1; transform:scale(1);}
}

/* Heading */

.age-box h1{
font-family:'Playfair Display',serif;
font-size:34px;
color:#ff3c6f;
margin-bottom:25px;
}

.age-box p{
color:#ccc;
margin-bottom:15px;
line-height:1.7;
}

.age-box strong{
color:#fff;
}

.age-box hr{
border:0;
height:1px;
background:#222;
margin:30px 0;
}

.age-box h4{
margin-bottom:10px;
font-weight:600;
}

/* Buttons */

.age-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:30px;
}

.age-buttons button{
padding:14px 30px;
border-radius:15px;
font-weight:600;
border:none;
cursor:pointer;
transition:0.3s;
font-size:15px;
}

/* ENTER BUTTON */

.enter-btn{
background:linear-gradient(45deg,#ff3c6f,#ff1e56);
color:#fff;
box-shadow:0 10px 30px rgba(255,0,80,0.4);
}

.enter-btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 40px rgba(255,0,80,0.6);
}

/* EXIT BUTTON */

.exit-btn{
background:#111;
color:#aaa;
border:1px solid #222;
}

.exit-btn:hover{
background:#1a1a1a;
color:#fff;
}

/* ================= MOBILE ================= */

@media(max-width:600px){

.age-box{
padding:35px 20px;
}

.age-box h1{
font-size:24px;
}

.age-buttons{
flex-direction:column;
}

.age-buttons button{
width:100%;
}

}
.view-count{
margin-top:8px;
font-size:13px;
color:#888;
text-align:right;
}

.view-count span{
color:#ff3c6f;
font-weight:600;
}
/* ================= HERO SECTION ================= */

.premium-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:100px 8%;
    min-height:100vh;
    gap:50px;
}

/* LEFT CONTENT */

.hero-left{
    flex:1;
}

.hero-left h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-left p{
    font-size:18px;
    line-height:1.6;
    margin-bottom:30px;
}

/* RIGHT IMAGE STACK */

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}



/* COMMON IMAGE STYLE */

.image-stack img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 30px 70px rgba(0,0,0,0.4);
    transition:0.4s ease;
}

/* ================= IMAGE STACK FIXED ================= */

.image-stack{
    position:relative;
    width:360px;
    height:520px;
}

/* COMMON IMAGE STYLE */

.image-stack img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top; /* 👈 FACE TOP SE DIKHE */
    border-radius:30px;
    box-shadow:0 30px 70px rgba(0,0,0,0.4);
    transition:0.4s ease;
}

/* BACK IMAGE */

.img1{
    top:0;
    left:-30px;
    transform:rotate(-8deg);
    z-index:1;
    opacity:0.9;
}

/* MIDDLE IMAGE */

.img2{
    top:0;
    right:-35px;
    transform:rotate(8deg);
    z-index:2;
    opacity:0.95;
}

/* FRONT IMAGE */

.img3{
    top:0;
    left:0;
    transform:rotate(0deg);
    z-index:3;
}

/* HOVER EFFECT */

.image-stack:hover .img1{
    transform:rotate(-10deg) translateY(10px);
}

.image-stack:hover .img2{
    transform:rotate(10deg) translateY(10px);
}

.image-stack:hover .img3{
    transform:scale(1.05);
}

/* HOVER EFFECT */

.image-stack:hover .img1{
    transform:rotate(-10deg) translate(-40px,30px);
}

.image-stack:hover .img2{
    transform:rotate(8deg) translate(40px,20px);
}

.image-stack:hover .img3{
    transform:scale(1.05);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .premium-hero{
        flex-direction:column;
        text-align:center;
        padding:60px 20px;
    }

    .hero-left h1{
        font-size:36px;
    }

    .image-stack{
        width:260px;
        height:380px;
        margin-top:40px;
    }

}
/* ================= PORTFOLIO SECTION ================= */

.portfolio-grid{
    width:100%;
    max-width:1300px;
    margin:60px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:35px;
}

/* ================= CARD ================= */

.portfolio-card{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
    transition:all 0.4s ease;
    backdrop-filter: blur(12px);
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

/* Hover Premium Effect */
.portfolio-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
}

/* ================= IMAGE ================= */

.portfolio-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:transform 0.6s ease;
}

.portfolio-card:hover img{
    transform:scale(1.08);
}

/* ================= CONTENT ================= */

.portfolio-content{
    padding:25px;
}

.portfolio-content h3{
    font-size:22px;
    font-weight:600;
    margin-bottom:12px;
    letter-spacing:0.5px;
}

.portfolio-content p{
    font-size:15px;
    line-height:1.6;
    opacity:0.9;
}

/* ================= BUTTON (Optional Future Use) ================= */

.portfolio-btn{
    display:inline-block;
    margin-top:18px;
    padding:10px 22px;
    border-radius:30px;
    background:#ff4d6d;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.portfolio-btn:hover{
    background:#ff1e4d;
}

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width:768px){

    .portfolio-grid{
        gap:25px;
        margin:40px auto;
    }

    .portfolio-card img{
        height:220px;
    }

    .portfolio-content{
        padding:18px;
    }

    .portfolio-content h3{
        font-size:18px;
    }

    .portfolio-content p{
        font-size:14px;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

    .portfolio-card img{
        height:200px;
    }

    .portfolio-content{
        padding:15px;
    }

    .portfolio-content h3{
        font-size:16px;
    }

}
/* ================= ADMIN CONTENT AREA ================= */

.admin-content h2{
    font-size:22px;
    font-weight:600;
    margin:30px 0 20px;
    padding-bottom:10px;
    border-bottom:2px solid #eee;
}

/* ================= PORTFOLIO FORM ================= */

.admin-content form{
    background:#ffffff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    margin-bottom:30px;
}

.admin-content form input,
.admin-content form textarea{
    width:100%;
    padding:12px 14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    transition:0.3s ease;
}

.admin-content form textarea{
    min-height:110px;
    resize:vertical;
}

.admin-content form input:focus,
.admin-content form textarea:focus{
    border-color:#ff4d6d;
    outline:none;
    box-shadow:0 0 0 2px rgba(255,77,109,0.15);
}

/* Color inputs side by side */

.admin-content form input[type="color"]{
    height:45px;
    padding:5px;
    cursor:pointer;
}

/* ================= BUTTON ================= */

.admin-content form button{
    background:#ff4d6d;
    color:#fff;
    padding:10px 22px;
    border:none;
    border-radius:25px;
    font-size:14px;
    cursor:pointer;
    transition:0.3s ease;
}

.admin-content form button:hover{
    background:#ff1e4d;
}

/* ================= PORTFOLIO ADMIN CARD ================= */

.portfolio-admin-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:20px;
    border-radius:14px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s ease;
    position:relative;
}

.portfolio-admin-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.portfolio-admin-card img{
    width:140px;
    height:110px;
    object-fit:cover;
    border-radius:10px;
}

.portfolio-admin-card h3{
    margin:0 0 8px;
    font-size:18px;
}

.portfolio-admin-card p{
    font-size:14px;
    line-height:1.5;
    margin-bottom:10px;
}

.portfolio-admin-card .portfolio-btn{
    display:inline-block;
    padding:8px 18px;
    border-radius:20px;
    background:#111;
    color:#fff;
    font-size:13px;
    text-decoration:none;
    transition:0.3s ease;
}

.portfolio-admin-card .portfolio-btn:hover{
    opacity:0.8;
}

/* ================= DELETE BUTTON ================= */

.delete-btn{
    display:inline-block;
    margin-top:8px;
    color:#ff4d4d;
    font-size:13px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.delete-btn:hover{
    color:#cc0000;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .portfolio-admin-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .portfolio-admin-card img{
        width:100%;
        height:200px;
    }
}

@media(max-width:576px){

    .admin-content form{
        padding:18px;
    }

    .portfolio-admin-card{
        padding:15px;
    }

    .portfolio-admin-card h3{
        font-size:16px;
    }

    .portfolio-admin-card p{
        font-size:13px;
    }
}
/* ================= ADMIN CONTENT AREA ================= */

.admin-content h2{
    font-size:22px;
    font-weight:600;
    margin:30px 0 20px;
    padding-bottom:10px;
    border-bottom:2px solid #eee;
}

/* ================= PORTFOLIO FORM ================= */

.admin-content form{
    background:#ffffff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    margin-bottom:30px;
}

.admin-content form input,
.admin-content form textarea{
    width:100%;
    padding:12px 14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    transition:0.3s ease;
}

.admin-content form textarea{
    min-height:110px;
    resize:vertical;
}

.admin-content form input:focus,
.admin-content form textarea:focus{
    border-color:#ff4d6d;
    outline:none;
    box-shadow:0 0 0 2px rgba(255,77,109,0.15);
}

/* Color inputs side by side */

.admin-content form input[type="color"]{
    height:45px;
    padding:5px;
    cursor:pointer;
}

/* ================= BUTTON ================= */

.admin-content form button{
    background:#ff4d6d;
    color:#fff;
    padding:10px 22px;
    border:none;
    border-radius:25px;
    font-size:14px;
    cursor:pointer;
    transition:0.3s ease;
}

.admin-content form button:hover{
    background:#ff1e4d;
}

/* ================= PORTFOLIO ADMIN CARD ================= */

.portfolio-admin-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:20px;
    border-radius:14px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s ease;
    position:relative;
}

.portfolio-admin-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.portfolio-admin-card img{
    width:140px;
    height:110px;
    object-fit:cover;
    border-radius:10px;
}

.portfolio-admin-card h3{
    margin:0 0 8px;
    font-size:18px;
}

.portfolio-admin-card p{
    font-size:14px;
    line-height:1.5;
    margin-bottom:10px;
}

.portfolio-admin-card .portfolio-btn{
    display:inline-block;
    padding:8px 18px;
    border-radius:20px;
    background:#111;
    color:#fff;
    font-size:13px;
    text-decoration:none;
    transition:0.3s ease;
}

.portfolio-admin-card .portfolio-btn:hover{
    opacity:0.8;
}

/* ================= DELETE BUTTON ================= */

.delete-btn{
    display:inline-block;
    margin-top:8px;
    color:#ff4d4d;
    font-size:13px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.delete-btn:hover{
    color:#cc0000;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .portfolio-admin-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .portfolio-admin-card img{
        width:100%;
        height:200px;
    }
}

@media(max-width:576px){

    .admin-content form{
        padding:18px;
    }

    .portfolio-admin-card{
        padding:15px;
    }

    .portfolio-admin-card h3{
        font-size:16px;
    }

    .portfolio-admin-card p{
        font-size:13px;
    }
}
.logo-wrapper{
    display:flex;
    align-items:center;
    gap:10px;
    position:relative;
}

.logo-text{
    font-family: 'Playfair Display', serif;
    font-size:24px;
    font-weight:700;
    color:#d4af37; /* gold color */
    letter-spacing:1px;
    text-transform:uppercase;
}

.logo-img{
    height:45px;
}
/* ================= PREMIUM FOOTER FIXED ================= */

.premium-footer{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#0f1c3f;
    padding:12px 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    z-index:9999;
    box-shadow:0 -5px 25px rgba(0,0,0,0.3);
}

/* Prevent wrapping */
.premium-footer{
    flex-wrap:nowrap;
}

/* LEFT & RIGHT BUTTON SAME WIDTH */

.footer-btn{
    flex:0 0 auto;
    min-width:110px;
    text-align:center;
    padding:10px 16px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    color:#fff;
    font-size:14px;
    transition:0.3s ease;
}

/* CENTER TEXT */

.footer-text{
    flex:1;
    text-align:center;
    font-size:13px;
    color:#fff;
    margin:0;
    padding:0 10px;
}

/* WHATSAPP */

.whatsapp-btn{
    background:#25D366;
}

/* CALL */

.call-btn{
    background:#d4af37;
    color:#000;
}

/* MOBILE PERFECT ALIGN */

@media(max-width:768px){

    .premium-footer{
        flex-direction:row;
        flex-wrap:nowrap;
        padding:10px 8px;
    }

    .footer-btn{
        min-width:95px;
        font-size:12px;
        padding:8px 10px;
    }

    .footer-text{
        font-size:11px;
        padding:0 6px;
    }
}
.ig-icon {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
    color: #fff;
}
@media(max-width:768px){

    body{
        padding-bottom:80px;
    }

    .area-content{
        margin-bottom:80px;
    }

}
.admin-card {
    background:#fff;
    padding:15px;
    margin-bottom:15px;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.edit-btn{
    background:orange;
    color:#fff;
    padding:5px 10px;
    border-radius:5px;
}

.delete-btn{
    background:red;
    color:#fff;
    padding:5px 10px;
    border-radius:5px;
}

.pagination a{
    padding:6px 12px;
    margin:3px;
    border:1px solid #ccc;
}

.pagination .active{
    background:#007bff;
    color:#fff;
}
