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

.cs-contact-info{
  padding:80px 0;
    display:flex;
    gap:20px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.cs-contact-card{
    flex:1;
    min-width:220px;

    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;

    padding:28px 24px;

    text-align:center;

    transition:.4s ease;

    position:relative;
    overflow:hidden;
}

.cs-contact-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;

    width:100%;
    height:4px;

    background:var(--primary);

    transform:scaleX(0);
    transition:.4s ease;
}

.cs-contact-card:hover::before{
    transform:scaleX(1);
}

.cs-contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.cs-contact-card i{
    font-size:24px;
    color:var(--primary);
    margin-bottom:14px;
}

.cs-contact-card h4{
    margin-bottom:10px;
    color:var(--dark);
}

.cs-contact-card p{
    color:var(--gray);
    line-height:1.7;
}

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

.cs-contact-form-wrap{
    max-width:1000px;
    margin:auto auto 80px;

    background:#fff;
  border-radius:30px;

    padding:50px;

    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.cs-form-header{
    text-align:center;
    margin-bottom:35px;
}

.cs-form-header span{
    color:var(--primary);
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
}

.cs-form-header h2{
    font-size:clamp(30px,4vw,48px);
    margin:15px 0;
    color:var(--dark);
}

.cs-form-header p{
    max-width:650px;
    margin:auto;
    color:var(--gray);
    line-height:1.8;
}

/* ======================================
FORM ROW
====================================== */

.cs-form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.cs-form-group{
    flex:1;
}

.cs-form-group input,
.cs-form-group select,
.cs-form-group textarea{
    width:100%;

    padding:16px 18px;

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

    border-radius:12px;

    font-family:var(--body-font);

    outline:none;

    transition:.3s ease;
}

.cs-form-group textarea{
    height:180px;
    resize:none;
}

/* Focus Animation */

.cs-form-group input:focus,
.cs-form-group select:focus,
.cs-form-group textarea:focus{

    border-color:var(--primary);

    box-shadow:
    0 0 0 4px rgba(178,58,50,.08);

}

/* ======================================
BUTTON
====================================== */

.cs-contact-btn{

    background:var(--primary);
    color:#fff;

    border:none;

    padding:16px 35px;
  margin-top:60px;
    border-radius:50px;

    cursor:pointer;

    transition:.3s ease;
}

.cs-contact-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 30px rgba(178,58,50,.25);

}

/* ======================================
LOCATIONS
====================================== */

.cs-location-grid{
    display:flex;
    gap:25px;
    margin-top:40px;
}

.cs-location-card{
    flex:1;

    border-radius:24px;
    overflow:hidden;

    background:#fff;

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

    transition:.4s ease;
}

.cs-location-card:hover{
    transform:translateY(-8px);
}

.cs-location-image{
    overflow:hidden;
}

.cs-location-image img{
    width:100%;
    height:320px;
    object-fit:cover;

    transition:.6s ease;
}

.cs-location-card:hover img{
    transform:scale(1.08);
}

.cs-location-content{
    padding:25px;
}

.cs-location-content h3{
    margin-bottom:12px;
}

.cs-location-content p{
    color:var(--gray);
    line-height:1.8;
}

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

@media(max-width:991px){

    .cs-form-row{
        flex-direction:column;
        gap:15px;
    }

    .cs-location-grid{
        flex-direction:column;
    }

    .cs-contact-form-wrap{
        padding:35px;
    }

}

@media(max-width:767px){

    .cs-contact-info{
        gap:15px;
    }

    .cs-contact-card{
        min-width:100%;
    }

    .cs-contact-form-wrap{
        padding:25px;
        border-radius:20px;
    }

    .cs-form-header h2{
        font-size:30px;
    }

    .cs-location-image img{
        height:250px;
    }

}