.contact-page{

    padding: 180px 0 120px;

    background: #f8f9fa;

}

.contact-header{

    margin-bottom: 80px;

}

.contact-header h1{

    font-size: 64px;
    font-weight: 800;

    color: #1D3557;

    margin: 20px 0;

}

.contact-card,
.info-card,
.faq-card,
.map-card{

    background: #fff;

    border-radius: 35px;

    padding: 45px;

    box-shadow: 0 15px 60px rgba(0,0,0,0.08);

}

.contact-card h2,
.info-card h2,
.faq-card h2{

    font-size: 36px;
    font-weight: 800;

    color: #1D3557;

    margin-bottom: 35px;

}

.form-control-custom{

    width: 100%;
    height: 60px;

    border-radius: 18px;

    border: 1px solid #dee2e6;

    padding: 0 20px;

}

.form-control-textarea{

    width: 100%;
    height: 180px;

    border-radius: 18px;

    border: 1px solid #dee2e6;

    padding: 20px;

    resize: none;

}

.btn-contact{

    margin-top: 30px;

    width: 100%;
    height: 60px;

    border: none;

    border-radius: 60px;

    background:
    linear-gradient(
        135deg,
        #D67BA8,
        #1D3557
    );

    color: #fff;

    font-weight: 700;

}

.info-item,
.faq-item{

    margin-bottom: 30px;

}

.info-item h4,
.faq-item h4{

    color: #1D3557;

    font-weight: 700;

    margin-bottom: 10px;

}

.map-card{

    margin-top: 60px;

}

.map-placeholder{

    height: 450px;

    border-radius: 25px;

    background: #d9d9d9;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    font-weight: 700;

    color: #6c757d;

}

@media(max-width:768px){

    .contact-header h1{

        font-size: 42px;

    }

    .contact-card,
    .info-card,
    .faq-card{

        padding: 35px;

    }

}