.contact-section {
    /*background: linear-gradient(135deg, #ff5ca6, #ff758c);*/
    background: linear-gradient(135deg, #CA0808, #D81B60, #FF4081);
    position: relative;
    z-index: 1;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0,
            rgba(255, 255, 255, 0.05) 80px,
            transparent 80px,
            transparent 160px);
    z-index: -1;
}

.section-header {
    padding: 80px 0 40px 0;
    text-align: center;
    color: white;
}

.section-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

.section-header p {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-box {
    background: linear-gradient(to right, #c80074, #ff5ca6);
    Background: linear-gradient(135deg, #E53935, #CA0808, #8B0000);
    padding: 30px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-box h4 {
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-item {
    background: white;
    color: #c80074;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-item i {
    margin-right: 10px;
    color: #c80074;
}

.form-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    color: #c80074;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-box label {
    font-weight: 500;
}

.form-control {
    border: none;
    border-bottom: 2px solid #ff5ca6;
    border-radius: 0;
    box-shadow: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ff5ca6;
}

.btn-send {
    width: 100%;
    background: linear-gradient(to right, #ff5ca6, #c80074);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: bold;
}