/* ============================================
   DATAPRO BUSINESS CO.,LTD. - Landing Page CSS
   Corporate, Clean, Professional, Trustworthy
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Prompt:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
    --magenta: #E600E3;
    --magenta-dark: #C000BD;
    --magenta-light: #FF33FF;
    --blue: #1212F1;
    --blue-dark: #0E0EB8;
    --blue-light: #4444FF;
    --black: #000000;
    --white: #FFFFFF;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(18, 18, 241, 0.05);
    --glass-highlite: inset 0 1px 1px rgba(255, 255, 255, 0.9);
    
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --gradient-primary: linear-gradient(135deg, var(--magenta) 0%, var(--blue) 100%);
    --gradient-primary-r: linear-gradient(135deg, var(--blue) 0%, var(--magenta) 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow-magenta: 0 10px 40px rgba(230, 0, 227, 0.2);
    --shadow-glow-blue: 0 10px 40px rgba(18, 18, 241, 0.2);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-th: 'Prompt', sans-serif;
    --font-en: 'Prompt', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
    --header-height-scrolled: 70px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-en);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* ---------- Glassmorphism Base Styles ---------- */
.glass-bg-fx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: var(--white);
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.6;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 50vw;
    height: 50vw;
    background: rgba(230, 0, 227, 0.15);
    top: -10%;
    left: -10%;
    animation-duration: 25s;
}

.blob-2 {
    width: 40vw;
    height: 40vw;
    background: rgba(18, 18, 241, 0.15);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 30vw;
    height: 30vw;
    background: rgba(255, 51, 255, 0.1);
    top: 40%;
    left: 60%;
    animation-duration: 30s;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10%, 15%) scale(1.1); }
    66% { transform: translate(-10%, -10%) scale(0.9); }
    100% { transform: translate(5%, -15%) scale(1.05); }
}

.glass-card {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--glass-shadow), var(--glass-highlite) !important;
    transition: all var(--transition-normal);
}

.tilt-efx {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}


/* Thai text */
.th, [lang="th"] {
    font-family: var(--font-th);
}

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

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section base */
section {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }



/* ============================================
   TOP BAR (pre-header)
   ============================================ */
.top-bar {
    background: var(--gray-900);
    color: var(--gray-400);
    font-size: 13px;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
    transition: transform var(--transition-normal);
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left a {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.top-bar-left a:hover {
    color: var(--white);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-socials {
    display: flex;
    gap: 12px;
}

.top-bar-socials a {
    color: var(--gray-500);
    font-size: 14px;
    transition: color var(--transition-normal);
}

.top-bar-socials a:hover {
    color: var(--white);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.site-header.scrolled-dark {
    background: rgba(15, 23, 42, 0.6); /* Darker fade */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .nav-container,
.site-header.scrolled-dark .nav-container {
    height: var(--header-height-scrolled);
}

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

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex: 1;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    z-index: 1002;
    margin-right: 40px;
}

.logo-img {
    height: auto !important;
    max-height: 80px !important;
    width: auto !important;
    display: block;
    object-fit: contain;
    transition: all var(--transition-normal);
}

.logo-img.is-logo1 {
    transform: scale(1) !important;
}

/* Header logo — full color on light header, white on dark hero/overlay */
.logo-img.header-logo {
    max-height: 72px !important;
    transition: filter var(--transition-normal), opacity var(--transition-normal), max-height var(--transition-normal);
}

.logo-img.header-logo.logo-img--on-dark {
    filter: brightness(0) invert(1);
}

/* Permanent Recruitment card (in hero) */
.hero-content .recruitment-spotlight__card {
    margin-top: 8px;
}

.recruitment-spotlight__card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 40px;
    max-width: 540px;
    width: 100%;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.recruitment-spotlight__card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
    line-height: 1.3;
}

.recruitment-spotlight__desc {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 12px;
}

.recruitment-spotlight__tagline {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 0;
}

.recruitment-spotlight__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn-recruitment-contact {
    background: #1a2744;
    color: var(--white);
    border: 2px solid #1a2744;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
}

.btn-recruitment-contact:hover {
    background: #0f1829;
    border-color: #0f1829;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 39, 68, 0.35);
}

.btn-recruitment-apply {
    background: var(--white);
    color: #1a2744;
    border: 2px solid #1a2744;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
}

.btn-recruitment-apply:hover {
    background: #f0f4fa;
    color: #1a2744;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 39, 68, 0.15);
}

.site-header.scrolled .logo-img,
.site-header.scrolled-dark .logo-img {
    max-height: 55px;
}

.site-header.scrolled .logo-img.header-logo,
.site-header.scrolled-dark .logo-img.header-logo {
    max-height: 55px !important;
}

/* Header Text Colors */
.top-bar-custom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-custom a, 
.lang-dropdown-btn {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-normal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-custom a:hover,
.lang-dropdown-btn:hover {
    color: var(--white);
}

.site-header.scrolled .top-bar-custom a,
.site-header.scrolled .lang-dropdown-btn {
    color: var(--gray-600);
}

.site-header.scrolled .top-bar-custom a:hover,
.site-header.scrolled .lang-dropdown-btn:hover {
    color: var(--magenta);
}

.header-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 4px 0;
    transition: background var(--transition-normal);
}

.site-header.scrolled .header-separator {
    background: rgba(0, 0, 0, 0.08);
}

.site-header.scrolled-dark .header-separator {
    background: rgba(255, 255, 255, 0.15);
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav > .nav-item {
    position: relative;
}

.main-nav > .nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    position: relative;
    white-space: nowrap;
    transition: color var(--transition-normal);
}

.site-header.scrolled .main-nav > .nav-item > a {
    color: var(--gray-800);
}

.main-nav > .nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gradient-primary);
    transition: transform var(--transition-normal);
    transform-origin: center;
}

.main-nav > .nav-item:hover > a,
.main-nav > .nav-item.active > a {
    color: var(--white);
}

.site-header.scrolled .main-nav > .nav-item:hover > a,
.site-header.scrolled .main-nav > .nav-item.active > a {
    color: var(--magenta);
}

.main-nav > .nav-item:hover > a::after,
.main-nav > .nav-item.active > a::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Arrow */
.nav-item.has-dropdown > a .dropdown-arrow {
    font-size: 10px;
    transition: transform var(--transition-normal);
}

.nav-item.has-dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 100;
    border: 1px solid var(--glass-border);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(230, 0, 227, 0.08);
    color: var(--magenta);
    padding-left: 30px;
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-en);
    letter-spacing: 0.5px;
}

.site-header.scrolled .lang-btn {
    color: var(--gray-600);
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
}

.site-header.scrolled .lang-btn.active {
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    color: var(--white);
}

.site-header.scrolled .lang-btn:hover:not(.active) {
    color: var(--gray-900);
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    font-family: var(--font-en);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-magenta);
}

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

.btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 42px;
    font-size: 16px;
}

.btn-icon {
    transition: transform var(--transition-normal);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.site-header.scrolled .hamburger-line {
    background: var(--gray-800);
}

.hamburger-line + .hamburger-line {
    margin-top: 6px;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(18, 18, 241, 0.15) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 560px;
    padding: 120px 0 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--magenta);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 550px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: transparent;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--magenta);
    margin-bottom: 16px;
}

.section-label .line {
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.services-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(230, 0, 227, 0.08), rgba(18, 18, 241, 0.08));
    color: var(--magenta);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--magenta);
    transition: all var(--transition-normal);
}

.service-link .arrow {
    transition: transform var(--transition-normal);
}

.service-card:hover .service-link .arrow {
    transform: translateX(6px);
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.statistics {
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.statistics::before {
    display: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(18,18,241,0.15);
}

.stat-number {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 8px;
    font-family: var(--font-en);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--gray-50);
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image .experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-glow-magenta);
}

.experience-badge .number {
    font-size: 40px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content .section-label,
.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 0, 227, 0.1), rgba(18, 18, 241, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--magenta);
    font-size: 12px;
    flex-shrink: 0;
}

/* ============================================
   BUSINESS PARTNER BANNER
   ============================================ */
.partner-banner {
    padding: 80px 0;
    background: transparent;
}

.partner-banner-box {
    background: var(--gradient-dark);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.partner-banner-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230,0,227,0.1) 0%, rgba(18,18,241,0.1) 100%);
    pointer-events: none;
}

.partner-banner-box h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    font-family: var(--font-th);
}

.partner-banner-box p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.partner-card {
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.partner-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 20px;
}

.partner-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.partner-card > p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
}

.partner-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.partner-card ul li {
    font-size: 13px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-card ul li i {
    color: var(--magenta);
    font-size: 11px;
}

@media (max-width: 768px) {
    .partner-cards {
        grid-template-columns: 1fr;
    }
    .partner-banner-box {
        padding: 36px 24px;
    }
}

/* ============================================
   JOURNEY / TIMELINE SECTION
   ============================================ */
.journey {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.journey-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.journey-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

.journey .container {
    position: relative;
    z-index: 1;
}

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

.journey-text .section-label,
.journey-text .section-title {
    text-align: left;
}

.journey-text p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.timeline-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.timeline-item:hover {
    border-color: var(--magenta);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.timeline-year {
    font-size: 14px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    min-width: 50px;
}

.timeline-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.timeline-item p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   INSIGHTS / BLOG SECTION
   ============================================ */
.insights {
    background: transparent;
}

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

.insight-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.insight-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.insight-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-body {
    padding: 28px;
}

.insight-meta {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.insight-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-body p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--magenta);
}

.read-more .arrow {
    transition: transform var(--transition-normal);
}

.insight-card:hover .read-more .arrow {
    transform: translateX(6px);
}

.insights-cta {
    text-align: center;
}

/* ============================================
   INVESTOR RELATIONS CTA
   ============================================ */
.investor-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.investor-cta-bg {
    position: absolute;
    inset: -30%;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s linear;
}

.investor-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investor-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(18, 18, 241, 0.4) 100%
    );
    z-index: 1;
}

.investor-cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.investor-cta h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.investor-cta h2 .accent {
    color: var(--magenta-light);
}

.investor-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-top: 1px solid var(--glass-border);
    color: var(--gray-700);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
    max-height: 55px;
    width: auto;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--gray-600);
}

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

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 16px;
    transition: all var(--transition-normal);
}

.footer-social-icon:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--gray-600);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--magenta);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--gray-700);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(230, 0, 227, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--magenta);
    flex-shrink: 0;
    font-size: 14px;
}

.footer-contact-item .label {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-bottom-links a:hover {
    color: var(--magenta);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-glow-magenta);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
}

.mobile-nav-links > .mobile-nav-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-dropdown {
    display: none;
    padding: 0 0 12px 16px;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown a {
    display: block;
    padding: 10px 0;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

.mobile-nav-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .services-grid,
    .services-grid--three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .top-bar { display: none; }
    
    .main-nav, .nav-right .lang-switcher, .nav-right .btn {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .mobile-nav-overlay {
        display: block;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 140px 0 80px;
    }

    .about-grid,
    .journey-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 350px;
    }

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

    .stat-item + .stat-item::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .services-grid,
    .services-grid--three,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .hero-content .recruitment-spotlight__card {
        padding: 28px 24px;
        max-width: none;
    }

    .recruitment-spotlight__card h3 {
        font-size: 1.4rem;
    }

    .recruitment-spotlight__actions .btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }

    .timeline-item:hover {
        transform: translateX(0);
    }
}

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

    .section-padding {
        padding: 56px 0;
    }

    .nav-container {
        padding: 0 16px;
    }
}

/* ============================================
   LOADING SCREEN - MINIMAL
   ============================================ */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.loader-logo-img {
    max-height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    animation: loaderLogoPulse 1.5s ease-in-out infinite;
}

@keyframes loaderLogoPulse {
    0%   { opacity: 0.6; transform: scale(0.98); }
    50%  { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.6; transform: scale(0.98); }
}

.loader-bar {
    width: 140px;
    height: 2px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* ============================================
   HERO VIDEO BACKGROUND & LAYERS
   ============================================ */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 2;
    opacity: 0.3;
}

.hero-glow-magenta {
    background: var(--magenta);
    top: 10%;
    left: -5%;
    animation: glowPulse 6s ease-in-out infinite alternate;
}

.hero-glow-blue {
    background: var(--blue);
    bottom: -10%;
    right: -5%;
    animation: glowPulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes glowPulse {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.2; }
    50%  { transform: translate(30px, -20px) scale(1.2); opacity: 0.35; }
    100% { transform: translate(-20px, 30px) scale(0.9); opacity: 0.25; }
}

/* ============================================
   FOOTER DEVELOPER CREDIT
   ============================================ */
.footer-dev {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid var(--gray-200);
}

.footer-dev p {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.5px;
}

.footer-dev .dev-credit {
    color: var(--magenta);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
}

.footer-dev .dev-credit:hover {
    color: var(--magenta-dark);
}

/* ================================================
   PREMIUM INTERACTIONS & ANIMATIONS
   ================================================ */

/* ---------- Custom Cursor (Real Arrow + trailing glow) ---------- */
@media (pointer: fine) {
    body { cursor: default; }
}

.custom-cursor {
    position: fixed;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,0,227,0.2), transparent 70%);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.35s, height 0.35s, background 0.35s, opacity 0.35s;
    will-change: left, top;
    opacity: 0.8;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--magenta);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    will-change: left, top;
    transition: width 0.2s, height 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 8px rgba(230,0,227,0.4);
}

.custom-cursor.cursor-hover {
    width: 56px;
    height: 56px;
    background: radial-gradient(circle, rgba(230,0,227,0.12), transparent 70%);
    opacity: 1;
}

.cursor-dot.cursor-hover {
    width: 10px;
    height: 10px;
    background: var(--blue);
    box-shadow: 0 0 20px rgba(18,18,241,0.5);
}

/* ---------- Click Ripple ---------- */
.click-ripple {
    position: fixed;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,0,227,0.25), rgba(18,18,241,0.1) 60%, transparent 80%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99998;
    animation: rippleOut 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes rippleOut {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 200px; height: 200px; opacity: 0; }
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-primary);
    z-index: 99997;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(230,0,227,0.6);
}

/* ---------- Floating Hero Particles ---------- */
.hero-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    animation: floatParticle linear infinite;
    filter: blur(1px);
}

@keyframes floatParticle {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-110vh) scale(0.4); opacity: 0; }
}

/* ---------- Typing Cursor Blink ---------- */
.hero-subtitle::after {
    content: '|';
    animation: blinkCursor 0.8s step-end infinite;
    color: var(--magenta);
    font-weight: 300;
    margin-left: 2px;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ---------- Stat Item Transition ---------- */
.stat-item {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- About Image Mouse Parallax ---------- */
.about-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ---------- Enhanced Section Fade Keyframes ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.reveal.visible {
    animation: fadeInUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ---------- Service Card enhanced hover ---------- */
.service-card {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s ease;
}

/* ---------- Mobile: disable custom cursor ---------- */
@media (max-width: 768px) {
    .custom-cursor, .cursor-dot { display: none; }
    body { cursor: auto; }
    .hero-video-bg video { display: none; }
    .hero-glow { display: none; }
    .hero-overlay-grid { display: none; }
}

/* ---------- Top Bar & Header Specific ---------- */
.top-bar-custom {
    color: rgba(255, 255, 255, 0.85); /* White on dark bg */
    transition: color var(--transition-normal);
}
.site-header.scrolled .top-bar-custom {
    color: var(--gray-800); /* Dark when scrolled/light background is applied */
}
.top-bar-custom a {
    color: inherit;
    transition: color var(--transition-normal);
}
.top-bar-custom a:hover {
    color: var(--white);
}
.site-header.scrolled .top-bar-custom a:hover {
    color: var(--magenta);
}

.header-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 12px;
    transition: background var(--transition-normal);
}
.site-header.scrolled .header-separator {
    background: var(--gray-200);
}

/* Google Translate Widget Overrides */
.google-translate-wrapper {
    position: relative;
    top: 2px;
}
.google-translate-wrapper .goog-te-combo {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: inherit !important;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    transition: all var(--transition-normal);
}
.site-header.scrolled .google-translate-wrapper .goog-te-combo {
    border-color: var(--gray-300) !important;
}
.google-translate-wrapper .goog-te-combo option {
    color: #000; /* dropdown options should be dark */
}

/* ---------- Language Dropdown Switcher ---------- */
.lang-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: inherit;
    font-family: var(--font-th);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.lang-dropdown-btn:hover {
    opacity: 0.8;
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 120px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s ease;
    z-index: 200;
    border: 1px solid rgba(0,0,0,0.06);
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(2px);
}

.lang-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333 !important;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lang-dropdown-menu a:hover {
    background: rgba(230, 0, 227, 0.06);
    color: var(--magenta) !important;
    padding-left: 24px;
}

/* ---------- Mobile Responsive Header Fixes ---------- */
@media (max-width: 991px) {
    .top-bar-custom {
        display: none !important;
    }
    .header-separator {
        display: none !important;
    }
    .main-nav {
        display: none !important;
    }
    .mobile-nav-toggle {
        display: flex !important;
        position: relative !important;
        right: 0 !important;
    }
    .nav-container {
        padding: 0 20px !important;
    }
    .logo-img {
        max-height: 40px !important;
    }
    .site-header.scrolled .logo-img,
    .site-header.scrolled-dark .logo-img {
        max-height: 35px !important;
    }
    /* Fix inline style on right side container */
    .site-header .nav-container > div:nth-child(2) {
        flex-direction: row !important;
        align-items: center !important;
        width: auto !important;
    }
    .site-header .nav-container > div:nth-child(2) > div:last-child {
        width: auto !important;
        position: relative !important;
    }
}
/* ---------- About Page Specific Features ---------- */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin: 30px 0;
}
.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}
.about-feature-item i {
    width: 20px;
    height: 20px;
    background: #e0f2fe;
    color: var(--magenta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.subsidiaries-section {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.subsidiaries-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
}
.subsidiary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--magenta);
    font-weight: 700;
    font-size: 14px;
}
.subsidiary-item i {
    font-size: 16px;
}
.subsidiary-item a:hover {
    text-decoration: underline;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(230, 0, 227, 0.3);
    text-align: center;
}
.about-badge-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}
.about-badge-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

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