/* ===================================
   Enhanced About CCAPAD Section Styles
   =================================== */

.about-highlight {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(15, 124, 144, 0.02) 0%, rgba(245, 249, 251, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: "";
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 124, 144, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.about-highlight-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

/* Image Section */
.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 28, 36, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(15, 28, 36, 0.2);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 124, 144, 0.3);
    backdrop-filter: blur(10px);
}

.badge-year {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-serif);
    line-height: 1;
}

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-stat-card {
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 28, 36, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(15, 124, 144, 0.1);
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(15, 28, 36, 0.12);
    border-color: rgba(15, 124, 144, 0.2);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(15, 124, 144, 0.1), rgba(5, 90, 122, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    font-family: var(--font-serif);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Content Section */
.about-highlight-content {
    padding-top: 1rem;
}

.about-intro-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Features List */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0 2.5rem;
}

.about-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    border-left: 3px solid var(--brand-primary);
    box-shadow: 0 4px 20px rgba(15, 28, 36, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(15, 28, 36, 0.1);
    border-color: var(--brand-secondary);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* CTA Group */
.about-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-left: clamp(3.2rem, 7vw, 4.6rem);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-highlight-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .about-highlight {
        padding: 4rem 0;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-stat-card {
        padding: 1rem;
    }

    .about-cta-group {
        flex-direction: column;
    }

    .about-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .about-image-badge {
        top: 16px;
        right: 16px;
        padding: 0.75rem 1.25rem;
    }

    .badge-number {
        font-size: 1.5rem;
    }
}