@charset "UTF-8";
/* CSS Document */

/* Quiz Container Styles */

button, a, input, select, div {
  -webkit-tap-highlight-color: transparent;
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Progress Bar */
.progress-container {
    background: #f0f0f0;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    transition: width 0.5s ease;
    border-radius: 10px;
}

/* Question Styles */
.question-wrapper {
    min-height: 400px;
    position: relative;
}

.question {
    display: none;
    animation: fadeInUp 0.5s ease;
    opacity: 0;
}

.question.active {
    display: block;
    opacity: 1;
}

.question h2 {
    color:#153757;
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 30px;
    text-align:center;
    font-weight:700;
    margin-top:0px;
}

.question-subtext {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    text-align:center;
}

/* Answer Options */
.answers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding:0px 30px;
}

.answer-option {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 18px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #333;
    position: relative;
    overflow: hidden;
    font-weight:500;
    line-height:20px;
}

.answer-option:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.answer-option:active {
    transform: translateY(0);
}

.answer-option.selected {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-color: #4CAF50;
}

/* State Confirmation Styling */
.state-highlight {
    color: #4CAF50;
    font-weight: 600;
}

/* Results Section */
.results-section {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.results-section.active {
    display: block;
}

.qualification-box {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #4CAF50;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.qualification-box h3 {
    color: #4CAF50;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 0px;
}

.qualification-item {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.checkmark {
    color: #4CAF50;
    font-size: 20px;
    margin-right: 2px;
}

/* Call to Action */
.cta-container {
    text-align: center;
    margin-top: 30px;
}

.call-button {
    background: linear-gradient(135deg, #FF6B35, #FF5722);
    color: white;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.3);
    animation: pulse 2s infinite;
}

.call-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 87, 34, 0.4);
}

.phone-number {
    font-size: 28px;
    color: #FF5722;
    font-weight: bold;
    margin-top: 15px;
}

/* Urgency Elements */
.urgency-timer {
    background: #FFF3E0;
    border: 2px solid #FF6B35;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.timer-text {
    color: #FF5722;
    font-size: 18px;
    font-weight: 600;
}

.countdown {
    font-size: 24px;
    color: #D84315;
    font-weight: bold;
    margin-top: 5px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

/* Loading Spinner */
.loading {
    display: none;
    text-align: center;
    padding: 40px;
}

.loading.active {
    display: block;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4CAF50;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 600px) {
    .quiz-container {
        padding: 15px 25px;
    }
    
    .answer-option {
        padding: 15px;
    }
    
    .call-button {
        padding: 18px 30px;
        font-size: 18px;
    }
    
}

