/* ============================================
   PREMIUM ABOUT CONTENT - SCOPED STYLES
   ============================================ */

/* Shared Section Styles */
.cnc-about-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.cnc-about-section-dark {
    background: #0b1829;
}

.cnc-about-section-gradient {
    background: linear-gradient(180deg, #0a1628 0%, #0f1f38 100%);
}

.cnc-about-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===================================
   STORY SECTION
   =================================== */
.cnc-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cnc-story-content {
    animation: cnc-fade-in-up 0.8s ease-out;
}

.cnc-story-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #EE6C4D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.cnc-story-heading {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cnc-story-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.cnc-story-text strong {
    color: #ffffff;
}

.cnc-story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: cnc-fade-in-right 0.8s ease-out 0.2s backwards;
}

.cnc-story-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.cnc-story-image-wrapper:hover .cnc-story-image {
    transform: scale(1.05);
}

/* ===================================
   STATS / AWARDS
   =================================== */
.cnc-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.cnc-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.cnc-stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.cnc-stat-icon {
    font-size: 40px;
    color: #3b82f6;
    margin-bottom: 20px;
}

.cnc-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
}

.cnc-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   MISSION & VISION
   =================================== */
.cnc-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cnc-mv-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cnc-mv-card:hover {
    border-color: rgba(238, 108, 77, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cnc-mv-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #3b82f6;
}

.cnc-mv-card:nth-child(2) .cnc-mv-icon-wrapper {
    background: rgba(238, 108, 77, 0.1);
    color: #EE6C4D;
}

.cnc-mv-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cnc-mv-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   TIMELINE
   =================================== */
.cnc-timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.cnc-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.cnc-timeline-item {
    display: flex;
    justify-content: center;
    padding-bottom: 60px;
    position: relative;
}

.cnc-timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cnc-timeline-content:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.cnc-timeline-item:nth-child(odd) .cnc-timeline-content {
    margin-right: auto;
    text-align: right;
}

.cnc-timeline-item:nth-child(even) .cnc-timeline-content {
    margin-left: auto;
    text-align: left;
}

/* Dots */
.cnc-timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #0a1628;
    border: 4px solid #3b82f6;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.cnc-timeline-year {
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    line-height: 1;
}

.cnc-timeline-item:nth-child(odd) .cnc-timeline-year {
    right: 20px;
}

.cnc-timeline-item:nth-child(even) .cnc-timeline-year {
    left: 20px;
}

.cnc-timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
}

.cnc-timeline-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes cnc-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cnc-fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .cnc-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cnc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cnc-mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cnc-story-heading {
        font-size: 32px;
    }

    .cnc-stats-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline Mobile */
    .cnc-timeline-line {
        left: 20px;
    }

    .cnc-timeline-item {
        justify-content: flex-start;
        padding-left: 50px;
    }

    .cnc-timeline-content {
        width: 100%;
        text-align: left !important;
    }

    .cnc-timeline-item:nth-child(odd) .cnc-timeline-content {
        margin-right: 0;
    }

    .cnc-timeline-item:nth-child(even) .cnc-timeline-content {
        margin-left: 0;
    }

    .cnc-timeline-dot {
        left: 20px;
    }

    .cnc-timeline-year {
        font-size: 32px;
        top: 20px;
        right: 20px !important;
        left: auto !important;
    }
}

/* ===================================
   FEATURES SECTION
   =================================== */
.cnc-about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.cnc-about-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.cnc-about-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: #3b82f6;
}

.cnc-about-feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #3b82f6;
    font-size: 28px;
    transition: all 0.3s ease;
}

.cnc-about-feature-card:hover .cnc-about-feature-icon {
    background: #3b82f6;
    color: #ffffff;
    transform: rotateY(180deg);
}

.cnc-about-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cnc-about-feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .cnc-about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cnc-about-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   NEWSLETTER CTA
   =================================== */
.cnc-newsletter-wrapper {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cnc-newsletter-bg-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -200px;
    left: -100px;
}

.cnc-newsletter-bg-circle-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    bottom: -150px;
    right: -50px;
}

.cnc-newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cnc-newsletter-heading {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.cnc-newsletter-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cnc-newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.cnc-newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.cnc-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cnc-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.cnc-newsletter-btn {
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    background: #ffffff;
    color: #2563eb;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cnc-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cnc-newsletter-wrapper {
        padding: 60px 30px;
    }

    .cnc-newsletter-heading {
        font-size: 28px;
    }

    .cnc-newsletter-form {
        flex-direction: column;
    }

    .cnc-newsletter-btn {
        width: 100%;
    }
}