/* ========================================
   CONTACT PAGE
======================================== */

.contact-info-section{
    padding:80px 0;
    background:#f8fafc;
}

/* ========================================
   CONTACT INFO CARDS
======================================== */

.contact-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
    transition:all .3s ease;
}

.contact-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.contact-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.contact-card p{
    margin:0;
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}


/* ========================================
   CONTACT FORM SECTION
======================================== */

.contact-form-section{
    padding:80px 0;
    background:#fff;
}

/* Form Heading */

.contact-form-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.contact-form-heading span{
    display:inline-block;
    color:#2d6cff;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.contact-form-heading h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.contact-form-heading p{
    color:#64748b;
    line-height:1.8;
    font-size:16px;
    margin:0;
}


/* ========================================
   FORM BOX
======================================== */

.odyo-contact-form{
    background:#fff;
    max-width:900px;
    margin:0 auto;
    padding:50px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.odyo-contact-form input,
.odyo-contact-form textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #dbe2ea;
    border-radius:12px;
    margin-bottom:20px;
    font-size:16px;
    transition:.3s;
    outline:none;
}

.odyo-contact-form input:focus,
.odyo-contact-form textarea:focus{
    border-color:#2d6cff;
    box-shadow:0 0 0 4px rgba(45,108,255,.12);
}

.odyo-contact-form textarea{
    resize:none;
    min-height:180px;
}

.odyo-contact-form button{
    background:#2d6cff;
    color:#fff;
    border:none;
    border-radius:50px;
    padding:16px 40px;
    font-size:16px;
    font-weight:700;
    transition:.3s ease;
}

.odyo-contact-form button:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(45,108,255,.30);
}


/* ========================================
   SUCCESS MESSAGE
======================================== */

.contact-success{
    max-width:900px;
    margin:0 auto 30px;
    background:#e9f9ee;
    border:1px solid #9ad3aa;
    color:#1d6b33;
    padding:18px 20px;
    border-radius:12px;
    font-weight:600;
}


/* ========================================
   GOOGLE MAP
======================================== */

.contact-map-section{
    padding:0 0 80px;
    background:#fff;
}

.contact-map-section iframe{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}


/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:991px){

    .contact-info-section,
    .contact-form-section{
        padding:60px 0;
    }

    .contact-card{
        padding:30px 25px;
    }

    .contact-form-heading{
        margin-bottom:35px;
    }

    .contact-form-heading h2{
        font-size:36px;
    }

    .odyo-contact-form{
        padding:35px 25px;
    }

    .contact-map-section{
        padding-bottom:60px;
    }
}

@media(max-width:576px){

    .contact-card h4{
        font-size:22px;
    }

    .contact-form-heading h2{
        font-size:30px;
    }

    .odyo-contact-form{
        padding:25px 20px;
    }

    .odyo-contact-form button{
        width:100%;
    }
}