/* Process Page Specific Styles */

/* Process Hero Section */
.process-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003399 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Detailed Process Section */
.detailed-process {
    padding: 5rem 2rem;
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text);
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-green));
    border-radius: 3px;
}

.process-step {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-blue);
    position: relative;
}

.step-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    border-radius: var(--radius) var(--radius) 0 0;
}

.step-number {
    background: var(--primary-blue);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-header h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin: 0;
}

.step-content {
    padding: 2rem;
}

.step-details h4 {
    color: var(--primary-blue);
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.step-details h4:first-child {
    margin-top: 0;
}

.step-details ul {
    list-style: none;
    padding-left: 0;
}

.step-details li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.step-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
}

.step-duration {
    background: var(--accent-gold);
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 1.5rem;
    font-weight: 500;
}

.step-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Requirements Section */
.requirements-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
}

.requirement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.requirement-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.requirement-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.requirement-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background-color: var(--background);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text);
    opacity: 0.8;
    line-height: 1.6;
}

/* CTA Section */
.process-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003399 100%);
    color: var(--white);
    text-align: center;
}

.process-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-header h3 {
        font-size: 1.3rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .process-hero {
        padding: 3rem 1rem;
    }
    
    .detailed-process,
    .requirements-section,
    .faq-section,
    .process-cta {
        padding: 3rem 1rem;
    }
    
    .step-details li {
        padding-left: 1rem;
    }
}/* process.css - Additional styles for process page */

/* Enhanced Hero Section */
.process-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 87, 146, 0.8) 0%, rgba(0, 87, 146, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #005792;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-hero {
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}