:root{
    --primary:#0b2344;
    --secondary:#f5b52e;
}

section-title{
    color:var(--primary);
    font-weight:700;
}

.hero{
    background:linear-gradient(rgba(11,35,68,.8),rgba(11,35,68,.8)),
    url('../images/contact-banner.webp');
    background-size:cover;
    background-position:center;
    padding:200px 0 100px;
    color:#fff;
}

.hero h1{
    font-size:52px;
    font-weight:700;
    font-family: "Playfair", serif;
}

.contact-card{
    background:#fff;
    border:none;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-5px);
}

.contact-icon{
    width:60px;
    height:60px;
    background:var(--secondary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:24px;
    margin:auto;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.form-control{
    padding:12px;
}

.btn-theme{
    background:var(--secondary);
    color:#fff;
    border:none;
    padding:12px 30px;
}

.btn-theme:hover{
    background:#e7a317;
    color:#fff;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
    display: block;
}