﻿/* =========================
   CONTACT PAGE
========================= */

.contact-info-section{
    padding:100px 0 50px;
    background:#f8fafc;
}

.contact-card{
    background:#fff;
    padding:40px 25px;
    text-align:center;
    border-radius:24px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.06);

    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card i{
    font-size:48px;
    color:#4FD1C5;
    margin-bottom:20px;
}

.contact-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.contact-card p{
    color:#64748b;
}

/* FORM */

.contact-section{
    padding:100px 0;
    background:#fff;
}

.contact-form-box h2{
    font-size:48px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.contact-form-box p{
    color:#64748b;
    margin-bottom:25px;
}

.form-control{
    height:55px;
    border-radius:12px;
    margin-bottom:15px;
    border:1px solid #e2e8f0;
}

textarea.form-control{
    height:auto;
}

.contact-btn{
    border:none;
    height:55px;
    padding:0 35px;

    background:
    linear-gradient(
    135deg,
    #6C63FF,
    #4FD1C5
    );

    color:#fff;
    border-radius:12px;
    font-weight:600;
}

.contact-image img{
    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

/* MAP */

.map-section iframe{
    width:100%;
    height:500px;
    border:none;
}

/* BUSINESS HOURS */

.business-hours{
    padding:100px 0;
    background:
    linear-gradient(
    135deg,
    #071132,
    #0f172a
    );
}

.hours-box{
    max-width:700px;
    margin:auto;
    text-align:center;
}

.hours-box h2{
    color:#fff;
    font-size:42px;
    margin-bottom:30px;
}

.hours-box ul{
    list-style:none;
    padding:0;
}

.hours-box li{
    color:#cbd5e1;
    font-size:18px;
    padding:15px 0;
    border-bottom:
    1px solid rgba(255,255,255,.1);

    display:flex;
    justify-content:space-between;
}

.hours-box span{
    color:#4FD1C5;
    font-weight:600;
}