/* About V2 - Clean Corporate Design */

/* =========================================
   1. BASE & VARIABLES
   ========================================= */
:root {
    --primary: #e74c3c;
    --primary-dark: #c0392b;
    --secondary: #2c3e50;
    --dark: #0f172a;
    --gray: #7f8c8d;
    --light: #f1f5f9;
    --white: #ffffff;
    --border: #e2e8f0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.about-page {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background: var(--white);
    overflow-x: hidden;
}

.about-page h1, 
.about-page h2, 
.about-page h3, 
.about-page h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary);
}

/* Container */
.container-xl {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   2. HERO - SPLIT SCREEN
   ========================================= */
.hero-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.hero-left {
    background: var(--secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
}

.hero-left::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 10;
}

.breadcrumb-simple {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.breadcrumb-simple a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-simple a:hover {
    color: var(--white);
}

.breadcrumb-simple span {
    color: var(--primary);
}

.hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-left h1 em {
    font-style: normal;
    color: var(--primary);
}

.hero-left p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    max-width: 500px;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-floating {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 8px;
}

/* =========================================
   3. STORY - OFFSET LAYOUT
   ========================================= */
.story-section {
    padding: 120px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.story-images {
    position: relative;
    height: 600px;
}

.story-img-main {
    position: absolute;
    width: 80%;
    height: 70%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img-secondary {
    position: absolute;
    width: 60%;
    height: 50%;
    bottom: 0;
    right: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2);
}

.story-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-float {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(231,76,60,0.3);
}

.experience-float .number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-float .text {
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0.9;
}

.story-content .label {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.story-content h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-content h2 span {
    color: var(--primary);
}

.story-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--dark);
    font-weight: 500;
}

.highlight-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-solid:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--border);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-ghost:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* =========================================
   4. MVV - CARDS WITH GRADIENT
   ========================================= */
.mvv-section {
    padding: 120px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .label {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: block;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--primary);
}

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

.mvv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid var(--border);
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mvv-icon i {
    font-size: 1.75rem;
    color: white;
}

.mvv-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.mvv-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-checks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--dark);
}

.feature-checks li i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* =========================================
   5. ACHIEVEMENTS - DARK SECTION
   ========================================= */
.achievements-section {
    padding: 100px 0;
    background: var(--secondary);
    position: relative;
}

.achievements-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.achievements-section .section-header h2 {
    color: white;
}

.achievements-section .section-header h2 span {
    color: var(--primary);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.achievement-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.achievement-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.achievement-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.achievement-card h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.achievement-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.achievement-year {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* =========================================
   6. CTA - REDESIGNED (Full Width)
   ========================================= */
.cta-section {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

/* Decorative circle */
.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.cta-box {
    background: transparent;
    border-radius: 0;
    padding: 0;
    position: relative;
    box-shadow: none;
}

.cta-box::after {
    display: none;
}

.cta-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.cta-text-content {
    flex: 1;
    text-align: left;
}

.cta-action-content {
    flex-shrink: 0;
}

.cta-box h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-box h2 span {
    color: rgba(255,255,255,0.9);
    display: block;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 600px;
}

.cta-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
}

.cta-feature i {
    color: white;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .cta-text-content {
        text-align: center;
    }
    
    .cta-box p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-box {
        padding: 40px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================================
   7. RESPONSIVE
   ========================================= */
@media (max-width: 1200px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-left {
        padding: 120px 40px 80px;
    }
    
    .hero-left::after {
        display: none;
    }
    
    .hero-right {
        height: 400px;
    }
    
    .stats-floating {
        position: relative;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
    }
    
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .story-images {
        height: 450px;
        order: -1;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-box {
        padding: 0;
        border-radius: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-solid,
    .cta-buttons .btn-ghost {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-left {
        padding: 100px 24px 60px;
    }
    
    .story-images {
        height: 350px;
    }
    
    .experience-float {
        right: 10%;
        padding: 20px;
    }
    
    .experience-float .number {
        font-size: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 60px 0 80px;
    }
    
    .cta-box {
        padding: 0;
        border-radius: 0;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .cta-feature {
        font-size: 0.85rem;
    }
}

/* =========================================
   8. FIXES & OVERRIDES
   ========================================= */
/* Fix Footer Container conflict with Bootstrap */
.footer .container {
    max-width: 1320px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ensure Dropdowns are visible over hero section */
#main-header .dropdown-menu {
    z-index: 10000 !important;
}
