*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;

background:#0b0b0b;

color:white;

}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background:rgba(10,10,10,.72);
    backdrop-filter: blur(18px);

    transition: transform .45s ease,
                background .35s ease,
                box-shadow .35s ease;
}

header.hide{
    transform: translateY(-120%);
}

.navbar{

max-width:1400px;

margin:auto;

padding:20px 50px;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo img{
    width:65px;
    height:65px;
    object-fit:contain;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-text h1{
    font-family:'Cinzel', serif;
    font-size:34px;
    letter-spacing:2px;
    margin:0;
    color:#fff;
}

.logo-text span{
    color:#d4af37;
    letter-spacing:3px;
    font-size:13px;
    text-transform:uppercase;
}

.navbar ul{

display:flex;

list-style:none;

gap:40px;

}

.navbar a{

position:relative;

text-decoration:none;

color:white;

font-weight:600;

font-size:17px;

transition:.35s;

}
.navbar a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#d4af37;

transition:.35s;

}

.navbar a:hover::after{

width:100%;

}

.navbar a:hover{

color:#d4af37;

}

.navbar a:hover{

color:#d4af37;

}

.hero{

    position:relative;

    overflow:hidden;

    height:100vh;

    background:
linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.60)),
url("images/team1.jpeg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.overlay{

    position:relative;

    z-index:2;

}
.hero-overlay{

max-width:900px;

padding:20px;

}

.hero h1{

font-family:'Poppins';

font-size:5.8rem;

margin-bottom:20px;

}

.hero p{

    font-size:1.3rem;
    line-height:1.8;
    max-width: 700px;
    margin:auto;
}
.hero-line{
    width:120px;
    height:3px;
    background:#d4af37;
    margin:30px auto;
}
.hero::after{

    content:"";

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    height:220px;

    background:linear-gradient(to bottom,
        transparent,
        #0b0b0b);

}
.hero{

    animation:heroZoom 18s ease-in-out infinite alternate;

}

@keyframes heroZoom{

    from{

        background-size:100%;

    }

    to{

        background-size:110%;

    }

}
.buttons{

margin-top:40px;

display:flex;

justify-content:center;

gap:25px;

flex-wrap:wrap;

}

.btn{

padding:18px 35px;

border-radius:8px;

display:inline-block;

font-weight:bold;

text-decoration:none;

transition:.35s;

}
.btn:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.4);

}

.gold{

background:#d4af37;

color:black;

}

.gold:hover{

transform:translateY(-5px);

}

.whatsapp{

background:#25d366;

color:white;

}

.whatsapp:hover{

transform:translateY(-5px);

}
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.why-us{
    padding:100px 0;
    background:#111;
}

.why-us h2{
    text-align:center;
    font-family:'Poppins',sans-serif;
    font-size:2.5rem;
    margin-bottom:20px;
}

.section-intro{
    max-width:700px;
    margin:0 auto 60px;
    text-align:center;
    color:#bdbdbd;
    line-height:1.8;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-card{
    background:#1b1b1b;
    padding:35px;
    border-radius:15px;
    text-align:center;
    transition:.3s ease;
    border:1px solid #2a2a2a;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.icon{
    font-size:3rem;
    margin-bottom:20px;
}

.feature-card h3{
    font-family:'Poppins',sans-serif;
    margin-bottom:15px;
}

.feature-card p{
    color:#cfcfcf;
    line-height:1.7;
}

/* WHY US */

.why-us{

    background:#0f0f0f;

    padding:120px 0;

}

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:flex;

    align-items:center;

    gap:70px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    aspect-ratio:4/5;

    height:auto;

    object-fit:cover;

    border-radius:15px;

}

.about-content{

    flex:1;

}

.section-tag{

    color:#d4af37;

    font-weight:600;

    letter-spacing:2px;

    display:block;

    margin-bottom:20px;

}

.about-content h2{

    font-size:48px;

    margin-bottom:30px;

    font-family:'Montserrat',sans-serif;

}

.about-content p{

    line-height:1.9;

    color:#cfcfcf;

    margin-bottom:35px;

}

.features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.feature{

    background:#181818;

    padding:18px;

    border-left:4px solid #d4af37;

    border-radius:10px;

    transition:.3s;

}

.feature:hover{

    transform:translateX(8px);

    background:#202020;

}
.services{

    padding:120px 8%;
    background:#111;

}

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    color:#d4af37;
    letter-spacing:3px;
    font-weight:600;

}

.section-title h2{

    font-size:48px;
    margin-top:10px;

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.service-card{

    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:470px;
    cursor:pointer;

}

.service-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.service-overlay{
position:absolute;
inset:0;
background:linear-gradient(
to top,
rgba(0,0,0,.95),
rgba(0,0,0,.15)
);

display:flex;
flex-direction:column;
justify-content:flex-end;
padding:30px;
transition:.4s;
}



.service-overlay h3{
    font-size:30px;
    margin-bottom:15px;
}

.service-overlay p{
    color:#ddd;
    line-height:1.7;
}

.service-card:hover img{

    transform:scale(1.06);

}

.service-card:hover{

    box-shadow:0 20px 50px rgba(212,175,55,.3);

}
.stats{

    background:#000;

    padding:110px 8%;

}

.stats-container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;

}

.stat-box{

    text-align:center;

}

.stat-box h2{

    color:#d4af37;

    font-size:70px;

    margin-bottom:15px;

}

.stat-box p{

    color:white;

    font-size:20px;

    letter-spacing:1px;

}

/* ==========================
ELITE PERSONNEL
========================== */

.team{

    padding:120px 8%;
    background:111;

}

.team-category{

    margin-bottom:100px;

}

.team-category:last-child{

    margin-bottom:0;

}

.team-category h3{

    text-align:center;
    color:#d4af37;
    font-size:34px;
    letter-spacing:2px;
    margin-bottom:40px;
    text-transform:uppercase;

}

.team-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.team-grid img{

    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:18px;
    transition:.35s;

}

.team-grid img:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(212,175,55,.25);

}

.team-description{
    max-width:900px;
    margin:35px auto 0;
    text-align:center;
    color:#d7d7d7;
    font-size:18px;
    line-height:1.9;
    text-transform:uppercase;
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:992px){

.team-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.team-grid{

grid-template-columns:1fr;

}

.team-grid img{

height:380px;

}

.team-category h3{

font-size:26px;

}

.team-description{

font-size:16px;

}

}
.testimonials{

    padding:120px 8%;
    background:#0b0b0b;

}

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.testimonial-card{

    background:#171717;
    border:1px solid rgba(212,175,55,.25);
    border-radius:18px;
    padding:40px;
    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:0 15px 40px rgba(212,175,55,.15);

}

.stars{

    color:#d4af37;

    font-size:24px;

    margin-bottom:20px;

}

.testimonial-card p{

    line-height:1.8;

    color:#ddd;

    margin-bottom:25px;

}

.testimonial-card h4{

    color:white;

}
/* ================= GALLERY ================= */

.gallery{

    padding:120px 8%;
    background:#0b0b0b;

}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;

}

.gallery-item{

    overflow:hidden;
    border-radius:18px;

}

.gallery-item img{

    width:100%;
    height:380px;
    object-fit:cover;
    display:block;
    transition:.4s;

}

.gallery-item:hover img{

    transform:scale(1.05);

}

@media (max-width:1000px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:700px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:250px;
    }
}
.fade-up{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

header.hide{
    transform:translateY(-100%);
}

header.scrolled{
    background:rgba(0,0,0,.95);
}
.date-field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.date-field span{
    color:#fff;
    font-size:12px;
    font-weight:700;
}
/* Floating WhatsApp */

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    width:70px;

    height:70px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 12px 35px rgba(37,211,102,.45);

    z-index:999;

    transition:.35s;

}

.whatsapp-float img{

    width:38px;

}

.whatsapp-float:hover{

    transform:scale(1.12);

}
@keyframes whatsappBounce{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

}

.whatsapp-float{

animation:whatsappBounce 2s infinite;

}
/* CONTACT */

.contact{

    background:#111;

    padding:120px 8%;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:60px;

    margin-top:60px;

}

.info-box{

    background:#1a1a1a;

    padding:25px;

    margin-bottom:20px;

    border-left:4px solid #d4af37;

    border-radius:12px;

}

.info-box h3{

    margin-bottom:10px;

    color:#d4af37;

}

.info-box p{

    color:#ddd;

}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;
    background:#1b1b1b;
    border:1px solid #333;
    color:#fff;
    padding:18px;
    border-radius:10px;
    font-size:16px;
    transition:.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    outline:none;
    border-color:#d4af37;
}

/* Calendar icon */
.contact-form input[type="date"]::-webkit-calendar-picker-indicator{

    filter:invert(1);
    cursor:pointer;
    opacity:1;

}

.contact-form textarea{

    resize:vertical;
    min-height:180px;

}

.contact-form button{

    width:220px;
    padding:16px;
    background:#d4af37;
    color:#111;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;

}

.contact-form button:hover{

    background:#f0c94d;

}

@media(max-width:900px){

    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-form button{
        width:100%;
    }

}
/* FOOTER */

.footer{
    background:#000;
    width:100%;
    padding:70px 8%;
}

.footer-container{
    width:100%;
    max-width:1400px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.8fr;
    gap:50px;
}

.footer-about img{
    width:80px;
    margin-bottom:20px;
}

.footer-about h2{
    margin-bottom:20px;
}

.footer-about p{
    color:#bdbdbd;
    line-height:1.8;
}

.footer-links ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin:15px 0;
}

.footer-links a{
    color:#ddd;
    text-decoration:none;
}

.footer-links a:hover{
    color:#d4af37;
}

.footer-contact p{
    color:#ddd;
    margin:15px 0;
}

.copyright{
    width:100%;
    text-align:center;
    border-top:1px solid #222;
    margin-top:60px;
    padding-top:25px;
    color:#888;
}

@media(max-width:900px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.footer-about img{
margin:auto;
display:block;
margin-bottom:20px;
}

}
/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 768px){

    .navbar{
        padding:15px 20px;
        flex-direction:column;
        gap:15px;
    }

    .navbar ul{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2.8rem;
    }

    .hero p{
        font-size:1rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .container{
        flex-direction:column;
    }

    .services-grid,
    .gallery-grid,
    .team-grid,
    .testimonial-grid,
    .stats-container{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:260px;
    }

    .about-content h2{
        font-size:2rem;
    }

    .stat-box h2{
        font-size:3rem;
    }

}
.terms-checkbox{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:20px 0;
    color:#ddd;
    line-height:1.6;
}

.terms-checkbox input{
    width:18px;
    height:18px;
    margin-top:3px;
    accent-color:#d4af37;
    cursor:pointer;
}

.terms-checkbox label{
    cursor:pointer;
}

.terms-checkbox a{
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
}

.terms-checkbox a:hover{
    text-decoration:underline;
}
.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:18px 20px;
    border:1px solid rgba(23, 22, 22, 0.926);
    border-radius:10px;
    background:#1b1b1b;
    color:#fff;
    font-size:16px;
    outline:none;
    transition:.3s;
    box-sizing:border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:#d4af37;
}

.contact-form textarea{
    min-height:180px;
    resize:vertical;
}

.contact-form button{
    width:220px;
    padding:16px;
    border:none;
    border-radius:10px;
    background:#d4af37;
    color:#111;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
    align-self:center;
}

.contact-form button:hover{
    background:#f0c94d;
}
.form-label{
    display:block;
    color:#d4af37;
    font-size:15px;
    font-weight:600;
    margin-bottom:8px;
}

.terms-checkbox{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ddd;
    font-size:15px;
}

.terms-checkbox input{
    width:18px;
    height:18px;
    accent-color:#d4af37;
}

.terms-checkbox a{
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
}

.terms-checkbox a:hover{
    text-decoration:underline;
}
/* ===============================
SUCCESS POPUP
=============================== */

.success-popup{

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.success-popup.show{

    opacity:1;
    visibility:visible;

}

.success-box{

    width:90%;
    max-width:520px;

    background:#111;
    border:2px solid #d4af37;
    border-radius:18px;

    padding:45px;

    text-align:center;

}

.success-icon{

    width:80px;
    height:80px;

    margin:auto;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    font-size:40px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;

}

.success-box h2{

    color:#d4af37;
    margin-bottom:20px;

}

.success-box p{

    color:#ddd;
    line-height:1.8;

}

.success-box button{

    margin-top:30px;

    background:#d4af37;
    color:#111;

    border:none;

    padding:15px 40px;

    border-radius:8px;

    cursor:pointer;

    font-weight:700;

}