:root{
    --primary: #F5A623;      /* Golden Orange */
    --primary-dark: #D97A00;
    --secondary: #1F2937;    /* Dark Charcoal */
    --accent: #4EA5E8;       /* Sky Blue */
    --text-dark: #111827;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
}

.contact-hero{
    position: relative;
    padding: 120px 0;
    background: url('../images/c4.jpg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}
.contact-hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
}
.contact-hero .container{
    position: relative;
    z-index: 2;
}
.contact-kicker{
    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}
.contact-hero h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-info-card,
.contact-form-card,
.map-card{
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 30px;
}
.info-item{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}
.icon-box{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
}
.info-item h5{
    margin-bottom: 4px;
    font-size: 18px;
}
.info-item a,
.info-item p{
    margin: 0;
    color: #555;
    text-decoration: none;
}
.social-links{
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-links a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f2f4f7;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}
.social-links a:hover{
    background: #0d6efd;
    color: #fff;
}
.contact-form-card .form-control,
.contact-form-card .form-select{
    border-radius: 12px;
    padding: 12px 15px;
}

.btn-sub{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 32px;
    background:#D97A00;
    color:black;
    font-size:16px;
    font-weight:600;
    border:none;
    border-radius:50px;
    text-decoration:none;
    transition:all .3s ease;
    box-shadow:0 5px 15px rgba(244,166,42,.3);
}

.btn-primary:hover{
    background:#D88A0F;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(244,166,42,.4);
}