/* Custom Editorial & Theme Styles - Premium SaaS Look */

.custom-document-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    padding: 3.5rem !important;
}

@media (max-width: 768px) {
    .custom-document-card {
        padding: 1.75rem !important;
    }
}

.document-badge {
    display: inline-block;
    background-color: #f1f5f9 !important;
    color: #475569 !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    padding: 6px 14px !important;
    border-radius: 9999px !important;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0 !important;
}

.document-title {
    font-size: 2.25rem !important;
    font-weight: 850 !important;
    color: #0f172a !important;
    letter-spacing: -0.03em !important;
    line-height: 1.25 !important;
    margin-bottom: 1.5rem;
    text-align: left;
}

@media (max-width: 768px) {
    .document-title {
        font-size: 1.75rem !important;
    }
}

.document-paragraph {
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    color: #334155 !important;
    margin-bottom: 1.5rem;
}

/* Topic grid styling */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .topic-grid {
        grid-template-columns: 1fr;
    }
}

.topic-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.25s ease;
}

.topic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    border-color: #cbd5e1;
}

.topic-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(108, 92, 231, 0.08);
    color: #6c5ce7;
    font-size: 18px;
}

.topic-card:nth-child(2n) .topic-icon-wrapper {
    background: rgba(0, 184, 148, 0.08);
    color: #00b894;
}

.topic-card:nth-child(3n) .topic-icon-wrapper {
    background: rgba(9, 132, 227, 0.08);
    color: #0984e3;
}

.topic-card:nth-child(4n) .topic-icon-wrapper {
    background: rgba(225, 112, 85, 0.08);
    color: #e17055;
}

.topic-title {
    font-weight: 700 !important;
    font-size: 14.5px !important;
    color: #1e293b !important;
    margin: 0 !important;
}

/* Resource list custom library grid */
.resource-library-title {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 3.5rem 0 1.5rem 0;
    letter-spacing: -0.02em !important;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 992px) {
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }
}

.resource-slot-card {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.resource-slot-card:hover {
    border-color: #6c5ce7;
    background: #fcfcff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.03);
}

.resource-number {
    font-size: 2.25rem !important;
    font-weight: 900 !important;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color 0.25s ease;
}

.resource-slot-card:hover .resource-number {
    color: rgba(108, 92, 231, 0.15);
}

.resource-slot-title {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    margin-bottom: 4px !important;
    transition: color 0.25s ease;
}

.resource-slot-card:hover .resource-slot-title {
    color: #1e293b !important;
}

.resource-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #94a3b8 !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.resource-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #cbd5e1;
}

.resource-slot-card:hover .resource-status-dot {
    background-color: #6c5ce7;
}

/* Creative Side-by-Side Callout Box Style */
.creative-highlight-box {
    background: #fdfdff !important;
    border: 1px solid #eef1f6 !important;
    border-radius: 18px !important;
    padding: 18px 24px !important;
    margin: 25px 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s ease !important;
}

@media (max-width: 768px) {
    .creative-highlight-box {
        flex-direction: column;
        align-items: stretch;
        padding: 20px !important;
        gap: 16px;
    }
}

.creative-highlight-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.06) !important;
    border-color: rgba(108, 92, 231, 0.15) !important;
    background: #fafbff !important;
}

.creative-box-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

@media (max-width: 576px) {
    .creative-box-left {
        align-items: flex-start;
    }
}

.creative-box-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.creative-box-icon-wrapper i {
    font-size: 20px;
}

.creative-highlight-text {
    font-size: 14.5px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.creative-box-right {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .creative-box-right {
        justify-content: flex-start;
    }
}

.creative-action-btn {
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.creative-action-btn.wa-btn {
    color: #ffffff !important;
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.creative-action-btn.wa-btn:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
    transform: translateY(-1px);
}

.creative-action-btn.email-btn {
    color: #0984e3 !important;
    border: 1.5px solid rgba(9, 132, 227, 0.2) !important;
    background: transparent !important;
}

.creative-action-btn.email-btn:hover {
    color: #ffffff !important;
    background-color: #0984e3 !important;
    border-color: #0984e3 !important;
    box-shadow: 0 4px 12px rgba(9, 132, 227, 0.15);
    transform: translateY(-1px);
}

/* Deep slate CTA block */
.editorial-cta {
    background: #0f172a !important;
    border-radius: 16px !important;
    padding: 3rem !important;
    text-align: center;
    color: #ffffff !important;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .editorial-cta {
        padding: 2rem 1.5rem !important;
    }
}

.editorial-cta h3 {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 1rem;
    letter-spacing: -0.02em !important;
}

.editorial-cta-desc {
    font-size: 0.975rem !important;
    line-height: 1.7 !important;
    color: #cbd5e1 !important;
    max-width: 680px;
    margin: 0 auto 1.25rem auto;
}

.editorial-cta-price {
    font-size: 0.925rem !important;
    line-height: 1.7 !important;
    color: #94a3b8 !important;
    max-width: 680px;
    margin: 0 auto 2rem auto;
}

.btn-editorial-whatsapp {
    background-color: #10b981 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    border: none !important;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-editorial-whatsapp:hover {
    background-color: #059669 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.btn-editorial-email {
    background-color: transparent !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    border: 1.5px solid #475569 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-editorial-email:hover {
    background-color: #1e293b !important;
    border-color: #64748b !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}


/* Premium Jobs Portal Styles */
.jobs-hero {
    background: linear-gradient(135deg, #1c448e 0%, #6c5ce7 100%);
    color: white;
    border-radius: 50px;
    padding: 45px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(28, 68, 142, 0.15);
    position: relative;
    overflow: hidden;
}

.jobs-hero-pastel {
    background: linear-gradient(135deg, #ffe5ec 0%, #ebd9fc 100%) !important;
    color: #3d305c !important;
    border-radius: 50px;
    padding: 8px 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.jobs-hero-pastel .jobs-title {
    color: #2b1f4d !important;
}

.jobs-hero-pastel .jobs-subtitle {
    color: #4a3b70 !important;
    opacity: 0.95;
}

.jobs-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 300px; height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.jobs-title {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.jobs-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.5;
}

.section-title-custom {
    color: #1c448e;
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.section-title-custom::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 4px;
    background: #6c5ce7;
    border-radius: 2px;
}

.job-list-card {
    border: 1px solid #f1f0f7;
    border-radius: 35px;
    padding: 30px 26px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.job-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.08);
    border-color: #e5e0ff;
}

.bullet-item-custom {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: #4b5563;
    margin-bottom: 12px;
    line-height: 1.5;
}

.bullet-item-custom i {
    margin-top: 3px;
    flex-shrink: 0;
}

/* Grid cards for benefits */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #f1f0f7;
    border-radius: 35px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.08);
    border-color: #e5e0ff;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef4ff;
    color: #1c448e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-size: 26px;
}

.benefit-card:nth-child(2n) .benefit-icon {
    background: #faf2ff;
    color: #6c5ce7;
}

.benefit-card:nth-child(3n) .benefit-icon {
    background: #e6f9f5;
    color: #00b894;
}

.benefit-title-custom {
    font-weight: 700;
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.4;
}

/* Callout styling */
.peer-mentor-callout {
    background: linear-gradient(135deg, #fbfaff 0%, #f3efff 100%);
    border-left: 5px solid #6c5ce7;
    border-radius: 35px;
    padding: 30px;
    margin-bottom: 40px;
}

/* CTA Card */
.cta-career-card {
    background: linear-gradient(135deg, #0b1422 0%, #1c315e 100%);
    color: white;
    border-radius: 45px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(11, 20, 34, 0.2);
}

.btn-wa-apply {
    background: #25d366;
    color: white !important;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-wa-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    background: #20ba5a;
}

.role-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #f1f0f7;
    color: #4b5563;
    font-size: 13.5px;
    font-weight: 600;
    margin: 6px;
    transition: all 0.25s ease;
}

.role-badge:hover {
    background: #e5e0ff;
    color: #6c5ce7;
    transform: scale(1.05);
}


/* Footer Custom Styles */
.landing-footer {
    background: #f8eded;
    border-top: 5px solid #1c448e;
    font-size: 14.5px;
    color: #333333;
}

.footer-bullets-list {
    list-style-type: disc !important;
    padding-left: 20px !important;
    margin: 0;
}

.footer-bullets-list li {
    color: #1c448e;
}

.footer-bullets-list li::marker {
    color: #333333;
}

.footer-link {
    color: #1c448e;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
}

.footer-link:hover {
    color: #2b5998;
    text-decoration: underline;
}

.footer-main-box {
    background: #1c448e;
    color: white !important;
    border-radius: 40px;
    padding: 16px 24px;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 6px 15px rgba(28, 68, 142, 0.15);
    margin-bottom: 15px;
    text-align: center;
}

.footer-option-box {
    border-radius: 30px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: white !important;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    border: none;
    white-space: nowrap;
}

.footer-option-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.footer-option-box.bg-green { background: #6bcb77 !important; }
.footer-option-box.bg-blue { background: #4ea5f7 !important; }
.footer-option-box.bg-purple { background: #ab47bc !important; }
.footer-option-box.bg-orange { background: #8d5b4c !important; }

.btn-job-opps {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #1c448e;
    border-radius: 8px;
    background: #ffffff;
    color: #1c448e !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(28, 68, 142, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-job-opps:hover {
    background: #eef4ff;
    color: #1c448e !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(28, 68, 142, 0.1);
}

.btn-footer-blue {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid #1c448e;
    border-radius: 8px;
    background: #eef4ff;
    color: #1c448e !important;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(28, 68, 142, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-footer-blue:hover {
    background: #dce7fc;
    color: #1c448e !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(28, 68, 142, 0.1);
}

.footer-bottom {
    border-top: 1px solid #e0d0d0;
    background: rgba(255, 255, 255, 0.3);
}

.footer-bottom-text {
    font-size: 13.5px;
    color: #555555;
}
