﻿/*=============================
CONTACT PAGE
==============================*/

.contact-card{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fffef9;

    border-radius:14px;

    padding:25px;

    margin-bottom:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 35px rgba(0,0,0,.15);

}

.contact-icon{

    font-size:34px;

    color:#8b0000;

    margin-top:5px;

    min-width:45px;
}

.contact-card h4{

    color:#8b0000;

    margin-bottom:10px;

    font-weight:700;

}

.contact-card p{

    margin-bottom:0;

    line-height:1.8;

    font-size:17px;

}

.contact-card a{

    color:#0d6efd;

    text-decoration:none;

}

.contact-card a:hover{

    text-decoration:underline;

}

.map-card{

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

}

.contact-form-box{

    background:#fffef8;

    padding:40px;

    border-radius:15px;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.contact-form-box h3{

    color:#8b0000;

    font-weight:700;

}

.contact-form-box .form-control{

    border-radius:10px;

    padding:15px;

}

.contact-form-box textarea{

    resize:none;

}

.contact-form-box button{

    border-radius:30px;

    padding:12px 35px;

}