:root {
    /* Industrial Marketing Colors */
    --primary-color: #0F52BA;
    --primary-dark: #0A3D8B;
    --accent-color: #F59E0B;
    --accent-hover: #D97706;
    --secondary-color: #1E3A8A;
    --bg-industrial: #F0F2F5;
    --border-metal: #CBD5E0;

    /* Functional Colors */
    --text-main: #1A1A1A;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;

    /* Spacing (8px Grid) */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --section-gap: 5.5rem;

    /* Typography */
    --font-main: 'Inter', -apple-system, sans-serif;
    --fs-h1: clamp(1.75rem, 5vw, 3.5rem);
    --fs-h2: clamp(1.35rem, 4vw, 2.5rem);
    --fs-h3: 1.25rem;
    --fs-base: 1rem;

    /* Effects */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius: 8px;
}

/* --- Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

img {
    max-width: 100%;
    display: block;
    height: auto;
    border-radius: var(--radius);
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.grid {
    display: grid;
    gap: var(--space-md);
}

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

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

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

.flex {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
    /* Added for mobile flexibility */
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Added for mobile flexibility */
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Added for mobile flexibility */
}

/* --- Utilities --- */
.section-padding {
    padding: var(--section-gap) 0;
}

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

.text-white {
    color: white !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-light {
    background-color: var(--bg-light);
}

.mb-sm {
    margin-bottom: var(--space-sm) !important;
}

.mb-md {
    margin-bottom: var(--space-md) !important;
}

.mb-lg {
    margin-bottom: var(--space-lg) !important;
}

/* --- Typography --- */
h1 {
    font-size: var(--fs-h1);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--fs-h2);
    font-weight: 700;
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(15, 82, 186, 0.3);
}

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

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
}

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

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

.btn-outline-white,
.btn-white-outline {
    border-color: white !important;
    color: white !important;
    background: transparent !important;
}

.btn-outline-white:hover,
.btn-white-outline:hover {
    background: white !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.btn-round {
    border-radius: 999px;
}

/* --- Navigation & Header --- */
.top-bar {
    background: var(--secondary-color);
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

header {
    background: #fff;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    top: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

header.header-solid {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    top: 40px;
    /* Stay below the top-bar initially */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

header.header-solid.scrolled {
    top: 0;
}

/* Fix for Fixed Header Spacing on Subpages */
header.header-solid+main {
    padding-top: 110px;
}

.nav-container {
    padding: var(--space-sm) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: white;
    transition: var(--transition);
}

header.scrolled .logo h1,
header.header-solid .logo h1 {
    color: var(--primary-color);
}

.logo img {
    height: 53px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 35px;
}

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

.nav-links a {
    font-weight: 500;
    color: #000;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

header.scrolled .nav-links a,
header.header-solid .nav-links a {
    color: #000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.has-dropdown>a {
    white-space: nowrap;
}

.has-dropdown i {
    font-size: 10px;
    transition: transform var(--transition);
}

.has-dropdown:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: var(--text-color) !important;
    font-size: var(--fs-sm);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color) !important;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1005;
    /* Ensure it's above the nav-links */
    padding: 5px;
    position: relative;
}

header.scrolled .mobile-nav-toggle,
header.header-solid .mobile-nav-toggle {
    color: var(--text-main);
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content h1 {
    color: white;
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: var(--space-md);
}

.hero-content p {
    color: white;
    font-size: clamp(1rem, 4vw, 1.25rem);
    margin-bottom: var(--space-lg);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-lg);
    z-index: 100;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* --- Modules --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--space-xs);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* --- Product Cards --- */
/* --- Section Headers Upgrade --- */
.section-header,
.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.section-header h2,
.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-header h2::after,
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header p,
.section-title p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.product-img {
    height: 250px;
    background: #f1f1f1;
    overflow: hidden;
}

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

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: var(--space-md);
}

/* --- Case Items --- */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.case-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.8s ease;
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: var(--space-lg);
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.case-item:hover img {
    scale: 1.1;
}

.case-item:hover .case-overlay {
    transform: translateY(0);
}

/* ==========================================================================
   Cases Page Premium Redesign
   ========================================================================== */

.cases-hero-premium {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
}

.cases-hero-premium::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 82, 204, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.cases-hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.case-stat-item .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.case-stat-item .label {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
}

/* Category Filter Tabs */
.cases-filter-bar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.filter-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2);
}

/* Modern Project Grid */
.cases-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 60px 0;
}

.project-card-technical {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.project-card-technical:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.project-image-box {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.project-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-card-technical:hover .project-image-box img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 3px;
    z-index: 2;
}

.project-content-box {
    padding: 18px;
    flex: 1;
}

.project-industry {
    font-size: 10px;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.project-card-technical h3 {
    font-size: 1.05rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 700;
}

.project-content-box p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-meta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-item .key {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.meta-item .val {
    font-size: 11px;
    color: #475569;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .cases-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .cases-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cases-grid-modern {
        grid-template-columns: 1fr;
    }

    .cases-hero-stats {
        gap: 30px;
        flex-direction: column;
    }
}

/* --- News Cards --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.news-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

/* --- Footer --- */
/* --- Footer --- */
.main-footer {
    background: linear-gradient(to bottom, #0f172a, #020617);
    color: #94a3b8;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.8fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand h2 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    line-height: 1.8;
    font-size: 14.5px;
    color: #64748b;
}

.footer-column h3 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 14px;
    color: #94a3b8;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-contact-info h4 {
    color: #e2e8f0;
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-contact-info p {
    font-size: 15px;
    color: #cbd5e1;
    font-weight: 600;
}

.footer-qr-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.footer-qr-item {
    text-align: center;
}

.footer-qr-item img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 3px solid rgba(255, 255, 255, 0.05);
}

.footer-qr-item p {
    font-size: 11px;
    color: #64748b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #475569;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a:hover {
    color: #94a3b8;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* --- Float Contact --- */
.float-contact {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-item {
    width: 60px;
    height: 60px;
    background: white;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
    position: relative;
}

.float-item:hover {
    background: var(--primary-color);
    color: white;
}

.float-pop {
    position: absolute;
    right: 70px;
    top: 0;
    background: white;
    padding: 15px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
    text-align: center;
    color: var(--text-color);
}

.float-item:hover .float-pop {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.back-to-top {
    width: 60px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* --- Component Enhancements --- */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.section-header h2 {
    position: relative;
    padding-bottom: var(--space-xs);
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    margin-top: var(--space-sm);
}

/* Industry Labels */
.tag {
    display: inline-block;
    padding: 10px 15px;
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    margin-right: 8px;
    border: 1px solid var(--border-color);
}

.tag-accent {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
    border-color: rgba(245, 158, 11, 0.2);
}

/* Floating Contact Widget (Fixed) */
.float-contact {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.float-item {
    width: 56px;
    height: 56px;
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
    font-size: 18px;
}

.float-item:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.float-item span {
    font-size: 10px;
    font-weight: 700;
    margin-top: 2px;
}

.float-pop {
    position: absolute;
    right: 70px;
    background: white;
    padding: var(--space-sm);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.float-item:hover .float-pop {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.float-pop h4 {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.float-pop p {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: var(--text-main);
}

/* --- Mobile Quick CTA (Hidden on Desktop) --- */
.mobile-cta-bar {
    display: none;
}

/* --- Modal Styles --- */
/* --- Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 0;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalScaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

@keyframes modalScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header-premium {
    background: linear-gradient(135deg, var(--secondary-color), #2d3e50);
    padding: 40px 30px;
    text-align: center;
    color: white;
    position: relative;
}

.modal-header-premium i {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.modal-header-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.modal-header-premium p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.modal-body-premium {
    padding: 35px 30px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: white;
    transition: var(--transition);
    z-index: 10;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal .custom-form input {
    height: 50px;
    border-radius: 10px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    padding: 0 16px;
    font-size: 0.95rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.modal .custom-form input:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
}

.modal .btn-accent {
    height: 54px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(255, 102, 0, 0.3);
}

/* Success Modal UI Enhancement */
.modal-status-content {
    text-align: center;
    padding: 50px 30px;
}

.modal-status-icon {
    width: 80px;
    height: 80px;
    background: #f0fdf4;
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px;
    border: 4px solid #dcfce7;
    animation: iconBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-status-icon.error {
    background: #fef2f2;
    color: #ef4444;
    border-color: #fee2e2;
}

@keyframes iconBounce {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.modal-status-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.modal-status-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-status-btn {
    min-width: 160px;
}

/* Partners & Clients Section */
.partners-section {
    background: #fff;
}

.partners-category {
    margin-bottom: 50px;
}

.partners-category-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.partners-category-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border-color), transparent);
}

.partners-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-card-premium {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.partner-card-premium:hover {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.partner-card-premium img {
    max-width: 140px;
    max-height: 50px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: var(--transition);
    margin-bottom: 10px;
}

.partner-card-premium:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.partner-name-small {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

@media (max-width: 992px) {
    .partners-grid-premium {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* Global Presence & Cases Section */
.global-presence-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
}

.global-presence-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.global-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.map-visual-full {
    width: 100%;
    position: relative;
    background: #ffffff;
    /* Switched to White background */
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-height: 500px;
}

.world-map-svg {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: contain;
    filter: none;
    opacity: 0.8;
}

/* Radiating Arcs */
.map-arcs-svg {
    position: absolute;
    inset: 80px 40px;
    width: calc(100% - 80px);
    height: calc(100% - 160px);
    z-index: 2;
    pointer-events: none;
}

.arc-path {
    fill: none;
    stroke: #94a3b8;
    /* Grey connection lines */
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0.4;
    animation: drawArc 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes drawArc {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

.map-marker {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #64748b;
    /* Grey markers */
    border-radius: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.map-marker.origin {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 0 15px var(--primary-color);
}

.map-marker.origin::before,
.map-marker.origin::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    animation: doublePulse 3s linear infinite;
}

.map-marker.origin::after {
    animation-delay: 1.5s;
    inset: -12px;
}

@keyframes doublePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.industry-cloud {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.industry-tag {
    background: #f8fafc;
    color: #64748b;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 11px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.industry-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: none;
}

.cases-industries-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cases-sidebar-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

/* Industry Tiles Alignment */
.industry-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.industry-tile {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 120px;
    justify-content: center;
}

.industry-tile i {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.8;
}

.industry-tile span {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.industry-tile:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 82, 204, 0.1);
    transform: translateY(-5px);
}

.industry-tile:hover i {
    transform: scale(1.1);
    opacity: 1;
}

.industry-tile:hover span {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .cases-industries-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .map-visual-full {
        padding: 40px 20px;
        min-height: 300px;
    }
}

@media (max-width: 500px) {
    .industry-tile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cases-list-premium {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex: 1;
    /* Take up available space */
}

.case-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition);
}

.case-list-item:last-child {
    border-bottom: none;
}

.case-list-item:hover {
    transform: translateX(10px);
}

.case-dot {
    margin-top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
    flex-shrink: 0;
}

.case-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.case-info p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.4;
}

.global-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: auto;
    /* Push to bottom */
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

.metric-card-simple {
    text-align: center;
}

.metric-card-simple .number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
}

.metric-card-simple .label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .global-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .map-visual-container {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        display: grid;
        grid-template-columns: 1fr 1fr;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        z-index: 2001;
        height: 60px;
    }

    .mobile-cta-item {
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        gap: 10px;
        color: white;
    }

    .mobile-cta-item.call {
        background: var(--secondary-color);
    }

    .mobile-cta-item.quote {
        background: var(--accent-color);
    }
}

/* --- Tech Timeline V2 --- */
.tech-timeline {
    position: relative;
    padding: 160px 0 100px;
    margin-top: 20px;
}

.tech-timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(15, 82, 186, 0) 0%, var(--primary-color) 20%, var(--accent-color) 80%, rgba(245, 158, 11, 0) 100%);
    z-index: 1;
    box-shadow: 0 0 15px var(--primary-color);
}

.tech-timeline-items {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tech-timeline-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Stagger up/down */
.tech-timeline-node:nth-child(odd) {
    margin-top: -140px;
}

.tech-timeline-node:nth-child(even) {
    margin-top: 60px;
}

.tech-node-point {
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(15, 82, 186, 0.5);
    z-index: 5;
}

.tech-timeline-node:nth-child(odd) .tech-node-point {
    bottom: -12px;
    top: auto;
    transform: none;
}

.tech-timeline-node:nth-child(even) .tech-node-point {
    top: -42px;
}

.tech-node-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    width: 100%;
    transition: var(--transition);
    position: relative;
}

.tech-node-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.tech-node-card .year {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Inter';
    display: block;
}

.tech-node-card h4 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 8px;
}

.tech-node-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .tech-timeline-line {
        display: none;
    }

    .tech-timeline-items {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .tech-timeline-node:nth-child(odd),
    .tech-timeline-node:nth-child(even) {
        margin-top: 0;
    }

    .tech-node-point {
        display: none;
    }
}

/* Ordering Process Steps (Premium Industrial Look) */
.order-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: var(--space-xl);
    position: relative;
    padding-bottom: 20px;
}

.order-steps-grid::after {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon-circle {
    width: 90px;
    height: 90px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-item:hover .step-icon-circle {
    background: var(--primary-color);
    color: white;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.step-item p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}

.step-number-small {
    position: absolute;
    top: -10px;
    right: 10%;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .order-steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .order-steps-grid::after {
        display: none;
    }

    .step-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 24px;
        margin-bottom: 15px;
    }
}

/* --- Map Placeholder --- */
.map-container {
    width: 100%;
    height: 400px;
    background: #e5e3df;
    border-radius: var(--radius);
    margin-top: var(--space-lg);
    overflow: hidden;
}

/* --- Sidebar Enhanced --- */
.sidebar-widget {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    margin-bottom: var(--space-md);
}

.sidebar-widget h4 {
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    margin-bottom: 15px;
}

/* --- Sub Pages & Components --- */
.page-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-dark));
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.page-banner-light {
    background: #f8f9fa;
    color: var(--secondary-color);
}

.page-banner-light h1,
.page-banner-light .page-title,
.page-banner-light p {
    color: var(--secondary-color);
    text-shadow: none;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.page-banner.no-overlay::before {
    background: none;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1,
.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    font-size: 1.25rem;
    opacity: 1;
    max-width: 700px;
    margin: 0 auto;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* Layouts */
.layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    /* Default: Content Left, Sidebar Right */
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
}

.layout-with-sidebar.sidebar-left {
    grid-template-columns: 280px 1fr;
}

/* Sidebar Styles */
.sidebar,
.sidebar-container {
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    height: fit-content;
}

.sidebar-header {
    background: var(--primary-color);
    color: white;
    padding: var(--space-sm) var(--space-md);
    font-weight: 600;
}

.sidebar-list a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--bg-light);
    color: var(--text-color);
}

.sidebar-list a:hover,
.sidebar-list a.active {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Tabs System */
.tabs-header {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: var(--space-lg);
}

.tab-item {
    padding: var(--space-sm) var(--space-lg);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-item.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Forms */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1);
}

/* --- Responsive Adaptability --- */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

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

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

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

    header,
    header.header-solid,
    header.scrolled {
        top: 0 !important;
        z-index: 1100;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    }

    .top-bar {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -15px 0 35px rgba(0, 0, 0, 0.15);
        z-index: 1002;
        gap: 0;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    /* Add overlay when menu active */
    body.nav-active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        backdrop-filter: blur(3px);
    }

    .nav-links a,
    .has-dropdown {
        width: 100%;
        display: block;
        height: auto;
        /* Reset PC height: 100% */
    }

    .nav-links a,
    .has-dropdown>a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        text-align: left;
    }

    .dropdown-menu {
        display: none;
        /* Hide by default on mobile */
    }

    .nav-links a {
        color: var(--text-main) !important;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--bg-light);
        padding: 10px 0;
        margin: 0;
    }

    .has-dropdown .dropdown-menu {
        padding: 0 0 10px 15px !important;
        margin: 0;
        border: none;
    }

    .has-dropdown .dropdown-menu a {
        padding: 8px 0 !important;
        font-size: 0.9rem !important;
        border: none !important;
    }

    .mobile-nav-toggle {
        display: block;
        margin-left: 10px;
    }

    .nav-container {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px !important;
    }

    .logo,
    .logo a {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .logo img {
        height: 28px !important;
        width: auto;
    }

    header div.flex {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    div.flex a.btn-primary {
        padding: 8px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .grid-2,
    .about-grid,
    .layout-with-sidebar {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg);
    }

    .sidebar {
        position: static;
        width: 100%;
        margin-bottom: 30px;
    }

    .hero-slider {
        height: 60vh;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .has-dropdown.mobile-open .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: relative !important;
        top: 0 !important;
        display: block !important;
        padding: 0 0 10px 20px !important;
        box-shadow: none !important;
        background: transparent !important;
        width: 100% !important;
    }

    .has-dropdown .dropdown-menu {
        display: none;
    }

    .has-dropdown.mobile-open .dropdown-menu a {
        border-bottom: none !important;
        padding: 10px 0 !important;
        font-size: 1rem !important;
        color: var(--text-muted) !important;
    }

    header.scrolled .mobile-nav-toggle,
    header.header-solid .mobile-nav-toggle {
        color: var(--text-main);
    }

    header.scrolled .logo h1,
    header.header-solid .logo h1 {
        color: var(--primary-color);
    }

    /* Hide Float Contact for Mobile */
    .float-contact {
        display: none !important;
    }

    .float-item {
        width: 50px;
        height: 50px;
    }

    .float-item span {
        font-size: 10px;
    }

    /* Footer Compacting */
    .main-footer {
        padding: 60px 0 100px;
        /* 100px bottom to clear mobile CTA bar */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 15px auto;
    }

    .footer-column h3 {
        margin-bottom: 20px;
        padding-bottom: 10px;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-qr-group {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-bottom {
        padding-top: 30px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Global Presence Mobile Adaptation */
    .map-visual-full {
        padding: 30px 15px;
        min-height: 350px;
        border-radius: 16px;
    }

    .world-map-svg {
        min-height: 250px;
    }

    .map-arcs-svg {
        inset: 40px 15px;
        width: calc(100% - 30px);
        height: calc(100% - 80px);
    }

    .cases-industries-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cases-sidebar-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .industry-tile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .industry-tile {
        padding: 15px 10px;
    }

    .industry-tile span {
        font-size: 13px;
    }

    .global-metrics {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13.5px;
    }

    .grid-4,
    .grid-3,
    .grid-2,
    .footer-grid,
    .cases-industries-row {
        grid-template-columns: 1fr;
    }

    .map-visual-full {
        min-height: 300px;
    }

    .world-map-svg {
        min-height: 200px;
    }

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

.about-badge {
    position: static;
    margin-top: var(--space-md);
}