*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#222;
}

/* Header */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#111;
    position:sticky;
    top:0;
    z-index:1000;
    transition:all .3s ease;
    box-shadow:0 2px 15px rgba(0,0,0,.25);
}

header:hover{
    background:#0d0d0d;
    box-shadow:0 8px 25px rgba(0,0,0,.35);
}

header h2{
    color:#D4AF37;
    font-size:30px;
    font-weight:700;
    letter-spacing:1px;
}

nav{
    display:flex;
    align-items:center;
    gap:25px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    position:relative;
    transition:.3s;
}

nav a:hover{
    color:#D4AF37;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}

/* Hero */

.hero{
    height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("images/hero.jpg");
    background-size:cover;
    background-position:center;
    padding:20px;
    animation:heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom{
    from{
        background-size:100%;
    }
    to{
        background-size:110%;
    }

}

.hero-content h3{
    color:#D4AF37;
    font-size:26px;
}

.hero-content h1{
    font-size:70px;
    margin:20px 0;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
}

.buttons{
    margin-top:35px;
}

.btn1,
.btn2{
    display:inline-block;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    margin:10px;
    font-weight:bold;
    transition:all .3s ease;
    box-shadow:0 8px 20px rgba(212,175,55,.35);
}

.btn1{
    background:#D4AF37;
    color:#111;
}

.btn2{
    border:2px solid #fff;
    color:#fff;
}

.btn1:hover,
.btn2:hover{
    transform:translateY(-5px) scale(1.05);
    box-shadow:0 15px 30px rgba(212,175,55,.55);
}

/* About */

.about{
    padding:100px 10%;
}

.about h2{
    font-size:45px;
    margin-bottom:25px;
    color:#111;
}

.about p{
    font-size:19px;
    color:#555;
    line-height:1.9;
    max-width:900px;
} /* Services */

.services{
    padding:100px 8%;
    background:#f8f8f8;
}

.services h2{
    text-align:center;
    font-size:45px;
    margin-bottom:50px;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:#D4AF37;
    margin-bottom:15px;
}

.card p{
    color:#555;
    line-height:1.7;
}/* Gallery */

.gallery{
    padding:100px 8%;
    background:#fff;
}

.gallery h2{
    text-align:center;
    font-size:45px;
    margin-bottom:50px;
}

.gallery-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;

}

.gallery-container img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    transition:all .4s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.gallery-container img:hover{
    transform:scale(1.08) rotate(1deg);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

/* Why Choose Us */

.why{
    padding:100px 8%;
    background:#f8f8f8;
}

.why h2{
    text-align:center;
    font-size:45px;
    margin-bottom:50px;
    color:#111;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card h3{
    color:#D4AF37;
    margin-bottom:15px;
}

.why-card p{
    color:#555;
    line-height:1.7;
}/* Contact */

.contact{
    padding:100px 8%;
    background:#111;
    color:white;
}

.contact h2{
    text-align:center;
    font-size:45px;
    margin-bottom:50px;
    color:#D4AF37;
}

.contact-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.contact-box{
    background:#222;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.contact-box h3{
    margin-bottom:15px;
    color:#D4AF37;
}

.contact-box p,
.contact-box a{
    color:white;
    text-decoration:none;
    font-size:18px;
}

.contact-box a:hover{
    color:#D4AF37;
}/* Floating WhatsApp */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
    z-index:9999;
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}/* Reviews */

.reviews{
    padding:100px 8%;
    background:#f8f8f8;
}

.reviews h2{
    text-align:center;
    font-size:45px;
    margin-bottom:50px;
}

.review-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.review-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    text-align:center;
}

.review-card p{
    margin:20px 0;
    color:#555;
    line-height:1.7;
}

.review-card h4{
    color:#D4AF37;
}

/* Footer */

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:70px 8%;
    border-top:4px solid #D4AF37;
}

footer h2{
    color:#D4AF37;
    font-size:38px;
    letter-spacing:2px;
    margin-bottom:15px;
}

footer p{
    color:#ccc;
    font-size:17px;
    line-height:1.8;
    margin:12px 0;
}

.footer-links{
    margin:35px 0;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    margin:0 18px;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.footer-links a:hover{
    color:#D4AF37;
}

.footer-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:.3s;
}

.footer-links a:hover::after{
    width:100%;
}

footer a{
    color:#D4AF37;
    text-decoration:none;
}

footer a:hover{
    color:#fff;
}

.copyright{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
    color:#888;
    font-size:15px;
}

/* Mobile Navbar */

.menu-btn{
    display:none;
    font-size:30px;
    color:#D4AF37;
    cursor:pointer;
}

@media (max-width:768px){

    header{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-wrap:wrap;
        padding:15px 5%;
        position:relative;
    }

    header h2{
        font-size:22px;
    }

    .menu-btn{
        display:block;
        margin-left:auto;
    }

    nav{
        display:none;
        flex-direction:column;
        width:100%;
        text-align:center;
        background:#111;
        position:absolute;
        top:70px;
        left:0;
        padding:20px 0;
        z-index:999;
    }

    nav.active{
        display:flex;
    }

    nav a{
        margin:15px 0;
    }

    .hero{
        height:auto;
        padding:80px 20px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content h3{
        font-size:18px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.8;
    }

    .buttons{
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .btn1,
    .btn2{
        display:block;
        width:100%;
        text-align:center;
        margin:10px 0;
    }

    .gallery-container,
    .service-container,
    .why-container,
    .review-container,
    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-form{
        padding:50px 5%;
    }

    .contact-form h2{
        font-size:30px;
    }

    iframe{
        height:300px;
    }
}

/* Lightbox */

.lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}/* Google Map */

.map{
    width:100%;
    margin:0;
    padding:0;
}

.map iframe{
    width:100%;
    height:450px;
    border:none;
    display:block;
}/* Contact Form */

.contact-form{
    padding:80px 8%;
    background:#f8f8f8;
    text-align:center;
}

.contact-form h2{
    font-size:40px;
    margin-bottom:30px;
    color:#111;
}

.contact-form form{
    max-width:700px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
}

.contact-form textarea{
    resize:none;
}

.contact-form button{
    background:#D4AF37;
    color:#111;
    border:none;
    padding:15px 40px;
    border-radius:30px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    transform:translateY(-3px);
}/* Scroll To Top */

#topBtn{
    display:none;
    position:fixed;
    bottom:185px;
    right:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#D4AF37;
    color:#111;
    font-size:24px;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.3s;
}

#topBtn:hover{
    transform:scale(1.1);
}footer a{
    color:#D4AF37;
    text-decoration:none;
}

footer a:hover{
    text-decoration:underline;
}/* Floating Call Button */

.call-float{
    position:fixed;
    bottom:105px;
    right:25px;
    width:65px;
    height:65px;
    background:#007BFF;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
    z-index:9998;
    transition:.3s;
}

.call-float:hover{
    transform:scale(1.1);
}/* Food Menu */

.menu{
    padding:100px 8%;
    background:#f8f8f8;
}

.menu h2{
    text-align:center;
    font-size:45px;
    margin-bottom:50px;
}

.menu-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.menu-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    transition:.3s;
}

.menu-card:hover{
    transform:translateY(-10px);
}

.menu-card h3{
    color:#D4AF37;
    margin-bottom:15px;
}

.menu-card p{
    line-height:1.8;
    color:#555;
}/* Counter */

.counter{
    width:100%;
    padding:80px 8%;
    background:#111;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    text-align:center;
}

.counter-box{
    background:#1b1b1b;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
    transition:all .35s ease;
    cursor:pointer;
}

.counter-box:hover{
    transform:translateY(-12px) scale(1.03);
    background:#222;
    box-shadow:0 18px 35px rgba(212,175,55,.25);
}

.counter-box h2{
    color:#D4AF37;
    font-size:50px;
    margin-bottom:10px;
    transition:.3s;
}

.counter-box:hover h2{
    transform:scale(1.1);
}

.counter-box p{
    color:#fff;
    font-size:18px;
    transition:.3s;
}

.counter-box:hover p{
    color:#f5f5f5;
}
/* Google Reviews */

.google-reviews{
    padding:80px 8%;
    text-align:center;
    background:#fff;
}

.google-reviews h2{
    font-size:40px;
    color:#D4AF37;
    margin-bottom:20px;
}

.google-reviews p{
    color:#555;
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

.review-btn{
    display:inline-block;
    background:#D4AF37;
    color:#111;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:bold;
    transition:.3s;
}

.review-btn:hover{
    transform:translateY(-5px);
}

#typing{
    color:#fff;
    border-right:3px solid #D4AF37;
    padding-right:6px;
    white-space:nowrap;
}

/* Smooth Hover Effects */

.card,
.why-card,
.menu-card,
.review-card,
.counter-box,
.contact-box{
    transition:all .35s ease;
}

.card:hover,
.why-card:hover,
.menu-card:hover,
.review-card:hover,
.counter-box:hover,
.contact-box:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}
/* Footer Social Icons */

.footer-social{
    margin:25px 0;
}

.footer-social a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:55px;
    height:55px;
    margin:0 8px;
    background:#D4AF37;
    color:#111;
    border-radius:50%;
    text-decoration:none;
    font-size:26px;
    transition:all .3s ease;
}

.footer-social a:hover{
    background:#fff;
    transform:translateY(-6px) scale(1.1);
    box-shadow:0 10px 25px rgba(212,175,55,.5);
}

/* =========================
   Book Now Popup
========================= */

.popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.7);
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.popup-content{
    width:90%;
    max-width:500px;
    background:#fff;
    padding:30px;
    border-radius:15px;
    position:relative;
    animation:popupShow .3s ease;
}

@keyframes popupShow{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-popup{
    position:absolute;
    right:20px;
    top:15px;
    font-size:30px;
    cursor:pointer;
    color:#111;
}

.popup h2{
    text-align:center;
    color:#D4AF37;
    margin-bottom:20px;
}

.popup input,
.popup select{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
}

.popup button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#D4AF37;
    color:#111;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.popup button:hover{
    transform:translateY(-3px);
}
/* =========================
   How We Work
========================= */

.process{
    padding:100px 8%;
    background:#fff;
    text-align:center;
}

.process h2{
    font-size:45px;
    color:#111;
    margin-bottom:15px;
}

.process-subtitle{
    max-width:700px;
    margin:0 auto 60px;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.process-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.process-card{
    position:relative;
    background:#f8f8f8;
    padding:35px 25px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    transition:all .35s ease;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.process-number{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    width:40px;
    height:40px;
    border-radius:50%;
    background:#D4AF37;
    color:#111;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
}

.process-icon{
    font-size:48px;
    margin:25px 0 15px;
}

.process-card h3{
    color:#D4AF37;
    margin-bottom:15px;
}

.process-card p{
    color:#555;
    line-height:1.8;
}

@media(max-width:768px){

    .process{
        padding:80px 6%;
    }

    .process h2{
        font-size:34px;
    }

    .process-subtitle{
        font-size:16px;
    }

}
/* =========================
   FAQ Section
========================= */

.faq{
    padding:100px 8%;
    background:#f8f8f8;
}

.faq h2{
    text-align:center;
    font-size:45px;
    color:#111;
    margin-bottom:50px;
}

.faq-item{
    max-width:900px;
    margin:0 auto 20px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    background:#fff;
    border:none;
    outline:none;
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#111;
    transition:.3s;
}

.faq-question:hover{
    background:#D4AF37;
    color:#111;
}

.faq-question span{
    font-size:28px;
    font-weight:bold;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#fff;
}

.faq-answer p{
    padding:0 25px 25px;
    color:#555;
    line-height:1.8;
    font-size:16px;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

.faq-item.active .faq-question{
    background:#D4AF37;
    color:#111;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

@media(max-width:768px){

    .faq{
        padding:80px 6%;
    }

    .faq h2{
        font-size:34px;
    }

    .faq-question{
        font-size:16px;
        padding:18px;
    }

    .faq-answer p{
        font-size:15px;
    }

}/* =========================
   Premium Preloader
========================= */

#preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader-content{
    text-align:center;
}

.loader-content h1{
    color:#D4AF37;
    font-size:42px;
    letter-spacing:3px;
    margin-bottom:20px;
}

.loader-content p{
    color:#ccc;
    font-size:16px;
    margin-bottom:20px;
}

.loader{
    width:70px;
    height:70px;
    border:6px solid rgba(255,255,255,.2);
    border-top:6px solid #D4AF37;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}