/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#f8f8f8;
    color:#222;
}

/* ================= HEADER ================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%; /* fixed */
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 6%;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(12px);
    box-shadow:0 2px 15px rgba(0,0,0,0.06);
    z-index:1000;
}

/* Prevent content hiding behind header */
body{
    padding-top:90px;
}

header a{
    color:#222;
    margin:0 15px;
    text-decoration:none;
    font-weight:500;
}

/* ================= LOGO ================= */

.logo{
    display:flex;
    align-items:center;
    gap:8px;
    font-family:'Playfair Display',serif;
    font-size:22px;
    letter-spacing:2px;
}

.logo img{
    height:40px;
    width:auto;
    object-fit:contain;
}

/* ================= HERO ================= */

.hero{
    height:100vh;
    background:linear-gradient(rgba(151, 147, 147, 0.399),rgba(0, 0, 0, 0.7)),
    url('images/bannerr.avif') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 8%;
}

.hero h1{
    font-family:'Playfair Display',serif;
    font-size:56px;
    margin-bottom:20px;
    color:#fafafa;
}

.hero p{
    font-size:18px;
    max-width:600px;
    margin:auto;
    margin-bottom:30px;
    color:#fafafa;
}
/* ================= HERO PRICE ================= */

.hero-price{
    margin:25px 0 35px;
    animation: fadePrice 1.2s ease forwards;
}

.price-label{
    display:block;
    font-size:16px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#e1e748;
    margin-bottom:8px;
    opacity:0.9;
}

.price-value{
    font-size:42px;
    font-weight:700;
    background:linear-gradient(45deg,#ffffff,#ffffff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    text-shadow: 0 5px 20px rgba(255, 255, 255, 0.6);
}

/* Animation */
@keyframes fadePrice{
    from{
        opacity:0;
        transform:translateY(20px) scale(0.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

/* Mobile */
@media(max-width:768px){
    .price-value{
        font-size:30px;
    }
}

/* ================= SECTION ================= */

.section{
    padding:120px 8%;
    text-align:center;
}

.grey-bg{
    background:#efefef;
}

h2{
    font-family:'Playfair Display',serif;
    font-size:40px;
    margin-bottom:40px;
}

/* ================= GRID ================= */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transition:.4s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,0.1);
}

/* ================= BUTTON ================= */

.btn-gold{
    background:linear-gradient(45deg,#c6a84b,#e6d28a);
    color:#000;
    padding:12px 28px;
    border:none;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-gold:hover{
    opacity:0.9;
}

/* ================= FOOTER ================= */

.footer{
    background:#111;
    color:#ccc;
    padding:70px 8% 30px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.footer-col{
    flex:1;
    min-width:250px;
}

.footer-col h3{
    font-family:'Playfair Display',serif;
    color:#fff;
    margin-bottom:15px;
}

.footer-col h4{
    color:#fff;
    margin-bottom:15px;
}

.footer-col p{
    margin-bottom:10px;
    font-size:14px;
    line-height:1.6;
}

.footer-col a{
    display:block;
    color:#ccc;
    text-decoration:none;
    margin-bottom:8px;
    font-size:14px;
    transition:0.3s;
}

.footer-col a:hover{
    color:#c6a84b;
}

.footer-btn{
    margin-top:10px;
    padding:8px 18px;
    font-size:14px;
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    font-size:13px;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:20px;
}

/* ================= MOBILE FOOTER ================= */

@media(max-width:768px){

    .footer{
        padding:50px 5% 20px;
        text-align:center;
    }

    .footer-container{
        flex-direction:column;
        gap:30px;
    }

    .footer-col a{
        display:inline-block;
        margin:5px 8px;
    }

}

/* ================= MODAL ================= */

.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    justify-content:center;
    align-items:center;
    z-index:2000;
}

.modal-content{
    background:#fff;
    padding:40px;
    border-radius:15px;
    width:90%;
    max-width:500px;
    box-shadow:0 10px 40px rgba(0,0,0,0.2);
}

.modal-content input,
.modal-content textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:8px;
}

.close{
    float:right;
    cursor:pointer;
    font-size:20px;
}

/* ================= NAVIGATION MENU ================= */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
}

.close-menu{
    display:none;
    font-size:30px;
    position:absolute;
    top:20px;
    right:25px;
    cursor:pointer;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    header{
        padding:15px 5%;
    }

    .section{
        padding:90px 5%;
    }

    .cta-section{
        padding:70px 5%;
    }

    .hero{
        height:auto;
        min-height:90vh;
        padding:60px 5%;
    }
}

@media(max-width:768px){

    body{
        padding-top:80px;
    }

    /* Logo smaller */
    .logo img{
        height:26px;
    }

    .logo span{
        font-size:16px;
        letter-spacing:1px;
    }

    /* Show hamburger */
    .menu-toggle{
        display:block;
    }

    /* Mobile Nav */
    nav{
        position:fixed;
        top:0;
        right:-100%;
        width:75%;
        height:100vh;
        background:#fff;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:25px;
        box-shadow:-5px 0 25px rgba(0,0,0,0.1);
        transition:0.3s ease;
        z-index:2000;
    }

    nav.active{
        right:0;
    }

    .close-menu{
        display:block;
    }

    header a{
        margin:8px 0;
    }

    .hero h1{
        font-size:32px;
        line-height:1.3;
    }

    .hero p{
        font-size:16px;
    }

    h2{
        font-size:26px;
    }

    .grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .card{
        padding:22px;
    }

    .whatsapp,
    .reachout{
        bottom:20px;
    }
}

@media(max-width:480px){

    .hero h1{
        font-size:26px;
    }

    .btn-gold{
        width:100%;
        text-align:center;
    }
}
/* ================= FLOATING CONTACT ================= */

.floating-contact{
    position:fixed;
    right:20px;
    bottom:30px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:1000;
}

.float-btn{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    border-radius:50%;
    text-decoration:none;
    color:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:0.3s ease;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn{
    background:linear-gradient(45deg,#c6a84b,#e6d28a);
    color:#000;
}

/* Hover effect */
.float-btn:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.3);
}

/* Mobile adjust */
@media(max-width:768px){
    .floating-contact{
        right:15px;
        bottom:20px;
    }

    .float-btn{
        width:50px;
        height:50px;
        font-size:20px;
    }
}
.footer-logo{
    width:120px;
    height:auto;
    margin-bottom:15px;
}

/* Smaller logo on mobile */
@media(max-width:768px){
    .footer-logo{
        width:90px;
    }
}