/* ─── ENQUIRE QUIZ ─── */
.enquire-page {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.enquire-hero {
    height: 40vh;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquire-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.enquire-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,9,9,0.75) 0%, rgba(10,9,9,0.3) 100%);
}

.enquire-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 1.5rem;
}

.enquire-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.enquire-hero-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    opacity: 0.85;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Quiz Section */
.quiz-section {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 4rem 1.5rem 6rem;
}

.quiz-container {
    max-width: 680px;
    width: 100%;
}

/* Progress Bar */
.quiz-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.quiz-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--stone);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quiz-step-dot.active {
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(141, 110, 80, 0.2);
}

.quiz-step-dot.done {
    background: var(--gold);
    opacity: 0.5;
}

.quiz-step-line {
    flex: 1;
    height: 1px;
    background: var(--stone);
    position: relative;
    overflow: hidden;
}

.quiz-step-line-fill {
    height: 100%;
    background: var(--gold);
    transition: width 0.4s ease;
    width: 0;
}

.quiz-step-dot.done + .quiz-step-line .quiz-step-line-fill {
    width: 100%;
}

/* Steps */
.quiz-step {
    display: none;
    animation: quizFadeIn 0.4s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-step-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.quiz-step h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.quiz-step p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Quiz Options */
.quiz-options {
    display: grid;
    gap: 0.75rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 1px solid var(--stone);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: var(--white);
}

.quiz-option:hover {
    border-color: var(--gold);
    background: rgba(141, 110, 80, 0.04);
}

.quiz-option input[type="radio"] {
    display: none;
}

.quiz-option .quiz-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--stone);
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.quiz-option .quiz-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    transform: scale(0);
    transition: all 0.25s ease;
}

.quiz-option input[type="radio"]:checked + .quiz-radio {
    border-color: var(--gold);
}

.quiz-option input[type="radio"]:checked + .quiz-radio::after {
    opacity: 1;
    transform: scale(1);
}

.quiz-option.selected {
    border-color: var(--gold);
    background: rgba(141, 110, 80, 0.06);
}

/* Checkbox style (multi-select) */
.quiz-option .quiz-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--stone);
    border-radius: 3px;
    flex-shrink: 0;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    position: relative;
}

.quiz-option .quiz-checkbox::after {
    content: '';
    width: 8px;
    height: 12px;
    border: solid var(--gold);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    opacity: 0;
    transition: all 0.2s ease;
    position: absolute;
    top: 1px;
}

.quiz-option input[type="checkbox"] {
    display: none;
}

.quiz-option input[type="checkbox"]:checked + .quiz-checkbox {
    border-color: var(--gold);
}

.quiz-option input[type="checkbox"]:checked + .quiz-checkbox::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.multi-select .quiz-option.selected {
    border-color: var(--gold);
    background: rgba(141, 110, 80, 0.06);
}

.quiz-option-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--dark);
}

/* Text input */
.quiz-input-wrap {
    position: relative;
}

.quiz-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: 4px;
    transition: border-color 0.25s ease;
    outline: none;
}

.quiz-input:focus {
    border-color: var(--gold);
}

.quiz-input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

/* Contact Details Grid */
.quiz-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quiz-contact-grid .full-width {
    grid-column: 1 / -1;
}

.quiz-contact-grid label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

/* Buttons */
.quiz-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.quiz-btn {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 0;
}

.quiz-btn-primary {
    background: var(--gold);
    color: var(--white);
    flex: 1;
}

.quiz-btn-primary:hover {
    background: #7A5E45;
    border-color: #7A5E45;
}

.quiz-btn-secondary {
    background: transparent;
    color: var(--dark);
    border-color: var(--stone);
}

.quiz-btn-secondary:hover {
    border-color: var(--dark);
}

/* Thank You */
.quiz-thanks {
    display: none;
    text-align: center;
    padding: 3rem 0;
}

.quiz-thanks.active {
    display: block;
    animation: quizFadeIn 0.5s ease;
}

.quiz-thanks-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(141, 110, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quiz-thanks-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.quiz-thanks h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.quiz-thanks p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.quiz-thanks .pts-badge {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.06em;
}

/* Error state */
.quiz-input.error {
    border-color: #c0392b;
}

.quiz-error-msg {
    font-size: 0.8rem;
    color: #c0392b;
    margin-top: 0.35rem;
    display: none;
}

.quiz-error-msg.show {
    display: block;
}

@media (max-width: 768px) {
    .enquire-hero {
        height: 30vh;
        min-height: 240px;
    }
    .quiz-section {
        padding: 2.5rem 1rem 4rem;
    }
    .quiz-step h2 {
        font-size: 1.4rem;
    }
    .quiz-contact-grid {
        grid-template-columns: 1fr;
    }
    .quiz-buttons {
        flex-direction: column;
    }
    .quiz-btn-secondary {
        order: 2;
    }
    .quiz-btn-primary {
        order: 1;
    }
}
