/* ===================================
   CONTACTS PAGE
=================================== */





/* ===================================
   CONTACTS HERO
=================================== */


.contacts-hero {

    padding:
    100px 0;

    background:
    linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    color:
    white;

}



.contacts-hero h1 {

    font-size:
    50px;

    font-weight:
    800;

    margin-bottom:
    20px;

}



.contacts-hero p {

    font-size:
    18px;

    color:
    rgba(255,255,255,.85);

    max-width:
    600px;

}









/* ===================================
   CONTACT CARDS
=================================== */


.contacts-main {

    padding:
    80px 0;

}



.contacts-grid {

    display:
    grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:
    25px;

}



.contact-card {

    background:
    white;

    padding:
    35px 25px;

    border-radius:
    14px;

    text-align:
    center;

    border:
    1px solid var(--border);

    transition:
    .3s ease;

}



.contact-card:hover {

    transform:
    translateY(-8px);

    box-shadow:
    var(--shadow);

}



.contact-icon {

    width:
    65px;

    height:
    65px;

    margin:
    0 auto 20px;

    border-radius:
    12px;

    background:
    rgba(11,92,173,.1);

    display:
    flex;

    align-items:
    center;

    justify-content:
    center;

    font-size:
    30px;

}

.contact-icon .lucide {
    width: 30px;
    height: 30px;
}



.contact-card h3 {

    font-size:
    20px;

    margin-bottom:
    15px;

}



.contact-card p,
.contact-card a {

    color:
    var(--text-light);

}



.contact-card a:hover {

    color:
    var(--primary);

}









/* ===================================
   CONTACT FORM
=================================== */


.contacts-form {

    background:
    var(--background);

    padding:
    80px 0;

}





.contact-form-box {

    background:
    white;

    border-radius:
    18px;

    padding:
    55px;

    display:
    grid;

    grid-template-columns:
    1fr 1fr;

    gap:
    60px;

}



.contact-form-box h2 {

    font-size:
    36px;

    margin-bottom:
    20px;

}



.contact-form-box p {

    color:
    var(--text-light);

}





.contact-form-box form {

    display:
    flex;

    flex-direction:
    column;

    gap:
    15px;

}



.contact-form-box input,
.contact-form-box textarea {

    width:
    100%;

    padding:
    15px 18px;

    border:
    1px solid var(--border);

    border-radius:
    8px;

    font-family:
    inherit;

}



.contact-form-box textarea {

    height:
    130px;

    resize:
    none;

}



.contact-form-box input:focus,
.contact-form-box textarea:focus {

    outline:
    none;

    border-color:
    var(--primary);

}









/* ===================================
   MAP
=================================== */


.map {

    padding:
    0 0 80px;

}



.map-frame {
    overflow: hidden;
    position: relative;
    height: 400px;
    border: 1px solid #D7E1EB;
    border-radius: 16px;
    background: #E9EEF5;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-frame a {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(11, 41, 69, .22);
}

.map-frame a:hover {
    background: var(--primary-dark);
    color: #fff;
}








/* ===================================
   DETAILS
=================================== */


.details {

    padding:
    0 0 80px;

}



.details h2 {

    font-size:
    36px;

    margin-bottom:
    30px;

}



.details-box {

    background:
    #F5F7FA;

    padding:
    35px;

    border-radius:
    12px;

}



.details-box p {

    margin-bottom:
    12px;

    color:
    var(--text-light);

}









/* ===================================
   RESPONSIVE
=================================== */



@media(max-width:1100px){


.contacts-grid {

    grid-template-columns:
    repeat(2,1fr);

}


}





@media(max-width:800px){


.contacts-hero h1 {

    font-size:
    36px;

}



.contact-form-box {

    grid-template-columns:
    1fr;

    padding:
    35px;

}



}





@media(max-width:600px){



.contacts-grid {

    grid-template-columns:
    1fr;

}



.contacts-main {

    padding:
    50px 0;

}



.contact-form-box {

    padding:
    25px;

}



.contact-form-box h2 {

    font-size:
    28px;

}



.map-frame {

    height:
    250px;

}



.details h2 {

    font-size:
    28px;

}



}
