/* Page-specific styles - Professional look */

/* Page Header (already in styles.css, but keeping for reference) */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 160px 60px 80px;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.page-section {
    padding: 100px 60px;
}

.page-section:nth-child(even) {
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-section h2 {
    font-size: 40px;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-align: center;
}

.page-section h3 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 12px;
}

.page-section p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text ul {
    list-style: none;
    margin-top: 25px;
}

.about-text ul li {
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 15px;
}

.about-text ul li::before {
    content: '✓';
    color: #10b981;
    margin-right: 12px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
}

.stat-card h3 {
    font-size: 42px;
    color: #60a5fa;
    margin-bottom: 8px;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 15px;
}

/* Framework Page */
.framework-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.framework-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.framework-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.framework-item .step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.framework-item h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.framework-item ul {
    list-style: none;
    margin-top: 20px;
}

.framework-item ul li {
    padding: 10px 0;
    color: #475569;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.framework-item ul li::before {
    content: '→';
    color: #2563eb;
    margin-right: 10px;
    font-weight: 600;
}

/* Services Page */
.services-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
}

.service-icon {
    font-size: 28px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 10px 0;
    color: #475569;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.service-features li::before {
    content: '✓';
    color: #10b981;
    margin-right: 10px;
    font-weight: 600;
}

/* Deliverables Page */
.deliverables-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.deliverable-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid #e2e8f0;
}

.deliverable-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.deliverable-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.deliverable-item p {
    margin: 0;
    font-size: 14px;
}

/* Certification Page */
.certification-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.certification-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

.certification-item h3 {
    color: #0f172a;
    font-size: 20px;
    margin-bottom: 15px;
}

.certification-item p {
    color: #64748b;
    line-height: 1.7;
}

.certification-item strong {
    color: #0f172a;
}

.who-should-enroll {
    background: #f8f9fc;
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid #e2e8f0;
}

.who-should-enroll h3 {
    color: #0f172a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.who-should-enroll ul {
    color: #64748b;
    line-height: 1.8;
}

.who-should-enroll li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.who-should-enroll li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 600;
}

.certification-outcome {
    background: #f0f9ff;
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid #bae6fd;
}

.certification-outcome h3 {
    color: #0f172a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.certification-outcome ul {
    color: #64748b;
    line-height: 1.8;
}

.certification-outcome li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.certification-outcome li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 600;
}

/* Insights Page */
.insights-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.insight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.insight-item .insight-meta {
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insight-item h3 {
    font-size: 20px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.insight-item p {
    font-size: 14px;
    line-height: 1.6;
}

.insight-item .read-more {
    display: inline-block;
    margin-top: 18px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* Contact Page */
.contact-page {
    padding: 160px 60px 100px;
    background: #f8f9fc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 30px;
    text-align: left;
}

.contact-info>p {
    color: #64748b;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 15px;
    color: #2563eb;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    color: #475569;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.contact-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-form h3 {
    margin-bottom: 28px;
    font-size: 24px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    background: #f8f9fc;
    transition: all 0.2s ease;
    font-family: inherit;
    margin-bottom: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {

    .framework-content,
    .services-content,
    .certification-content,
    .deliverables-content {
        grid-template-columns: 1fr;
    }

    .insights-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 20px 60px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .page-section {
        padding: 60px 20px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .insights-content,
    .deliverables-content {
        grid-template-columns: 1fr;
    }

    .certification-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }
}
