/* Pink Pearl Summer Inquiry Form Pro - 3 Step Responsive Layout */

.pplt-form-wrap,
.pplt-form-wrap * {
    box-sizing: border-box;
}

.pplt-form-wrap {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    font-family: inherit;
}

.pplt-summer-form {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(22px, 3vw, 34px);
    box-shadow: 0 18px 45px rgba(16, 75, 184, 0.12);
    border: 1px solid rgba(16, 75, 184, 0.12);
    overflow: hidden;
}

.pplt-form-header {
    text-align: center;
    margin-bottom: 22px;
}

.pplt-eyebrow {
    display: inline-block;
    color: #104bb8;
    background: #fcdfe5;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pplt-form-header h2 {
    color: #104bb8;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    margin: 0 0 10px;
}

.pplt-form-header p {
    color: #465166;
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.6;
}

.pplt-whatsapp {
    display: inline-block;
    margin-top: 16px;
    background: #25D366;
    color: #ffffff !important;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
    text-decoration: none;
}

.pplt-progress {
    margin: 22px 0 6px;
}

.pplt-progress-bar {
    height: 8px;
    background: #eef2f8;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 14px;
}

.pplt-progress-bar span {
    display: block;
    height: 100%;
    width: 33.333%;
    background: #104bb8;
    border-radius: 999px;
    transition: width 0.25s ease;
}

.pplt-step-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pplt-step-pill {
    border: 1px solid #d9dee8;
    background: #ffffff;
    color: #104bb8;
    border-radius: 999px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: normal;
}

.pplt-step-pill.is-active {
    background: #104bb8;
    border-color: #104bb8;
    color: #ffffff;
}

.pplt-step {
    display: none;
}

.pplt-step.is-active {
    display: block;
}

.pplt-section {
    border-top: 1px solid rgba(16, 75, 184, 0.12);
    padding-top: 22px;
    margin-top: 22px;
}

.pplt-section-first {
    border-top: 0;
    padding-top: 12px;
    margin-top: 0;
}

.pplt-section h3 {
    color: #104bb8;
    font-size: clamp(21px, 2.5vw, 27px);
    font-weight: 600;
    margin: 0 0 16px;
}

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

.pplt-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pplt-full {
    grid-column: 1 / -1;
}

.pplt-field label,
.pplt-consent {
    color: #1f2937;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.pplt-field label span {
    color: #104bb8;
}

.pplt-field input:not([type="checkbox"]):not([type="radio"]),
.pplt-field select,
.pplt-field textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid #d9dee8;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.35;
    min-height: 48px;
    background: #ffffff;
    color: #1f2937;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pplt-field textarea {
    min-height: 130px;
    resize: vertical;
}

.pplt-field input:focus,
.pplt-field select:focus,
.pplt-field textarea:focus {
    border-color: #104bb8;
    box-shadow: 0 0 0 4px rgba(16, 75, 184, 0.12);
}

.pplt-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(210px, 1fr));
    gap: 12px;
    margin-top: 8px;
    width: 100%;
}

.pplt-check {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #d9dee8;
    border-radius: 14px;
    padding: 13px 14px;
    background: #fbfcff;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    margin: 0 !important;
    overflow: hidden;
}

.pplt-check:hover {
    border-color: #104bb8;
    background: #f6f9ff;
}

.pplt-check input[type="checkbox"],
.pplt-consent input[type="checkbox"] {
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    flex: 0 0 18px !important;
    padding: 0 !important;
    margin: 2px 0 0 0 !important;
    accent-color: #104bb8;
    appearance: auto;
    -webkit-appearance: checkbox;
}

.pplt-check span {
    display: block;
    min-width: 0;
    flex: 1 1 auto;
    font-size: 15px;
    line-height: 1.35;
    color: #2f3747;
    font-weight: 650;
    overflow-wrap: anywhere;
    word-break: normal;
}

.pplt-consent-section {
    background: #f7f9ff;
    border-radius: 18px;
    padding: clamp(18px, 3vw, 24px);
}

.pplt-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 18px !important;
}

.pplt-consent span {
    flex: 1;
    line-height: 1.5;
}

.pplt-submit {
    width: 100%;
    border: none;
    border-radius: 999px;
    background: #104bb8;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    padding: 16px 22px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.pplt-submit:hover {
    transform: translateY(-1px);
    opacity: 0.94;
}

.pplt-note {
    text-align: center;
    margin: 14px 0 0;
    color: #5b6578;
    font-size: 14px;
    line-height: 1.5;
}

.pplt-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
}

.pplt-btn {
    border-radius: 999px;
    padding: 13px 20px;
    border: 1px solid #104bb8;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    min-width: 140px;
    transition: all 0.2s ease;
}

.pplt-back {
    background: #ffffff;
    color: #104bb8;
}

.pplt-next {
    margin-left: auto;
    background: #104bb8;
    color: #ffffff;
}

.pplt-btn:hover {
    transform: translateY(-1px);
}

.pplt-alert {
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.pplt-success {
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
}

.pplt-error {
    background: #fff1f3;
    color: #c01048;
    border: 1px solid #fecdd6;
}

.pplt-field-error,
.pplt-check-error {
    color: #c01048;
    font-size: 13px;
    font-weight: 700;
    margin-top: 7px;
    line-height: 1.4;
}

.pplt-has-error input:not([type="checkbox"]):not([type="radio"]),
.pplt-has-error select,
.pplt-has-error textarea,
.pplt-check-grid.pplt-has-error,
.pplt-consent.pplt-has-error {
    border-color: #c01048 !important;
}

.pplt-check-grid.pplt-has-error {
    border: 1px solid #c01048;
    border-radius: 16px;
    padding: 10px;
}

.pplt-hp {
    position: absolute;
    left: -99999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

@media (max-width: 980px) {
    .pplt-form-wrap {
        max-width: 100%;
    }

    .pplt-summer-form {
        border-radius: 20px;
    }
}

@media (max-width: 767px) {
    .pplt-summer-form {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .pplt-grid,
    .pplt-check-grid {
        grid-template-columns: 1fr;
    }

    .pplt-step-tabs {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .pplt-step-pill {
        text-align: center;
        padding: 10px;
    }

    .pplt-nav {
        flex-direction: column;
    }

    .pplt-btn,
    .pplt-next,
    .pplt-back {
        width: 100%;
        min-width: 0;
        margin: 0;
    }

    .pplt-section {
        padding-top: 18px;
        margin-top: 18px;
    }

    .pplt-check {
        min-height: auto;
    }
}

@media (max-width: 420px) {
    .pplt-form-header h2 {
        font-size: 27px;
    }

    .pplt-form-header p {
        font-size: 15px;
    }

    .pplt-field input:not([type="checkbox"]):not([type="radio"]),
    .pplt-field select,
    .pplt-field textarea {
        font-size: 15px;
        min-height: 46px;
        padding: 11px 12px;
    }
}
