/* Case Study Styles - High-End Corporate Theme (Wcart-inspired) */
:root {
    --cs-primary: #2563eb;
    --cs-secondary: #1d4ed8;
    --cs-accent: #fbbf24;
    --cs-dark: #111827;
    --cs-dark-alt: #1a1410;
    --cs-light: #f9fafb;
    --cs-text-main: #111827;
    --cs-text-muted: #6b7280;
    --cs-border: #e5e7eb;
}

.text-white-force { color: #ffffff !important; }
.text-muted-force { color: rgba(255,255,255,0.7) !important; }
.text-accent-force { color: var(--cs-accent) !important; }

.case-study-page {
    font-family: 'Inter', sans-serif;
    color: var(--cs-text-main);
    background: white;
}


.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: center; /* Default centering for rows */
}


.col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-8 {
    padding: 0 15px;
    width: 100%;
}

.align-items-center {
    align-items: center;
}

@media (min-width: 992px) {
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

/* --- Hero Section --- */
.cs-hero {
    position: relative;
    padding: 120px 0 100px;
    background: var(--cs-dark-alt);
    color: white;
    overflow: hidden;
}

/* Duplicating the Cask88 dual-glow pattern */
.cs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    filter: blur(120px);
    transform: translate(30%, -30%);
}

.cs-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    filter: blur(120px);
    transform: translate(-30%, 30%);
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 100px;
    color: var(--cs-accent);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.cs-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    word-spacing: 0.15em;
}


.cs-hero .highlight {
    color: var(--cs-accent);
}

.cs-hero p {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 600px;
    margin-bottom: 40px;
}

.cs-hero-stats {
    display: flex;
    gap: 24px;
}

.cs-hero-stat-card {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.cs-hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.cs-hero-stat-label {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* --- Content Sections --- */
.section-padding {
    padding: 100px 0;
}

.bg-light { background-color: var(--cs-light); }

.cs-section-tag {
    color: var(--cs-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-bottom: 12px;
    display: block;
}

.cs-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--cs-dark);
}

/* --- Grid Layouts --- */
.cs-profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    width: 100%;
}


.cs-profile-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--cs-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cs-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.cs-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--cs-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.cs-profile-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cs-text-muted);
    text-transform: uppercase;
}

.cs-profile-value {
    font-weight: 800;
    color: var(--cs-dark);
}

/* --- Features List --- */
.cs-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    text-align: left;
}


.cs-feature-item i {
    color: var(--cs-primary);
    font-size: 1rem;
}

/* --- Comparison Table --- */
.cs-table-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--cs-border);
}

.cs-table {
    width: 100%;
    border-collapse: collapse;
}

.cs-table th {
    background: var(--cs-dark);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 700;
}

.cs-table td {
    padding: 20px;
    border-bottom: 1px solid var(--cs-border);
}

.cs-table tr:last-child td {
    border-bottom: none;
}

.cs-table .highlight-col {
    background: rgba(59, 130, 246, 0.05);
    font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .cs-hero { text-align: left; }
    .cs-hero-stats { flex-wrap: wrap; }
}
