/* ===================================
   ABOUT PAGE STYLES - VintushTech
   Using CSS Custom Properties (Tokens)
   =================================== */

/* ===== CSS CUSTOM PROPERTIES / TOKENS ===== */
:root {
    /* Colors - Light Theme */
    --about-bg-primary: #fff5f5;
    --about-bg-secondary: #ffffff;
    --about-bg-card: #ffffff;
    --about-bg-dark: #0a0a0a;
    --about-bg-darker: #050505;
    --about-bg-alt: #111111;

    --about-text-primary: #000000;
    --about-text-secondary: #444444;
    --about-text-muted: #888888;
    --about-text-light: #666666;

    --about-border-color: rgba(0, 0, 0, 0.08);
    --about-border-light: #f0f0f0;
    --about-border-dark: #2a2a2a;

    --about-accent: #000000;
    --about-accent-secondary: #333333;
    --about-accent-hover: #222222;

    --about-shadow: rgba(0, 0, 0, 0.08);
    --about-shadow-hover: rgba(0, 0, 0, 0.12);
    --about-shadow-dark: rgba(0, 0, 0, 0.3);

    --about-icon-bg: #000000;
    --about-icon-text: #ffffff;

    /* Spacing */
    --about-section-padding: 100px 50px;
    --about-card-padding: 40px;
    --about-card-radius: 24px;
    --about-border-radius: 16px;

    /* Typography */
    --about-font-family: 'Poppins', sans-serif;
    --about-heading-weight: 700;
    --about-body-weight: 400;

    /* Transitions */
    --about-transition: all 0.4s ease;
}

/* Dark Theme Tokens */
[data-theme="dark"] {
    --about-bg-primary: #0a0a0a;
    --about-bg-secondary: #0a0a0a;
    --about-bg-card: #1a1a1a;
    --about-bg-dark: #050505;
    --about-bg-alt: #111111;

    --about-text-primary: #ffffff;
    --about-text-secondary: #b0b0b0;
    --about-text-muted: #888888;
    --about-text-light: #b0b0b0;

    --about-border-color: #2a2a2a;
    --about-border-light: #2a2a2a;

    --about-shadow: rgba(0, 0, 0, 0.3);
    --about-shadow-hover: rgba(0, 0, 0, 0.4);
    --about-shadow-dark: rgba(0, 0, 0, 0.5);

    --about-icon-bg: #ffffff;
    --about-icon-text: #000000;
}

/* ===== BASE STYLES ===== */
.about-page {
    font-family: var(--about-font-family);
    background: var(--about-bg-primary);
    color: var(--about-text-primary);
    overflow-x: hidden;
    padding-top: 95px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--about-section-padding);
}

.section-label {
    display: inline-block;
    padding: 14px 36px;
    background: #000000;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .section-label {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* Center-aligned variant for section headers */
.mission-section-header .section-label,
.journey-header .section-label,
.values-header .section-label,
.expertise-header .section-label,
.team-header .section-label,
.stats-header .section-label {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
    margin-top: 30px;
}

h2 {
    font-size: 42px;
    font-weight: var(--about-heading-weight);
    color: var(--about-text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

p {
    font-size: 16px;
    color: var(--about-text-secondary);
    line-height: 1.8;
}

/* ===== 1. HERO / INTRO SECTION ===== */
.about-hero {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: url("/static/website/images/hero.png") center/cover no-repeat;
    background-attachment: fixed;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 800px;
}

.about-hero-content .about-label {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.about-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.about-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

[data-theme="dark"] .about-hero {
    background-attachment: scroll;
}

[data-theme="dark"] .about-hero-content h1 {
    color: #ffffff;
}

[data-theme="dark"] .about-hero-content p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== 2. COMPANY OVERVIEW ===== */
.overview-section {
    background: var(--about-bg-primary);
}

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

.overview-image {
    position: relative;
}

.overview-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--about-card-radius);
    box-shadow: 0 30px 60px var(--about-shadow);
    height: 500px;
}

.overview-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.overview-img-wrapper:hover img {
    transform: scale(1.03);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--about-bg-secondary);
    border-radius: 20px;
    padding: 20px 28px;
    box-shadow: 0 15px 40px var(--about-shadow);
    border: 1px solid var(--about-border-light);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--about-text-primary);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 12px;
    color: var(--about-text-muted);
    font-weight: 500;
    margin-top: 4px;
}

[data-theme="dark"] .floating-badge {
    background: var(--about-bg-card);
    border-color: var(--about-border-dark);
}

[data-theme="dark"] .badge-number {
    color: var(--about-text-primary);
}

.overview-content h2 {
    margin-bottom: 24px;
}

.overview-content p {
    margin-bottom: 16px;
}

.overview-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--about-border-color);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--about-text-primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--about-text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* ===== 3. MISSION & VISION ===== */
.mission-section {
    background: var(--about-bg-primary);
}

.mission-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mission-section-header h2 {
    margin-bottom: 12px;
}

.mission-section-header p {
    max-width: 520px;
    margin: 0 auto;
    color: var(--about-text-muted);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mission-card {
    background: var(--about-bg-card);
    border-radius: 28px;
    padding: 48px 40px 40px;
    border: 1px solid var(--about-border-light);
    box-shadow: 0 20px 60px var(--about-shadow);
    transition: var(--about-transition);
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px var(--about-shadow-hover);
}

/* Colored top accent bar */
.mission-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 28px 28px 0 0;
}

.mission-card--mission .mission-card-accent {
    background: #000000;
}

.mission-card--vision .mission-card-accent {
    background: #000000;
}

/* Large number badge in top-right corner */
.mission-card-badge {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 64px;
    font-weight: 900;
    color: var(--about-border-light);
    line-height: 1;
    letter-spacing: -2px;
    user-select: none;
    transition: color 0.4s ease;
}

[data-theme="dark"] .mission-card-badge {
    color: #2a2a2a;
}

.mission-card:hover .mission-card-badge {
    color: rgba(0, 0, 0, 0.06);
}

/* Icon */
.mission-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
}

.mission-card--mission .mission-icon {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-card--vision .mission-icon {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Card body */
.mission-card-body h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--about-text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.mission-card-body p {
    font-size: 16px;
    color: var(--about-text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Bullet list */
.mission-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mission-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--about-text-secondary);
}

.mission-card--mission .mission-bullets li i {
    color: #ffffff;
    font-size: 14px;
    flex-shrink: 0;
}

.mission-card--vision .mission-bullets li i {
    color: #ffffff;
    font-size: 14px;
    flex-shrink: 0;
}

[data-theme="dark"] .mission-card {
    background: var(--about-bg-card);
    border-color: var(--about-border-dark);
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 40px 28px 32px;
    }

    .mission-card-body h3 {
        font-size: 26px;
    }
}

/* ===== 4. OUR JOURNEY / STORY ===== */
.journey-section {
    background: var(--about-bg-primary);
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-header h2 {
    margin-bottom: 12px;
}

.journey-header p {
    max-width: 500px;
    margin: 0 auto;
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--about-border-light);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #000000;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--about-bg-primary);
}

.timeline-content {
    background: var(--about-bg-card);
    border-radius: var(--about-card-radius);
    padding: 24px;
    border: 1px solid var(--about-border-light);
    box-shadow: 0 15px 40px var(--about-shadow);
    max-width: 400px;
}

.timeline-year {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--about-text-primary);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--about-text-secondary);
}

/* ===== 5. CORE VALUES ===== */
.values-section {
    background: var(--about-bg-primary);
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    background: var(--about-bg-card);
    border-radius: var(--about-card-radius);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--about-border-light);
    box-shadow: 0 15px 50px var(--about-shadow);
    transition: var(--about-transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px var(--about-shadow-hover);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--about-icon-bg);
    color: var(--about-icon-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--about-text-primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--about-text-secondary);
    line-height: 1.6;
}

/* ===== 6. WHAT MAKES US DIFFERENT (USP) ===== */
.usp-section {
    background: var(--about-bg-primary);
}

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

.usp-content h2 {
    margin-bottom: 16px;
}

.usp-content>p {
    margin-bottom: 32px;
}

.usp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.usp-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.usp-list li i {
    color: #000000;
    font-size: 20px;
    margin-top: 2px;
}

.usp-list li h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--about-text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.usp-list li p {
    font-size: 15px;
    color: var(--about-text-secondary);
    line-height: 1.6;
}

.usp-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--about-card-radius);
    box-shadow: 0 30px 60px var(--about-shadow);
    height: 450px;
}

.usp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== 7. OUR EXPERTISE / CAPABILITIES ===== */
.expertise-section {
    background: linear-gradient(180deg, var(--about-bg-primary) 0%, var(--about-bg-secondary) 100%);
}

.expertise-header {
    text-align: center;
    margin-bottom: 60px;
}


.expertise-header h2 {
    margin-bottom: 12px;
}

.expertise-header p {
    max-width: 500px;
    margin: 0 auto;
}

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

.expertise-card {
    background: var(--about-bg-card);
    border-radius: var(--about-card-radius);
    padding: 36px 28px;
    border: 1px solid var(--about-border-light);
    box-shadow: 0 15px 50px var(--about-shadow);
    transition: var(--about-transition);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #000000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px var(--about-shadow-hover);
    border-color: transparent;
}

.expertise-icon {
    width: 64px;
    height: 64px;
    background: #000000;
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expertise-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--about-text-primary);
    margin-bottom: 12px;
}

.expertise-card p {
    font-size: 14px;
    color: var(--about-text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tags span {
    padding: 6px 14px;
    background: var(--about-bg-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--about-text-secondary);
    border: 1px solid var(--about-border-light);
    transition: var(--about-transition);
}

.expertise-card:hover .expertise-tags span {
    background: #f0f0f0;
    border-color: #000000;
    color: #000000;
}

/* ===== 8. TEAM SECTION ===== */
.team-section {
    background: var(--about-bg-primary);
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    margin-bottom: 12px;
}

.team-header p {
    max-width: 500px;
    margin: 0 auto;
}

.team-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding: 20px 10px 40px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--about-text-primary) var(--about-border-light);
}

.team-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.team-scroll-container::-webkit-scrollbar-track {
    background: var(--about-border-light);
    border-radius: 10px;
}

.team-scroll-container::-webkit-scrollbar-thumb {
    background: var(--about-text-primary);
    border-radius: 10px;
}

.team-cards-wrapper {
    display: flex;
    gap: 24px;
    padding-bottom: 10px;
}

.team-member-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--about-bg-card);
    border-radius: var(--about-card-radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--about-border-light);
    box-shadow: 0 20px 60px var(--about-shadow);
    scroll-snap-align: start;
    transition: var(--about-transition);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px var(--about-shadow-hover);
}

.team-card-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--about-border-light);
}

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

.team-member-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--about-text-primary);
    margin-bottom: 4px;
}

.team-member-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--about-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.team-member-bio {
    font-size: 14px;
    color: var(--about-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--about-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--about-text-primary);
    transition: var(--about-transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--about-icon-bg);
    color: var(--about-icon-text);
    transform: scale(1.1);
}

.view-profile-btn {
    background: var(--about-icon-bg);
    color: var(--about-icon-text);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--about-transition);
}

.view-profile-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* ===== 9. WORK CULTURE / APPROACH ===== */
.culture-section {
    background: var(--about-bg-primary);
}

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

.culture-content h2 {
    margin-bottom: 16px;
}

.culture-content>p {
    margin-bottom: 32px;
}

.culture-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.culture-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.culture-number {
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--about-border-light);
}

.culture-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--about-text-primary);
    margin-bottom: 4px;
}

.culture-text p {
    font-size: 14px;
    color: var(--about-text-secondary);
}

.culture-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--about-card-radius);
    box-shadow: 0 30px 60px var(--about-shadow);
    height: 450px;
}

.culture-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== 10. ACHIEVEMENTS / STATS ===== */
.stats-section {
    background: var(--about-bg-primary);
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.stats-card {
    background: var(--about-bg-card);
    border-radius: var(--about-card-radius);
    padding: 40px 24px;
    text-align: center;
    border: 1px solid var(--about-border-light);
    box-shadow: 0 15px 50px var(--about-shadow);
    transition: var(--about-transition);
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px var(--about-shadow-hover);
}

.stats-icon {
    width: 50px;
    height: 50px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 20px;
}

.stats-number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-label {
    display: block;
    font-size: 14px;
    color: var(--about-text-muted);
    font-weight: 500;
}

/* ===== 11. CTA SECTION ===== */
.about-cta-section {
    background: var(--about-bg-primary);
    padding: 100px 50px;
}

.about-cta-card {
    background: var(--about-bg-card);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 1px solid var(--about-border-light);
    box-shadow: 0 20px 60px var(--about-shadow);
    position: relative;
    overflow: hidden;
}

.about-cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #a28686;
    opacity: 0.3;
}

.about-cta-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #a28686;
    opacity: 0.3;
}

[data-theme="dark"] .about-cta-card {
    background: var(--about-bg-card);
    border-color: var(--about-border-dark);
}

[data-theme="dark"] .about-cta-card::before,
[data-theme="dark"] .about-cta-card::after {
    background: var(--about-border-dark);
}

.about-cta-card h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.about-cta-card h3 {
    position: relative;
    z-index: 1;
    font-size: 52px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

[data-theme="dark"] .about-cta-card h3 {
    color: #ffffff;
}

.about-cta-card p {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--about-text-secondary);
}

.about-cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.primary-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--about-icon-bg);
    color: var(--about-icon-text);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--about-transition);
}

.primary-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.secondary-btn {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--about-text-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--about-transition);
    border: 2px solid var(--about-text-primary);
}

.secondary-btn:hover {
    background: var(--about-icon-bg);
    color: var(--about-icon-text);
    border-color: var(--about-icon-bg);
}

/* ===== 12. FOOTER (About Page Only) ===== */
.about-footer {
    background: var(--about-bg-dark);
    color: #ffffff;
}

.about-footer-top {
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.about-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-footer-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
}

.about-footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: #999999;
    max-width: 280px;
}

.about-footer-social {
    display: flex;
    gap: 12px;
}

.about-footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid #333333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.about-footer-social a:hover {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
}

.about-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-footer-col h4 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-footer-col ul li a {
    color: #999999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.about-footer-col ul li a:hover {
    color: #ffffff;
}

.about-footer-col ul li a i {
    margin-right: 8px;
    font-size: 12px;
}

.about-footer-bottom {
    padding: 24px 80px;
    border-top: 1px solid #222222;
    text-align: center;
}

.about-footer-bottom p {
    font-size: 13px;
    color: #666666;
}

/* ===== PROFILE MODAL ===== */
.profile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.profile-modal.active {
    display: flex;
}

.profile-modal-content {
    background: var(--about-bg-card);
    border-radius: 30px;
    padding: 48px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

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

.profile-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    color: var(--about-text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.profile-modal-close:hover {
    color: var(--about-text-primary);
}

.modal-profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--about-border-light);
    margin-bottom: 20px;
}

.modal-member-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--about-text-primary);
    margin-bottom: 8px;
}

.modal-member-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--about-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.modal-member-bio {
    font-size: 15px;
    color: var(--about-text-secondary);
    line-height: 1.7;
    text-align: justify;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {

    .overview-grid,
    .usp-grid,
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .about-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 40px;
    }

    .about-footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 32px;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .section-container {
        padding: 80px 20px;
    }

    .values-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

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

    /* Timeline layout maintained from desktop with adjusted spacing for mobile */
    .timeline-item {
        padding-right: calc(50% + 15px);
        margin-bottom: 30px;
    }
    .timeline-item:nth-child(even) {
        padding-left: calc(50% + 15px);
        padding-right: 0;
    }
    .timeline-content {
        padding: 15px;
        border-radius: 16px;
    }
    .timeline-dot {
        width: 12px;
        height: 12px;
    }


    .about-cta-section {
        padding: 60px 20px;
    }

    .about-cta-card {
        padding: 40px 24px;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-footer-top {
        padding: 40px 24px;
    }

    .about-footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-footer-bottom {
        padding: 20px 24px;
    }

    .overview-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 28px;
    }

    .about-hero-content h1 {
        font-size: 28px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

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

    .team-member-card {
        width: 260px;
    }
}

/* ===== GLOBAL REACH SECTION ===== */
.global-reach-section {
    background: var(--about-bg-primary);
    padding: 80px 50px;
}

.global-reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.global-reach-content h2 {
    margin-bottom: 20px;
}

.global-reach-content p {
    margin-bottom: 32px;
}

.global-stats {
    display: flex;
    gap: 40px;
}

.global-stat {
    text-align: center;
}

.global-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: grey;
    line-height: 1;
}

.global-stat-label {
    display: block;
    font-size: 14px;
    color: var(--about-text-muted);
    font-weight: 500;
    margin-top: 8px;
}

.global-reach-globe {
    display: flex;
    justify-content: center;
    align-items: center;
}

.global-reach-globe .chart-container {
    width: 100%;
    max-width: 500px;
    background: rgba(240, 230, 210, 0.25);
    border-radius: 24px;
    backdrop-filter: blur(2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 245, 0.6);
    padding: 10px;
}

.global-reach-globe #chartdiv {
    width: 100%;
    height: 400px;
    min-height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    background: #ece2d0;
    transition: all 0.2s;
}

@media (max-width: 900px) {
    .global-reach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .global-reach-globe .chart-container {
        max-width: 100%;
    }

    .global-stats {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .global-reach-section {
        padding: 60px 20px;
    }

    .global-reach-globe #chartdiv {
        height: 300px;
        min-height: 280px;
    }

    .global-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
}

/* ===== FUTURE PLANS SECTION ===== */
.future-plans-section {
    padding: 100px 50px;
    background: #fff5f5;
}

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

.future-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.future-header p {
    font-size: 17px;
    color: #666;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.future-card {
    padding: 40px 30px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.future-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #000;
}

.future-number {
    font-size: 14px;
    font-weight: 800;
    color: #888;
    background: #f5f5f5;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.future-icon {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.future-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.future-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

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

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

    .future-plans-section {
        padding: 60px 20px;
    }
}

[data-theme="dark"] .future-plans-section {
    background: #0a0a0a;
}

[data-theme="dark"] .future-card {
    background: #111;
    border-color: #222;
}

[data-theme="dark"] .future-card:hover {
    border-color: #fff;
}

[data-theme="dark"] .future-card h3 {
    color: #fff;
}

[data-theme="dark"] .future-card p {
    color: #aaa;
}

[data-theme="dark"] .future-number {
    background: #1a1a1a;
    color: #888;
}

[data-theme="dark"] .future-icon {
    background: #fff;
    color: #000;
}

[data-theme="dark"] .future-header h2 {
    color: #fff;
}
