/* KOD95 Page Specific Styles */

/* Hero Section */
.kod95-hero {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.kod95-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-stats .stat i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.hero-stats .stat span {
    font-weight: 600;
}

/* Content Sections */
.what-is-kod95 {
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.content-main h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.info-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.info-card h3 i {
    color: var(--primary-color);
}

.info-card ul {
    list-style: none;
    margin-top: 1rem;
}

.info-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Sidebar */
.quick-facts {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.quick-facts h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.quick-facts ul {
    list-style: none;
}

.quick-facts li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-facts li:last-child {
    border-bottom: none;
}

.quick-facts li i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.quick-facts strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary-color), #fb923c);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Training Requirements */
.training-requirements {
    background: var(--light-color);
    padding: 5rem 0;
}

.training-requirements h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.requirement-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card-header {
    padding: 2rem;
    color: white;
    text-align: center;
}

.card-header.initial {
    background: linear-gradient(135deg, #059669, #10b981);
}

.card-header.periodic {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.card-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.5rem;
}

.card-body {
    padding: 2rem;
}

.card-body h4 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.card-body ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-body ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.card-body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.duration-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 0.5rem;
}

.duration-info i {
    color: var(--primary-color);
}

/* Training Modules */
.training-modules {
    padding: 5rem 0;
}

.training-modules h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.module-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.module-icon i {
    font-size: 1.75rem;
    color: white;
}

.module-card h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.module-card ul {
    list-style: none;
}

.module-card ul li {
    padding: 0.25rem 0;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Biometric Process */
.biometric-process {
    background: var(--light-color);
    padding: 5rem 0;
}

.biometric-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.125rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-color);
    padding: 0 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    background: var(--light-color);
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.faq-item h3 i {
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.6;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 30px;
        width: 2px;
        height: auto;
    }
    
    .process-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .step-number {
        margin: 0 2rem 0 0;
    }
}

@media (max-width: 768px) {
    .kod95-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .content-main h2 {
        font-size: 2rem;
    }
    
    .quick-facts {
        margin-bottom: 1rem;
    }
}
