/* -------------------------------------------------------------
   VIETTONKIN LAW HOMEPAGE DESIGN SYSTEM
   - Prefixed with 'vtk-' to avoid WordPress conflicts
   - Built with modern layout utilities (Flexbox, CSS Grid)
   - Employs CSS custom variables for easy global editing
------------------------------------------------------------- */

/* 1. Global Variables & Design Tokens */
:root {
    /* Color Palette */
    --vtk-primary-navy: #16365F;
    --vtk-primary-dark: #0A1C2E;
    --vtk-primary-light: #1E3F5F;
    --vtk-accent-orange: #EE5D26;
    --vtk-accent-orange-hover: #D54813;
    --vtk-body-text: #4A5568;
    --vtk-muted-text: #718096;
    --vtk-light-gray: #F7FAFC;
    --vtk-border-color: #E2E8F0;
    --vtk-white: #FFFFFF;
    --vtk-glass-bg: rgba(255, 255, 255, 0.85);
    --vtk-glass-border: rgba(255, 255, 255, 0.4);

    /* Typography */
    --vtk-font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --vtk-font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Spacing & Layout */
    --vtk-container-width: 1200px;
    --vtk-border-radius-sm: 8px;
    --vtk-border-radius-md: 16px;
    --vtk-border-radius-lg: 24px;
    --vtk-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --vtk-transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --vtk-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --vtk-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --vtk-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --vtk-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 2. Base Styles & Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body.vtk-body {
    font-family: var(--vtk-font-body);
    color: var(--vtk-body-text);
    background-color: var(--vtk-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--vtk-font-heading);
    color: var(--vtk-primary-navy);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--vtk-transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* 3. Utility Components */
.vtk-section-container {
    max-width: var(--vtk-container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.vtk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--vtk-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--vtk-border-radius-sm);
    transition: all var(--vtk-transition-normal);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.vtk-btn-primary {
    background-color: var(--vtk-primary-navy);
    color: var(--vtk-white);
}

.vtk-btn-primary:hover {
    background-color: var(--vtk-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--vtk-shadow-md);
}

.vtk-btn-primary svg {
    transition: transform var(--vtk-transition-fast);
}

.vtk-btn-primary:hover svg {
    transform: translateX(4px);
}

.vtk-btn-outline {
    background-color: var(--vtk-white);
    color: var(--vtk-primary-navy);
    border: 2px solid var(--vtk-border-color);
}

.vtk-btn-outline:hover {
    border-color: var(--vtk-primary-navy);
    background-color: var(--vtk-light-gray);
    transform: translateY(-2px);
}

.vtk-btn-accent {
    background-color: var(--vtk-accent-orange);
    color: var(--vtk-white);
}

.vtk-btn-accent:hover {
    background-color: var(--vtk-accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: var(--vtk-shadow-md);
}

.vtk-btn-accent svg {
    transition: transform var(--vtk-transition-fast);
}

.vtk-btn-accent:hover svg {
    transform: translateX(4px);
}

.vtk-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.vtk-section-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    position: relative;
    padding-bottom: 12px;
}

.vtk-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--vtk-accent-orange);
    border-radius: 2px;
}

.vtk-header-link {
    font-family: var(--vtk-font-heading);
    font-weight: 700;
    color: var(--vtk-primary-navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: color var(--vtk-transition-fast);
}

.vtk-header-link:hover {
    color: var(--vtk-accent-orange);
}

.vtk-header-link svg {
    transition: transform var(--vtk-transition-fast);
}

.vtk-header-link:hover svg {
    transform: translateX(4px);
}

/* 4. Header Navigation */
.vtk-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--vtk-transition-normal);
    background-color: var(--vtk-white);
    border-bottom: 1px solid var(--vtk-border-color);
}

.vtk-header.scrolled {
    background-color: var(--vtk-white);
    border-bottom: 1px solid var(--vtk-border-color);
    box-shadow: var(--vtk-shadow-sm);
    padding: 10px 0;
}

.vtk-header-container {
    max-width: var(--vtk-container-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding var(--vtk-transition-normal);
}

.vtk-header.scrolled .vtk-header-container {
    padding: 12px 24px;
}

.vtk-brand {
    display: flex;
    align-items: center;
}

.vtk-brand-logo {
    height: 40px;
    width: 219px;
    display: block;
}

.vtk-nav-list {
    display: flex;
    gap: 32px;
}

.vtk-nav-link {
    font-family: var(--vtk-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--vtk-primary-navy);
    position: relative;
    padding: 8px 0;
}

.vtk-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--vtk-accent-orange);
    transition: width var(--vtk-transition-normal);
}

.vtk-nav-link:hover::after {
    width: 100%;
}

.vtk-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vtk-lang-switcher {
    display: flex;
    background-color: var(--vtk-accent-orange);
    border-radius: 30px;
    padding: 3px;
    border: none;
}

.vtk-lang-btn {
    border: none;
    outline: none;
    background: transparent;
    padding: 6px 16px;
    font-family: var(--vtk-font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--vtk-white);
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--vtk-transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    height: 28px;
    box-sizing: border-box;
}

.vtk-lang-btn.active {
    background-color: var(--vtk-white);
    color: var(--vtk-accent-orange);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vtk-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.vtk-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--vtk-primary-navy);
    transition: all var(--vtk-transition-normal);
    transform-origin: left;
}

/* Mobile Drawer */
.vtk-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--vtk-white);
    z-index: 999;
    box-shadow: var(--vtk-shadow-lg);
    transition: right var(--vtk-transition-normal);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
}

.vtk-mobile-drawer.open {
    right: 0;
}

.vtk-mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vtk-mobile-link {
    font-family: var(--vtk-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
    display: block;
}

.vtk-mobile-link:hover {
    color: var(--vtk-accent-orange);
}

.vtk-mobile-lang-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.vtk-mobile-lang-switcher {
    display: flex;
    background-color: var(--vtk-white);
    border: 1px solid var(--vtk-border-color);
    border-radius: 30px;
    padding: 4px;
}

.vtk-mobile-lang-btn {
    border: none;
    outline: none;
    background: transparent;
    padding: 6px 16px;
    font-family: var(--vtk-font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--vtk-body-text);
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--vtk-transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    height: 28px;
    box-sizing: border-box;
}

.vtk-mobile-lang-btn.active {
    background-color: var(--vtk-primary-navy);
    color: var(--vtk-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 5. Hero Section */
.vtk-hero {
    padding: 180px 0 140px;
    background-image: url('../assets/images/home/home_hero.webp');
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.vtk-hero-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.vtk-hero-content {
    max-width: 580px;
    position: relative;
    z-index: 5;
}

.vtk-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.vtk-highlight {
    color: var(--vtk-accent-orange);
}

.vtk-hero-title .vtk-highlight {
    position: relative;
}

.vtk-hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--vtk-body-text);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.vtk-hero-buttons {
    display: flex;
    gap: 16px;
}


/* 6. Stats Bar */
.vtk-stats-bar {
    background-color: #16365F;
    padding: 80px 0;
    color: var(--vtk-white);
    border-top: 4px solid var(--vtk-accent-orange);
    position: relative;
    z-index: 10;
}

.vtk-stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 12px;
    padding-right: 12px;
}

.vtk-stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    cursor: pointer;
}

.vtk-stat-item:hover .vtk-stat-number {
    transform: scale(1.12);
}

.vtk-stat-number {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 800;
    color: var(--vtk-white);
    margin-bottom: 8px;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    transition: transform var(--vtk-transition-normal);
}

.vtk-stat-number .vtk-plus {
    color: var(--vtk-white);
    position: relative;
    margin-left: 2px;
}

.vtk-stat-number .vtk-hyphen {
    color: var(--vtk-white);
}

.vtk-stat-label {
    font-family: var(--vtk-font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A5B4C4;
    white-space: nowrap;
}

.vtk-stat-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* 7. Services Section */
.vtk-services-section {
    padding: 100px 0;
    background-color: #F8F9FA;
}

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

.vtk-service-card {
    background-color: var(--vtk-white);
    padding: 40px 30px;
    border-radius: var(--vtk-border-radius-md);
    box-shadow: var(--vtk-shadow-sm);
    transition: all var(--vtk-transition-normal);
    border: 1px solid var(--vtk-border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vtk-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--vtk-shadow-lg);
    border-color: rgba(238, 93, 38, 0.3);
}

.vtk-service-icon {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start;
}

.vtk-service-icon svg {
    transition: transform var(--vtk-transition-normal);
}

.vtk-service-card:hover .vtk-service-icon svg {
    transform: scale(1.1) rotate(2deg);
}

.vtk-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    color: var(--vtk-primary-navy);
}

.vtk-service-desc {
    font-size: 0.95rem;
    color: var(--vtk-body-text);
    line-height: 1.6;
    margin-top: auto;
}

/* 8. Case Studies Section */
.vtk-cases-section {
    padding: 100px 0;
    background-color: var(--vtk-primary-navy);
    color: var(--vtk-white);
    overflow: hidden;
}

.vtk-cases-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
}

.vtk-cases-sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vtk-cases-heading {
    color: var(--vtk-white);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

.vtk-cases-description {
    color: #A5B4C4;
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.vtk-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vtk-case-card {
    background: linear-gradient(180deg, var(--vtk-white) 0%, #F4F7FA 100%);
    border-radius: 24px;
    padding: 16px 16px 24px;
    box-shadow: var(--vtk-shadow-md);
    transition: all var(--vtk-transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vtk-case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vtk-shadow-lg);
}

.vtk-case-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 66%; /* 3:2 Aspect Ratio */
    border-radius: 16px;
    width: 100%;
}

.vtk-case-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--vtk-transition-slow);
}

.vtk-case-card:hover .vtk-case-img {
    transform: scale(1.08);
}

.vtk-case-body {
    padding: 20px 8px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    color: var(--vtk-primary-navy);
}

.vtk-case-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--vtk-primary-navy);
}

.vtk-case-desc {
    font-size: 0.95rem;
    color: var(--vtk-body-text);
    margin-bottom: 24px;
    line-height: 1.6;
}

.vtk-case-link {
    color: #3182CE;
    font-family: var(--vtk-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: color var(--vtk-transition-fast);
}

.vtk-case-link svg {
    transition: transform var(--vtk-transition-fast);
}

.vtk-case-card:hover .vtk-case-link {
    color: var(--vtk-accent-orange);
}

.vtk-case-card:hover .vtk-case-link svg {
    transform: translateX(6px);
}

/* 9. Insights Section */
.vtk-insights-section {
    padding: 100px 0;
    background-color: var(--vtk-white);
}

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

.vtk-insight-card {
    background-color: var(--vtk-white);
    border-radius: var(--vtk-border-radius-md);
    overflow: hidden;
    border: 1px solid var(--vtk-border-color);
    transition: all var(--vtk-transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vtk-insight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vtk-shadow-md);
    border-color: rgba(238, 93, 38, 0.2);
}

.vtk-insight-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
}

.vtk-insight-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--vtk-transition-slow);
}

.vtk-insight-card:hover .vtk-insight-img {
    transform: scale(1.06);
}

.vtk-insight-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vtk-insight-category {
    font-family: var(--vtk-font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--vtk-accent-orange);
    margin-bottom: 12px;
    display: block;
}

.vtk-insight-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--vtk-primary-navy);
}

.vtk-insight-title a:hover {
    color: var(--vtk-accent-orange);
}

.vtk-insight-date {
    font-size: 0.85rem;
    color: var(--vtk-muted-text);
    margin-top: auto;
}

/* 10. Local Knowledge & Network Map */
.vtk-map-section {
    position: relative;
    padding: 100px 0;
    background-color: #092244; /* Match background color of CROSS-BORDER-EXPERTISE.png exactly */
    background-image: url('../assets/images/worldmap.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--vtk-white);
    overflow: hidden;
}

.vtk-map-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.vtk-map-content {
    max-width: 560px;
}

.vtk-map-title {
    color: var(--vtk-white);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.25;
}

.vtk-map-text {
    color: #A5B4C4;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.vtk-map-spacer {
    width: 100%;
}



/* 11. Team Section */
.vtk-team-section {
    padding: 100px 0;
    background-color: #F8F9FA;
}

.vtk-team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    position: relative;
    z-index: 10;
}

.vtk-team-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vtk-team-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 10px;
}

.vtk-team-subtitle {
    color: var(--vtk-muted-text);
    font-size: 1.05rem;
}

.vtk-slider-controls {
    display: flex;
    gap: 12px;
}

.vtk-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--vtk-accent-orange);
    background: transparent;
    color: var(--vtk-accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--vtk-transition-fast);
}

.vtk-slider-btn:hover {
    background-color: var(--vtk-accent-orange);
    color: var(--vtk-white);
}

.vtk-team-content-layout {
    width: 100%;
}

.vtk-team-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
    margin: -30px 0;
}

.vtk-team-carousel {
    display: flex;
    gap: 24px;
    transition: transform var(--vtk-transition-normal);
    will-change: transform;
}

.vtk-team-card {
    min-width: calc(25% - 18px);
    width: calc(25% - 18px);
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden; /* Hide the sliding-up back face when it is below */
    border-radius: var(--vtk-border-radius-md);
}

.vtk-team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: var(--vtk-shadow-md);
    border-radius: var(--vtk-border-radius-md);
}

.vtk-team-card-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--vtk-primary-navy);
    border-radius: var(--vtk-border-radius-md);
    overflow: hidden;
    z-index: 1;
}

.vtk-team-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transform: translateY(100%); /* Start completely below the card */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    background: rgba(22, 54, 95, 0.88); /* Semi-transparent corporate navy */
    backdrop-filter: blur(12px); /* Premium glassmorphic blur */
    -webkit-backdrop-filter: blur(12px);
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--vtk-border-radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 24px;
}

.vtk-team-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.vtk-team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--vtk-transition-slow), filter var(--vtk-transition-slow);
}

.vtk-team-card-front::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(22, 54, 95, 0.95) 0%, rgba(22, 54, 95, 0.4) 50%, rgba(22, 54, 95, 0) 100%);
    z-index: 1;
}

.vtk-team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 3;
    color: var(--vtk-white);
}

.vtk-team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--vtk-white);
    margin-bottom: 6px;
    line-height: 1.25;
}

.vtk-team-role {
    font-size: 0.85rem;
    color: #A5B4C4;
    line-height: 1.4;
}

/* Hover and Active Touch States */
@media (hover: hover) {
    .vtk-team-card:hover .vtk-team-card-back {
        transform: translateY(0); /* Slide up to cover front */
    }
    
    .vtk-team-card:hover .vtk-team-img {
        transform: scale(1.05);
        filter: blur(3px); /* Blur the portrait photo behind the glass */
    }
    
    .vtk-team-card:hover .vtk-team-card-shine {
        left: 150%;
    }
}

.vtk-team-card.vtk-flipped .vtk-team-card-back {
    transform: translateY(0);
}

.vtk-team-card.vtk-flipped .vtk-team-img {
    transform: scale(1.05);
    filter: blur(3px);
}

.vtk-team-card.vtk-flipped .vtk-team-card-shine {
    left: 150%;
}

.vtk-team-card-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.75s ease;
    z-index: 2;
    pointer-events: none;
}

/* Inner Text Cascade Transitions */
.vtk-team-info-back {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.vtk-team-info-back-top,
.vtk-team-desc {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) {
    .vtk-team-card:hover .vtk-team-info-back-top {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
    }
    
    .vtk-team-card:hover .vtk-team-desc {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }
}

.vtk-team-card.vtk-flipped .vtk-team-info-back-top {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.vtk-team-card.vtk-flipped .vtk-team-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.vtk-team-info-back-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vtk-team-desc {
    font-size: 0.95rem;
    color: #A5B4C4;
    line-height: 1.6;
    margin: 0;
}


/* 12. Contact & CTA Section (Contact Form 7 Styling Integration) */
.vtk-cta-section {
    padding: 120px 0;
    background-color: var(--vtk-white);
    background-image: linear-gradient(90deg, #ffffff 35%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 75%), url('../assets/images/cta_home_1.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
}

.vtk-cta-section.vtk-cases-cta-section {
    background-image: linear-gradient(90deg, #ffffff 35%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 75%), url('../assets/images/CTA/CTA1B.webp');
    background-size: cover;
    background-position: right 25%;
}

.vtk-cta-section.vtk-team-cta-section {
    background-image: linear-gradient(90deg, #ffffff 35%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 75%), url('../assets/images/CTA/CTA3.webp');
    background-size: cover;
    background-position: right 35%;
}

@media (min-width: 992px) {
    .vtk-cta-section.vtk-cases-cta-section {
        aspect-ratio: 1920 / 500;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .vtk-cta-section.vtk-team-cta-section {
        aspect-ratio: 2.6 / 1;
        min-height: 360px;
        padding: 0;
        display: flex;
        align-items: center;
        background-size: cover;
        background-position: right 35%;
    }
}













.vtk-cta-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.vtk-cta-content {
    max-width: 600px;
}

.vtk-cta-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.vtk-cta-text {
    color: var(--vtk-muted-text);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.vtk-cta-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vtk-cta-image {
    width: 100%;
    border-radius: var(--vtk-border-radius-md);
    box-shadow: var(--vtk-shadow-lg);
    z-index: 2;
}

.vtk-cta-abstract-waves {
    position: absolute;
    top: -15%;
    left: -15%;
    z-index: 1;
    opacity: 0.6;
}

/* Form Integrations & Field Styling for CF7 */
.vtk-cf7-form-wrapper {
    background-color: var(--vtk-light-gray);
    padding: 40px;
    border-radius: var(--vtk-border-radius-md);
    box-shadow: var(--vtk-shadow-sm);
    border: 1px solid var(--vtk-border-color);
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vtk-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vtk-form-full {
    width: 100%;
}

/* Styles targeted at native CF7 input elements */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    position: relative;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--vtk-border-color);
    border-radius: var(--vtk-border-radius-sm);
    background-color: var(--vtk-white);
    font-family: var(--vtk-font-body);
    font-size: 0.95rem;
    color: var(--vtk-primary-navy);
    outline: none;
    transition: all var(--vtk-transition-fast);
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    border-color: var(--vtk-accent-orange);
    box-shadow: 0 0 0 3px rgba(238, 93, 38, 0.15);
}

.wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

.vtk-form-submit {
    margin-top: 10px;
}

.wpcf7-submit {
    width: 100%;
    padding: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CF7 Success & Error Messages Styling */
.wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 12px 16px !important;
    border-radius: var(--vtk-border-radius-sm) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    font-family: var(--vtk-font-heading) !important;
    text-align: center;
}

div.wpcf7-validation-errors {
    border: 2px solid #E53E3E !important;
    background-color: #FFF5F5 !important;
    color: #C53030 !important;
}

div.wpcf7-mail-sent-ok {
    border: 2px solid #38A169 !important;
    background-color: #F0FFF4 !important;
    color: #276749 !important;
}

/* 13. Footer Section */
.vtk-footer {
    background-color: var(--vtk-primary-dark);
    background-image: linear-gradient(rgba(10, 28, 46, 0.70), rgba(10, 28, 46, 0.70)), url('../assets/images/Footer_image.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--vtk-white);
    padding: 80px 0 0;
    font-size: 0.95rem;
    position: relative;
}

/* Skyline silhouette disabled since it is built into the footer background image */
.vtk-footer::before {
    display: none;
}

.vtk-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.9fr 0.9fr;
    gap: 50px;
    padding-bottom: 60px;
}

.vtk-footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vtk-footer-logo {
    margin-left: -10px;
    height: 40px;
    width: 219px;
    display: block;
}

.vtk-footer-description {
    color: #A5B4C4;
    line-height: 1.6;
}

.vtk-social-links {
    display: flex;
    gap: 12px;
}

.vtk-social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vtk-white);
    transition: all var(--vtk-transition-fast);
}

.vtk-social-icon:hover {
    background-color: var(--vtk-accent-orange);
    transform: translateY(-2px);
}

.vtk-footer-heading {
    color: var(--vtk-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.vtk-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--vtk-accent-orange);
}

.vtk-footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vtk-footer-link-item {
    color: #A5B4C4;
    transition: color var(--vtk-transition-fast);
}

.vtk-footer-link-item:hover {
    color: var(--vtk-accent-orange);
    padding-left: 4px;
}

.vtk-footer-contact-link {
    color: #A5B4C4;
    transition: color var(--vtk-transition-fast);
}

.vtk-footer-contact-link:hover {
    color: var(--vtk-accent-orange);
}

.vtk-footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #A5B4C4;
    line-height: 1.5;
}

.vtk-footer-info-icon {
    color: var(--vtk-accent-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.vtk-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    position: relative;
    z-index: 5;
    background-color: transparent;
}

.vtk-footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #718096;
    font-size: 0.85rem;
}

/* 14. Responsive Styling (Media Queries) */
@media (max-width: 1024px) {
    .vtk-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vtk-cases-container {
        grid-template-columns: 1fr;
    }
    
    .vtk-cases-sidebar {
        position: static;
        max-width: 600px;
    }
    
    .vtk-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vtk-team-card {
        min-width: calc(33.333% - 16px);
        width: calc(33.333% - 16px);
    }
    
    .vtk-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vtk-menu-toggle {
        display: flex;
    }
    
    .vtk-nav {
        display: none;
    }
    
    .vtk-header-actions .vtk-lang-switcher {
        display: none;
    }
    
    .vtk-hero {
        background: linear-gradient(rgba(244, 247, 250, 0.9), rgba(244, 247, 250, 0.9)), url('../assets/images/home/home_hero.webp');
        background-size: cover;
        background-position: right top;
        padding: 120px 0 80px;
    }
    
    .vtk-hero-container {
        justify-content: center;
        text-align: center;
    }
    
    .vtk-hero-content {
        max-width: 100%;
    }
    
    .vtk-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .vtk-hero-buttons .vtk-btn {
        width: 100%;
        max-width: 320px;
    }
    
    .vtk-stats-container {
        justify-content: center;
    }
    
    .vtk-stat-divider {
        display: none;
    }
    
    .vtk-stat-item {
        min-width: 45%;
    }
    
    .vtk-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .vtk-insights-grid {
        grid-template-columns: 1fr;
    }
    
    .vtk-map-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vtk-map-content {
        max-width: 100%;
        text-align: center;
    }


    .vtk-team-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .vtk-team-header-left {
        align-items: center;
        text-align: center;
    }

    .vtk-team-card {
        min-width: calc(50% - 12px);
        width: calc(50% - 12px);
    }
    
    .vtk-cta-section {
        background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('../assets/images/cta_home_1.webp');
        background-position: center center;
        padding: 80px 0;
    }

    .vtk-cta-section.vtk-cases-cta-section {
        background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('../assets/images/CTA/CTA1B.webp');
        background-size: cover;
        background-position: center top;
    }

    .vtk-cta-section.vtk-team-cta-section {
        background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('../assets/images/CTA/CTA3.webp');
        background-size: cover;
        background-position: 62% center;
    }

    
    .vtk-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vtk-cta-content {
        max-width: 100%;
        text-align: center;
    }
    
    .vtk-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .vtk-stat-item {
        min-width: 100%;
    }
    
    .vtk-services-grid {
        grid-template-columns: 1fr;
    }
    
    .vtk-team-card {
        min-width: 100%;
        width: 100%;
    }
    
    .vtk-cf7-form-wrapper {
        padding: 24px;
    }
    
    .vtk-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .vtk-footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* =============================================================
   15. About Us Page Styles
   ============================================================= */

/* Active State for Navigation Header Links */
.vtk-nav-link.active {
    color: var(--vtk-accent-orange);
}
.vtk-nav-link.active::after {
    width: 100%;
}
.vtk-mobile-link.active {
    color: var(--vtk-accent-orange);
    font-weight: 700;
}

/* About Hero Background Layout */
.vtk-about-hero {
    padding: 180px 0 120px;
    background-color: #dce9ed;
    background-image: linear-gradient(to right, #dce9ed 35%, rgba(220, 233, 237, 0.8) 60%, rgba(220, 233, 237, 0.1) 100%), url('../assets/images/about/about_hero_image.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.vtk-about-hero-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.vtk-about-hero-content {
    max-width: 600px;
    position: relative;
    z-index: 5;
}

.vtk-about-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.vtk-about-hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--vtk-body-text);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

/* General About Section Title */
.vtk-about-section-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.vtk-about-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--vtk-accent-orange);
    border-radius: 2px;
}

/* Centered section headers */
.vtk-center-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

.vtk-center-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Stats Slider Section */
.vtk-about-stats-slider {
    position: relative;
    height: 480px; /* fixed height for slider */
    overflow: hidden;
    background-color: #0A1C2E;
}

.vtk-stat-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vtk-stat-slide.active {
    opacity: 1;
    z-index: 2;
}

.vtk-stat-slide-overlay {
    display: none;
}

.vtk-stat-slide-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.vtk-stat-slide-content {
    max-width: 650px;
    margin: 0 auto;
}

.vtk-stat-slide-number {
    font-family: var(--vtk-font-heading);
    font-size: clamp(2.5rem, 7vw, 4.8rem);
    font-weight: 800;
    color: var(--vtk-white);
    line-height: 1;
    margin-bottom: 16px;
    display: inline-block;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.vtk-stat-slide-label {
    font-family: var(--vtk-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--vtk-white);
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Slider Indicators */
.vtk-stat-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.vtk-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--vtk-transition-fast);
}

.vtk-indicator:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.vtk-indicator.active {
    background-color: var(--vtk-accent-orange);
    transform: scale(1.2);
}

/* Purpose & Precision Section */
.vtk-purpose-section {
    padding: 100px 0;
    background-color: var(--vtk-white);
}

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

.vtk-purpose-left {
    max-width: 580px;
}

.vtk-purpose-left .vtk-about-section-title {
    padding-bottom: 0;
}

.vtk-purpose-left .vtk-about-section-title::after {
    display: none;
}

.vtk-purpose-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--vtk-body-text);
    margin-bottom: 20px;
}

.vtk-purpose-text:last-of-type {
    margin-bottom: 0;
}

.vtk-tabs-container {
    background-color: #F8F9FA;
    border-radius: var(--vtk-border-radius-md);
    border: 1px solid var(--vtk-border-color);
    padding: 40px;
    box-shadow: var(--vtk-shadow-sm);
}

.vtk-tabs-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--vtk-border-color);
    padding-bottom: 16px;
}

.vtk-tab-btn {
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 24px;
    font-family: var(--vtk-font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--vtk-muted-text);
    cursor: pointer;
    border-radius: 30px;
    transition: all var(--vtk-transition-fast);
}

.vtk-tab-btn:hover {
    color: var(--vtk-primary-navy);
    background-color: rgba(0, 0, 0, 0.03);
}

.vtk-tab-btn.active {
    background-color: var(--vtk-primary-navy);
    color: var(--vtk-white);
    box-shadow: 0 4px 10px rgba(22, 54, 95, 0.2);
}

.vtk-tab-panel {
    display: none;
    animation: vtk-tab-fade-in 0.4s ease forwards;
}

.vtk-tab-panel.active {
    display: block;
}

.vtk-tab-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(238, 93, 38, 0.1);
    color: var(--vtk-accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vtk-tab-title {
    font-family: var(--vtk-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
    margin-bottom: 12px;
}

.vtk-tab-desc {
    font-size: 1.05rem;
    color: var(--vtk-body-text);
    line-height: 1.65;
}

@keyframes vtk-tab-fade-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* History Timeline Section */
.vtk-about-timeline-section {
    padding: 100px 0;
    background-color: var(--vtk-primary-dark);
    background-image: linear-gradient(rgba(10, 28, 46, 0.80), rgba(10, 28, 46, 0.80)), url('../assets/images/history_bg.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vtk-about-timeline-section .vtk-section-title {
    color: var(--vtk-white);
}

.vtk-timeline-intro {
    color: #A5B4C4;
    font-size: 1.05rem;
    margin-top: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
}

.vtk-about-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.vtk-about-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40%;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.vtk-about-timeline.vtk-timeline-active::before {
    transform: translateX(-50%) scaleY(1);
}

.vtk-about-timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    width: 100%;
    position: relative;
}

.vtk-about-timeline-item:last-child {
    margin-bottom: 0;
}

.vtk-timeline-year {
    width: 40%;
    text-align: right;
    padding-right: 40px;
    font-family: var(--vtk-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vtk-white);
    margin-top: 14px;
    white-space: nowrap;
    transition: all var(--vtk-transition-normal);
}

.vtk-timeline-badge-col {
    width: 2px;
    position: relative;
    display: flex;
    justify-content: center;
    align-self: stretch;
}

.vtk-timeline-dot {
    position: absolute;
    top: 18px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #718096;
    border: 4px solid #0A1C2E;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 5;
    transition: all var(--vtk-transition-normal);
    left: 50%;
    transform: translateX(-50%);
}

.vtk-about-timeline-panel {
    width: 60%;
    padding-left: 40px;
    transition: all var(--vtk-transition-normal);
}

.vtk-about-timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vtk-white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.vtk-about-timeline-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Active State styling */
.vtk-about-timeline-item.active .vtk-timeline-dot {
    background-color: var(--vtk-accent-orange);
    box-shadow: 0 0 0 4px rgba(238, 93, 38, 0.25), 0 0 12px rgba(238, 93, 38, 0.5);
}

.vtk-about-timeline-item.active .vtk-timeline-year {
    color: var(--vtk-white);
}

.vtk-about-timeline-item.active .vtk-about-timeline-title {
    color: var(--vtk-white);
}

.vtk-about-timeline-item.active .vtk-about-timeline-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Faded State styling */
.vtk-about-timeline-item.faded {
    opacity: 0.45;
    transition: opacity var(--vtk-transition-normal);
}

.vtk-about-timeline-item.faded:hover {
    opacity: 0.95;
}

/* Peer Recognition Section */
.vtk-recognition-section {
    padding: 100px 0;
    background-color: var(--vtk-primary-dark);
    background-image: linear-gradient(rgba(10, 28, 46, 0.80), rgba(10, 28, 46, 0.80)), url('../assets/images/history_bg.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
}

.vtk-recognition-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.vtk-recognition-header {
    max-width: 400px;
}

.vtk-recognition-section .vtk-about-section-title {
    color: var(--vtk-white);
}

.vtk-recognition-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #A5B4C4;
    margin-top: 16px;
}

.vtk-recognition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.vtk-recognition-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.vtk-recognition-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    background-color: rgba(255, 255, 255, 0.02);
    transition: all var(--vtk-transition-normal);
}

.vtk-recognition-card:hover .vtk-recognition-icon {
    border-color: var(--vtk-accent-orange);
    color: var(--vtk-accent-orange);
    box-shadow: 0 4px 12px rgba(238, 93, 38, 0.25);
    background-color: rgba(238, 93, 38, 0.05);
}

.vtk-recognition-title {
    font-family: var(--vtk-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vtk-white);
    margin-bottom: 8px;
}

.vtk-recognition-underline {
    width: 30px;
    height: 2px;
    background-color: var(--vtk-accent-orange);
    margin: 8px 0 12px 0;
}

.vtk-recognition-desc {
    font-size: 0.95rem;
    color: #A5B4C4;
    line-height: 1.5;
}

/* Specialized Services Section */
.vtk-about-services-section {
    padding: 100px 0 60px 0;
    background-color: var(--vtk-primary-dark);
    background-image: linear-gradient(rgba(10, 28, 46, 0.80), rgba(10, 28, 46, 0.80)), url('../assets/images/history_bg.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.vtk-services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    gap: 40px;
}

.vtk-services-header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 650px;
}

.vtk-about-services-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: left;
}

.vtk-services-learn-more {
    font-family: var(--vtk-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vtk-white);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color var(--vtk-transition-fast);
    white-space: nowrap;
}

.vtk-services-learn-more:hover {
    color: var(--vtk-accent-orange);
}

.vtk-services-learn-more svg {
    transition: transform var(--vtk-transition-fast);
}

.vtk-services-learn-more:hover svg {
    transform: translateX(4px);
}

.vtk-about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vtk-service-card-dark {
    padding: 40px 30px;
    border-radius: var(--vtk-border-radius-md);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--vtk-transition-normal);
}

.vtk-service-card-dark:hover {
    transform: translateY(-5px);
    background-color: var(--vtk-white);
    border-color: var(--vtk-white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vtk-service-card-dark:hover .vtk-service-icon-dark {
    background-color: rgba(238, 93, 38, 0.1);
    color: var(--vtk-accent-orange);
}

.vtk-service-card-dark:hover .vtk-service-title-dark {
    color: var(--vtk-primary-navy);
}

.vtk-service-card-dark:hover .vtk-service-desc-dark {
    color: var(--vtk-body-text);
}

.vtk-service-icon-dark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--vtk-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--vtk-transition-normal);
}

.vtk-service-title-dark {
    font-family: var(--vtk-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vtk-white);
    margin-bottom: 16px;
}

.vtk-service-desc-dark {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Card 1: Active Style */
.vtk-service-card-dark.active {
    background-color: var(--vtk-white);
    border-color: var(--vtk-white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.vtk-service-card-dark.active:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vtk-service-card-dark.active .vtk-service-icon-dark {
    background-color: rgba(238, 93, 38, 0.1);
    color: var(--vtk-accent-orange);
}

.vtk-service-card-dark.active .vtk-service-title-dark {
    color: var(--vtk-primary-navy);
}

.vtk-service-card-dark.active .vtk-service-desc-dark {
    color: var(--vtk-body-text);
}

/* Bottom CTA Section */
.vtk-bottom-cta-section {
    padding: 80px 0;
    background-color: #0D1E30;
    background-image: linear-gradient(rgba(10, 28, 46, 0.88), rgba(10, 28, 46, 0.88)), url('../assets/images/history_bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.vtk-bottom-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.vtk-bottom-cta-left {
    flex: 1.1;
}

.vtk-bottom-cta-right {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vtk-bottom-cta-title {
    font-family: var(--vtk-font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--vtk-white);
    line-height: 1.25;
    margin: 0;
}

.vtk-bottom-cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
}

.vtk-bottom-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.vtk-btn-outline-white {
    background-color: transparent;
    color: var(--vtk-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.vtk-btn-outline-white:hover {
    border-color: var(--vtk-white);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .vtk-about-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .vtk-about-hero {
        padding: 140px 0 80px;
        background-color: #dce9ed;
        background-image: linear-gradient(rgba(220, 233, 237, 0.92), rgba(220, 233, 237, 0.92)), url('../assets/images/about/about_hero_image.webp');
        background-position: right center;
    }
    
    .vtk-about-hero-container {
        justify-content: center;
        text-align: center;
    }
    
    .vtk-about-hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .vtk-about-hero-buttons {
        justify-content: center;
    }
    
    .vtk-about-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .vtk-purpose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vtk-purpose-left {
        max-width: 100%;
        text-align: center;
    }
    
    .vtk-tabs-container {
        padding: 30px 20px;
    }
    
    .vtk-tabs-nav {
        justify-content: center;
    }
    
    .vtk-tab-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .vtk-tab-panel {
        text-align: center;
    }
    
    .vtk-about-timeline::before {
        left: 20px;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .vtk-about-timeline.vtk-timeline-active::before {
        transform: scaleY(1);
    }
    
    .vtk-about-timeline-item {
        flex-direction: column;
        padding-left: 50px;
        padding-right: 0;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .vtk-timeline-year {
        width: 100%;
        text-align: left;
        padding-right: 0;
        margin-top: 0;
        margin-bottom: 8px;
    }
    
    .vtk-timeline-badge-col {
        width: 0;
        height: 0;
        position: static;
    }
    
    .vtk-timeline-dot {
        left: 20px;
        top: 4px;
    }
    
    .vtk-about-timeline-panel {
        width: 100%;
        padding-left: 0;
    }
    
    .vtk-recognition-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .vtk-recognition-header {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .vtk-recognition-grid {
        gap: 30px;
    }
    
    .vtk-services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .vtk-bottom-cta-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .vtk-about-services-grid {
        grid-template-columns: 1fr;
    }
    
    .vtk-recognition-grid {
        grid-template-columns: 1fr;
    }
    
    .vtk-recognition-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .vtk-bottom-cta-box {
        padding: 60px 20px;
    }
}

/* 15. Scrolling Reveal Animations */
.vtk-reveal {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.vtk-reveal-fade-up {
    transform: translateY(40px);
}

.vtk-reveal-fade-down {
    transform: translateY(-40px);
}

.vtk-reveal-fade-left {
    transform: translateX(40px);
}

.vtk-reveal-fade-right {
    transform: translateX(-40px);
}

.vtk-reveal-scale {
    transform: scale(0.95);
}

/* Active State when triggered on scroll */
.vtk-reveal.vtk-reveal-active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Transition Delays for Staggered Grid/Flex Items */
.vtk-reveal-delay-100 { transition-delay: 100ms; }
.vtk-reveal-delay-200 { transition-delay: 200ms; }
.vtk-reveal-delay-300 { transition-delay: 300ms; }
.vtk-reveal-delay-400 { transition-delay: 400ms; }
.vtk-reveal-delay-500 { transition-delay: 500ms; }
.vtk-reveal-delay-600 { transition-delay: 600ms; }
.vtk-reveal-delay-700 { transition-delay: 700ms; }

/* Timeline Reveal Animations */
.vtk-reveal-timeline-left,
.vtk-reveal-timeline-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.vtk-reveal-timeline-left {
    transform: translateX(-50px);
}

.vtk-reveal-timeline-right {
    transform: translateX(50px);
}

/* Active State for Timeline Items */
.vtk-reveal-timeline-left.vtk-reveal-active,
.vtk-reveal-timeline-right.vtk-reveal-active {
    opacity: 1;
    transform: translate(0);
}

@media (max-width: 768px) {
    .vtk-reveal-timeline-left,
    .vtk-reveal-timeline-right {
        transform: translateY(30px);
    }
}

/* =============================================================
   16. Page Hero Section (Subpages Layout)
   ============================================================= */
.vtk-page-hero {
    background-color: var(--vtk-primary-dark);
    background-image: linear-gradient(rgba(10, 28, 46, 0.85), rgba(10, 28, 46, 0.85)), url('../assets/images/about/history_bg.webp');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: var(--vtk-white);
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vtk-page-hero-title {
    font-family: var(--vtk-font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
    color: var(--vtk-white);
}

.vtk-page-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 24px;
}

.vtk-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.vtk-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--vtk-transition-fast);
}

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

.vtk-breadcrumbs-separator {
    color: rgba(255, 255, 255, 0.3);
}

.vtk-breadcrumbs-current {
    color: var(--vtk-accent-orange);
    font-weight: 500;
}

/* Specialized Team Page Hero */
.vtk-page-hero.vtk-team-hero {
    background-color: var(--vtk-light-gray);
    background-image: none;
    color: var(--vtk-primary-navy);
    padding: 180px 0 0px;
    border-bottom: none;
}

.vtk-team-hero .vtk-page-hero-title {
    color: var(--vtk-primary-navy);
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    margin-bottom: 24px;
}

.vtk-team-hero .vtk-page-hero-title span {
    color: var(--vtk-accent-orange);
}

.vtk-team-hero .vtk-page-hero-subtitle {
    color: var(--vtk-primary-navy);
    max-width: 840px;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0;
}

.vtk-team-hero .vtk-breadcrumbs {
    color: rgba(22, 54, 95, 0.65);
}

.vtk-team-hero .vtk-breadcrumbs a {
    color: var(--vtk-primary-navy);
}

.vtk-team-hero .vtk-breadcrumbs-separator {
    color: rgba(22, 54, 95, 0.35);
}

/* Specialized Case Studies Page Hero */
.vtk-page-hero.vtk-cases-hero {
    background-image: linear-gradient(to right, rgba(10, 28, 46, 0.9) 25%, rgba(10, 28, 46, 0.55) 60%, rgba(10, 28, 46, 0.15) 100%), url('../assets/images/case study/case-study-hero-image.webp');
    background-position: center;
    text-align: left;
    padding: 175px 0 115px;
}

.vtk-cases-hero .vtk-section-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.vtk-cases-hero .vtk-page-hero-title {
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 4.5vw, 3.2rem);
    font-weight: 700;
}

.vtk-cases-hero .vtk-page-hero-subtitle {
    margin: 0;
    max-width: 520px;
    line-height: 1.5;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Specialized Contact Page Hero */
.vtk-page-hero.vtk-contact-hero {
    background-image: linear-gradient(to right, #dce9ed 30%, rgba(220, 233, 237, 0.8) 50%, rgba(220, 233, 237, 0) 80%), url('../assets/images/contact/contact_hero_image.webp');
    background-position: right top;
    text-align: left;
    color: var(--vtk-primary-navy);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vtk-contact-hero .vtk-section-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.vtk-contact-hero .vtk-page-hero-title {
    color: var(--vtk-primary-navy);
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 4.5vw, 3.2rem);
    font-weight: 800;
}

.vtk-contact-hero .vtk-page-hero-title span {
    color: var(--vtk-accent-orange);
}

.vtk-contact-hero .vtk-page-hero-subtitle {
    margin: 0;
    max-width: 520px;
    line-height: 1.6;
    font-size: 1.15rem;
    color: var(--vtk-primary-navy);
}

@media (min-width: 992px) {
    .vtk-page-hero.vtk-contact-hero {
        aspect-ratio: 1920 / 600;
        padding: 0;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .vtk-page-hero.vtk-contact-hero {
        background-image: linear-gradient(rgba(220, 233, 237, 0.9), rgba(220, 233, 237, 0.9)), url('../assets/images/contact/contact_hero_image.webp');
        background-position: center;
        text-align: center;
        padding: 120px 0 80px;
    }
    .vtk-contact-hero .vtk-section-container {
        align-items: center;
        text-align: center;
    }
    .vtk-contact-hero .vtk-page-hero-subtitle {
        margin: 0 auto;
    }
}

/* Specialized Insights Page Hero */
.vtk-page-hero.vtk-insights-hero {
    background-color: #e5ecf0;
    background-image: linear-gradient(to right, #e5ecf0 35%, rgba(229, 236, 240, 0.8) 55%, rgba(229, 236, 240, 0.1) 85%), url('../assets/images/insight/insight-hero-image.webp');
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: left;
    color: var(--vtk-primary-navy);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vtk-insights-hero .vtk-section-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.vtk-insights-hero-content {
    max-width: 600px;
    position: relative;
    z-index: 5;
}

.vtk-insights-hero .vtk-page-hero-title {
    color: var(--vtk-primary-navy);
    font-size: clamp(2.3rem, 4.5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.vtk-insights-hero .vtk-page-hero-title span {
    color: var(--vtk-accent-orange);
}

.vtk-insights-hero .vtk-page-hero-subtitle {
    margin: 0 0 32px 0;
    max-width: 540px;
    line-height: 1.6;
    font-size: 1.1rem;
    color: var(--vtk-body-text);
}

@media (min-width: 992px) {
    .vtk-page-hero.vtk-insights-hero {
        aspect-ratio: 1920 / 600;
        padding: 80px 0 0;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .vtk-page-hero.vtk-insights-hero {
        background-image: linear-gradient(rgba(229, 236, 240, 0.92), rgba(229, 236, 240, 0.92)), url('../assets/images/insight/insight-hero-image.webp');
        background-position: center top;
        text-align: center;
        padding: 120px 0 80px;
    }
    .vtk-insights-hero .vtk-section-container {
        align-items: center;
        text-align: center;
    }
    .vtk-insights-hero .vtk-page-hero-subtitle {
        margin: 0 auto 32px;
    }
    .vtk-insights-hero .vtk-hero-buttons {
        justify-content: center;
    }
}

/* =============================================================
   17. Services Page Styles
   ============================================================= */
.vtk-services-page-section {
    padding: 0;
    background-color: var(--vtk-light-gray);
}

.vtk-services-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.vtk-services-accordion-item {
    display: flex;
    flex-direction: column;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: -1px;
    padding: 60px 0;
    transition: all var(--vtk-transition-normal);
}

.vtk-services-accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Accordion Background Image Overlays */
.vtk-services-accordion-item[data-service="market-entry"] {
    background-image: url('../assets/images/services/Service-1A.png');
}

.vtk-services-accordion-item[data-service="corporate"] {
    background-image: url('../assets/images/services/Service-2A.png');
}

.vtk-services-accordion-item[data-service="ma"] {
    background-image: url('../assets/images/services/Service-3A.png');
}

.vtk-services-accordion-item[data-service="compliance"] {
    background-image: url('../assets/images/services/Service-4A.png');
}

.vtk-services-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.vtk-services-accordion-title-box {
    display: flex;
    align-items: center;
    gap: 24px;
}

.vtk-services-accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.vtk-services-accordion-title {
    font-family: var(--vtk-font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--vtk-white);
    margin: 0;
    transition: color var(--vtk-transition-fast);
}

.vtk-services-accordion-item:not(.active) .vtk-services-accordion-header:hover .vtk-services-accordion-title {
    color: var(--vtk-accent-orange);
}

.vtk-services-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--vtk-transition-normal);
    color: rgba(255, 255, 255, 0.6);
}

.vtk-services-accordion-item.active .vtk-services-accordion-toggle {
    transform: rotate(180deg);
    color: var(--vtk-accent-orange);
}

.vtk-services-accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--vtk-transition-normal), opacity var(--vtk-transition-normal), margin-top var(--vtk-transition-normal);
    opacity: 0;
    overflow: hidden;
}

.vtk-services-accordion-item.active .vtk-services-accordion-content {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 28px;
}

.vtk-services-accordion-content-inner {
    overflow: hidden;
    padding-left: 80px; /* Align content with title text (56px icon + 24px gap) */
}

.vtk-services-accordion-desc {
    font-family: var(--vtk-font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px 0;
    max-width: 900px;
}

.vtk-services-accordion-capabilities-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vtk-services-accordion-capabilities-label {
    font-family: var(--vtk-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--vtk-white);
    margin: 0;
    white-space: nowrap;
    min-width: 160px;
}

.vtk-services-accordion-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    flex-grow: 1;
}

.vtk-services-accordion-capability-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    font-weight: 500;
    cursor: default;
}

.vtk-accordion-cap-arrow {
    flex-shrink: 0;
    transition: transform var(--vtk-transition-fast);
}

.vtk-services-accordion-capability-item:hover .vtk-accordion-cap-arrow {
    transform: translate(2px, -2px);
}

/* =============================================================
   18. Case Studies Page Styles
   ============================================================= */
.vtk-cases-page-section {
    padding: 100px 0;
    background-color: var(--vtk-light-gray);
}

.vtk-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.vtk-filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background-color: var(--vtk-white);
    border: 1px solid var(--vtk-border-color);
    font-family: var(--vtk-font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--vtk-muted-text);
    cursor: pointer;
    transition: all var(--vtk-transition-fast);
}

.vtk-filter-btn:hover {
    border-color: var(--vtk-primary-navy);
    color: var(--vtk-primary-navy);
}

.vtk-filter-btn.active {
    background-color: var(--vtk-primary-navy);
    border-color: var(--vtk-primary-navy);
    color: var(--vtk-white);
    box-shadow: 0 4px 12px rgba(22, 54, 95, 0.15);
}

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

.vtk-case-card-overlay {
    background-color: var(--vtk-white);
    border-radius: var(--vtk-border-radius-md);
    overflow: hidden;
    border: 1px solid var(--vtk-border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all var(--vtk-transition-normal);
    display: flex;
    flex-direction: column;
}

.vtk-case-card-overlay:hover {
    transform: translateY(-5px);
    box-shadow: var(--vtk-shadow-lg);
    border-color: rgba(22, 54, 95, 0.1);
}

.vtk-case-card-img-wrapper {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    background-color: var(--vtk-primary-navy);
}

.vtk-case-card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--vtk-transition-slow);
}

.vtk-case-card-overlay:hover .vtk-case-card-img-wrapper img {
    transform: scale(1.05);
}

.vtk-case-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--vtk-accent-orange);
    color: var(--vtk-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.vtk-case-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vtk-case-card-title {
    font-family: var(--vtk-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.vtk-case-card-desc {
    color: var(--vtk-body-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.vtk-case-card-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--vtk-primary-navy);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--vtk-transition-fast);
    text-decoration: none;
    margin-top: auto;
}

.vtk-case-card-overlay:hover .vtk-case-card-link {
    color: var(--vtk-accent-orange);
}

.vtk-case-card-link svg {
    transition: transform var(--vtk-transition-fast);
}

.vtk-case-card-overlay:hover .vtk-case-card-link svg {
    transform: translateX(4px);
}

/* =============================================================
   19. Insights Page Styles
   ============================================================= */
.vtk-insights-page-section {
    padding: 100px 0;
    background-color: var(--vtk-light-gray);
}

.vtk-insights-filter-bar {
    display: flex;
    justify-content: flex-start;
    gap: 16px 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.vtk-insights-filter-btn {
    background: none;
    border: none;
    padding: 6px 0;
    font-family: var(--vtk-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
    cursor: pointer;
    transition: all var(--vtk-transition-fast);
}

.vtk-insights-filter-btn:hover {
    color: var(--vtk-accent-orange);
}

.vtk-insights-filter-btn.active {
    color: var(--vtk-accent-orange);
}

.vtk-insights-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--vtk-muted-text);
}

.vtk-insights-meta-divider {
    color: rgba(0, 0, 0, 0.15);
}

.vtk-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.vtk-insight-card-post {
    background-color: var(--vtk-white);
    border-radius: var(--vtk-border-radius-md);
    overflow: hidden;
    border: 1px solid var(--vtk-border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all var(--vtk-transition-normal);
    display: flex;
    flex-direction: column;
}

.vtk-insight-card-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--vtk-shadow-lg);
    border-color: rgba(22, 54, 95, 0.1);
}

.vtk-insight-card-post-img {
    position: relative;
    padding-top: 55%;
    overflow: hidden;
    background-color: var(--vtk-primary-navy);
}

.vtk-insight-card-post-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--vtk-transition-slow);
}

.vtk-insight-card-post:hover .vtk-insight-card-post-img img {
    transform: scale(1.05);
}

.vtk-insight-card-post-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vtk-insight-card-post-tag {
    align-self: flex-start;
    color: var(--vtk-accent-orange);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.vtk-insight-card-post-title {
    font-family: var(--vtk-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.vtk-insight-card-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--vtk-transition-fast);
}

.vtk-insight-card-post:hover .vtk-insight-card-post-title a {
    color: var(--vtk-accent-orange);
}

.vtk-insight-card-post-excerpt {
    color: var(--vtk-body-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.vtk-pagination-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}

.vtk-page-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--vtk-border-color);
    background-color: var(--vtk-white);
    color: var(--vtk-muted-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--vtk-transition-fast);
}

.vtk-page-number:hover {
    border-color: var(--vtk-primary-navy);
    color: var(--vtk-primary-navy);
}

.vtk-page-number.active {
    background-color: var(--vtk-primary-navy);
    border-color: var(--vtk-primary-navy);
    color: var(--vtk-white);
}

.vtk-page-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--vtk-border-color);
    background-color: var(--vtk-white);
    color: var(--vtk-muted-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--vtk-transition-fast);
}

.vtk-page-arrow:hover {
    border-color: var(--vtk-primary-navy);
    color: var(--vtk-primary-navy);
}

/* =============================================================
   20. Our Team Page Styles
   ============================================================= */
.vtk-team-page-section {
    padding: 100px 0;
    background-color: var(--vtk-light-gray);
}

.vtk-team-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

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

.vtk-team-page-grid .vtk-team-card {
    width: 100%;
    min-width: auto;
}


/* =============================================================
   21. Contact Us Page Styles
   ============================================================= */
.vtk-contact-page-section {
    padding: 100px 0;
    background-color: var(--vtk-light-gray);
}

.vtk-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.vtk-contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vtk-contact-block {
    background-color: var(--vtk-white);
    border-radius: var(--vtk-border-radius-md);
    padding: 40px;
    border: 1px solid var(--vtk-border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.vtk-contact-office-title {
    font-family: var(--vtk-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--vtk-accent-orange);
    display: inline-block;
}

.vtk-contact-details-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vtk-contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--vtk-body-text);
}

.vtk-contact-detail-item svg {
    color: var(--vtk-accent-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.vtk-contact-detail-item a {
    color: inherit;
    text-decoration: none;
    transition: color var(--vtk-transition-fast);
}

.vtk-contact-detail-item a:hover {
    color: var(--vtk-primary-navy);
}

.vtk-contact-form-box {
    background-color: var(--vtk-white);
    border-radius: var(--vtk-border-radius-md);
    padding: 50px;
    border: 1px solid var(--vtk-border-color);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.vtk-contact-form-title {
    font-family: var(--vtk-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
    margin-bottom: 8px;
}

.vtk-contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--vtk-muted-text);
    margin-bottom: 36px;
}

.vtk-map-placeholder-box {
    background-color: #E2E8F0;
    border-radius: var(--vtk-border-radius-md);
    height: 380px;
    margin-top: 60px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--vtk-border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    background-image: linear-gradient(rgba(22, 54, 95, 0.05), rgba(22, 54, 95, 0.05)), url('../assets/images/worldmap.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vtk-map-placeholder-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 28, 46, 0.4);
    z-index: 1;
}

.vtk-map-placeholder-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--vtk-white);
    padding: 30px;
}

.vtk-map-placeholder-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--vtk-accent-orange);
    color: var(--vtk-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 20px rgba(238, 93, 38, 0.5);
}

.vtk-map-placeholder-text {
    font-family: var(--vtk-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.vtk-map-placeholder-btn {
    margin-top: 16px;
}

/* =============================================================
   22. Media Queries for New Pages
   ============================================================= */
@media (max-width: 1024px) {
    .vtk-services-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .vtk-insights-featured-box {
        grid-template-columns: 1fr;
    }

    .vtk-insights-featured-img {
        min-height: 280px;
    }

    .vtk-team-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vtk-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .vtk-team-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .vtk-cases-page-grid {
        grid-template-columns: 1fr;
    }

    .vtk-insights-grid {
        grid-template-columns: 1fr;
    }

    .vtk-team-page-grid {
        grid-template-columns: 1fr;
    }

    .vtk-contact-form-box {
        padding: 30px 20px;
    }

    .vtk-services-page-card {
        padding: 30px;
    }

    .vtk-services-page-capabilities-list {
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   20. Article Detail Page Styles
   ============================================================= */
.vtk-post-detail-section {
    padding: 80px 0 100px;
    background-color: var(--vtk-light-gray);
}

.vtk-post-detail-container {
    max-width: 860px;
    margin: 0 auto;
    background-color: var(--vtk-white);
    border-radius: var(--vtk-border-radius-md);
    border: 1px solid var(--vtk-border-color);
    box-shadow: var(--vtk-shadow-sm);
    overflow: hidden;
}

.vtk-post-detail-header-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.vtk-post-detail-body {
    padding: 60px 80px;
}

.vtk-post-detail-meta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--vtk-border-color);
}

.vtk-post-detail-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vtk-post-detail-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(22, 54, 95, 0.1);
    color: var(--vtk-primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--vtk-font-heading);
}

.vtk-post-detail-author-details {
    display: flex;
    flex-direction: column;
}

.vtk-post-detail-author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
}

.vtk-post-detail-date-read {
    font-size: 0.85rem;
    color: var(--vtk-muted-text);
}

.vtk-post-detail-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vtk-post-detail-share-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vtk-muted-text);
}

.vtk-post-detail-share-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--vtk-border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vtk-muted-text);
    transition: all var(--vtk-transition-fast);
}

.vtk-post-detail-share-link:hover {
    color: var(--vtk-accent-orange);
    border-color: var(--vtk-accent-orange);
    transform: translateY(-2px);
}

.vtk-post-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--vtk-body-text);
}

.vtk-post-detail-content p {
    margin-bottom: 24px;
}

.vtk-post-detail-content h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.vtk-post-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
    margin: 32px 0 16px 0;
    line-height: 1.35;
}

.vtk-post-detail-content blockquote {
    border-left: 4px solid var(--vtk-accent-orange);
    padding: 16px 24px;
    margin: 32px 0;
    background-color: var(--vtk-light-gray);
    border-radius: 0 var(--vtk-border-radius-sm) var(--vtk-border-radius-sm) 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--vtk-primary-navy);
}

.vtk-post-detail-content blockquote p {
    margin-bottom: 0;
}

.vtk-post-detail-content ul,
.vtk-post-detail-content ol {
    margin-bottom: 28px;
    padding-left: 20px;
}

.vtk-post-detail-content li {
    margin-bottom: 12px;
}

.vtk-post-detail-content ul li {
    list-style-type: none;
    position: relative;
    padding-left: 12px;
}

.vtk-post-detail-content ul li::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--vtk-accent-orange);
    border-radius: 50%;
}

.vtk-post-detail-cta-card {
    background-color: rgba(22, 54, 95, 0.03);
    border: 1px solid rgba(22, 54, 95, 0.08);
    border-radius: var(--vtk-border-radius-sm);
    padding: 32px;
    margin: 48px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.vtk-post-detail-cta-text {
    flex: 1;
}

.vtk-post-detail-cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
    margin-bottom: 8px;
}

.vtk-post-detail-cta-desc {
    font-size: 0.95rem;
    color: var(--vtk-body-text);
    margin-bottom: 0 !important;
}

.vtk-related-posts-section {
    padding: 80px 0 100px;
    background-color: var(--vtk-white);
    border-top: 1px solid var(--vtk-border-color);
}

.vtk-related-posts-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
    margin-bottom: 40px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vtk-post-detail-body {
        padding: 40px 30px;
    }
    
    .vtk-post-detail-header-img {
        height: 320px;
    }
    
    .vtk-post-detail-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* =============================================================
   Stretched Link styles for clickable cards
   ============================================================= */
.vtk-case-card,
.vtk-insight-card,
.vtk-case-card-overlay,
.vtk-insight-card-post {
    position: relative;
}

.vtk-case-link::after,
.vtk-insight-title a::after,
.vtk-case-card-link::after,
.vtk-insight-card-post-title a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    content: "";
}

/* Ensure child interactive items remain clickable above the overlay if needed */
.vtk-case-card-badge,
.vtk-insight-card-post-tag,
.vtk-insight-category {
    position: relative;
    z-index: 15;
}

/* =============================================================
   Detail Pages Hero (White background with Navy text)
   ============================================================= */
.vtk-page-hero.vtk-detail-hero {
    background-color: var(--vtk-white);
    background-image: none;
    color: var(--vtk-primary-navy);
    padding: 140px 0 60px;
    border-bottom: 1px solid var(--vtk-border-color);
}

.vtk-detail-hero .vtk-page-hero-title {
    color: var(--vtk-primary-navy);
}

.vtk-detail-hero .vtk-page-hero-subtitle {
    color: var(--vtk-muted-text);
}

.vtk-detail-hero .vtk-breadcrumbs {
    color: var(--vtk-muted-text);
}

.vtk-detail-hero .vtk-breadcrumbs a {
    color: var(--vtk-primary-navy);
    font-weight: 500;
}

.vtk-detail-hero .vtk-breadcrumbs-separator {
    color: var(--vtk-muted-text);
    opacity: 0.5;
}

.vtk-detail-hero .vtk-breadcrumbs-current {
    color: var(--vtk-accent-orange);
    font-weight: 600;
}

/* =============================================================
   New Services Page Hero (White background, two columns)
   ============================================================= */
.vtk-services-page-hero {
    background-color: var(--vtk-white);
    background-image: none;
    padding: 140px 0 80px;
    color: var(--vtk-primary-navy);
    border-bottom: 1px solid var(--vtk-border-color);
}

.vtk-services-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.vtk-services-hero-left {
    flex: 1;
}

.vtk-services-hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    max-width: 540px;
}

.vtk-services-hero-title {
    font-family: var(--vtk-font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--vtk-primary-navy);
    margin: 0;
}

.vtk-services-hero-title .vtk-highlight {
    color: var(--vtk-accent-orange);
}

.vtk-services-hero-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--vtk-primary-navy);
    margin: 0;
    font-weight: 500;
}

.vtk-services-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--vtk-primary-navy);
    color: var(--vtk-white);
    border: none;
    padding: 14px 28px;
    border-radius: var(--vtk-border-radius-sm);
    font-family: var(--vtk-font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--vtk-transition-fast);
}

.vtk-services-hero-btn:hover {
    background-color: var(--vtk-accent-orange);
    color: var(--vtk-white);
    box-shadow: 0 4px 12px rgba(238, 93, 38, 0.25);
    transform: translateY(-2px);
}

.vtk-services-hero-btn svg {
    transition: transform var(--vtk-transition-fast);
}

.vtk-services-hero-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .vtk-services-hero-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .vtk-services-hero-right {
        max-width: 100%;
    }
}

/* Accordion Media Queries */
@media (max-width: 991px) {
    .vtk-services-accordion-item {
        padding: 40px 0;
    }
    
    .vtk-services-accordion-content-inner {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .vtk-services-accordion-item {
        padding: 30px 0;
    }
    
    .vtk-services-accordion-title-box {
        gap: 16px;
    }
    
    .vtk-services-accordion-icon {
        width: 44px;
        height: 44px;
    }
    
    .vtk-services-accordion-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .vtk-services-accordion-title {
        font-size: 1.3rem;
    }
    
    .vtk-services-accordion-capabilities-wrapper {
        flex-direction: column;
        gap: 20px;
        padding-top: 24px;
    }
    
    .vtk-services-accordion-capabilities-label {
        font-size: 1.15rem;
        min-width: auto;
    }
    
    .vtk-services-accordion-capabilities-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .vtk-services-accordion-capability-item {
        font-size: 0.95rem;
        gap: 10px;
    }
}

/* Our Methodology Section */
.vtk-methodology-section {
    padding: 100px 0;
    background-color: var(--vtk-light-gray);
}

.vtk-methodology-title {
    font-family: var(--vtk-font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--vtk-primary-navy);
    margin-bottom: 60px;
}

.vtk-methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.vtk-methodology-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.vtk-methodology-number {
    font-family: var(--vtk-font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--vtk-accent-orange);
    line-height: 1;
    margin-top: -2px;
}

.vtk-methodology-step-content {
    display: flex;
    flex-direction: column;
}

.vtk-methodology-step-title {
    font-family: var(--vtk-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--vtk-primary-navy);
    line-height: 1.25;
    margin: 0 0 16px 0;
}

.vtk-methodology-divider {
    width: 40px;
    height: 1.5px;
    background-color: var(--vtk-accent-orange);
    margin: 0 0 20px 0;
}

.vtk-methodology-step-desc {
    font-size: 1rem;
    color: var(--vtk-muted-text);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .vtk-methodology-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vtk-methodology-section {
        padding: 80px 0;
    }
}

/* =============================================================
   19. Join Our Growing Team Section (Team Page CTA)
   ============================================================= */
.vtk-join-team-section {
    padding: 100px 0;
    background-color: var(--vtk-primary-dark);
    background-image: radial-gradient(circle at 80% 20%, rgba(30, 63, 95, 0.6) 0%, rgba(10, 28, 46, 0.95) 80%), 
                      url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='rgba(255,255,255,0.015)' stroke-width='1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 0-10 0-10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 0-10 0-10-10zM30 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 0-10 0-10-10zM70 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 0-10 0-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    color: var(--vtk-white);
    position: relative;
    overflow: hidden;
}

.vtk-join-team-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.vtk-join-team-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vtk-join-team-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--vtk-white);
}

.vtk-join-team-title .vtk-highlight {
    color: var(--vtk-accent-orange);
}

.vtk-join-team-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 520px;
}

.vtk-join-team-btn {
    background-color: var(--vtk-accent-orange);
    border-color: var(--vtk-accent-orange);
    color: var(--vtk-white);
    padding: 16px 32px;
    font-weight: 600;
}

.vtk-join-team-btn:hover {
    background-color: var(--vtk-accent-orange-hover);
    border-color: var(--vtk-accent-orange-hover);
    color: var(--vtk-white);
}

/* Stats Box */
.vtk-join-team-stats-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--vtk-border-radius-md);
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vtk-join-team-stat-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 24px;
}

.vtk-join-team-stat-number {
    font-family: var(--vtk-font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--vtk-white);
    display: flex;
    align-items: center;
}

.vtk-join-team-stat-number .vtk-plus,
.vtk-join-team-stat-number .vtk-percent {
    color: var(--vtk-accent-orange);
    margin-left: 2px;
}

.vtk-join-team-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.vtk-join-team-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* Responsive styles */
@media (max-width: 992px) {
    .vtk-join-team-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .vtk-join-team-content {
        align-items: center;
        text-align: center;
    }
    
    .vtk-join-team-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .vtk-join-team-stats-box {
        padding: 30px 24px;
    }
    
    .vtk-join-team-stat-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .vtk-join-team-stat-number {
        justify-content: center;
    }
}
