/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    padding: 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo span {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0 10px 0;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.main-headline {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Hero Image */
.hero-image {
    margin: 20px auto;
    max-width: 300px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Urgent Banner */
.urgent-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #e55100 100%);
    border-radius: 15px;
    padding: 12px 20px;
    margin: 20px auto;
    max-width: 400px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation: urgentPulse 2s infinite;
}

@keyframes urgentPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.urgent-notice {
    font-size: 20px;
    color: white;
    font-weight: bold;
    text-align: center;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Benefits Preview */
.benefits-preview {
    max-width: 600px;
    margin: 25px auto 0 auto;
    text-align: center;
}

.benefit-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 18px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item {
    font-size: 18px;
    color: white;
    margin: 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    text-align: left;
    line-height: 1.3;
}

.check {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Questionnaire Section */
.questionnaire {
    padding: 25px 0 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.15);
    border: 3px solid #e3f2fd;
    position: relative;
}

/* Add colorful accent elements */
.form-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ff6b35, #2c5aa0, #4caf50, #9c27b0);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

/* Progress Bar Styles */
.progress-container {
    margin-bottom: 15px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 16px;
    background: #e0e7ff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 12px;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.progress-text {
    font-size: 16px;
    font-weight: 600;
    color: #2c5aa0;
    margin: 0;
}

.form-container h3 {
    font-size: 38px;
    background: linear-gradient(135deg, #1e3f73 0%, #2c5aa0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 3px 6px rgba(30, 63, 115, 0.2);
}

.form-subtitle {
    font-size: 20px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.question {
    display: none;
    text-align: center;
    position: relative;
}

.question.active {
    display: block;
}

.question h4 {
    font-size: 22px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(44, 90, 160, 0.1);
    position: relative;
}

/* Add question number badge */
.question h4::before {
    content: attr(data-question-num);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #e55100 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.question label {
    font-size: 20px;
    color: #333;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.option {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 3px solid #e0e7ff;
    padding: 16px 24px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.4s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1);
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.option:hover::before {
    left: 100%;
}

.option:hover {
    border-color: #2c5aa0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.2);
    color: #1e3f73;
}

.option.selected {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    border-color: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.3);
}

.option.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.nav-btn {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 110px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #1e3f73 0%, #0d2447 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.nav-btn.prev {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.nav-btn.prev:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Results Section */
.results {
    padding: 15px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

.results-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.congratulations-header {
    margin-bottom: 25px;
    text-align: center;
}

.congratulations-header h2 {
    font-size: 32px;
    color: #2e7d32;
    margin-bottom: 12px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(46, 125, 50, 0.2);
}

.congratulations-header p {
    font-size: 18px;
    color: #1b5e20;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.12);
    text-align: center;
    border: 2px solid #e3f2fd;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.18);
    border-color: #bbdefb;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: bold;
}

.benefit-item p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.call-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.15);
    margin: 0 auto;
    border: 3px solid #e3f2fd;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55100 100%);
    color: white;
    text-decoration: none;
    padding: 25px 50px;
    border-radius: 18px;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    transition: all 0.4s ease;
    margin-bottom: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: callPulse 2s infinite;
}

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

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.call-btn:hover::before {
    left: 100%;
}

.call-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #e55100 0%, #d84315 100%);
}

.phone-icon {
    font-size: 28px;
}

/* Urgency Section */
.urgency-section {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 0, 0, 0.2);
}

.agents-available {
    font-size: 18px;
    color: #d32f2f;
    font-weight: bold;
    margin: 0 0 10px 0;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.timer-container {
    margin-bottom: 10px;
}

.timer-text {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.countdown-timer {
    font-size: 24px;
    color: #d32f2f;
    font-weight: bold;
    background: rgba(255, 0, 0, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    animation: timerPulse 1s infinite;
}

@keyframes timerPulse {
    0% { background: rgba(255, 0, 0, 0.1); }
    50% { background: rgba(255, 0, 0, 0.2); }
    100% { background: rgba(255, 0, 0, 0.1); }
}

@keyframes timerExpired {
    0% { color: #d32f2f; }
    50% { color: #ff0000; }
    100% { color: #d32f2f; }
}

.timer-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-style: italic;
}

.call-note {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Trust Indicators */
.trust-indicators {
    padding: 80px 0;
    background: white;
}

.trust-indicators h3 {
    font-size: 36px;
    color: #1e3f73;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.indicator {
    text-align: center;
    padding: 30px;
}

.indicator-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.indicator h4 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: bold;
}

.indicator p {
    font-size: 18px;
    color: #666;
}

/* Footer */
footer {
    background: #1e3f73;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer p {
    font-size: 16px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 14px;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .hero {
        padding: 15px 0;
    }
    
    .main-headline {
        font-size: 26px;
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .hero-image {
        margin: 15px auto;
        max-width: 250px;
    }
    
    .urgent-banner {
        margin: 15px auto;
        max-width: 320px;
        padding: 10px 16px;
    }
    
    .urgent-notice {
        font-size: 18px;
    }
    
    .benefits-preview {
        padding: 0 15px;
        margin: 20px auto 0 auto;
    }
    
    .benefit-box {
        padding: 8px 14px;
        margin-bottom: 8px;
    }
    
    .benefit-item {
        font-size: 16px;
        text-align: left;
        margin: 0;
        line-height: 1.2;
    }
    
    .form-container {
        padding: 15px 12px;
        margin: 0 10px;
    }
    
    .questionnaire {
        padding: 8px 0 30px 0;
    }
    
    .progress-container {
        margin-bottom: 10px;
    }
    
    .progress-bar {
        height: 14px;
        margin-bottom: 8px;
    }
    
    .progress-text {
        font-size: 14px;
    }
    
    .form-container h3 {
        font-size: 28px;
    }
    
    .question label {
        font-size: 20px;
    }
    
    .question h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .question label {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .options {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .option {
        padding: 14px 18px;
        font-size: 18px;
        min-height: 55px;
    }
    
    .nav-btn {
        padding: 10px 18px;
        font-size: 14px;
        min-width: 100px;
    }
    
    .congratulations-header h2 {
        font-size: 26px;
    }
    
    .congratulations-header p {
        font-size: 16px;
    }
    
    .call-section {
        padding: 25px 20px;
    }
    
    .call-btn {
        font-size: 22px;
        padding: 20px 35px;
    }
    
    .agents-available {
        font-size: 16px;
    }
    
    .timer-text {
        font-size: 18px;
    }
    
    .countdown-timer {
        font-size: 20px;
    }
    
    .trust-indicators h3 {
        font-size: 28px;
    }
    
    .indicators {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .main-headline {
        font-size: 22px;
        padding: 0 15px;
    }
    
    .hero-image {
        margin: 12px auto;
        max-width: 200px;
    }
    
    .urgent-banner {
        margin: 12px auto;
        max-width: 280px;
        padding: 8px 12px;
    }
    
    .urgent-notice {
        font-size: 16px;
    }
    
    .benefit-box {
        padding: 6px 12px;
        margin-bottom: 6px;
    }
    
    .benefit-item {
        font-size: 14px;
        line-height: 1.2;
    }
    
    .form-container {
        padding: 12px 10px;
    }
    
    .progress-container {
        margin-bottom: 8px;
    }
    
    .progress-bar {
        height: 12px;
        margin-bottom: 6px;
    }
    
    .progress-text {
        font-size: 12px;
    }
    
    .question h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .question label {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .options {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .option {
        font-size: 16px;
        padding: 12px 15px;
        min-height: 50px;
    }
    
    .nav-btn {
        padding: 8px 15px;
        font-size: 12px;
        min-width: 90px;
    }
    
    .call-btn {
        font-size: 18px;
        padding: 15px 25px;
    }
    
    .phone-icon {
        font-size: 24px;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    body {
        background: white;
        color: black;
    }
    
    .option {
        border-width: 4px;
    }
    
    .call-btn {
        background: #000;
        border: 3px solid #fff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
} 