/* === GROEISCAN THANK YOU PAGE STYLES === */

/* Thank You Hero Section */
.thank-you-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thank-you-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 77, 23, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.success-badge i {
    font-size: 1rem;
}

.thank-you-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dark-teal);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.thank-you-hero .text-orange {
    color: var(--orange);
}

.thank-you-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark-teal);
    margin-bottom: 20px;
    font-weight: 700;
}

.timeline-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    margin-right: 40px;
    flex-shrink: 0;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item.active .marker-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: 0 0 0 8px rgba(251, 77, 23, 0.1);
}

.marker-line {
    position: absolute;
    left: 50%;
    top: 60px;
    bottom: -60px;
    width: 2px;
    background: var(--border-light);
    transform: translateX(-50%);
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    flex: 1;
    background: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-content {
    background: var(--white);
    border-color: var(--orange);
    box-shadow: 0 8px 25px rgba(251, 77, 23, 0.1);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.timeline-header h3 {
    font-size: 1.4rem;
    color: var(--dark-teal);
    margin: 0;
    font-weight: 600;
}

.timeline-status {
    background: var(--orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.timeline-item:not(.active) .timeline-status {
    background: var(--text-light);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-details li {
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.timeline-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* Receive Section */
.receive-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.receive-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.receive-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark-teal);
    margin-bottom: 20px;
    font-weight: 700;
}

.receive-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.receive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.receive-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.receive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--orange);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.receive-card h3 {
    font-size: 1.3rem;
    color: var(--dark-teal);
    margin-bottom: 15px;
    font-weight: 600;
}

.receive-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.receive-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.receive-card li {
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.receive-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-teal) 0%, #1a1a2e 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-primary {
    background: var(--orange);
    color: var(--white);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 77, 23, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 768px) {
    .thank-you-hero {
        padding: 80px 0 60px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .timeline-section {
        padding: 80px 0;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-marker {
        margin-right: 30px;
    }
    
    .marker-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .receive-section {
        padding: 80px 0;
    }
    
    .receive-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .receive-card {
        padding: 25px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .thank-you-hero {
        padding: 60px 0 40px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .timeline-section {
        padding: 60px 0;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        margin-right: 25px;
    }
    
    .marker-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-header h3 {
        font-size: 1.2rem;
    }
    
    .receive-section {
        padding: 60px 0;
    }
    
    .receive-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
} 