*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0a0a0a;
    color:#fff;
    font-family:'Poppins',sans-serif;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#000;
}

.container{
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
}

.logo-section img{
    height:90px;
}

.menu{
    display:flex;
    gap:25px;
}

.menu a{
    color:#d4af37;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}
.menu a:hover{
    color:#fff;
    text-shadow:0 0 8px #d4af37;
    transition:.3s;
}
.header-actions{
    display:flex;
    gap:10px;
}

.btn-small{
    padding:8px 16px;
    border:1px solid #d4af37;
    border-radius:30px;
    color:#d4af37;
    text-decoration:none;
    font-size:12px;
    font-weight:600;
}
.btn-small:hover{
    background:#d4af37;
    color:#000 !important;
    border-color:#d4af37;
}
.header-actions a:first-child{
    background:#d4af37;
    color:#000 !important;
}

.header-actions a:first-child:hover{
    background:#f0c44d;
}
/* HERO */

.hero{
    background:linear-gradient(
        135deg,
        #050505,
        #111111,
        #221706
    );
    padding-top:120px;
    padding-bottom:30px;
    min-height:auto;
}

.hero-wrapper{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    padding:0 30px;
}

.hero-content{
    flex:1;
}

.hero-content h1{
    font-family:'Cinzel',serif;
    font-size:36px;
    line-height:1.1;
    color:#d4af37;
    margin-bottom:25px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#f5f5f5;
}

.hero-logo{
    flex:0 0 350px;
    text-align:center;
    padding-top:20px;
}

.hero-logo img{
    max-width:280px;
    width:100%;
    height:auto;
}

.hero-buttons{
    margin-top:35px;
}

.btn-outline{
    padding:14px 28px;
    border:2px solid #d4af37;
    border-radius:40px;
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
}

.mobile-trust-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 20px;
    color:#fff;
    font-size:14px;
    background:#000;
}

/* MOBILE */

@media(max-width:768px){

    .container{
        flex-direction:column;
        gap:15px;
    }

    .menu{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px 16px;
}

.menu a{
    font-size:11px;
    font-weight:600;
}

.header-actions{
    gap:8px;
}

.btn-small{
    padding:6px 12px;
    font-size:11px;
}

    .header-actions{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero{
        padding-top:260px;
    }

    .hero-wrapper{
    flex-direction:column;
    text-align:center;
    gap:30px;
}
.hero-content{
    display:block !important;
}
    .hero-content{
        text-align:center;
    }

.hero-content h1{
        font-size:24px;
        line-height:1.2;
        text-align:center;
        max-width:320px;
        margin:auto;
}
    .hero-content p{
        font-size:16px;
    }

 .hero-logo{
    display:none;
}

    .hero-buttons{
        text-align:center;
    }
}
.btn-small{
    padding:8px 14px;
    border:1px solid #d4af37;
    border-radius:30px;
    color:#d4af37 !important;
    text-decoration:none;
    font-size:11px;
    font-weight:600;
    transition:.3s;
}

.btn-small:hover{
    background:#d4af37;
    color:#000 !important;
}
.header-actions .btn-small{
    color:#d4af37 !important;
    border:1px solid #d4af37 !important;
    background:transparent !important;
}

.header-actions a:first-child{
    background:#d4af37 !important;
    color:#000 !important;
    border:1px solid #d4af37 !important;
}

.header-actions a:first-child:hover{
    background:#c49d20 !important;
    color:#000 !important;
}
.menu a{
    pointer-events:auto !important;
}


.mobile-trust-bar{
    display:flex;
    justify-content:space-between;
    padding:10px 20px;
    color:#fff;
    font-size:13px;
     width:100%;
}

@media(max-width:768px){
    .hero-logo{
        display:none !important;
    }
}

.about-section{
    background:#0a0a0a;
    padding:80px 20px;
}

.about-container{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.about-container h2{
    font-family:'Cinzel',serif;
    color:#d4af37;
    font-size:40px;
    margin-bottom:30px;
}

.about-container p{
    color:#f5f5f5;
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
}

@media(max-width:768px){

    .about-section{
        padding:60px 20px;
    }

    .about-container h2{
        font-size:30px;
    }

    .about-container p{
        font-size:16px;
        line-height:1.8;
    }

}

/* SERVICES */

.services-section{
    background:#050505;
    padding:80px 20px;
}

.services-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.services-container h2{
    font-family:'Cinzel',serif;
    color:#d4af37;
    font-size:40px;
    margin-bottom:50px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#111;
    border:1px solid #d4af37;
    border-radius:15px;
    padding:35px 25px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 0 20px rgba(212,175,55,.25);
}

.service-card h3{
    color:#d4af37;
    margin-bottom:15px;
    font-size:22px;
}

.service-card p{
    color:#f5f5f5;
    line-height:1.8;
    font-size:15px;
}

@media(max-width:768px){

    .services-section{
        padding:60px 20px;
    }

    .services-container h2{
        font-size:30px;
        margin-bottom:35px;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

}

.section-divider{
    width:220px;
    height:1px;
    margin:15px auto;
    background:linear-gradient(
        to right,
        transparent,
        #d4af37,
        transparent
    );
}
.services-button{
    text-align:center;
    margin-top:70px;
}

/* CONTACT */

.contact-section{
    background:#0a0a0a;
    padding:80px 20px;
}

.contact-container{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.contact-container h2{
    font-family:'Cinzel',serif;
    color:#d4af37;
    font-size:40px;
    margin-bottom:40px;
}

.contact-box{
    background:#111;
    border:1px solid #d4af37;
    border-radius:15px;
    padding:40px;
}

.contact-box p{
    color:#f5f5f5;
    font-size:18px;
    line-height:2;
}

/* FOOTER */

.footer{
    background:#000;
    border-top:1px solid #d4af37;
    padding:25px 15px;
}

.footer-content{
    text-align:center;
}

.footer-content p{
    color:#ccc;
    font-size:14px;
    margin:8px 0;
}

/* MOBILE */

@media(max-width:768px){

    .contact-container h2{
        font-size:30px;
    }

    .contact-box{
        padding:25px;
    }

    .contact-box p{
        font-size:15px;
    }

}

/* SERVICES PAGE */

.services-hero{
    padding-top:220px;
    padding-bottom:100px;
    text-align:center;
    background:linear-gradient(
        135deg,
        #050505,
        #111111,
        #221706
    );
}

.services-hero-content{
    max-width:1000px;
    margin:auto;
    padding:0 20px;
}

.services-hero h1{
    font-family:'Cinzel',serif;
    font-size:52px;
    color:#d4af37;
    margin-bottom:20px;
}

.services-hero p{
    color:#f5f5f5;
    font-size:22px;
    line-height:1.8;
}

@media(max-width:768px){

    .services-hero{
        padding-top:280px;
        padding-bottom:70px;
    }

    .services-hero h1{
        font-size:34px;
    }

    .services-hero p{
        font-size:18px;
    }

}

.services-intro{
    padding:80px 20px;
    background:#0a0a0a;
}

.services-container{
    max-width:850px;
    margin:auto;
}

.services-intro p{
    text-align:center;
    color:#f5f5f5;
    font-size:20px;
    line-height:2;
}

@media(max-width:768px){

    .services-intro{
        padding:60px 20px;
    }

    .services-intro p{
        font-size:16px;
        line-height:1.9;
    }

}

.service-block{
    padding:0 20px;
}

.service-block h2{
    font-family:'Cinzel',serif;
    color:#d4af37;
    font-size:22px;
    text-align:center;
    margin-bottom:35px;
}

.service-block p{
    color:#f5f5f5;
    font-size:18px;
    line-height:2;
    margin-bottom:20px;
    text-align:left;
}

.highlight-text{
    text-align:center !important;
    color:#d4af37 !important;
    font-weight:600;
    font-size:20px !important;
    margin-top:30px;
}

@media(max-width:768px){

    .service-block{
        padding:30px 20px;
    }

    .service-block h2{
        font-size:30px;
    }

    .service-block p{
        font-size:16px;
        line-height:1.9;
        text-align:left;
    }

    .highlight-text{
        font-size:17px !important;
    }

}

.cta-section{
    padding:100px 20px;
    text-align:center;
}

.cta-content h2{
    font-family:'Cinzel',serif;
    color:#d4af37;
    font-size:42px;
    margin-bottom:25px;
}

.cta-content p{
    color:#f5f5f5;
    font-size:20px;
    margin-bottom:40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer{
    background:#000;
    border-top:1px solid #d4af37;
    padding:50px 20px;
}

.footer-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.footer-content h3{
    color:#d4af37;
    margin-bottom:20px;
    font-family:'Cinzel',serif;
}

.footer-content p{
    color:#ccc;
    line-height:1.9;
    margin-bottom:12px;
}

@media(max-width:768px){

    .cta-content h2{
        font-size:30px;
    }

    .cta-content p{
        font-size:16px;
    }

}

.service-block h2{
    font-family:'Cinzel',serif;
    color:#d4af37;
    font-size:42px;
    text-align:center;
    margin-top:0;
    margin-bottom:35px;
}


@media(max-width:768px){

    .mobile-trust-bar{
        overflow:hidden;
    }

    .mobile-trust-bar span{
        font-size:11px;
    }

}
.rate-table{
    width:100%;
    max-width:700px;
    margin:30px auto;
    border-collapse:collapse;
}

.rate-table th{
    background:#111;
    color:#d4af37;
    border:2px solid #d4af37;
    padding:15px;
    font-size:18px;
    text-align:center;
}

.rate-table td{
    border:1px solid #d4af37;
    padding:15px;
    color:#fff;
    font-size:18px;
}

.rate-table tr:hover{
    background:rgba(212,175,55,0.08);
}

.rate-table td:last-child{
    text-align:right;
    font-weight:600;
    color:#d4af37;
}

@media(max-width:768px){

    .rate-table th,
    .rate-table td{
        padding:10px;
        font-size:14px;
    }

}

.service-content{
    max-width:900px;
    margin:60px auto;
    padding:0 20px;
}

.service-content h2{
    text-align:center;
    color:#d4af37;
    font-size:48px;
    margin-bottom:30px;
    font-family:Georgia,serif;
}

.service-content p{
    color:#ffffff;
    font-size:22px;
    line-height:1.9;
    text-align:center;
    margin-bottom:25px;
}

.contact-card{
    background:#fff;
    border:1px solid #d4af37;
    border-radius:12px;
    padding:25px;
    margin-top:40px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.contact-card h2{
    text-align:center;
    color:#d4af37;
    margin-bottom:20px;
}

.bank-details-table{
    width:100%;
    border-collapse:collapse;
    margin-top:15px;
}

.bank-details-table td{
    border:1px solid #d4af37;
    padding:12px;
}

.bank-details-table td:first-child{
    width:35%;
    font-weight:600;
}

.bank-note{
    margin-top:20px;
    background:#fff8e1;
    border-left:4px solid #d4af37;
    padding:15px;
    border-radius:6px;
}

@media(max-width:768px){

    .bank-details-table td{
        padding:10px;
        font-size:14px;
    }

}