/* ===================================
   About Page - Modern Professional Styles
   =================================== */

:root {
    --primary-color: #f57c00;
    --primary-dark: #e65100;
    --primary-light: #ffb74d;
    --secondary-color: #2E1065;
    --secondary-dark: #1a0b3d;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --background-light: #f7fafc;
    --background-white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-page {
    min-height: 100vh;
}

/* ===================================
   About Hero Section
   =================================== */

.about-hero-section {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(46, 16, 101, 0.95) 0%, 
        rgba(26, 11, 61, 0.90) 50%,
        rgba(46, 16, 101, 0.85) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-fast);
}

.about-breadcrumb a:hover {
    color: var(--primary-light);
}

.about-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.about-breadcrumb .current {
    color: var(--primary-light);
    font-weight: 500;
}

.about-hero-content {
    text-align: center;
    color: white;
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    transition: var(--transition-base);
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat-item .stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   About Content Section
   =================================== */

.about-content-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.content-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.content-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.content-card:last-child {
    margin-bottom: 0;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
}

.content-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.content-card h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 2px;
}

.content-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
}

.content-card p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card ol,
.content-card ul {
    margin: 1.5rem 0;
}

.content-card ol li,
.content-card ul li {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.content-card ol li strong,
.content-card ul li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.focus-list {
    list-style: none;
    padding-left: 0;
}

.focus-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.focus-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.operation-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-base);
}

.operation-item:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.operation-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.operation-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 400px;
        padding: 6rem 0 4rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.125rem;
    }

    .about-hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .about-hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-item {
        padding: 1.25rem 1.5rem;
    }

    .hero-stat-item .stat-number {
        font-size: 2rem;
    }

    .about-content-section {
        padding: 3rem 0;
    }

    .content-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .content-card h2 {
        font-size: 1.75rem;
    }

    .operations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 5rem 0 3rem;
    }

    .about-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stat-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .content-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }
}

.about-page .page-header {
    max-width: 75rem;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    text-align: center;
    border-bottom: 0.0625rem solid rgba(37, 33, 99, 0.1);
}

.about-page .page-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #252163;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-page .page-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ff8800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-content {
    max-width: 75rem;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-card {
    padding: 0 0 4rem 0;
    margin-bottom: 4rem;
    border-bottom: 0.0625rem solid rgba(37, 33, 99, 0.1);
}

.content-card:last-child {
    border-bottom: none;
}

.content-card h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #252163;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.content-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #252163;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.content-card h3:first-of-type {
    margin-top: 0;
}

.content-card p {
    font-size: 1.125rem;
    color: #495057;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    margin-top: 3rem;
}

.operation-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border-left: 0.125rem solid #ff8800;
    padding-left: 2rem;
}

.operation-item h3 {
    color: #252163;
    margin-bottom: 1rem;
    margin-top: 0;
    font-size: 1.25rem;
}

.operation-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

.contact-card {
    background: #252163;
    color: white;
    padding: 4rem 3rem;
    margin: 4rem 0 0 0;
    border-bottom: none;
}

.contact-card h2 {
    color: white;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.contact-details a {
    color: #ff8800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff9900;
    text-decoration: underline;
}

.contact-details strong {
    color: white;
}

/* Responsive Design */
@media (max-width: 64em) {
    .about-page .page-header {
        padding: 4rem 2rem 3rem;
    }

    .about-page .page-title {
        font-size: 2.75rem;
    }

    .about-page .page-subtitle {
        font-size: 1.25rem;
    }

    .about-content {
        padding: 3rem 2rem;
    }

    .operations-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 48em) {
    .about-page .page-header {
        padding: 3rem 1.5rem 2.5rem;
    }

    .about-page .page-title {
        font-size: 2.25rem;
    }

    .about-page .page-subtitle {
        font-size: 1rem;
    }

    .about-content {
        padding: 2.5rem 1.5rem;
    }

    .content-card {
        padding: 0 0 3rem 0;
        margin-bottom: 3rem;
    }

    .content-card h2 {
        font-size: 2rem;
    }

    .content-card h3 {
        font-size: 1.25rem;
    }

    .operation-item {
        padding-left: 1.5rem;
    }

    .contact-card {
        padding: 3rem 2rem;
    }
}

/* Old About Hero Section */
body {
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    font-size: var(--base-font-size);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* About Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, #2E1065 0%, #1a0b3d 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 124, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 124, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero h1 {
    font-size: var(--h1-size);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--cce-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: var(--large-size);
    opacity: 0.95;
    line-height: 1.8;
}

/* About Content Sections */
.about-section {
    padding: 5rem 0;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .about-container {
        padding: 0 2rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-content h2 {
    font-size: var(--h2-size);
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--cce-orange) 0%, var(--cce-orange-light) 100%);
    border-radius: 2px;
}

.about-content p {
    font-size: var(--base-font-size);
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-0.5rem);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission, Vision, Values */
.mvv-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2E1065 0%, #1a0b3d 100%);
    color: white;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mvv-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cce-orange) 0%, var(--cce-orange-light) 100%);
}

.mvv-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2rem 4rem rgba(245, 124, 0, 0.2);
}

.mvv-card h3 {
    font-size: var(--h3-size);
    margin-bottom: 1.5rem;
    color: var(--cce-orange);
}

.mvv-card p {
    line-height: 1.8;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 124, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2rem 4rem rgba(245, 124, 0, 0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--cce-orange);
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: var(--h4-size);
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.team-card .role {
    color: var(--cce-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: var(--small-size);
    line-height: 1.6;
    color: var(--muted-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .mvv-section {
        padding: 3rem 0;
    }
    
    .team-section {
        padding: 3rem 0;
    }
}