/* ============================================
   ABOUT_US.CSS - Fully Responsive
   ============================================ */

/* ---------- DESIGN SYSTEM VARIABLES ---------- */
:root {
    --gold-primary: #e6b800;
    --gold-gradient: linear-gradient(135deg, #e6b800 0%, #ffd966 100%);
    --navy-ultra-deep: #051220;
    --navy-deep: #0a1929;
    --navy-medium: #1a2a3a;
    --white-pure: #ffffff;
    --white-off: #fafbfc;
    --gray-100: #f0f2f4;
    --gray-200: #e2e6ea;
    --gray-300: #cbd0d6;
    --gray-400: #9aa1b0;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.03);
    --shadow-md: 0 15px 35px rgba(0,0,0,0.05);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.08);
    --shadow-xl: 0 35px 70px rgba(0,0,0,0.12);
    --transition-slow: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-medium: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: 0.2s ease;
}

/* ---------- CONTAINER FIXES ---------- */
.container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ---------- TYPOGRAPHY PREMIUM ---------- */
.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .section-header-centered {
        margin-bottom: 30px;
    }
}

.eyebrow-premium {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.eyebrow-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--gold-primary);
    transform: translateY(-50%);
}

.eyebrow-premium.light::before {
    background: var(--white-pure);
}

.eyebrow-premium.light {
    color: var(--white-pure);
}

.title-premium {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--navy-deep);
}

.title-premium.light {
    color: var(--white-pure);
}

.subtitle-premium {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .title-premium {
        font-size: 2.6rem;
    }
    
    .subtitle-premium {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .title-premium {
        font-size: 2.2rem;
    }
    
    .eyebrow-premium {
        font-size: 0.75rem;
        letter-spacing: 3px;
        padding-left: 25px;
    }
    
    .eyebrow-premium::before {
        width: 15px;
    }
}

@media (max-width: 576px) {
    .title-premium {
        font-size: 1.8rem;
    }
    
    .subtitle-premium {
        font-size: 1rem;
    }
}

/* ---------- CINEMATIC HERO ---------- */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.about-hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-media {
    width: 100%;
    height: 100%;
}

.hero-video-fallback {
    width: 100%;
    height: 100%;
}

.hero-video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay.multi-layer {
    background: linear-gradient(135deg, rgba(5,18,32,0.95) 0%, rgba(10,25,41,0.85) 70%);
}

.overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="rgba(230,184,0,0.02)"/></svg>');
    background-size: 60px 60px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    color: var(--white-pure);
    padding: 0 20px;
}

.breadcrumb-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.breadcrumb-premium a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    text-decoration: none;
}

.breadcrumb-premium a:hover {
    color: var(--gold-primary);
}

.breadcrumb-premium .separator {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.breadcrumb-premium .current {
    color: var(--white-pure);
    font-weight: 600;
    position: relative;
}

.breadcrumb-premium .current::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
}

.hero-title-group {
    margin-bottom: 30px;
}

.hero-pre-title {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 10px;
}

.hero-title {
    font-size: 5.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 20px;
}

.gold-text {
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(230,184,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    line-height: 1.5;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-cta .btn-scroll {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--white-pure);
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
}

.hero-cta .btn-scroll:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.btn-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.btn-scroll:hover .btn-icon {
    background: var(--navy-deep);
    color: var(--white-pure);
}

.hero-shapes .shape {
    position: absolute;
    background: rgba(230,184,0,0.03);
    border-radius: 50%;
    z-index: 5;
}

.shape-1 {
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
}

.shape-2 {
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
}

.shape-3 {
    top: 60%;
    right: 20%;
    width: 150px;
    height: 150px;
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .about-hero {
        min-height: 80vh;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-metrics {
        gap: 25px;
    }
    
    .metric-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-pre-title {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .metric-divider {
        display: none;
    }
    
    .metric-item {
        width: 100%;
    }
    
    .hero-cta .btn-scroll {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-pre-title {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .breadcrumb-premium {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .metric-value {
        font-size: 1.6rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-cta .btn-scroll {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- COMPANY PROFILE ---------- */
.company-profile {
    padding: 100px 0;
    background: var(--white-pure);
    position: relative;
    z-index: 10;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tag-line {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
}

.tag-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
}

.section-title-large {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--navy-deep);
}

.profile-text .lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 25px;
    line-height: 1.5;
}

.text-block {
    margin-bottom: 25px;
}

.text-block p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.profile-features {
    margin: 45px 0;
}

.feature-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    flex: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(230,184,0,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.profile-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--navy-deep);
    color: var(--white-pure);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230,184,0,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--navy-deep);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid var(--navy-deep);
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--navy-deep);
    color: var(--white-pure);
    transform: translateY(-3px);
}

/* Visual Grid */
.profile-visual {
    position: relative;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.visual-main {
    grid-column: 1 / -1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1.2;
}

.visual-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.visual-main:hover img {
    transform: scale(1.03);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,25,41,0.7) 0%, rgba(10,25,41,0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.accreditation-stamp {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.95);
    padding: 15px 25px;
    border-radius: 12px;
}

.stamp-icon {
    font-size: 2rem;
    color: var(--gold-primary);
}

.stamp-text {
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.4;
}

.visual-secondary {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
}

.visual-accent {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    margin-top: -50px;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-1 {
    bottom: 30px;
    left: -30px;
}

.card-2 {
    top: 30px;
    right: -30px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--navy-deep);
    flex-shrink: 0;
}

.card-data {
    display: flex;
    flex-direction: column;
}

.data-value {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--navy-deep);
}

.data-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Company Profile Responsive */
@media (max-width: 1200px) {
    .profile-grid {
        gap: 40px;
    }
    
    .section-title-large {
        font-size: 2.8rem;
    }
    
    .profile-text .lead {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .profile-content {
        order: 2;
    }
    
    .profile-visual {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section-title-large {
        font-size: 2.4rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .visual-accent {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .company-profile {
        padding: 70px 0;
    }
    
    .section-tag {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .tag-line {
        width: 40px;
    }
    
    .tag-text {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .section-title-large {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .profile-text .lead {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .text-block p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 0;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .profile-features {
        margin: 30px 0;
    }
    
    .profile-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .visual-overlay {
        padding: 20px;
    }
    
    .accreditation-stamp {
        padding: 12px 20px;
    }
    
    .stamp-icon {
        font-size: 1.6rem;
    }
    
    .stamp-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-title-large {
        font-size: 1.8rem;
    }
    
    .profile-text .lead {
        font-size: 1.1rem;
    }
    
    .text-block p {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .feature-info h4 {
        font-size: 1rem;
    }
    
    .feature-info p {
        font-size: 0.85rem;
    }
    
    .visual-grid {
        gap: 15px;
    }
    
    .visual-main, .visual-secondary, .visual-accent {
        border-radius: 16px;
    }
}

/* ---------- MISSION VISION PREMIUM ---------- */
.mission-vision-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white-off) 0%, var(--white-pure) 100%);
    position: relative;
}

.mv-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
}

.mv-column {
    background: var(--white-pure);
    padding: 50px;
    border-radius: 30px;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
    z-index: 2;
}

.mv-column:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.mission-column {
    border-top: 8px solid var(--gold-primary);
}

.vision-column {
    border-top: 8px solid var(--navy-deep);
}

.mv-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.badge-number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gold-primary);
    opacity: 0.3;
}

.badge-line {
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.mv-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(230,184,0,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 30px;
}

.mv-column h3 {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--navy-deep);
    margin-bottom: 20px;
}

.mv-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-primary);
    margin-bottom: 25px;
}

.mv-statement {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.mv-footer {
    border-top: 1px solid var(--gray-200);
    padding-top: 25px;
}

.mv-signature {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 2px;
}

.mv-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

/* Mission Vision Responsive */
@media (max-width: 992px) {
    .mv-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-accent {
        display: none;
    }
    
    .mv-column {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .mission-vision-premium {
        padding: 60px 0;
    }
    
    .mv-column {
        padding: 35px 30px;
    }
    
    .mv-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .mv-column h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .mv-statement {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .mv-column {
        padding: 30px 20px;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
    
    .mv-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .mv-column h3 {
        font-size: 1.4rem;
    }
    
    .mv-statement {
        font-size: 0.95rem;
    }
    
    .mv-signature {
        font-size: 0.8rem;
    }
}

/* ---------- VALUES MATRIX ---------- */
.values-premium {
    padding: 100px 0;
    background: var(--white-pure);
}

.values-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.value-tile {
    perspective: 1500px;
    height: 320px;
}

.tile-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.value-tile:hover .tile-inner {
    transform: rotateY(180deg);
}

.tile-front,
.tile-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.tile-front {
    background: var(--white-pure);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    align-items: center;
    text-align: center;
}

.value-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(230,184,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.value-tile:hover .value-icon-circle {
    background: var(--gold-primary);
    color: var(--navy-deep);
}

.tile-front h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 12px;
}

.value-motto {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tile-back {
    background: var(--navy-deep);
    color: var(--white-pure);
    transform: rotateY(180deg);
    align-items: flex-start;
    text-align: left;
    justify-content: space-between;
}

.tile-back p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.value-principle {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Values Matrix Responsive */
@media (max-width: 1200px) {
    .values-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-premium {
        padding: 70px 0;
    }
    
    .values-matrix {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .value-tile {
        height: 300px;
    }
    
    .tile-front, .tile-back {
        padding: 30px 25px;
    }
    
    .value-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .tile-front h4 {
        font-size: 1.2rem;
    }
    
    .value-motto {
        font-size: 0.8rem;
    }
    
    .tile-back p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .value-tile {
        height: 280px;
    }
    
    .tile-front, .tile-back {
        padding: 25px 20px;
    }
    
    .value-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .tile-front h4 {
        font-size: 1.1rem;
    }
    
    .tile-back p {
        font-size: 0.85rem;
    }
}

/* Touch device optimization */
@media (max-width: 768px) {
    .value-tile:hover .tile-inner {
        transform: none;
    }
    
    .value-tile.active .tile-inner {
        transform: rotateY(180deg);
    }
}

/* ---------- LEADERSHIP PREMIUM ---------- */
.leadership-premium {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.leadership-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.leadership-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-overlay {
    background: linear-gradient(135deg, rgba(5,18,32,0.97) 0%, rgba(10,25,41,0.95) 100%);
}

.leadership-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.leadership-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin: 30px 0;
}

.executive-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-bubble {
    display: flex;
    flex-direction: column;
}

.stat-digit {
    font-size: 2.4rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-caption {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-premium {
    background: var(--gold-primary);
    color: var(--navy-deep);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-premium:hover {
    background: var(--white-pure);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.leadership-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.executive-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.executive-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
    border-color: var(--gold-primary);
}

.executive-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.executive-card:hover .executive-image img {
    transform: scale(1.05);
}

.executive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10,25,41,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.executive-card:hover .executive-overlay {
    opacity: 1;
}

.executive-social a {
    width: 44px;
    height: 44px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    font-size: 1.2rem;
    text-decoration: none;
}

.executive-info {
    padding: 25px;
}

.executive-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 6px;
}

.executive-title {
    display: block;
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.executive-bg {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* Leadership Responsive */
@media (max-width: 1200px) {
    .leadership-grid {
        gap: 40px;
    }
    
    .executive-image {
        height: 240px;
    }
}

@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .leadership-intro {
        text-align: center;
    }
    
    .leadership-description {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .executive-stats {
        justify-content: center;
    }
    
    .leadership-showcase {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .leadership-premium {
        padding: 70px 0;
    }
    
    .leadership-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .executive-image {
        height: 260px;
    }
    
    .executive-stats {
        gap: 30px;
    }
    
    .stat-digit {
        font-size: 2rem;
    }
    
    .stat-caption {
        font-size: 0.8rem;
    }
    
    .leadership-description {
        font-size: 1rem;
        margin: 25px 0;
    }
}

@media (max-width: 576px) {
    .executive-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .stat-bubble {
        align-items: center;
    }
    
    .executive-info {
        padding: 20px;
    }
    
    .executive-info h4 {
        font-size: 1.1rem;
    }
    
    .executive-title {
        font-size: 0.8rem;
    }
}

/* ---------- GLOBAL FOOTPRINT ---------- */
.global-footprint {
    padding: 100px 0;
    background: var(--white-off);
}

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
    padding: 0 20px;
}

.hub-card {
    background: var(--white-pure);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.hub-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.hub-card:hover::before {
    transform: scaleX(1);
}

.hub-card.featured {
    border: 2px solid var(--gold-primary);
    transform: scale(1.02);
}

.hub-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.hub-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
    background: rgba(230,184,0,0.1);
    padding: 6px 12px;
    border-radius: 50px;
}

.hub-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
}

.hub-icon {
    width: 70px;
    height: 70px;
    background: rgba(230,184,0,0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.hub-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.hub-location {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.hub-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.capability {
    font-size: 0.75rem;
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 50px;
    color: var(--gray-700);
    font-weight: 600;
}

.hub-link {
    color: var(--navy-deep);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hub-link i {
    transition: transform 0.3s ease;
}

.hub-link:hover {
    color: var(--gold-primary);
}

.hub-link:hover i {
    transform: translateX(5px);
}

.network-visual {
    margin-top: 50px;
}

.network-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-panel {
    text-align: center;
}

.panel-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.panel-value {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gold-primary);
}

/* Global Footprint Responsive */
@media (max-width: 1200px) {
    .hubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hub-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .global-footprint {
        padding: 70px 0;
    }
    
    .hubs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }
    
    .hub-card {
        padding: 30px 25px;
    }
    
    .hub-card h3 {
        font-size: 1.4rem;
    }
    
    .hub-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .network-stats {
        gap: 30px;
    }
    
    .panel-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hub-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hub-card {
        padding: 25px 20px;
    }
    
    .hub-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .hub-card h3 {
        font-size: 1.3rem;
    }
    
    .capability {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .network-stats {
        flex-direction: column;
        gap: 25px;
    }
}

/* ---------- ACCREDITATIONS ---------- */
.accreditations-premium {
    padding: 80px 0;
    background: var(--white-pure);
}

.accred-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.accred-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.logo-item {
    text-align: center;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: rgba(230,184,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.logo-item:hover .logo-circle {
    background: var(--gold-primary);
    color: var(--navy-deep);
    transform: translateY(-5px);
}

.logo-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 5px;
}

.logo-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Accreditations Responsive */
@media (max-width: 992px) {
    .accred-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .accred-header {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .accreditations-premium {
        padding: 60px 0;
    }
    
    .accred-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .logo-circle {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .accred-logos {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .logo-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    
    .logo-circle {
        margin: 0;
    }
}

/* ---------- ESG COMMITMENT ---------- */
.esg-commitment {
    padding: 80px 0;
    background: var(--white-pure);
}

.esg-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, var(--white-off) 0%, var(--white-pure) 100%);
    border-radius: 40px;
    padding: 60px;
    margin: 0 20px;
}

.esg-statement {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin: 30px 0;
}

.esg-pillars {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.pillar {
    display: flex;
    gap: 20px;
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: rgba(230,184,0,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.pillar-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 5px;
}

.pillar-text p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.5;
}

.circular-progress {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.circular-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-value {
    font-size: 2.4rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gold-primary);
    display: block;
    margin-bottom: 8px;
}

.progress-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* ESG Responsive */
@media (max-width: 1200px) {
    .esg-container {
        gap: 40px;
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .esg-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }
    
    .esg-pillars {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pillar {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .esg-commitment {
        padding: 60px 0;
    }
    
    .esg-container {
        padding: 30px 25px;
        border-radius: 30px;
    }
    
    .esg-statement {
        font-size: 1.1rem;
        line-height: 1.7;
        margin: 25px 0;
    }
    
    .circular-progress {
        width: 220px;
        height: 220px;
    }
    
    .progress-value {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .esg-container {
        padding: 25px 20px;
    }
    
    .esg-statement {
        font-size: 1rem;
    }
    
    .pillar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .circular-progress {
        width: 180px;
        height: 180px;
    }
    
    .progress-value {
        font-size: 1.6rem;
    }
    
    .progress-label {
        font-size: 0.8rem;
    }
}

/* ---------- CTA PREMIUM ---------- */
.about-cta-premium {
    padding: 60px 0 100px;
    background: var(--white-off);
}

.cta-premium-card {
    background: linear-gradient(135deg, var(--navy-ultra-deep) 0%, var(--navy-deep) 100%);
    border-radius: 40px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(230,184,0,0.05) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: var(--white-pure);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--gold-primary);
    color: var(--navy-deep);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: var(--white-pure);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(230,184,0,0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white-pure);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: var(--white-pure);
    color: var(--navy-deep);
    border-color: var(--white-pure);
    transform: translateY(-3px);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.cta-guarantee i {
    color: var(--gold-primary);
}

/* CTA Responsive */
@media (max-width: 992px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-cta-premium {
        padding: 40px 0 70px;
    }
    
    .cta-premium-card {
        padding: 50px 30px;
        border-radius: 30px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-premium-card {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-guarantee {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* ---------- GENERAL RESPONSIVE UTILITIES ---------- */
@media (max-width: 768px) {
    section {
        overflow: hidden;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .btn-primary, .btn-outline, .btn-premium, .btn-cta-primary, .btn-cta-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Touch device optimizations */
@media (max-width: 768px) {
    .hub-card:hover,
    .executive-card:hover,
    .mv-column:hover,
    .value-tile:hover,
    .feature-card:hover {
        transform: none;
    }
    
    .hub-card:active,
    .executive-card:active,
    .mv-column:active,
    .value-tile:active,
    .feature-card:active {
        transform: scale(0.98);
    }
    
    .btn-primary, .btn-outline, .btn-premium, .btn-cta-primary, .btn-cta-secondary {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Landscape orientation */
@media (max-width: 992px) and (orientation: landscape) {
    .about-hero {
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-metrics {
        padding: 15px 0;
    }
    
    .executive-image {
        height: 200px;
    }
}

/* Print styles */
@media print {
    .about-hero,
    .leadership-backdrop,
    .hero-shapes,
    .cta-premium-card {
        background: none;
        color: #000;
    }
    
    .btn, .btn-scroll, .hub-link {
        display: none;
    }
}