/* ===================================
   Case Study Detail Page Styles
   =================================== */

.case-detail-section {
    background: #020617;
    padding: 100px 0;
}

.case-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* Main Content Column */
.case-content-col {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.case-block {
    margin-bottom: 20px;
}

.case-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.case-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.case-img-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 30px;
}

.case-detail-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.case-img-wrapper:hover .case-detail-img {
    transform: scale(1.05);
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
}

.check-list li i {
    color: #38bdf8;
    font-size: 16px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Sidebar Column */
.case-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: #0f1420;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
}

.widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Project Info List */
.project-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.info-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #94a3b8;
}

/* Help Widget (Reused styles but ensuring they work here) */
.help-widget {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
    text-align: center;
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.help-icon {
    font-size: 40px;
    color: #38bdf8;
    margin-bottom: 20px;
}

.help-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.help-contact {
    margin-bottom: 30px;
}

.help-phone {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.help-email {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #94a3b8;
}

.btn-full {
    width: 100%;
    display: block;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .case-detail-grid {
        grid-template-columns: 1fr;
    }

    .case-sidebar-col {
        order: 1;
        position: static;
    }
}