html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#111;
    color:#fff;
    overflow-x:hidden;
}

/* ================= NAVBAR ================= */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,.5);
    backdrop-filter:blur(12px);
    z-index:1000;
}

nav h2{
    color:#D4AF37;
    font-size:34px;
}

.menu{
    display:flex;
    align-items:center;
}

.menu a{
    color:#fff;
    text-decoration:none;
    margin-left:30px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.menu a:hover{
    color:#D4AF37;
}

.call-btn{
    background:#D4AF37;
    color:#111;
    text-decoration:none;
    padding:12px 28px;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.call-btn:hover{
    background:#fff;
    transform:scale(1.05);
}

/* ================= HERO ================= */

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    background:url("interior.jpg") no-repeat center center;
    background-size:cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 8%;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.10);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:1000px;
}

.hero h1{
    font-size:clamp(55px,6vw,90px);
    color:#fff;
    font-weight:900;
    line-height:1.1;
    margin-bottom:25px;
    text-shadow:0 5px 20px rgba(0,0,0,.9);
}

.hero p{
    font-size:clamp(20px,2vw,30px);
    line-height:1.7;
    color:#fff;
    margin-bottom:40px;
    text-shadow:0 4px 15px rgba(0,0,0,.9);
}

.btn{
    display:inline-block;
    background:#D4AF37;
    color:#111;
    text-decoration:none;
    padding:18px 45px;
    border-radius:40px;
    font-size:20px;
    font-weight:bold;
    transition:.3s;
    position:relative;
    z-index:5;
}

.btn:hover{
    background:#fff;
    transform:translateY(-3px);
}

/* ================= FILTERS ================= */

.filters{
    background:#111;
    padding:40px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.filters button{
    background:#222;
    color:#fff;
    border:2px solid #D4AF37;
    padding:12px 24px;
    border-radius:30px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.filters button:hover{
    background:#D4AF37;
    color:#111;
    transform:translateY(-3px);
}

/* ================= GALLERY ================= */

.gallery{
    padding:80px 8%;
    background:#111;
}

.gallery h2{
    color:#D4AF37;
    text-align:center;
    font-size:38px;
    margin-bottom:40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.gallery-grid img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.5);
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}
/* ================= STATS ================= */

.stats{
    background:#fff;
    display:flex;
    justify-content:center;
    gap:40px;
    padding:80px 20px;
    flex-wrap:wrap;
}

.box{
    background:rgb(1, 20, 20);
    width:250px;
    padding:35px;
    text-align:center;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.1);
    transition:.35s;
}

.box:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
    box-shadow:0 15px 30px rgba(212,175,55,.25);
}

.box h2{
    color:#D4AF37;
    font-size:48px;
    margin-bottom:10px;
}

.box p{
    font-size:18px;
    color:white;
}
/* ================= MOBILE RESPONSIVE ================= */

@media (max-width:768px){

/* Navbar */

nav{
    padding:15px 20px;
    flex-wrap:wrap;
    justify-content:space-between;
}

nav h2{
    font-size:28px;
}

.menu{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:15px;
    gap:12px;
}

.menu a{
    margin:0;
    font-size:15px;
}

.call-btn{
    padding:10px 18px;
    font-size:14px;
}

/* Hero */

.hero{
    min-height:100vh;
    padding:120px 20px 60px;
}

.hero h1{
    font-size:42px;
    line-height:1.2;
}

.hero p{
    font-size:18px;
    line-height:1.6;
}

.btn{
    width:100%;
    max-width:300px;
    font-size:18px;
    padding:16px;
}

/* Stats */

.stats{
    padding:50px 20px;
    gap:20px;
}

.box{
    width:100%;
}

/* Gallery */

.gallery{
    padding:60px 20px;
}

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-grid img{
    height:250px;
}

}


/* Small Phones */

@media (max-width:480px){

nav h2{
    font-size:24px;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.menu a{
    font-size:14px;
}

.call-btn{
    width:100%;
    justify-content:center;
    text-align:center;
}

}

/* ================= GALLERY SECTION ================= */

.gallery-section{
    animation:fade .5s ease;
}

@keyframes fade{

from{
opacity:0;
transform:translateY(20px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* ================= SCROLL BAR ================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#D4AF37;
    border-radius:20px;
}
/* ================= VIEW GALLERY BUTTON ================= */


.view-btn{
    display:inline-block;
    margin-top:30px;
    padding:18px 40px;
    background:#D4AF37;
    color:#111;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    border-radius:50px;
    transition:all .3s ease;
    box-shadow:0 8px 20px rgba(212,175,55,.30);
}

.view-btn:hover{
    background:#f3c74b;
    color:#111;
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(212,175,55,.45);
}
/* ================= HERO ================= */

.hero{
    position:relative;
    height:55vh;
    background:url("interior.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    text-align:center;
    padding:20px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

nav{
    padding:15px 20px;
    flex-wrap:wrap;
}

nav h2{
    font-size:24px;
}

.menu{
    width:100%;
    justify-content:center;
    margin-top:15px;
    flex-wrap:wrap;
}

.menu a{
    margin:8px;
    font-size:15px;
}
}

/* ================= SERVICES HERO ================= */

.service-hero{

height:65vh;

background:url("interior.jpg");

background-size:cover;

background-position:center;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

text-align:center;

position:relative;

padding:20px;

}

.service-hero::before{

content:"";

position:absolute;

inset:0;

background: rgba(3, 0, 0, 0.623);

}

.service-hero h1,
.service-hero p,
.service-hero .btn{

position:relative;

z-index:2;

}

.service-hero h1{

font-size:70px;

font-weight:800;

color:white;

margin-bottom:20px;

}

.service-hero p{

font-size:28px;

color:white;

max-width:900px;

margin-bottom:35px;

line-height:1.6;

}
/* ================= SERVICES ================= */

.services{
    background:#111;
    padding:90px 8%;
}

.services h2{
    text-align:center;
    color:#D4AF37;
    font-size:44px;
    margin-bottom:60px;
    font-weight:700;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.service-card{
    background:#0a0a0a;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    transition:.35s;
    border:1px solid rgba(255,255,255,.08);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(212,175,55,.25);
}

.service-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.service-card h3{
    color:#D4AF37;
    font-size:28px;
    margin:20px 20px 10px;
}

.service-card p{
    color:#ddd;
    font-size:16px;
    line-height:1.7;
    margin:0 20px 25px;
}

.service-btn{
    display:inline-block;
    margin:0 20px 25px;
    padding:12px 28px;
    background:#D4AF37;
    color:#111;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.service-btn:hover{
    background:#fff;
    color:#111;
}
/* ================= ABOUT ================= */

.about{
    background:#111;
    padding:90px 8%;
    text-align:center;
}

.about h2{
    color:#D4AF37;
    font: size 30px;
    margin-bottom:30px;
}

.about-text{
    max-width:1000px;
    margin:auto;
    color:#f3efef;
    font-size:19px;
    line-height:1.9;
}

/* ================= WHY US ================= */

.why-us{
    background:#181818;
    padding:90px 8%;
}

.why-us h2{
    text-align:center;
    color:#D4AF37;
    font-size:42px;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.why-card{
    background:#222;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(212,175,55,.25);
}

.why-card h3{
    color:#D4AF37;
    margin-bottom:15px;
}

.why-card p{
    color:#ddd;
    line-height:1.7;
}

/* ================= MISSION ================= */

.mission{
    background:#111;
    padding:90px 8%;
    text-align:center;
}

.mission h2{
    color:#D4AF37;
    font-size:42px;
    margin-bottom:25px;
}

.mission p{
    max-width:900px;
    margin:auto;
    color:#ddd;
    line-height:1.9;
    font-size:19px;
}
/* ================= CONTACT FORM ================= */
.contact-form select{
    width:100%;
    padding:18px;
    background:#222;
    color:#fff;
    border:1px solid #444;
    border-radius:12px;
    font-size:16px;
    outline:none;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    cursor:pointer;
    margin-bottom:20px;
}

.contact-form{
    background:#181818;
    padding:90px 8%;
    text-align:center;
}

.contact-form h2{
    color:#D4AF37;
    font-size:42px;
    margin-bottom:15px;
}

.form-subtitle{
    color:#ddd;
    font-size:18px;
    margin-bottom:45px;
}

.contact-form form{
    max-width:900px;
    margin:auto;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:18px;
    background:#222;
    border:1px solid #333;
    border-radius:12px;
    color:white;
    font-size:16px;
    outline:none;
    margin-bottom:20px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:#D4AF37;
}

.contact-form textarea{
    resize:vertical;
}

.contact-form .btn{
    width:100%;
    border:none;
    cursor:pointer;
    margin-top:10px;
}

/* Mobile */

@media(max-width:768px){

.form-row{
    grid-template-columns:1fr;
}

}
/* ================= LOCATION ================= */

.location{
    background:#111;
    padding:90px 8%;
    text-align:center;
}

.location h2{
    color:#D4AF37;
    font-size:42px;
    margin-bottom:15px;
}

.location p{
    color:#ddd;
    font-size:18px;
    margin-bottom:40px;
}

.map{
    width:100%;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.map iframe{
    width:100%;
    height:500px;
    border:0;
}

/* ================= WHATSAPP CTA ================= */

.whatsapp-cta{
    background:#181818;
    padding:90px 8%;
    text-align:center;
}

.whatsapp-cta h2{
    color:#D4AF37;
    font-size:44px;
    margin-bottom:20px;
}

.whatsapp-cta p{
    max-width:800px;
    margin:auto;
    color:#ddd;
    font-size:19px;
    line-height:1.8;
    margin-bottom:40px;
}
/* ================= FOOTER ================= */

.footer{
    background:#0b0b0b;
    padding:70px 8% 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer h2,
.footer h3{
    color:#D4AF37;
    margin-bottom:20px;
}

.footer p,
.footer li{
    color:#ccc;
    line-height:1.8;
    list-style:none;
}

.footer ul{
    padding:0;
}

.footer a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#D4AF37;
}

.footer-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    background:#D4AF37;
    color:#111 !important;
    border-radius:30px;
    font-weight:bold;
}

.footer-btn:hover{
    background:#fff;
}

.footer hr{
    margin:50px 0 25px;
    border:0;
    border-top:1px solid #333;
}

.copyright{
    text-align:center;
    color:#888;
}
/* Floating WhatsApp */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    display:flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:14px 20px;
    border-radius:50px;
    font-size:17px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(37,211,102,.35);
    z-index:9999;
    transition:.3s ease;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 18px 35px rgba(37,211,102,.55);
}

.whatsapp-float img{
    width:24px;
    height:24px;
    filter:brightness(0) invert(1);
}

@keyframes whatsappPulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.06);
}

100%{
transform:scale(1);
}

}

@media(max-width:768px){

.whatsapp-float{
bottom:20px;
right:15px;
padding:13px 18px;
font-size:15px;
}

.whatsapp-float img{
width:22px;
height:22px;
}
/* Mobile Responsive */

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .hero {
        height: auto;
        padding: 80px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn,
    .call-btn {
        width: 100%;
        max-width: 280px;
        margin: 10px auto;
        display: block;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .contact-info,
    .footer-container {
        grid-template-columns: 1fr;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}
/* ================= CONTACT FORM PREMIUM ================= */

.contact-form{

max-width:900px;

margin:120px auto 60px;

background:#ffffff;

padding:40px 25px;

border-radius:24px;

box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.contact-form h2{

color:#111;

text-align:center;

font-size:34px;

margin-bottom:10px;

}

.form-subtitle{

text-align:center;

color:#666;

margin-bottom:35px;

}

.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

margin-bottom:20px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

width:100%;

padding:16px;

border:2px solid #e5e7eb;

border-radius:14px;

font-size:16px;

outline:none;

transition:.3s;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

border-color:#D4AF37;

}

.contact-form textarea{

resize:none;

margin-top:20px;

}

.contact-form .btn{

width:100%;

margin-top:25px;

}

/* Mobile */

@media(max-width:768px){

.form-row{

grid-template-columns:1fr;

}

.contact-form{

margin:90px 15px 40px;

padding:25px 18px;

}

.contact-form h2{

font-size:28px;

}

}

}