/* ================================
   VKGL Landing Page Styles
   Pure CSS - No JavaScript Required
   ================================ */

/* ===== LOCAL FONT DECLARATIONS ===== */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color System */
    --navy-primary: #1a2332;
    --navy-dark: #0f1520;
    --charcoal: #2d3748;
    --steel-blue: #4a5f7f;
    --steel-light: #6b7c97;
    --cool-grey: #8892a3;
    --grey-light: #e2e8f0;
    --grey-ultralight: #f7fafc;
    --accent-gold: #d4af37;
    --accent-orange: #e67e22;
    --white: #ffffff;

    /* Typography Scale */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing System (8px base) */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-dark);
    margin-bottom: var(--space-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-sm);
    color: var(--steel-light);
}

a {
    color: var(--steel-blue);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--accent-orange);
}

/* ===== LAYOUT CONTAINER ===== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white,26, 35, 50, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-sm) 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    
    border-radius: 10px;
    flex-shrink: 0;
    
    transition: var(--transition-base);
}

.logo:hover .logo-icon-wrapper {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.logo-icon {
    width: 60px;
    height: 60px;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-tagline {
     color: red; /* Text color */
    -webkit-text-stroke: 0.5px yellow; /* Outline width and color */
    text-decoration: dashed;
    font-size: 1.1rem;
    font-weight: 100px;
    margin-top: 0;
    font-family: "Churchward Design Bold";
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(0.5rem, 1.2vw, var(--space-lg));
    align-items: center;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.90rem;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: var(--transition-base);
}

@media (min-width: 769px) {
    .nav-content {
        flex-wrap: nowrap;
    }

    .logo {
        flex: 0 0 auto;
    }

    .nav-links {
        flex: 1 1 auto;
        min-width: 0;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
}

.nav-links a:hover {
    color: var(--navy-dark);
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid var(--accent-orange);
}

.nav-cta {
    background-color: var(--accent-orange) !important;
    color: var(--white) !important;
    padding: var(--space-xs) var(--space-md) !important;
}

.nav-cta:hover {
    background-color: #d35400 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy-dark);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-menu-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white,26, 35, 50, 0.99);
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg);
    list-style: none;
    box-shadow: var(--shadow-lg);
}

.nav-menu-mobile.active {
    display: flex;
}

.nav-menu-mobile a {
    color: var(--navy-dark);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: 4px;
    transition: var(--transition-base);
    display: block;
}

.nav-menu-mobile a:hover {
    color: var(--navy-dark);
    background-color:var(--grey-light,255, 255, 255, 0.1);
}

/* ===== HERO SECTION ===== */
.hero,
.page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--charcoal) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(1.2) contrast(1.1);
}

.page-hero {
    min-height: 60vh;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--space-2xl) var(--space-lg);
}

.page-hero.hero-services {
    background-image:
        linear-gradient(135deg, rgba(26, 35, 50, 0.55) 0%, rgba(45, 55, 72, 0.5) 100%),
        url('../media/hero/hero-services.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero.hero-presence {
    background-image:
        linear-gradient(135deg, rgba(26, 35, 50, 0.55) 0%, rgba(45, 55, 72, 0.5) 100%),
        url('../media/world map.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero.hero-why {
    background-image:
        linear-gradient(135deg, rgba(26, 35, 50, 0.55) 0%, rgba(45, 55, 72, 0.5) 100%),
        url('../media/hero/hero-why.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero.hero-industries {
    background-image:
        linear-gradient(135deg, rgba(26, 35, 50, 0.55) 0%, rgba(45, 55, 72, 0.5) 100%),
        url('../media/hero/hero-industries.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero.hero-about {
    background-image:
        linear-gradient(135deg, rgba(26, 35, 50, 0.55) 0%, rgba(45, 55, 72, 0.5) 100%),
        url('../media/hero/hero-about.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.7) 0%, rgba(45, 55, 72, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: var(--space-2xl) var(--space-lg);
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: var(--space-lg);
    filter: brightness(0) invert(1); /* Make it white */
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--grey-light);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-sm);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    margin: 0 auto var(--space-md);
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--steel-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--grey-ultralight);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.about-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--steel-blue) 0%, var(--navy-primary) 100%);
    border-radius: 50%;
    color: var(--white);
}

.about-card h3 {
    font-size: 1.375rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-sm);
}

.about-card p {
    color: var(--steel-light);
    line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--white);
    padding: var(--space-3xl) 0;
}

.services-intro {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.services-intro p {
    font-size: 1.125rem;
    color: var(--steel-light);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background-color: var(--grey-ultralight);
    padding: var(--space-xl);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

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

.service-card:hover {
    border-color: var(--steel-blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(230, 126, 34, 0.15);
    background-color: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-md);
    color: var(--steel-blue);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-icon {
    color: var(--accent-orange);
    transform: scale(1.15) rotate(3deg);
}

.service-title {
    font-size: 1.375rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.service-description {
    color: var(--steel-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.service-features {
    background-color: rgba(230, 126, 34, 0.05);
    border-left: 3px solid var(--accent-orange);
    padding: var(--space-md);
    border-radius: 6px;
    margin-top: var(--space-md);
}

.service-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.service-features li {
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding-left: 0;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-orange);
    font-weight: 700;
    margin-right: var(--space-sm);
    font-size: 1.1rem;
}

/* ===== GLOBAL PRESENCE SECTION ===== */
.global-presence {
    background-color: var(--grey-ultralight);
}

.presence-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.world-map {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.world-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.9);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.7) 0%, rgba(45, 55, 72, 0.5) 100%);
}

.region-markers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--accent-orange);
    border: 3px solid var(--white);
    border-radius: 50%;
    animation: pulse 2s infinite;
    cursor: pointer;
}

.marker::after {
    content: attr(data-region);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    color: var(--navy-dark);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.marker:hover::after {
    opacity: 1;
}

.marker-1 { top: 40%; left: 25%; }
.marker-2 { top: 35%; left: 50%; }
.marker-3 { top: 50%; left: 60%; }
.marker-4 { top: 45%; left: 75%; }

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(230, 126, 34, 0);
    }
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
}

.region-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.region-card h4 {
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--grey-light);
}

.region-card ul {
    list-style: none;
}

.region-card li {
    padding: var(--space-xs) 0;
    color: var(--steel-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: var(--space-md);
}

.region-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

/* ===== WHY VKGL SECTION ===== */
.why-vkgl {
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-xl);
}

.why-card {
    padding: var(--space-xl);
    border: 2px solid var(--grey-light);
    border-radius: 12px;
    transition: var(--transition-base);
    position: relative;
}

.why-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--grey-light);
    line-height: 1;
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.why-card:hover .why-number {
    color: var(--accent-orange);
}

.why-card h3 {
    font-size: 1.375rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-sm);
}

.why-card p {
    color: var(--steel-light);
    line-height: 1.7;
}

/* ===== INDUSTRIES SECTION ===== */
.industries {
    background-color: var(--grey-ultralight);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: minimax(220px,auto);
    gap: var(--space-lg);
}

.industry-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.industry-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    color: var(--steel-blue);
    transition: var(--transition-base);
}

.industry-card:hover .industry-icon {
    color: var(--accent-orange);
    transform: scale(1.15);
}

.industry-card h3 {
    font-size: 1.125rem;
    color: var(--navy-dark);
    margin: 0;
}

/* ===== COMPANY STORY SECTION ===== */
.company-story {
    background-color: var(--white);
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    position: relative;
    padding: var(--space-2xl) 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-orange) 0%, var(--accent-gold) 50%, var(--accent-orange) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
}

.timeline-item:nth-child(odd) {
    direction: rtl;
}

.timeline-item:nth-child(odd) > * {
    direction: ltr;
}

.timeline-date {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    font-family: var(--font-heading);
    text-align: center;
    position: relative;
}

.timeline-date::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 3px solid var(--accent-orange);
    border-radius: 50%;
    top: 50%;
    right: -75px;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-date::after {
    right: auto;
    left: -75px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    color: var(--steel-light);
    line-height: 1.7;
}

/* ===== MISSION & VALUES SECTION ===== */
.mission-values {
    background-color: var(--grey-ultralight);
}

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

.value-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    transition: var(--transition-base);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotateY(360deg);
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--steel-light);
    line-height: 1.7;
}

/* ===== TEAM SECTION ===== */
.ceo-founder {
    background-color: var(--white);
}

.ceo-full-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.ceo-large-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ceo-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.4) 0%, rgba(15, 21, 32, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-3xl);
}

.ceo-name-badge {
    color: var(--white);
}

.ceo-name-badge h1 {
    font-size: 3.5rem;
    color: var(--grey-light);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.ceo-name-badge span {
    font-size: 1.5rem;
    color: var(--navy-dark);
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.ceo-founder-content {
    padding: var(--space-3xl) 0;
}

.ceo-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    background: linear-gradient(135deg, var(--grey-ultralight) 0%, rgba(232, 232, 240, 0.5) 100%);
    padding: var(--space-2xl);
    border-radius: 16px;
}

.ceo-info-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.ceo-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    color: var(--accent-orange);
    margin-bottom: var(--space-md);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.ceo-info-card h3 {
    color: var(--navy-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.75rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.info-description {
    font-size: 0.9rem;
    color: var(--steel-light);
    line-height: 1.5;
}

.ceo-detailed-content {
    margin-top: var(--space-3xl);
}

.ceo-section {
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-2xl);
}

.ceo-section:not(:last-child) {
    border-bottom: 1px solid var(--grey-light);
}

.ceo-section-header {
    margin-bottom: var(--space-xl);
}

.ceo-section-header h3 {
    font-size: 1.75rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.section-underline {
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.ceo-section p {
    color: var(--steel-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.expertise-item {
    background: var(--grey-ultralight);
    padding: var(--space-lg);
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
    transition: var(--transition-base);
}

.expertise-item:hover {
    background-color: rgba(212, 175, 55, 0.08);
    transform: translateX(4px);
}

.expertise-number {
    color: var(--accent-orange);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: var(--space-xs);
}

.expertise-item h4 {
    color: var(--navy-dark);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.expertise-item p {
    color: var(--steel-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.achievements-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.achievement-item {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    color: var(--white);
    padding: var(--space-2xl) var(--space-lg);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.achievement-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: var(--space-md);
}

.achievement-item h4 {
    color: var(--grey-light);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.achievement-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* ===== HTML INLINE-STYLE REPLACEMENTS (utilities / page-specific) ===== */
.section-header--mt-3xl {
    margin-top: var(--space-3xl);
}

.region-card-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--steel-light);
}

.benefits--presence {
    background-color: var(--white);
    padding: var(--space-3xl) 0;
}

.benefits-grid--presence {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.benefit-card--presence {
    background-color: var(--grey-ultralight);
    padding: var(--space-xl);
    border-radius: 12px;
    transition: var(--transition-base);
}

.benefit-card-title--presence {
    color: var(--navy-dark);
    margin-bottom: var(--space-sm);
}

.benefit-card-text--presence {
    color: var(--steel-light);
    line-height: 1.7;
}

.industry-solutions-section {
    background-color: var(--grey-ultralight);
    padding: var(--space-3xl) 0;
}

.industry-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.industry-solution-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.industry-solution-title {
    color: var(--navy-dark);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.industry-solution-desc {
    color: var(--steel-light);
    margin-bottom: var(--space-sm);
}

.industry-solution-list {
    list-style: none;
    color: var(--steel-light);
    font-size: 0.95rem;
}

.industry-solution-list li {
    padding: 0.5rem 0;
}

.capabilities-section {
    background-color: var(--white);
    padding: var(--space-3xl) 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.capability-card {
    padding: var(--space-lg);
    border: 1px solid var(--grey-light);
    border-radius: 12px;
    transition: var(--transition-base);
}

.capability-title {
    color: var(--navy-dark);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
}

.capability-check {
    color: var(--accent-orange);
    font-size: 1.75rem;
    margin-right: var(--space-sm);
}

.capability-text {
    color: var(--steel-light);
}

.why-benefits-section {
    background-color: var(--grey-ultralight);
    padding: var(--space-3xl) 0;
}

.why-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.why-benefit-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.why-benefit-title {
    color: var(--navy-dark);
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
}

.why-benefit-text {
    color: var(--steel-light);
    line-height: 1.7;
}

.testimonials-section {
    background-color: var(--white);
    padding: var(--space-3xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background-color: var(--grey-ultralight);
    padding: var(--space-xl);
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
}

.testimonial-quote {
    color: var(--steel-light);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.testimonial-author {
    color: var(--navy-dark);
    font-weight: 600;
    margin: 0;
}

@media (max-width: 1024px) {
    .ceo-full-image {
        height: 500px;
    }

    .ceo-name-badge h1 {
        font-size: 2.5rem;
    }

    .ceo-name-badge span {
        font-size: 1.2rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .logo-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .logo-text h2 {
        font-size: 1rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }

    .ceo-full-image {
        height: 400px;
    }

    .ceo-image-overlay {
        padding: var(--space-2xl) var(--space-lg);
    }

    .ceo-name-badge h1 {
        font-size: 1.75rem;
    }

    .ceo-name-badge span {
        font-size: 1rem;
    }

    .ceo-info-grid {
        grid-template-columns: 1fr;
        padding: var(--space-lg);
    }

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

    .achievements-showcase {
        grid-template-columns: 1fr;
    }

    .ceo-section-header h3 {
        font-size: 1.4rem;
    }

    .ceo-section p {
        font-size: 1rem;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--grey-light);
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-orange);
}

.contact-item h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--grey-light);
    margin: 0;
}

.contact-cta-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.contact-cta-box iframe {
    width: 100%;
    height: 650px;
    border: 0;
    display: block;
    background: #fff;
    border-radius: 10px;
}

.contact-cta-box h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.contact-cta-box p {
    color: var(--grey-light);
    margin-bottom: var(--space-lg);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--navy-dark);
    color: var(--grey-light);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--cool-grey);
    margin-bottom: var(--space-md);
    display: block;
}

.footer-description {
    line-height: 1.7;
    color: var(--cool-grey);
}

.footer-col h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--space-xs);
}

.footer-col a {
    color: var(--cool-grey);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-col a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
}

.social-link:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-contact {
    margin-top: var(--space-md);
}

.footer-contact p {
    margin: 0.25rem 0;
    color: var(--cool-grey);
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: var(--cool-grey);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.footer-links a {
    color: var(--cool-grey);
    font-size: 0.875rem;
}

.footer-links span {
    color: var(--cool-grey);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.99);
        flex-direction: column;
        gap: var(--space-sm);
        padding: var(--space-lg);
        list-style: none;
        box-shadow: var(--shadow-lg);
    }

    .nav-links a {
        color: var(--navy-dark);
        font-weight: 500;
        padding: var(--space-sm) var(--space-md);
        border-radius: 4px;
        transition: var(--transition-base);
        display: block;
    }

    .nav-links a:hover {
        background-color: var(--grey-light);
        color: var(--accent-orange);
        border-bottom: 2px solid var(--accent-orange);
    }

    .navbar {
        padding: var(--space-sm) 0;
    }

    .nav-content {
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-intro h2 {
        font-size: 1.875rem;
    }

    .services-intro p {
        font-size: 1rem;
    }

    .contact-cta-box iframe {
        height: 75vh;
        min-height: 560px;
    }

    .about-grid,
    .services-grid,
    .regions-grid,
    .why-grid,
    .industries-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .service-card {
        padding: var(--space-lg);
    }

    .service-features {
        margin-top: auto;
        padding: var(--space-md);
    }

    .world-map {
        height: 300px;
    }

    .story-timeline::before {
        left: 0;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        direction: ltr !important;
    }

    .timeline-item > * {
        direction: ltr !important;
    }

    .timeline-date {
        text-align: left;
        margin-bottom: var(--space-md);
    }

    .timeline-date::after {
        right: auto;
        left: -40px;
        top: 0;
        transform: translateY(0);
    }

    .timeline-item:nth-child(odd) .timeline-date::after {
        left: -40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .logo h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    section {
        padding: var(--space-2xl) 0;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .hero-cta,
    .contact-cta-box,
    .social-links {
        display: none;
    }

    body {
        color: #000;
    }

    section {
        page-break-inside: avoid;
    }
}
