.contactInfo{
    background:#f8fafc;
}

.contactInfo .titleBox{
    max-width:800px;
    margin:0 auto 60px;
}

.contactInfo .titleBox p{
    margin-top:15px;
    color:#6b7280;
}

.infoGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.infoCard{
    background:#fff;
    border-radius:24px;
    padding:50px 30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;
}

.infoCard:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.infoCard .icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111827;
}

.infoCard .icon svg{
    width:44px;
    height:44px;
    fill:none;
    stroke:#c9a45c;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.infoCard h3{
    font-size:24px;
    color:#111827;
    margin-bottom:12px;
}

.infoCard p{
    color:#6b7280;
    font-size:16px;
    line-height:1.8;
}

@media(max-width:991px){

    .infoGrid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .infoCard{
        padding:40px 25px;
    }

}

.infoGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.infoCard{
    background:#f8f8f8;
    padding:40px;
    text-align:center;
    border-radius:25px;
}

.infoCard .icon{
    font-size:42px;
    margin-bottom:20px;
}

.bookingForm{
    background:#f5f3ef;
}

.formWrap{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:60px;
}

.noticeBox{
    background:#111827;
    color:#fff;
    padding:35px;
    border-radius:25px;
    margin-top:30px;
}

.noticeBox h3{
    margin-top:0;
}

.noticeBox ul{
    padding-left:20px;
}

.formRight{
    background:#fff;
    padding:45px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.formGrid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.formItem{
    margin-bottom:20px;
}

.formItem label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.formItem input,
.formItem select,
.formItem textarea{
    width:100%;
    height:55px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 15px;
    font-size:15px;
}

.formItem textarea{
    height:auto;
    padding:15px;
    resize:none;
}

.submitBtn{
    width:100%;
    height:60px;
    border:none;
    border-radius:50px;
    background:#c9a45c;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.submitBtn:hover{
    background:#b48d42;
}

.contactCta{
    padding:120px 0;
    background:
    linear-gradient(rgba(7,11,18,.85),rgba(7,11,18,.85)),
    url(../images/cta.jpg) center/cover;
}

@media(max-width:768px){

    .infoGrid,
    .formWrap,
    .formGrid{
        grid-template-columns:1fr;
    }

    .formRight{
        padding:25px;
    }

}