/*================================================== 
                GOOGLE FONT 
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*================================================== 
                RESET 
==================================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    overflow-x:hidden;
    color:#222;
}
a{
    text-decoration:none;
}
ul{
    list-style:none;
}
img{
    max-width:100%;
    display:block;
}

/*================================================== 
                CONTAINER 
==================================================*/
.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/*================================================== 
                PRELOADER 
==================================================*/
#preloader{
    position:fixed;
    inset:0;
    background:#08172f;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}
.loader{
    width:60px;
    height:60px;
    border:5px solid rgba(255,255,255,.15);
    border-top:5px solid #d4af37;
    border-radius:50%;
    animation:spin 1s linear infinite;
}
@keyframes spin{
    100%{ transform:rotate(360deg); }
}

/*================================================== 
                TOP BAR 
==================================================*/
.top-bar{
    background:#08172f;
    color:#fff;
    font-size:14px;
    padding:10px 0;
}
.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.top-left, .top-right{
    display:flex;
    align-items:center;
    gap:18px;
}
.top-left a{
    color:#fff;
    transition:.3s;
}
.top-left a:hover{
    color:#d4af37;
}
.top-left i{
    margin-right:8px;
    color:#d4af37;
}
.top-right a{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s;
}
.top-right a:hover{
    background:#d4af37;
    color:#08172f;
    transform:translateY(-3px);
}

/*================================================== 
                HEADER 
==================================================*/
.header{
    position: relative; 
    width: 100%;
    z-index: 999;
    background: #000f27; 
    border-top:1px solid rgba(212,175,55,.15);
    border-bottom:1px solid rgba(212,175,55,.15);
    box-shadow:0 12px 40px rgba(0,0,0,.15);
}
.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:110px;
}

/*================================================== 
                LOGO 
==================================================*/
.logo img{
    width:190px;
    height:auto;
    object-fit:contain;
    transition:.4s;
}

/*================================================== 
                NAVBAR 
==================================================*/
.navbar ul{
    display:flex;
    align-items:center;
    gap:38px;
}
.navbar ul li{
    position:relative;
}
.navbar ul li a{
    color:#fff;
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
    transition:.35s;
}
.navbar ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:0;
    height:2px;
    background:#d4af37;
    transition:.35s;
}
.navbar ul li a:hover::after,
.navbar ul li a.active::after{
    width:100%;
}
.navbar ul li a:hover,
.navbar ul li a.active{
    color:#d4af37;
}

/*================================================== 
                HEADER RIGHT 
==================================================*/
.header-right{
    display:flex;
    align-items:center;
    gap:18px;
}

/*================================================== 
                SEARCH BUTTON 
==================================================*/
.search-btn{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.35s;
}
.search-btn:hover{
    background:#d4af37;
    color:#08172f;
}

/*================================================== 
                WHATSAPP BUTTON 
==================================================*/
.whatsapp-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#25D366;
    color:#fff;
    font-size:22px;
    transition:.35s;
}
.whatsapp-btn:hover{
    transform:translateY(-5px) scale(1.08);
    box-shadow:0 10px 30px rgba(37,211,102,.45);
}

/*================================================== 
                GET QUOTE BUTTON 
==================================================*/
.quote-btn{
    padding:14px 34px;
    border-radius:50px;
    background:linear-gradient(135deg,#d4af37,#f4d77c);
    color:#08172f;
    font-weight:700;
    transition:.35s;
    box-shadow:0 10px 30px rgba(212,175,55,.35);
}
.quote-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(212,175,55,.45);
}

/*================================================== 
                MOBILE MENU ICON 
==================================================*/
.menu-toggle{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/*================================================== 
                SEARCH POPUP 
==================================================*/
#searchPopup{
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background:rgba(8,23,47,0.9); 
    backdrop-filter:blur(8px);
    z-index:99999; 
    justify-content:center; 
    align-items:center;
    animation:fadeIn 0.3s ease;
}
#searchPopup .search-box{
    background:#fff; 
    padding:40px 30px; 
    border-radius:12px; 
    width:90%; 
    max-width:550px;
    position:relative;
    box-shadow:0 10px 40px rgba(212,175,55,.3);
    border:2px solid #d4af37;
}
#searchPopup .search-box h3{
    text-align:center; 
    margin-bottom:20px; 
    color:#08172f;
    font-size:24px;
}
#searchPopup input{
    width:100%; 
    padding:15px 20px; 
    border:2px solid #d4af37; 
    border-radius:8px; 
    margin-bottom:15px;
    font-size:16px;
    outline:none;
    font-family:'Poppins',sans-serif;
}
#searchPopup button[type="submit"]{
    width:100%; 
    padding:14px; 
    background:linear-gradient(135deg,#d4af37,#f4d77c); 
    border:none; 
    border-radius:8px; 
    cursor:pointer; 
    font-weight:700;
    font-size:16px;
    color:#08172f;
    transition:0.3s;
}
#searchPopup button[type="submit"]:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(212,175,55,.4);
}
#closeSearch{
    position:absolute;
    top:10px;
    right:15px;
    background:none;
    color:#08172f;
    border:none;
    font-size:32px;
    cursor:pointer;
    line-height:1;
}
@keyframes fadeIn{ from{opacity:0} to{opacity:1} }

/*================================================== 
                SCROLL TO TOP 
==================================================*/
.scroll-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#d4af37;
    color:#08172f;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}
.scroll-top.show{
    opacity:1;
    visibility:visible;
}
.scroll-top:hover{
    transform:translateY(-5px);
}

/*================================================== 
                MOBILE RESPONSIVE 
==================================================*/
@media(max-width:992px){
    .navbar{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;
        background:#000f27;
        flex-direction:column;
        padding-top:120px;
        transition:.4s;
        box-shadow:-5px 0 20px rgba(0,0,0,.3);
        z-index:999;
    }
    .navbar.active{ right:0; }
    .navbar ul{ flex-direction:column; gap:25px; padding:0 30px; }
    .menu-toggle{ display:block; }
    .quote-btn{ display:none; }
    .header .container{ height:90px; }
    .logo img{ width:150px; }
}