.page-banner {
    background: linear-gradient(135deg, #ab00e8, #3e867b);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}
.page-banner h1 {
    font-size: 40px;
    margin-bottom: 10px;
}
.page-banner p {
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.95;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.contact-info__item {
    background: #faf6fc;
    border-left: 4px solid #ab00e8;
    border-radius: 10px;
    padding: 22px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.contact-info__item h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}
.contact-info__item p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 4px;
}
.contact-info__item a {
    color: #ab00e8;
    font-weight: bold;
    text-decoration: none;
}
.contact-info__item a:hover {
    color: #3e867b;
}
.contact-info__item:nth-child(2) { border-left-color: #3e867b; }
.contact-info__item:nth-child(3) { border-left-color: #d6862b; }

.appointment-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.appointment-form {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 34px;
}
.appointment-form h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 10px;
}
.appointment-form__note {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.form-row {
    margin-bottom: 18px;
}
.form-row--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-row label {
    display: block;
    font-size: 13.5px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}
.form-row label span {
    color: #ab00e8;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14.5px;
    font-family: inherit;
    color: #333;
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #ab00e8;
    box-shadow: 0 0 0 3px rgba(171, 0, 232, 0.12);
}
.form-row textarea {
    resize: vertical;
}
.form-row input:invalid.touched,
.form-row select:invalid.touched {
    border-color: #d33;
}

.whatsapp-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: bold;
    padding: 13px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}
.whatsapp-submit:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
}

.form-feedback {
    margin-top: 14px;
    font-size: 13.5px;
    color: #d33;
    min-height: 18px;
}
.form-feedback.success {
    color: #1ebe5b;
}

.contact-map {
    min-height: 320px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 320px;
}

@media (max-width: 992px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    .appointment-wrap {
        grid-template-columns: 1fr;
    }
    .contact-map {
        min-height: 260px;
    }
}

@media (max-width: 600px) {
    .page-banner {
        padding: 50px 20px;
    }
    .page-banner h1 {
        font-size: 30px;
    }
    .contact-page {
        padding: 40px 16px;
    }
    .appointment-form {
        padding: 24px;
    }
    .form-row--split {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
