.noc-appointment-section {
    padding: 90px 20px;
    background: #f6f9f8;
}

.noc-appointment-container {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.noc-appointment-label {
    display: inline-flex;
    margin-bottom: 15px;
    padding: 8px 17px;
    border-radius: 30px;
    background: #e7f8f1;
    color: #11875d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.noc-appointment-info h2 {
    margin: 0 0 20px;
    color: #1f2937;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 750;
    line-height: 1.15;
}

.noc-appointment-info > p {
    margin: 0 0 28px;
    color: #667085;
    font-size: 17px;
    line-height: 1.8;
}

.noc-appointment-info ul {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.noc-appointment-info li {
    position: relative;
    padding-left: 32px;
    color: #394150;
    font-size: 16px;
    line-height: 1.5;
}

.noc-appointment-info li::before {
    position: absolute;
    top: 1px;
    left: 0;
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #11875d;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.noc-appointment-form-wrapper {
    padding: 38px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(31, 41, 55, 0.1);
}

.noc-appointment-form {
    display: grid;
    gap: 21px;
}

.noc-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.noc-form-group {
    display: grid;
    gap: 8px;
}

.noc-form-group label {
    color: #28303d;
    font-size: 14px;
    font-weight: 650;
}

.noc-form-group label span {
    color: #e11d48;
}

.noc-form-group input,
.noc-form-group select,
.noc-form-group textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid #dce1e7;
    border-radius: 10px;
    outline: none;
    background: #ffffff;
    color: #202733;
    font: inherit;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.noc-form-group textarea {
    min-height: 125px;
    resize: vertical;
}

.noc-form-group input:focus,
.noc-form-group select:focus,
.noc-form-group textarea:focus {
    border-color: #11875d;
    box-shadow: 0 0 0 4px rgba(17, 135, 93, 0.12);
}

.noc-appointment-terms {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #667085;
    font-size: 13px;
    line-height: 1.55;
    cursor: pointer;
}

.noc-appointment-terms input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: #11875d;
}

.noc-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 56px;
    padding: 14px 20px;
    border: 0;
    border-radius: 11px;
    background: #25d366;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.noc-whatsapp-button:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
}

.noc-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 13px;
}

.noc-form-message {
    display: none;
    margin: 0;
    font-size: 14px;
    text-align: center;
}

.noc-form-message-error {
    display: block;
    color: #dc2626;
}

@media (max-width: 900px) {
    .noc-appointment-section {
        padding: 65px 20px;
    }

    .noc-appointment-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 650px) {
    .noc-appointment-section {
        padding: 50px 15px;
    }

    .noc-appointment-form-wrapper {
        padding: 25px 19px;
        border-radius: 16px;
    }

    .noc-form-row {
        grid-template-columns: 1fr;
    }
}