/* ===== ABOUT PAGE STYLES - ENHANCED ===== */

/* ===== GLOBAL STYLES ===== */
:root {
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading Indicator */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(11, 60, 93, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
    margin-bottom: var(--space-md);
}

.loading-text {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Page Load State */
.page-initializing {
    opacity: 0;
    visibility: hidden;
}

.page-ready {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.page-loaded .loading-indicator {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%,
        var(--primary-light) 100%);
    color: white;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-sm);
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.breadcrumb a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.6;
}

.breadcrumb .current {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===== ABOUT INTRO ===== */
.about-intro-section {
    padding: var(--space-xl) 0;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

.about-intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(11, 60, 93, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: 15px;
    line-height: 1.3;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.intro-description p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
}

.intro-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Image Frame */
.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #E6B800);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.image-badge span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.image-badge strong {
    font-size: 1.5rem;
    line-height: 1;
}

/* ===== MISSION & VISION ===== */
.mission-vision-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, 
        #f8fafc 0%,
        #ffffff 50%,
        #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(11, 60, 93, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.mv-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    padding-bottom: var(--space-lg);
}

.mv-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color));
    border-radius: 2px;
}

.mv-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.mv-header p {
    color: var(--text-medium);
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.mv-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: 
        0 10px 40px rgba(11, 60, 93, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 100%);
    z-index: -1;
}

.mv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mv-card.vision::after {
    background: linear-gradient(90deg, 
        var(--primary-color), 
        #0A3454);
}

.mv-card.mission::after {
    background: linear-gradient(90deg, 
        var(--primary-light), 
        #1D6FA5);
}

.mv-card.goal::after {
    background: linear-gradient(90deg, 
        var(--secondary-color), 
        #E6B800);
}

.mv-card:hover::after {
    opacity: 1;
}

.mv-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(11, 60, 93, 0.15),
        0 8px 24px rgba(212, 175, 55, 0.1);
    border-color: rgba(11, 60, 93, 0.1);
}

.mv-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 0 20px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mv-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.mv-card.vision .mv-icon {
    color: var(--primary-color);
    border: 2px solid rgba(11, 60, 93, 0.2);
}

.mv-card.vision .mv-icon-bg {
    background: radial-gradient(circle, 
        var(--primary-color) 0%, 
        transparent 70%);
}

.mv-card.mission .mv-icon {
    color: var(--primary-light);
    border: 2px solid rgba(29, 111, 165, 0.2);
}

.mv-card.mission .mv-icon-bg {
    background: radial-gradient(circle, 
        var(--primary-light) 0%, 
        transparent 70%);
}

.mv-card.goal .mv-icon {
    color: var(--secondary-color);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.mv-card.goal .mv-icon-bg {
    background: radial-gradient(circle, 
        var(--secondary-color) 0%, 
        transparent 70%);
}

.mv-card:hover .mv-icon-bg {
    transform: scale(1.3);
    opacity: 0.15;
}

.mv-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    width: 100%;
}

.mv-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 1.5px;
    opacity: 0.5;
    transition: width 0.3s ease;
}

.mv-card.vision h3::after {
    background: var(--primary-color);
}

.mv-card.mission h3::after {
    background: var(--primary-light);
}

.mv-card.goal h3::after {
    background: var(--secondary-color);
}

.mv-card:hover h3::after {
    width: 80px;
}

.mv-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    flex-grow: 1;
    position: relative;
    padding: 0 10px;
}

.mv-card p::before {
    content: '"';
    position: absolute;
    top: -15px;
    right: 0;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(11, 60, 93, 0.1);
    line-height: 1;
}

.mv-card p::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(11, 60, 93, 0.1);
    line-height: 1;
}

/* MV Card Animation */
@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.mv-card.vision {
    animation: floatCard 8s ease-in-out infinite;
}

.mv-card.mission {
    animation: floatCard 8s ease-in-out infinite 2s;
}

.mv-card.goal {
    animation: floatCard 8s ease-in-out infinite 4s;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, 
        #ffffff 0%,
        #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230B3C5D' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E"),
        radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.why-choose-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: transparent;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: var(--space-sm);
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.3;
}

.why-choose-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color));
    border-radius: 2px;
}

.why-choose-header p {
    color: var(--text-medium);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    counter-reset: feature-counter;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: 
        0 10px 40px rgba(11, 60, 93, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.feature-card::before {
    content: counter(feature-counter);
    counter-increment: feature-counter;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(11, 60, 93, 0.07);
    line-height: 1;
    z-index: 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-light), 
        var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(11, 60, 93, 0.15),
        0 8px 24px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-icon-container {
    position: relative;
    margin-bottom: var(--space-lg);
    z-index: 1;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(11, 60, 93, 0.1), 
        rgba(29, 111, 165, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, 
        var(--primary-light), 
        var(--primary-color));
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    color: white;
    transform: scale(1.1);
}

.feature-icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: rgba(11, 60, 93, 0.05);
    opacity: 0;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon-bg {
    opacity: 1;
    transform: scale(1.2);
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    width: 100%;
}

.feature-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 1.5px;
    transition: width 0.3s ease;
}

.feature-card:hover h4::after {
    width: 80px;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    flex-grow: 1;
}

.feature-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: var(--space-lg);
    align-self: flex-start;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-badge {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateX(5px);
}

/* Feature Card Animation */
@keyframes featurePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.feature-card:nth-child(odd) {
    animation: featurePulse 6s ease-in-out infinite;
}

.feature-card:nth-child(even) {
    animation: featurePulse 6s ease-in-out infinite 3s;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%,
        var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}
/* 
.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
    line-height: 1; */
    /* background: linear-gradient(135deg, white, rgba(255,255,255,0.9)); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* text-shadow: 0 2px 10px rgba(255,255,255,0.2); */
/* } */

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 600;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: var(--space-xl) 0;
    background: var(--background-off-white);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.team-card {
    background: var(--card-background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(11, 60, 93, 0.03), 
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: var(--space-xl);
    position: relative;
    z-index: 1;
}

.team-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.team-position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.team-desc {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: var(--space-md);
}

.team-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: rgba(11, 60, 93, 0.05);
}

.team-contact a:hover {
    color: var(--primary-light);
    background: rgba(11, 60, 93, 0.1);
}

.team-contact i {
    color: var(--secondary-color);
}

.team-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-md);
}

.qualification {
    background: var(--background-off-white);
    color: var(--text-medium);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.team-card:hover .qualification {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: var(--space-xl) 0;
    background: var(--background-light);
    position: relative;
}

.partners-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partners-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    font-size: 1.05rem;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
}

.partner-logo {
    background: var(--card-background);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.partner-logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.partner-logo:hover i {
    color: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.partner-logo span {
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, 
        rgba(11, 60, 93, 0.05), 
        rgba(212, 175, 55, 0.05));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(11, 60, 93, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    line-height: 1.3;
}

.cta-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary:hover,
.cta-buttons .btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cta-buttons .btn-primary:hover i,
.cta-buttons .btn-outline:hover i {
    transform: translateX(-5px);
    transition: transform 0.3s ease;
}

/* ===== BACK TO TOP & SCROLL PROGRESS ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    z-index: 1001;
    transition: width 0.1s ease;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .mv-grid {
        gap: var(--space-lg);
    }
    
    .mv-card {
        padding: var(--space-lg);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .intro-text h2::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-header h2 {
        font-size: 2.4rem;
    }
    
    .mv-icon-container {
        width: 90px;
        height: 90px;
    }
    
    .mv-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .image-frame {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mv-header h2 {
        font-size: 2.2rem;
    }
    
    .mv-header p {
        font-size: 1rem;
    }
    
    .mv-card {
        padding: var(--space-xl);
    }
    
    .mv-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .feature-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .intro-text h2 {
        font-size: 1.8rem;
    }
    
    .mv-header h2 {
        font-size: 2rem;
    }
    
    .why-choose-header h2 {
        font-size: 2rem;
    }
    
    .why-choose-header p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: var(--space-lg);
    }
    
    .feature-card {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .mv-icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: var(--space-lg);
    }
    
    .mv-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }
    
    .mv-card h3 {
        font-size: 1.4rem;
    }
    
    .mv-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .feature-card h4 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .feature-card::before {
        font-size: 3rem;
        top: 15px;
        left: 15px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .loading-spinner {
        animation: none;
        border-top-color: var(--primary-color);
    }
    
    .mv-card.vision,
    .mv-card.mission,
    .mv-card.goal,
    .feature-card:nth-child(odd),
    .feature-card:nth-child(even) {
        animation: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .back-to-top,
    .scroll-progress,
    .loading-indicator,
    .hamburger,
    .nav-actions,
    .footer-social,
    .newsletter,
    .cta-buttons {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .page-hero {
        background: white !important;
        color: black !important;
        height: auto;
        min-height: auto;
        padding: 2cm 0;
    }
    
    .page-hero::before {
        display: none;
    }
    
    .hero-content h1 {
        color: black;
        font-size: 24pt;
    }
    
    .breadcrumb {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
        padding: 1cm 0 !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 1cm !important;
    }
    
    .mv-card,
    .feature-card,
    .team-card,
    .partner-logo {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
    
    .stats-grid {
        display: block;
    }
    
    .stat-item {
        display: inline-block;
        width: 48%;
        margin-bottom: 0.5cm;
        page-break-inside: avoid;
    }
    
    a {
        color: black;
        text-decoration: none;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0A2D4D;
        --primary-light: #1A4D7A;
        --secondary-color: #B8860B;
        --text-dark: #000000;
        --text-medium: #333333;
    }
    
    .feature-badge,
    .qualification,
    .team-contact a {
        border-width: 2px;
    }
}

/* ===== IMAGE LOADING STATES ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

img.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

