/* Safari 2-Step Enquiry Form Styles */
.safari-enquiry-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 32px;
    margin: 32px auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    max-width: 600px;
}

.safari-enquiry-header {
    text-align: center;
    margin-bottom: 24px;
}

.safari-enquiry-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.safari-enquiry-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

/* Step Indicator */
.safari-enquiry-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    gap: 12px;
}

.safari-step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.safari-step.active {
    opacity: 1;
}

.safari-step.completed {
    opacity: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.safari-step.active .step-number {
    background: linear-gradient(135deg, #fdd340 0%, #f7a91a 100%);
    color: #1a1a1a;
}

.safari-step.completed .step-number {
    background: #10b981;
    color: #fff;
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.safari-step-line {
    width: 40px;
    height: 2px;
    background: #e5e7eb;
}

/* Form Layout */
.safari-form-row {
    display: flex;
    gap: 16px;
}

.safari-form-col {
    flex: 1;
    min-width: 0;
}

@media (max-width: 600px) {
    .safari-form-row {
        flex-direction: column;
        gap: 0;
    }

    .safari-enquiry-container {
        padding: 24px 20px;
    }

    .safari-enquiry-steps {
        gap: 8px;
    }

    .step-label {
        display: none;
    }
}

/* Form Groups */
.safari-form-group {
    margin-bottom: 20px;
}

.safari-form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.safari-form-label .required {
    color: #dc2626;
}

/* Inputs */
.safari-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #fff;
    color: #1f2937;
    outline: none;
    box-sizing: border-box;
}

.safari-form-input:focus {
    border-color: #fdd340;
    box-shadow: 0 0 0 4px rgba(253, 211, 64, 0.15);
}

.safari-form-input::placeholder {
    color: #9ca3af;
}

/* Error States */
.safari-form-group.has-error .safari-form-input {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.safari-form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 6px;
    min-height: 0;
}

/* Message */
.safari-form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-weight: 500;
}

.safari-form-message.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Action Buttons */
.safari-form-actions {
    margin-top: 24px;
    text-align: center;
}

.safari-form-actions-split {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.safari-btn-next,
.safari-btn-submit {
    background: linear-gradient(135deg, #fdd340 0%, #f7a91a 100%);
    color: #1a1a1a;
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 211, 64, 0.4);
}

.safari-btn-next:hover,
.safari-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 211, 64, 0.5);
}

.safari-btn-back {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.safari-btn-back:hover {
    background: #e5e7eb;
}

.safari-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Turnstile Widget */
.cf-turnstile {
    margin: 16px 0;
}

/* Success View */
.safari-enquiry-success {
    text-align: center;
    padding: 48px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    color: #fff;
}

.safari-success-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.safari-success-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
    stroke-width: 3px;
}

.safari-success-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff;
}

.safari-success-message {
    font-size: 1rem;
    margin: 0 0 28px 0;
    opacity: 0.95;
    line-height: 1.5;
}

.safari-success-reset {
    background: #fff;
    color: #059669;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.safari-success-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}