/* ================= GLOBAL ================= */

*{
    box-sizing: border-box;
}

body{
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right,#eef2f7,#f8f9fb);
    color:#333;
}

/* ================= NAVBAR ================= */

nav{
    background: linear-gradient(90deg,#1e3c72,#2a5298);
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.logo{
    color:white;
    font-weight:bold;
    font-size:22px;
    letter-spacing:1px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
    margin:0;
    padding:0;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:0.3s ease;
}

nav ul li a:hover{
    opacity:0.8;
}

/* ================= CONTAINER ================= */

.container{
    padding:50px 20px;
    max-width:1000px;
    margin:auto;
}

/* ================= FORM INPUT ================= */

input, textarea{
    width:100%;
    padding:12px 15px;
    margin:10px 0;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:14px;
    transition:0.3s;
}

input:focus, textarea:focus{
    outline:none;
    border-color:#1e3c72;
    box-shadow:0 0 5px rgba(30,60,114,0.3);
}

/* ================= BUTTON ================= */

button{
    padding:12px 20px;
    background:#ff7b00;
    border:none;
    color:white;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:0.3s ease;
}

button:hover{
    background:#e56d00;
    transform:translateY(-2px);
}

/* ================= FOOTER ================= */

footer{
    margin-top:80px;
    background:#1e3c72;
    color:white;
    text-align:center;
    padding:25px;
    font-size:14px;
}

/* ================= AUTH SECTION ================= */

.auth-container{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:85vh;
    padding:20px;
}

.auth-box{
    background:white;
    padding:45px 35px;
    width:380px;
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
    text-align:center;
    transition:0.3s ease;
}

.auth-box:hover{
    transform:translateY(-5px);
}

.auth-box h2{
    margin-bottom:25px;
    color:#1e3c72;
}

.auth-box input{
    border-radius:8px;
}

.auth-box button{
    width:100%;
    background:#1e3c72;
    margin-top:10px;
}

.auth-box button:hover{
    background:#2a5298;
}

.toggle-text{
    margin-top:20px;
    font-size:14px;
}

.toggle-text a{
    color:#ff7b00;
    cursor:pointer;
    text-decoration:none;
    font-weight:600;
}

.toggle-text a:hover{
    text-decoration:underline;
}

/* ================= ALERTS ================= */

.error{
    color:#ff4d4d;
    background:#ffe6e6;
    padding:10px;
    border-radius:6px;
    margin-bottom:10px;
    font-size:14px;
}

.success{
    color:#2e7d32;
    background:#e8f5e9;
    padding:10px;
    border-radius:6px;
    margin-bottom:10px;
    font-size:14px;
}

/* ================= CARD STYLE ================= */

.card{
    background:white;
    padding:25px;
    margin:20px 0;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-4px);
}

/* ================= HERO SECTION ================= */

.hero{
    text-align:center;
    padding:120px 20px;
    background: linear-gradient(135deg,#4facfe,#00f2fe);
    color:white;
}

.hero h1{
    font-size:36px;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
    opacity:0.9;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    nav{
        flex-direction:column;
        padding:15px;
    }

    nav ul{
        flex-direction:column;
        align-items:center;
        gap:15px;
        margin-top:10px;
    }

    .auth-box{
        width:100%;
        padding:35px 25px;
    }

    .hero h1{
        font-size:26px;
    }

    .hero p{
        font-size:16px;
    }
}
/* ===== ADMIN FORM ===== */

.admin-form{
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    margin-bottom:40px;
}

.admin-form input,
.admin-form textarea{
    margin-bottom:15px;
}

.admin-card{
    display:flex;
    gap:20px;
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    margin-bottom:20px;
    align-items:center;
}

.admin-card img{
    border-radius:10px;
    object-fit:cover;
}

.delete-btn{
    display:inline-block;
    margin-top:10px;
    color:white;
    background:#ff4d4d;
    padding:6px 12px;
    border-radius:6px;
    text-decoration:none;
    font-size:13px;
}

.delete-btn:hover{
    background:#e60000;
}

/* ===== PORTFOLIO GRID ===== */

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    padding:50px 20px;
}

.portfolio-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.3s;
}

.portfolio-card:hover{
    transform:translateY(-8px);
}

.portfolio-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.portfolio-content{
    padding:20px;
}

.portfolio-content h3{
    margin-bottom:10px;
    color:#1e3c72;
}

.portfolio-content p{
    font-size:14px;
    color:#555;
}
/* ===== ADMIN LAYOUT CLEAN ===== */

/*.admin-wrapper{*/
/*    display:flex;*/
/*    min-height:100vh;*/
/*}*/

/*.admin-sidebar{*/
/*    width:250px;*/
/*    background:#1e3c72;*/
/*    padding:30px 20px;*/
/*    color:white;*/
/*}*/

/*.admin-sidebar h3{*/
/*    margin-bottom:20px;*/
/*}*/

/*.admin-sidebar ul{*/
/*    list-style:none;*/
/*    padding:0;*/
/*}*/

/*.admin-sidebar ul li{*/
/*    margin-bottom:15px;*/
/*}*/

/*.admin-sidebar ul li a{*/
/*    color:white;*/
/*    text-decoration:none;*/
/*    display:block;*/
/*    padding:8px;*/
/*    border-radius:6px;*/
/*    transition:0.3s;*/
/*}*/

/*.admin-sidebar ul li a:hover{*/
/*    background:#2a5298;*/
/*}*/

/*.admin-content{*/
/*    flex:1;*/
/*    padding:40px;*/
/*    background:#f9fafc;*/
/*}*/

/*.admin-content h2{*/
/*    margin-top:40px;*/
/*    margin-bottom:15px;*/
/*}*/

/*.admin-card{*/
/*    display:flex;*/
/*    gap:20px;*/
/*    background:white;*/
/*    padding:20px;*/
/*    border-radius:12px;*/
/*    box-shadow:0 8px 20px rgba(0,0,0,0.05);*/
/*    margin-bottom:20px;*/
/*    align-items:center;*/
/*}*/
/* ===== LUXURY HERO ===== */

.luxury-hero{
    height:100vh;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.hero-overlay{
    background:rgba(0,0,0,0.6);
    padding:60px;
    text-align:center;
    border-radius:20px;
    color:white;
    max-width:700px;
}

.hero-overlay h1{
    font-size:42px;
    margin-bottom:20px;
}

.hero-overlay p{
    font-size:18px;
    margin-bottom:30px;
    line-height:1.6;
}

.luxury-btn{
    background:linear-gradient(90deg,#d4af37,#f5d76e);
    padding:14px 30px;
    border-radius:30px;
    text-decoration:none;
    color:black;
    font-weight:600;
    transition:0.3s;
}

.luxury-btn:hover{
    transform:scale(1.05);
}

/* ===== FEATURES ===== */

.features-section{
    padding:80px 20px;
    text-align:center;
    background:#f8f9fb;
}

.features-section h2{
    margin-bottom:40px;
    font-size:30px;
    color:#1e3c72;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.feature-card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 15px 30px rgba(0,0,0,0.05);
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card h3{
    margin-bottom:15px;
}
.premium-hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:100px;
min-height:100vh;
background-size:cover;
background-position:center;
position:relative;
color:white;
}

.premium-hero::before{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,0.6);
}

.hero-left, .hero-right{
position:relative;
z-index:2;
}

.hero-right{
position:relative;
width:450px;
}

.hero-right img{
width:220px;
border-radius:15px;
position:absolute;
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.img1{top:0;left:0;}
.img2{top:100px;left:150px;}
.img3{top:200px;left:50px;}
.feature-card{
    width:320px;
    background:#1c1c1c;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
    transition:0.3s;
    display:flex;
    flex-direction:column;
}

.feature-card img{
    width:100%;
    height:250px;        /* FIXED HEIGHT */
    object-fit:cover;    /* IMPORTANT */
}

.feature-card h3{
    padding:15px 15px 5px;
    color:#d4af37;
}

.feature-card p{
    padding:0 15px 20px;
    font-size:14px;
    color:#ccc;
}
.admin-card{
display:flex;
gap:20px;
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
margin-bottom:20px;
align-items:center;
}

.admin-card img{
width:120px;
height:100px;
object-fit:cover;
border-radius:10px;
}

.delete-btn{
background:#ff4d4d;
color:white;
padding:6px 12px;
border-radius:6px;
text-decoration:none;
margin-top:10px;
display:inline-block;
}

.delete-btn:hover{
background:#e60000;
}
.portfolio-admin-card{
display:flex;
gap:20px;
padding:20px;
border-radius:15px;
margin-bottom:20px;
align-items:center;
box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.portfolio-admin-card img{
width:180px;
height:150px;
object-fit:cover;
border-radius:12px;
}

.portfolio-btn{
display:inline-block;
padding:8px 18px;
background:#d4af37;
color:#000;
border-radius:20px;
text-decoration:none;
font-weight:600;
}
.dashboard-wrapper{
display:flex;
min-height:100vh;
}

.dashboard-sidebar{
width:250px;
background:#111;
padding:30px;
}

.dashboard-sidebar ul{
list-style:none;
padding:0;
}

.dashboard-sidebar ul li{
margin-bottom:15px;
}

.dashboard-sidebar a{
color:white;
text-decoration:none;
}

.dashboard-content{
flex:1;
padding:40px;
}
.customer-modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,0.7);
justify-content:center;
align-items:center;
z-index:9999;
}

.customer-modal-content{
background:#111;
padding:40px;
width:350px;
border-radius:15px;
color:white;
position:relative;
}

.customer-modal-content input{
width:100%;
padding:12px;
margin:10px 0;
border-radius:6px;
border:none;
}

.customer-modal-content button{
width:100%;
padding:12px;
background:#d4af37;
border:none;
color:black;
border-radius:6px;
font-weight:bold;
cursor:pointer;
}

.close-btn{
position:absolute;
top:10px;
right:15px;
cursor:pointer;
font-size:18px;
}

.switch-text{
margin-top:15px;
text-align:center;
}

.switch-text a{
color:#d4af37;
cursor:pointer;
}
.customer-modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,0.7);
justify-content:center;
align-items:center;
z-index:9999;
}

.customer-box{
background:#111;
padding:35px;
width:350px;
border-radius:15px;
color:white;
position:relative;
}

.customer-box input{
width:100%;
padding:12px;
margin:10px 0;
border-radius:6px;
border:none;
}

.customer-box button{
width:100%;
padding:12px;
background:#d4af37;
border:none;
color:black;
font-weight:bold;
border-radius:6px;
cursor:pointer;
}

.close-btn{
position:absolute;
top:10px;
right:15px;
cursor:pointer;
font-size:18px;
}

.switch-text{
margin-top:15px;
text-align:center;
}

.switch-text a{
color:#d4af37;
cursor:pointer;
}
.profile-wrapper{
    max-width:1000px;
    margin:50px auto;
    padding:40px;
    background:#111;
    color:#fff;
    border-radius:15px;
}

.profile-form input,
.profile-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border-radius:8px;
    border:none;
}

.profile-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.profile-btn{
    background:#c59d5f;
    color:#000;
    padding:12px 25px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
}

.profile-btn:hover{
    background:#e0b874;
}
/* ================= HERO FIXED ================= */

.premium-hero{
position:relative;
width:100%;
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
background-size:cover;
background-position:center center;
background-repeat:no-repeat;
overflow:hidden;
}

.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;
align-items:center;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}

/* LEFT CONTENT */

.hero-left{
flex:1;
min-width:300px;
color:white;
}

.hero-left h1{
font-size:55px;
margin-bottom:20px;
line-height:1.2;
}

.hero-left p{
font-size:18px;
margin-bottom:30px;
max-width:600px;
}

/* RIGHT IMAGES */

.hero-right{
flex:1;
min-width:300px;
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);
transition:0.4s;
}

.hero-right .img1{
left:0;
top:40px;
z-index:1;
}

.hero-right .img2{
left:120px;
top:0;
z-index:2;
}

.hero-right .img3{
left:240px;
top:40px;
z-index:3;
}

.hero-right img:hover{
transform:scale(1.05);
}

/* BUTTON */

.gold-btn{
background:linear-gradient(45deg,#d4af37,#f5d77a);
color:black;
padding:14px 32px;
border-radius:40px;
text-decoration:none;
font-weight:bold;
display:inline-block;
transition:0.3s;
}

.gold-btn:hover{
transform:scale(1.05);
}

/* ================= MOBILE FIX ================= */

@media(max-width:992px){

.hero-content{
flex-direction:column;
text-align:center;
}

.hero-right{
position:relative;
margin-top:40px;
height:400px;
}

.hero-right img{
position:absolute;
left:50%;
transform:translateX(-50%);
width:200px;
height:300px;
}

.hero-right .img1{ top:80px; z-index:1; }
.hero-right .img2{ top:40px; z-index:2; }
.hero-right .img3{ top:0; z-index:3; }

.hero-left h1{
font-size:38px;
}

}

@media(max-width:600px){
.hero-left h1{
font-size:30px;
}
.hero-left p{
font-size:15px;
}
}
.contact-box{
margin-top:15px;
display:flex;
gap:15px;
align-items:center;
flex-wrap:wrap;
}

.contact-btn{
display:inline-flex;
align-items:center;
gap:8px;
padding:10px 16px;
border-radius:30px;
font-size:14px;
font-weight:600;
text-decoration:none;
color:#fff;
transition:0.3s;
}

.call-btn{
background:linear-gradient(45deg,#ff4d4d,#ff0000);
}

.whatsapp-btn{
background:linear-gradient(45deg,#25D366,#128C7E);
}

.contact-btn:hover{
transform:scale(1.08);
box-shadow:0 0 15px rgba(255,255,255,0.3);
}
.logo-img{
height:45px !important;
width:auto !important;
max-height:45px !important;
object-fit:contain;
}
.logo-wrapper{
position:relative;
display:inline-block;
}

.logo-img{
height:50px;
width:auto;
}

/* ===== STAR STYLE ===== */

.star{
position:absolute;
color:#FFD700;
font-size:14px;
animation: sparkle 2s infinite ease-in-out;
text-shadow:0 0 8px #FFD700,
            0 0 15px #ffea00,
            0 0 25px #fff;
}

/* Positioning */
.star1{ top:-5px; left:-10px; animation-delay:0s; }
.star2{ top:-10px; right:-8px; animation-delay:0.5s; }
.star3{ bottom:-5px; left:10px; animation-delay:1s; }
.star4{ bottom:-10px; right:5px; animation-delay:1.5s; }

/* Animation */
@keyframes sparkle{
0%{opacity:0.3; transform:scale(0.8);}
50%{opacity:1; transform:scale(1.2);}
100%{opacity:0.3; transform:scale(0.8);}
}
nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#0a2a66;
}

nav ul{
display:flex;
gap:25px;
list-style:none;
margin:0;
padding:0;
}

nav ul li a{
color:#fff;
text-decoration:none;
}
.custom-section{
    max-width:900px;
    margin:40px auto;
    padding:25px;
    background:#111;
    color:#ccc;
    border-radius:12px;
    text-align:center;
    line-height:1.7;
}
.footer-cities ul{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    list-style:none;
    padding:0;
}

.footer-cities a{
    color:#c59d5f;
    text-decoration:none;
}

.city-page{
    padding:80px 20px;
    text-align:center;
    background:#000;
    color:#fff;
}

.city-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:40px;
}

.city-gallery img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:12px;
}
footer{
    background:#000;
    padding:60px 20px;
    color:#fff;
    text-align:center;
}

.footer-cities h3{
    font-size:28px;
    margin-bottom:30px;
    font-weight:700;
    color:#fff;
}

.footer-cities ul{
    list-style:none;
    padding:0;
    margin:0 auto 40px auto;
    max-width:900px;

    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.footer-cities li{
    background:#111;
    padding:15px 10px;
    border-radius:8px;
}

.footer-cities a{
    text-decoration:none;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    display:block;
    transition:0.3s;
}

.footer-cities a:hover{
    color:#c59d5f;
    transform:scale(1.05);
}

.modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,0.8);
justify-content:center;
align-items:center;
z-index:9999;
padding:20px;
}

.modal-content{
background:#111;
max-width:500px;
width:100%;
border-radius:15px;
padding:25px;
color:#fff;
text-align:center;
position:relative;
}

.modal-img{
width:100%;
height:350px;
object-fit:cover;
border-radius:12px;
margin-bottom:20px;
}

.contact-btn{
display:inline-block;
margin:10px;
padding:12px 20px;
border-radius:8px;
text-decoration:none;
color:#fff;
font-weight:bold;
}

.call-btn{ background:#c59d5f; }
.whatsapp-btn{ background:#25D366; }

@media(max-width:600px){
.modal-img{
height:250px;
}

