/* ===============================================
   GET STARTED PAGE - Additional Styles
   =============================================== */

/* Step Numbers */
.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    color: white;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Step Containers */
.step-container {
    display: flex;
    align-items: start;
    gap: 30px;
    margin-bottom: 40px;
}

.step-content {
    flex: 1;
}

@media (max-width: 768px) {
    .step-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Benefits Grid Specific */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* Feature Cards with Icons */
.feature-card-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
}

/* Timeline Cards */
.timeline-card {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.timeline-card.step-2::before {
    background: var(--secondary);
}

.timeline-card.step-3::before {
    background: var(--accent);
}

.timeline-card.step-4::before {
    background: #10B981;
}

/* Enhanced Urgency Box for Step 3 */
.urgency-box h2,
.urgency-box h3,
.urgency-box h4 {
    color: #ffffff;
}

.urgency-box .btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.urgency-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

/* Support Call Preview Styling */
.support-preview {
    text-align: center;
    margin: 30px 0;
}

.support-preview img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.support-preview img:hover {
    transform: scale(1.02);
}

/* Badge Styling */
.recommended-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10B981;
    color: #10B981;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin-left: 10px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* CTA Section Styling */
.final-cta-section {
    text-align: center;
    padding: 60px 0;
}

.cta-buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

@media (max-width: 768px) {
    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons-container .btn-primary,
    .cta-buttons-container .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Why Call Cards Grid */
.why-call-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.why-call-card {
    padding: 30px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.why-call-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

/* Info Cards with Left Border */
.info-card-bordered {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    margin-bottom: 15px;
}

body.theme-professional-light .info-card-bordered {
    background: var(--bg-secondary);
    border-left-color: var(--primary);
}

.info-card-bordered.success {
    border-left-color: #10B981;
}

.info-card-bordered.warning {
    border-left-color: #F59E0B;
}

.info-card-bordered.info {
    border-left-color: var(--accent);
}

/* Section Headers with Center Alignment */
.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-center h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.section-header-center p {
    color: var(--text-secondary);
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8em;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .section-header-center h2 {
        font-size: 2em;
    }
    
    .why-call-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation for Step Reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-container {
    animation: fadeInUp 0.6s ease-out;
}

.step-container:nth-child(2) {
    animation-delay: 0.2s;
}

.step-container:nth-child(3) {
    animation-delay: 0.4s;
}

/* Dark Theme Specific Adjustments */
body.theme-gradient-vibrant .info-card-bordered {
    background: rgba(255, 255, 255, 0.05);
}

body.theme-gradient-vibrant .urgency-box {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

body.theme-gradient-vibrant .recommended-badge {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10B981;
    color: #10B981;
}

/* Print Styles */
@media print {
    .step-number,
    .recommended-badge {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}
