* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
} 

body {
    font-family: Arial, sans-serif;
    background: #f8fafc;
    color: #1e293b
}

.hero {
    height: 42vh;
    background: #0f172a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35)
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px
}

.container {
    max-width: 1150px;
    margin: auto;
    padding: 60px 20px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px
}

.info,
.form-box {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08)
}

.info p {
    margin: 18px 0;
    line-height: 1.7
}

.info i {
    color: #d97706;
    margin-right: 8px
}

.map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 10px
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

input,
textarea {
    padding: 14px;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    font-size: 15px
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #d97706
}

button {
    background: #d97706;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer
}

button:hover {
    background: #b55f04
}

@media(max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

.topbar {
    background: #0f172a;
    color: #d1d5db;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
}

.topbar a,
.topbar span {
    color: #d1d5db;
    text-decoration: none;
    margin-right: 18px;
}

.topbar i {
    color: #f59e0b;
}

.topbar .trust {
    color: #fbbf24;
    font-weight: 700;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background:#f8fafc;
    color:#1f2937;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   TOPBAR
=========================== */

.topbar{

    background:#0f172a;
    color:#fff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;

    padding:10px 6%;

    font-size:14px;

}

.top-left{

    display:flex;
    gap:25px;
    flex-wrap:wrap;

}

.top-left a,
.top-left span{

    color:#e5e7eb;
    transition:.3s;

}

.top-left a:hover{

    color:#f59e0b;

}

.top-left i{

    color:#f59e0b;
    margin-right:6px;

}

.trust{

    color:#fbbf24;
    font-weight:600;

}

.trust i{

    margin-right:6px;

}

/* ===========================
   NAVBAR
=========================== */

nav{

    background:#fff;

    position:sticky;

    top:0;

    z-index:1000;

    box-shadow:0 3px 18px rgba(0,0,0,.08);

}

.nav-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo img{

    width:70px;

}

.logo-text h2{

    font-size:26px;

    color:#1e293b;

    line-height:1;

    font-weight:900;

}

.logo-text span{

    color:#d97706;

    letter-spacing:2px;

    font-size:13px;

    font-weight:700;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

}

.nav-links a{

    color:#1f2937;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover,
.nav-links .active{

    color:#d97706;

}

.quote-btn{

    background:#d97706;

    color:#fff;

    padding:13px 24px;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

}

.quote-btn:hover{

    background:#b45309;

    transform:translateY(-2px);

}

@media(max-width:768px) {

    .links {
        display: none;
    }

    .topbar {
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .navwrap {
        padding: 14px 0;
    }

}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#020617;
    color:#cbd5e1;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:50px;
    padding-bottom:60px;
}

.footer-grid h3{
    color:#ffffff;
    font-size:24px;
    margin-bottom:20px;
    position:relative;
}

.footer-grid h3::after{
    content:"";
    width:50px;
    height:3px;
    background:#d97706;
    display:block;
    margin-top:10px;
    border-radius:10px;
}

.footer-grid a{
    display:block;
    color:#cbd5e1;
    margin-bottom:14px;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-grid a:hover{
    color:#f59e0b;
    transform:translateX(6px);
}

.footer-grid p{
    margin-bottom:15px;
    line-height:1.8;
}

.footer-grid i{
    color:#f59e0b;
    margin-right:10px;
    width:18px;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    padding:22px;
    text-align:center;
    font-size:14px;
    color:#94a3b8;
}

/* Mobile */

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.footer-grid h3::after{
    margin:10px auto 0;
}

.footer-grid a:hover{
    transform:none;
}

}