/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a6e;
    --primary-dark: #0d0d4a;
    --accent-red: #e31e24;
    --accent-blue: #2929cc;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f0f0f5;
    --gray-200: #e2e2ea;
    --gray-600: #6b6b80;
    --gray-800: #2d2d3a;
    --dark: #0a0a2e;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius: 8px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 3px;
}

body {
    font-family: var(--font);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAVIGATION === */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-dark);
    padding: 0;
    transition: background 0.3s, box-shadow 0.3s;
    overflow: visible;
}

.main-nav.scrolled {
    background: rgba(13, 13, 74, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 64px;
    position: relative;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
    gap: 4px;
    align-items: center;
    height: 100%;
}

.nav-links > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-login {
    display: none;
}

.nav-cta-btn {
    background: var(--accent-red) !important;
    color: var(--white) !important;
    padding: 8px 18px !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    transition: background 0.3s, transform 0.2s !important;
}

.nav-cta-btn:hover {
    background: #c41219 !important;
    transform: translateY(-1px);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > a svg {
    transition: transform 0.3s;
}

.nav-dropdown:hover > a svg {
    transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: var(--white);
    min-width: 240px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
}

.nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.nav-dropdown .dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid var(--white);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px !important;
    color: var(--gray-800) !important;
    font-size: 0.85rem !important;
    border-radius: 0 !important;
    background: none !important;
    transition: all 0.2s !important;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: var(--gray-100) !important;
    color: var(--primary) !important;
    padding-left: 24px !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        url('img/hero-index.png') center/cover no-repeat,
        linear-gradient(135deg, #1a1a6e 0%, #0d0d4a 50%, #2929cc 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(13,13,74,0.92) 0%, rgba(26,26,110,0.85) 50%, rgba(41,41,204,0.8) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(41, 41, 204, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(26, 26, 110, 0.5) 0%, transparent 50%);
    animation: heroOverlayPulse 8s ease-in-out infinite;
}

@keyframes heroOverlayPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.88; }
}

#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient-sweep {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
    animation: sweepGradient 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes sweepGradient {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 550px;
    color: var(--white);
    padding-left: 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-image-container {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    animation: floatBadgeCentered 5s ease-in-out infinite;
    pointer-events: none;
}

.hero-logo-badge {
    display: block;
    width: 200px;
    height: auto;
    background: rgba(8, 8, 40, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

@keyframes floatBadgeCentered {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 8px)); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-red);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #c41219;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.4);
}

.btn-outline-light {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-text {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 20px;
    transition: color 0.2s;
}

.btn-text:hover {
    color: var(--accent-red);
}

/* Section intro */
.section-intro {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-intro h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 12px 0 16px;
    line-height: 1.3;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

/* === STATISTICS / HOW IT WORKS SECTION === */
.stats-section {
    padding: 80px 0;
    background: var(--white);
}

.stats-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-600);
    position: relative;
    padding-left: 30px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}

.section-label.light {
    color: rgba(255,255,255,0.7);
}

.section-label.light::before {
    background: rgba(255,255,255,0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 10px;
}

.stat-item p {
    font-size: 0.95rem;
    color: var(--gray-800);
    line-height: 1.5;
    padding-top: 10px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.process-step:nth-child(1) { transition-delay: 0s; }
.process-step:nth-child(2) { transition-delay: 0.15s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }

/* === CASE STUDIES === */
.case-studies {
    padding: 80px 0;
    background: var(--gray-50);
}

.case-studies-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.case-studies-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.case-studies {
    background: var(--dark);
    color: var(--white);
}

.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: var(--gray-800);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}

.case-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.case-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.case-card-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.case-img-1 {
    background: url('img/case-study-1.svg') center/cover, linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.case-img-2 {
    background: url('img/case-study-2.svg') center/cover, linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.case-img-3 {
    background: url('img/case-study-3.svg') center/cover, linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.case-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.case-card-content {
    padding: 24px;
}

.case-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tag-manufacturing {
    background: #fff3cd;
    color: #856404;
}

.tag-ecommerce {
    background: #d4edda;
    color: #155724;
}

.tag-retail {
    background: #cce5ff;
    color: #004085;
}

.case-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.case-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.read-more {
    color: var(--accent-red);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.read-more:hover {
    color: #c41219;
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.why-us-item {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.why-us-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-us-item:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
}

.why-us-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 12px;
    line-height: 1;
}

.why-us-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-us-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

.why-us-item:nth-child(1) { transition-delay: 0s; }
.why-us-item:nth-child(2) { transition-delay: 0.1s; }
.why-us-item:nth-child(3) { transition-delay: 0.2s; }
.why-us-item:nth-child(4) { transition-delay: 0.3s; }

/* === SERVICES SECTION (dark with particles) === */
.services-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}

.services-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0a0a2e 0%, #1a1a6e 100%);
    z-index: 0;
}

#services-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.services-section .container {
    position: relative;
    z-index: 10;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 16px 0 30px;
    line-height: 1.2;
}

.btn-white {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-dual-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-dual-buttons .btn-outline-light {
    border-color: rgba(255,255,255,0.6);
}

.cta-dual-buttons .btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* === 24/7 SERVICES GRID === */
.services-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.services-grid-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.highlight-box {
    display: inline-block;
    border: 3px solid var(--accent-red);
    padding: 8px 24px;
    border-radius: var(--radius);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item:hover {
    background: var(--gray-50);
    box-shadow: var(--shadow-sm);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
}

.service-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-decoration: underline;
    text-decoration-color: var(--accent-red);
    text-underline-offset: 4px;
}

.service-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* === CTA BANNER === */
.cta-banner {
    background: var(--accent-red);
    padding: 24px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--white);
}

.cta-icon {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-phone {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 10px 24px;
    border: 2px solid var(--white);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.cta-phone:hover {
    background: var(--white);
    color: var(--accent-red);
}

/* === ABOUT SECTION === */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--gray-50);
}

.about-bg-pattern {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,26,110,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 10s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(5deg); }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.about-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-image {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a6e 0%, #2929cc 100%);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.about-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* === FOOTER === */
.main-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 200px 1fr 250px;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.5;
}

.footer-links-group {
    display: flex;
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-col h4.highlight {
    color: var(--accent-red);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.825rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    opacity: 0.85;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--white);
}

.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.9;
}

.address-indent {
    padding-left: 26px;
}

/* Services subtitle */
.services-subtitle {
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Page Header (for subpages) */
.page-header {
    padding: 160px 0 70px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header[style*="background-image"] {
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(41, 41, 204, 0.35) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(227, 30, 36, 0.12) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 46, 0.3) 0%, rgba(10, 10, 46, 0.75) 100%);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    max-width: 600px;
    margin-left: 0;
    animation: headerReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes headerReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 850;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(120deg, #ffffff 0%, #e2e2ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Page Content placeholder */
.page-content {
    padding: 60px 0 80px;
    min-height: 300px;
}

/* Service Detail Pages */
.service-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.service-intro h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.service-section {
    max-width: 800px;
    margin: 0 auto 40px;
}

.service-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.service-section ul {
    margin: 8px 0 16px 24px;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

.service-section li {
    margin-bottom: 6px;
}

.service-detail-img {
    display: block;
    max-width: 680px;
    width: 100%;
    margin: 40px auto;
    border-radius: var(--radius-lg);
}

.service-cta {
    max-width: 800px;
    margin: 56px auto 0;
    text-align: center;
    padding: 48px 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.service-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-cta p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.service-cta .btn-primary {
    margin-right: 12px;
    margin-bottom: 12px;
}

.service-cta .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.service-cta .btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.content-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.content-intro .lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-800);
    margin-bottom: 16px;
    font-weight: 400;
}

.content-intro p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.content-image-block {
    margin: 40px 0;
    text-align: center;
}

.content-detail-img {
    max-width: 100%;
    height: auto;
    max-height: 320px;
    border-radius: var(--radius-lg);
}

.content-section {
    max-width: 800px;
    margin: 0 auto 48px;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.content-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
    margin-top: 20px;
}

.content-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.content-section ul {
    margin: 12px 0 16px 20px;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

.content-section li {
    margin-bottom: 8px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
}

.feature-item {
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.feature-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 8px;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.route-group {
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.route-group h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 8px;
}

.route-group p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.values-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li strong {
    color: var(--primary);
}

.content-cta {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    padding: 48px 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.content-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.content-cta p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

/* Legal Content */
.legal-content {
    padding: 60px 0 80px;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    font-style: italic;
}

.legal-body h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-body p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-body ul {
    margin: 8px 0 16px 24px;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-body li {
    margin-bottom: 4px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-content {
        padding-left: 20px;
    }
    
    .hero-image-container {
        right: 40px;
    }

    .hero-logo-badge {
        width: 170px;
        padding: 22px 26px;
    }
    
    .stats-grid {
        gap: 24px 40px;
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .nav-links.nav-open {
        display: flex;
    }

    .nav-links > li {
        width: 100%;
        height: auto;
    }

    .nav-links a {
        padding: 12px 16px;
        width: 100%;
        display: block;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255,255,255,0.05);
        padding: 0 0 0 16px;
        box-shadow: none;
    }

    .nav-dropdown .dropdown-menu li a {
        color: rgba(255,255,255,0.8);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        min-height: 500px;
        padding: 80px 16px 40px;
    }
    
    .hero-content {
        padding-left: 0;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        display: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links-group {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* === ANIMATIONS === */
.fade-in-view {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-view.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.case-card:nth-child(1) { transition-delay: 0s; }
.case-card:nth-child(2) { transition-delay: 0.15s; }
.case-card:nth-child(3) { transition-delay: 0.3s; }

.stat-item:nth-child(1) { transition-delay: 0s; }
.stat-item:nth-child(2) { transition-delay: 0.1s; }
.stat-item:nth-child(3) { transition-delay: 0.2s; }
.stat-item:nth-child(4) { transition-delay: 0.3s; }
.stat-item:nth-child(5) { transition-delay: 0.4s; }
.stat-item:nth-child(6) { transition-delay: 0.5s; }
.stat-item:nth-child(7) { transition-delay: 0.6s; }
.stat-item:nth-child(8) { transition-delay: 0.7s; }
.stat-item:nth-child(9) { transition-delay: 0.8s; }

.service-item:nth-child(1) { transition-delay: 0s; }
.service-item:nth-child(2) { transition-delay: 0.1s; }
.service-item:nth-child(3) { transition-delay: 0.2s; }
.service-item:nth-child(4) { transition-delay: 0.3s; }
.service-item:nth-child(5) { transition-delay: 0.4s; }
.service-item:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   ENHANCED HOMEPAGE STYLES
   ============================================ */

/* --- Hero Enhanced --- */
.hero-enhanced {
    min-height: 100vh;
    padding: 0 24px;
    display: flex;
    align-items: center;
}

.hero-enhanced .hero-content {
    padding-top: 64px;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
    animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Hero title split animation */
.hero-title-split {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.title-line {
    display: block;
    overflow: hidden;
}

/* Hero reveal with clip-path */
.hero-reveal {
    opacity: 0;
    transform: translateY(40px);
    clip-path: inset(0 0 100% 0);
    animation: heroReveal 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-reveal[data-delay="0"] { animation-delay: 0.3s; }
.hero-reveal[data-delay="1"] { animation-delay: 0.5s; }
.hero-reveal[data-delay="2"] { animation-delay: 0.7s; }
.hero-reveal[data-delay="3"] { animation-delay: 0.9s; }
.hero-reveal[data-delay="4"] { animation-delay: 1.1s; }

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
        clip-path: inset(0 0 100% 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0% 0);
    }
}

/* Glowing button effect */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 1.5s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* --- Ticker Section --- */
.ticker-section {
    background: var(--primary-dark);
    padding: 18px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ticker-track {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
    animation: tickerScroll 25s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 24px;
}

.ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-red);
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Counter Section --- */
.counter-section {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.counter-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.counter-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.counter-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.counter-item:nth-child(1) { transition-delay: 0s; }
.counter-item:nth-child(2) { transition-delay: 0.15s; }
.counter-item:nth-child(3) { transition-delay: 0.3s; }
.counter-item:nth-child(4) { transition-delay: 0.45s; }

.counter-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.counter-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Trusted Section --- */
.trusted-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.trusted-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.trusted-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.trusted-logos.visible {
    opacity: 1;
    transform: translateY(0);
}

.trusted-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    transition: color 0.3s, transform 0.3s;
}

.trusted-logo-item:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.trusted-logo-item svg {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.trusted-logo-item:hover svg {
    opacity: 0.9;
}

.trusted-logo-item span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Parallax sections --- */
.parallax-section {
    will-change: transform;
}

/* --- Responsive additions --- */
@media (max-width: 768px) {
    .content-intro {
        margin-bottom: 32px;
    }

    .content-section {
        margin-bottom: 36px;
    }

    .features-list {
        gap: 16px;
    }

    .feature-item {
        padding: 20px;
    }

    .routes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .content-cta {
        padding: 32px 20px;
        margin-top: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-enhanced {
        min-height: 100svh;
    }

    .hero-title-split {
        font-size: 2.5rem;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .trusted-logos {
        gap: 24px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title-split {
        font-size: 2rem;
    }

    .counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .counter-number {
        font-size: 2rem;
    }

    .ticker-item {
        font-size: 0.75rem;
        padding: 0 16px;
    }
}

/* Page content responsive grid fix */
@media (max-width: 768px) {
    .page-content [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    .page-content [style*="grid-template-columns: repeat(5"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .page-content [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================
   HERO SHIPPING ROUTE ANIMATIONS
   ============================================ */

.hero-routes-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: fadeInSlow 2s ease 0.5s forwards;
}

@keyframes fadeInSlow {
    to { opacity: 1; }
}

.route-path {
    stroke-dasharray: 12 6;
    stroke-dashoffset: 0;
}

.route-1 {
    animation: routeDash 15s linear infinite;
}

.route-2 {
    animation: routeDash 20s linear infinite reverse;
}

.route-3 {
    animation: routeDash 25s linear infinite;
}

@keyframes routeDash {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}

.route-dot {
    filter: drop-shadow(0 0 4px currentColor);
}

.route-dot-1 {
    filter: drop-shadow(0 0 6px rgba(227, 30, 36, 0.8));
}

.route-dot-2 {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.route-dot-3 {
    filter: drop-shadow(0 0 5px rgba(79, 70, 229, 0.8));
}

.port-marker {
    animation: portPulse 3s ease-in-out infinite;
}

.port-marker:nth-child(3) { animation-delay: 0.5s; }
.port-marker:nth-child(5) { animation-delay: 1s; }

@keyframes portPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* ============================================
   FLOATING CONTAINER ANIMATIONS
   ============================================ */

.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.float-container {
    position: absolute;
    opacity: 0;
    animation: floatUp 1.5s ease 1.2s forwards;
}

.float-1 {
    top: 18%;
    left: 52%;
    animation: containerFloat1 12s ease-in-out infinite, floatUp 1.5s ease 1.2s forwards;
}

.float-2 {
    top: 62%;
    left: 58%;
    animation: containerFloat2 15s ease-in-out infinite, floatUp 1.5s ease 1.6s forwards;
}

.float-3 {
    top: 38%;
    left: 65%;
    animation: containerFloat3 18s ease-in-out infinite, floatUp 1.5s ease 2s forwards;
}

@keyframes floatUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 0.7; transform: translateY(0); }
}

@keyframes containerFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, -20px) rotate(2deg); }
    50% { transform: translate(10px, -35px) rotate(-1deg); }
    75% { transform: translate(-5px, -15px) rotate(1.5deg); }
}

@keyframes containerFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -25px) rotate(-2deg); }
    66% { transform: translate(-10px, -40px) rotate(1.5deg); }
}

@keyframes containerFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(-20px, 15px) rotate(1deg); }
    40% { transform: translate(15px, -20px) rotate(-2deg); }
    60% { transform: translate(-10px, -30px) rotate(0.5deg); }
    80% { transform: translate(5px, 10px) rotate(-1deg); }
}

/* ============================================
   OCEAN WAVE ANIMATION
   ============================================ */

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 3;
    pointer-events: none;
}

.wave-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wave-1 {
    animation: waveMotion1 7s ease-in-out infinite;
}

.wave-2 {
    animation: waveMotion2 9s ease-in-out infinite;
}

.wave-3 {
    animation: waveMotion3 11s ease-in-out infinite;
}

@keyframes waveMotion1 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-30px); }
}

@keyframes waveMotion2 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(25px); }
}

@keyframes waveMotion3 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-15px) translateY(-3px); }
}

/* ============================================
   RADAR SWEEP ANIMATION
   ============================================ */

.hero-radar {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-radar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(227,30,36,0.6), transparent);
    animation: radarSweep 6s linear infinite;
}

.hero-radar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: inset 0 0 60px rgba(41,41,204,0.1);
}

@keyframes radarSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   LIGHT BEAM ANIMATIONS
   ============================================ */

.hero-light-beams {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 200%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255,255,255,0.08) 30%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0.08) 70%,
        transparent 100%
    );
    transform: rotate(25deg);
    opacity: 0;
}

.beam-1 {
    left: 20%;
    animation: beamSweep 8s ease-in-out 2s infinite;
}

.beam-2 {
    left: 50%;
    transform: rotate(-15deg);
    animation: beamSweep 10s ease-in-out 4s infinite;
}

.beam-3 {
    left: 75%;
    transform: rotate(35deg);
    animation: beamSweep 12s ease-in-out 6s infinite;
}

@keyframes beamSweep {
    0%, 100% { opacity: 0; transform: translateX(-100px) rotate(25deg); }
    10% { opacity: 1; }
    50% { opacity: 0.6; }
    90% { opacity: 1; }
    95% { opacity: 0; transform: translateX(100px) rotate(25deg); }
}

/* ============================================
   HERO TITLE SHIMMER EFFECT
   ============================================ */

.hero-title-split .title-line {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 40%,
        #e0e7ff 50%,
        #ffffff 60%,
        #ffffff 100%
    ) !important;
    background-size: 200% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: titleShimmer 5s ease-in-out infinite;
}

@keyframes titleShimmer {
    0%, 100% { background-position: 200% center; }
    50% { background-position: -200% center; }
}

/* ============================================
   COUNTER SECTION ENHANCED ANIMATION
   ============================================ */

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.02) 25%,
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0.02) 75%,
        transparent 100%
    );
    animation: counterShine 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes counterShine {
    0% { transform: translateX(-30%); }
    100% { transform: translateX(30%); }
}

/* ============================================
   SERVICE ITEMS VARIED ANIMATIONS
   ============================================ */

.service-item {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease,
                background 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 20px 40px rgba(13,13,74,0.12);
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   WHY-US SECTION ANIMATED BORDERS
   ============================================ */

.why-us-item {
    position: relative;
    overflow: hidden;
}

.why-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent), var(--primary));
    transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-us-item.visible::before,
.why-us-item:hover::before {
    height: 100%;
}

/* ============================================
   HERO BADGE CURSOR BLINK
   ============================================ */

.hero-badge::after {
    content: '|';
    font-weight: 300;
    animation: cursorBlink 1s step-end infinite;
    margin-left: 2px;
    color: rgba(255,255,255,0.7);
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ============================================
   HERO MOUSE-FOLLOW GLOW
   ============================================ */

.hero-mouse-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* ============================================
   SECTION LABEL ANIMATED UNDERLINE
   ============================================ */

.section-label {
    position: relative;
    display: inline-block;
}

.section-label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-label.visible::after,
[data-animate].visible .section-label::after {
    width: 100%;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    z-index: 10000;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* ============================================
   RESPONSIVE: HIDE EXTRA ANIMS ON MOBILE
   ============================================ */

@media (max-width: 768px) {
    .hero-routes-svg {
        display: none;
    }
    .floating-elements {
        display: none;
    }
    .hero-radar {
        display: none;
    }
    .hero-light-beams {
        display: none;
    }
    .hero-mouse-glow {
        display: none;
    }
}

/* ============================================
   PREMIUM POLISH & GLOBAL DESIGN UPGRADES
   ============================================ */

/* Global Glassmorphic Nav & Scroll Update */
.main-nav {
    background: rgba(13, 13, 74, 0.72) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.main-nav.scrolled {
    background: rgba(13, 13, 74, 0.85) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.nav-dropdown .dropdown-menu {
    background: rgba(13, 13, 74, 0.92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
}

.dropdown-menu li a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
}

.nav-dropdown .dropdown-menu::after {
    border-bottom-color: rgba(13, 13, 74, 0.92) !important;
}

/* Premium Metallic Text Gradient for Headings */
h1:not(.hero-title-split), h2, .section-intro h2, .about-content h2, .services-title, .services-grid-title {
    background: linear-gradient(135deg, var(--primary) 0%, #3a3ab8 50%, #1a1a6e 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block;
}

/* Metallic text gradient for dark backgrounds */
.hero h1:not(.hero-title-split), .case-studies-header h2, .services-section h2, .page-header h1, .response-banner h3 {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #b3c5ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Global Subtle Mouse Glow Trail */
.mouse-glow-follower {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.04) 0%, rgba(41, 41, 204, 0.01) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Visual Upgrades (Inner borders, modern shadows & hover flows) */
.service-item, .service-card, .process-step, .why-us-item, 
.contact-info-card, .contact-form-card, .form-section, .next-step-card, .faq-item {
    border: 1px solid rgba(26, 26, 110, 0.05) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04) !important;
    background: var(--white);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.5s ease, background-color 0.5s ease !important;
}

/* Dark cards style adjustments */
.why-us-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Hover glows & border sweeps */
.service-item:hover, .service-card:hover, .process-step:hover, .next-step-card:hover, .faq-item:hover {
    transform: translateY(-6px) scale(1.01) !important;
    box-shadow: 0 20px 40px -15px rgba(26, 26, 110, 0.12) !important;
    border-color: rgba(79, 70, 229, 0.3) !important;
    background: linear-gradient(180deg, var(--white) 0%, rgba(240, 240, 255, 0.3) 100%) !important;
}

.why-us-item:hover {
    transform: translateY(-6px) scale(1.01) !important;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

/* Dynamic Interactive glows on card hover */
.service-card::after, .service-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(79, 70, 229, 0.04) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::after, .service-item:hover::after {
    opacity: 1;
}

/* Custom premium hover effects for buttons */
.btn-primary, .form-submit, .btn-white {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after, .form-submit::after, .btn-white::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.25) 50%, transparent 55%);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::after, .form-submit:hover::after, .btn-white:hover::after {
    transform: translateX(100%) rotate(45deg);
}

/* Premium Form Focus Glow States */
body .form-group input, body .form-group select, body .form-group textarea {
    border: 1px solid rgba(26, 26, 110, 0.12) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02) !important;
    transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.2s ease !important;
}

body .form-group input:focus, body .form-group select:focus, body .form-group textarea:focus {
    border-color: rgba(79, 70, 229, 0.8) !important;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15), inset 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    transform: translateY(-1px);
}

body .radio-option input[type="radio"]:checked + label {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(26, 26, 110, 0.2) !important;
}

/* Snappy and smooth scroll reveal adjustments — only when JS loaded */
body.js-loaded [data-animate] {
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   CLEAN LAYOUT CLASSES FOR DETAIL PAGES
   ============================================ */

/* 2-Column Intro Section */
.subpage-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.subpage-intro-grid.reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.subpage-intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .subpage-intro-grid, .subpage-intro-grid.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Standard Details Grid (2 Columns, e.g. FCL/LCL, comparisons) */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

.details-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 40px;
}

@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .details-card {
        padding: 24px;
    }
}

/* Advantage Card Grid (3 Columns) */
.advantage-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.advantage-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(26, 26, 110, 0.05) !important;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.04) !important;
}

.advantage-card svg {
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .advantage-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantage-card-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .advantage-card {
        padding: 24px;
    }
}

/* Process Flow Grid (5-Step / 4-Step horizontal pipeline) */
.process-flow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 80px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
}

.process-flow-step {
    text-align: center;
}

.process-flow-number {
    width: 52px;
    height: 52px;
    background: var(--accent-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.25);
}

.process-flow-number.primary {
    background: var(--primary);
    box-shadow: 0 4px 10px rgba(26, 26, 110, 0.25);
}

.process-flow-step h4 {
    color: var(--gray-800);
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 700;
}

.process-flow-step p {
    color: var(--gray-600);
    font-size: 0.825rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .process-flow-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .process-flow-grid {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 24px;
    }
}

/* Custom Table Layout */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    margin-top: 16px;
}

.spec-table th {
    text-align: left;
    padding: 12px 16px;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    font-weight: 700;
}

.spec-table td {
    padding: 12px 16px;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-200);
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table tr:hover td {
    background: rgba(41, 41, 204, 0.02);
}

/* Premium Card CTA Block */
.card-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    margin-top: 60px;
}

.card-cta h2 {
    font-size: 2rem !important;
    margin-bottom: 16px;
    color: var(--white) !important;
}

.card-cta p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.card-cta.accent {
    background: linear-gradient(135deg, var(--accent-red) 0%, #b71518 100%);
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    margin-top: 40px;
    align-items: start;
}

.contact-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    color: white;
}

.contact-info-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-text p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.5;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--gray-800);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,26,110,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-red);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: #c41219;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227,30,36,0.4);
}

.map-placeholder {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.response-banner {
    margin-top: 60px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.response-banner h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.response-banner p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.faq-section {
    margin-top: 60px;
}

.faq-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--gray-200);
}

.faq-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   GLOBAL SCROLL REVEAL ANIMATIONS
   Only active when JS has loaded (body.js-loaded)
   Prevents invisible content if JS fails/is slow
   ============================================ */
body.js-loaded [data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

body.js-loaded [data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SHOWCASE CARDS (RECENT SUCCESSFUL CASE STUDIES)
   ============================================ */
.showcase-section {
    margin-top: 60px;
    margin-bottom: 80px;
}

.showcase-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: center;
}

.showcase-subtitle {
    text-align: center;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.showcase-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(26, 26, 110, 0.06) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, background-color 0.4s ease !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-card:hover {
    transform: translateY(-6px) scale(1.01) !important;
    box-shadow: 0 20px 40px -15px rgba(26, 26, 110, 0.08) !important;
    border-color: rgba(79, 70, 229, 0.2) !important;
}

.showcase-badge {
    align-self: flex-start;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: inline-block;
}

.badge-sea { background: rgba(79, 70, 229, 0.08); color: var(--primary); }
.badge-air { background: rgba(227, 30, 36, 0.08); color: var(--accent-red); }
.badge-customs { background: rgba(16, 185, 129, 0.08); color: #10b981; }
.badge-warehouse { background: rgba(245, 158, 11, 0.08); color: #f59e0b; }
.badge-delivery { background: rgba(14, 165, 233, 0.08); color: #0ea5e9; }

.showcase-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.showcase-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.showcase-details {
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.showcase-meta-item {
    font-size: 0.8rem;
}

.showcase-meta-label {
    color: var(--gray-400);
    display: block;
    margin-bottom: 2px;
    font-size: 0.75rem;
}

.showcase-meta-val {
    font-weight: 600;
    color: var(--gray-800);
}

/* ============================================
   INLINE CTA FORM GRID
   ============================================ */
.cta-form-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    color: var(--white);
    margin-top: 60px;
    text-align: left;
    box-shadow: var(--shadow-md);
}

.cta-form-grid.accent {
    background: linear-gradient(135deg, var(--accent-red) 0%, #b71518 100%);
}

.cta-form-info h2 {
    font-size: 2rem !important;
    margin-bottom: 16px;
    color: var(--white) !important;
    background: none !important;
    -webkit-text-fill-color: var(--white) !important;
    text-fill-color: var(--white) !important;
}

.cta-form-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-quick-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.cta-quick-form .form-group {
    margin-bottom: 16px;
}

.cta-quick-form .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 6px;
}

.cta-quick-form .form-group input, 
.cta-quick-form .form-group textarea,
.cta-quick-form .form-group select {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-family: var(--font);
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--gray-800) !important;
    border: 1px solid transparent !important;
    transition: all 0.3s;
}

.cta-quick-form .form-group input:focus, 
.cta-quick-form .form-group textarea:focus,
.cta-quick-form .form-group select:focus {
    outline: none;
    background: var(--white) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
}

.cta-quick-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.cta-quick-form .form-submit {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent-red);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

.cta-quick-form .form-submit:hover {
    background: #c41219;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.5);
}

.cta-form-grid.accent .cta-quick-form .form-submit {
    background: var(--primary);
}

.cta-form-grid.accent .cta-quick-form .form-submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(26, 26, 110, 0.5);
}

@media (max-width: 768px) {
    .cta-form-grid {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 30px;
    }
}


/* ===============================================
   MISSING CSS — COMPLETE SUBPAGE & SERVICE STYLES
   =============================================== */

/* Page Header: subtitle + buttons (all subpages) */
.page-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin: 14px 0 22px;
    max-width: 520px;
}

.header-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Reuse primary/outline buttons in header context */
.page-header .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}
.page-header .btn-primary:hover {
    background: #c41219;
    transform: translateY(-2px);
}
.page-header .btn-outline-light {
    border: 1.5px solid rgba(255,255,255,0.55);
    color: #fff;
    padding: 11px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    display: inline-block;
}
.page-header .btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* -----------------------------------------------
   Services.html — intro / service cards
   ----------------------------------------------- */
.services-intro {
    padding: 70px 0 40px;
    background: var(--white);
}
.services-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.intro-content h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.3;
}
.intro-content p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 14px;
}
.intro-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    max-height: 340px;
}

/* Service Cards (services.html grid) */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26,26,110,0.15);
}
.service-card:hover::before {
    opacity: 1;
}
.service-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(26,26,110,0.06) 0%, rgba(26,26,110,0.12) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 18px;
}
.service-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}
.service-link:hover {
    color: var(--accent);
}

.services-grid-continued {
    padding-top: 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

/* Section title / subtitle (services.html) */
.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
    text-align: center;
}
.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.97rem;
    margin-top: -20px;
    margin-bottom: 40px;
}

/* Process section (services.html "How We Work") */
.process-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

/* Routes section (services.html) */
.routes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26,26,110,0.03) 0%, rgba(26,26,110,0.07) 100%);
    border-top: 1px solid var(--gray-200);
}
.routes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.routes-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    max-height: 380px;
}
.routes-text h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.3;
}
.routes-text p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 14px;
}

/* Responsive: services layout */
@media (max-width: 900px) {
    .services-intro .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .routes-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .routes-image {
        order: -1;
    }
}

/* -----------------------------------------------
   Contact map / office image
   ----------------------------------------------- */
.contact-map-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* -----------------------------------------------
   Quote page: what-happens-next / free-quote-note
   ----------------------------------------------- */
.what-happens-next {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 48px;
}
.what-happens-next h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.what-happens-next > p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 24px;
}
.process-visual {
    text-align: center;
    margin-bottom: 28px;
}
.process-visual img {
    max-width: 260px;
    width: 100%;
    border-radius: var(--radius-md);
    opacity: 0.9;
}
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.next-step-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.next-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.next-step-number {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.next-step-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.next-step-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}
.free-quote-note {
    background: linear-gradient(135deg, rgba(26,26,110,0.04) 0%, rgba(26,26,110,0.08) 100%);
    border: 1px solid rgba(26,26,110,0.12);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    margin-top: 32px;
    text-align: center;
    color: var(--gray-700);
    font-size: 0.93rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .next-steps-grid {
        grid-template-columns: 1fr;
    }
    .what-happens-next {
        padding: 28px 20px;
    }
}

/* -----------------------------------------------
   About page: showcase subtitle
   ----------------------------------------------- */
.showcase-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 36px;
}

/* ============================================
   SUBPAGE ANIMATION ENHANCEMENTS
   ============================================ */

/* Staggered fade-in for page content blocks */
.page-content [data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-content [data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide-in from left */
.page-content [data-animate="left"] {
    transform: translateX(-40px) translateY(0);
}
.page-content [data-animate="left"].visible {
    transform: translateX(0) translateY(0);
}

/* Slide-in from right */
.page-content [data-animate="right"] {
    transform: translateX(40px) translateY(0);
}
.page-content [data-animate="right"].visible {
    transform: translateX(0) translateY(0);
}

/* Scale up entrance */
.page-content [data-animate="scale"] {
    transform: scale(0.92);
}
.page-content [data-animate="scale"].visible {
    transform: scale(1);
}

/* Stagger children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.18s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.24s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Image hover zoom */
.img-hover-zoom {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.img-hover-zoom img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

/* Animated section divider */
.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 0 auto 32px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: dividerShine 3s ease-in-out infinite;
}

@keyframes dividerShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Subpage intro grid animations */
.subpage-intro-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.subpage-intro-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

.subpage-intro-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.subpage-intro-image img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.subpage-intro-image:hover img {
    transform: scale(1.04);
}

/* Details card hover lift */
.details-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.details-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13,13,74,0.08);
}

/* Page header animated particles bg */
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.15) 50%, transparent 50%),
        radial-gradient(2px 2px at 70% 60%, rgba(255,255,255,0.1) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,255,255,0.12) 50%, transparent 50%),
        radial-gradient(2px 2px at 80% 20%, rgba(255,255,255,0.08) 50%, transparent 50%),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.1) 50%, transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 46, 0.3) 0%, rgba(10, 10, 46, 0.75) 100%);
    animation: starTwinkle 4s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes starTwinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* CTA form grid animation */
.cta-form-grid {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.cta-form-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form input focus animations */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 26, 110, 0.1);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

/* Advantage card animated number */
.advantage-card-grid .details-card {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid transparent;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.advantage-card-grid .details-card:hover {
    border-left-color: var(--accent);
}

/* ============================================
   SMOOTH PAGE LOAD
   ============================================ */

body {
    animation: pageLoad 0.6s ease both;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Improved page content typography */
.page-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    position: relative;
}

.page-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.page-content p + p {
    margin-top: 12px;
}

/* Subtle link hover in page content */
.page-content a:not(.btn-primary):not(.btn-outline):not(.btn-text):not(.form-submit) {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-underline-offset 0.2s ease;
}

.page-content a:not(.btn-primary):not(.btn-outline):not(.btn-text):not(.form-submit):hover {
    color: var(--accent);
    text-underline-offset: 5px;
}

/* ============================================
   INSIGHTS / PROJECTS CARD GRID
   ============================================ */

.articles-grid, .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.article-card, .project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.article-card:hover, .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(13,13,74,0.1);
    border-color: rgba(79, 70, 229, 0.3);
}

.article-card .card-image,
.project-card .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-card .card-image img,
.project-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover .card-image img,
.project-card:hover .card-image img {
    transform: scale(1.08);
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-body p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-body .card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.card-body .card-link:hover {
    gap: 10px;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.badge-sea { background: rgba(26,26,110,0.1); color: var(--primary); }
.badge-air { background: rgba(79,70,229,0.1); color: #4f46e5; }
.badge-customs { background: rgba(227,30,36,0.08); color: var(--accent); }
.badge-warehouse { background: rgba(16,185,129,0.1); color: #10b981; }
.badge-delivery { background: rgba(245,158,11,0.1); color: #f59e0b; }

/* ============================================
   FAQ ACCORDION STYLES
   ============================================ */

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-200);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-accordion details {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion details[open] {
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 4px 12px rgba(13,13,74,0.06);
}

.faq-accordion summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.faq-accordion summary:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.faq-accordion summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-accordion details[open] summary::after {
    transform: rotate(45deg);
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion .faq-answer {
    padding: 0 24px 20px;
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.7;
    animation: faqOpen 0.3s ease;
}

@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   COVERAGE / ROUTES MAP STYLES
   ============================================ */

.routes-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.routes-table thead {
    background: var(--primary);
    color: var(--white);
}

.routes-table th {
    padding: 14px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.routes-table td {
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.routes-table tbody tr {
    transition: background 0.2s ease;
}

.routes-table tbody tr:hover {
    background: rgba(79,70,229,0.03);
}

.routes-table tbody tr:last-child td {
    border-bottom: none;
}

/* Coverage region cards */
.coverage-regions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.region-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(13,13,74,0.06);
    border-color: rgba(79,70,229,0.2);
}

.region-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.region-card ul {
    list-style: none;
    padding: 0;
}

.region-card ul li {
    font-size: 0.88rem;
    color: var(--gray-600);
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
}

.region-card ul li:last-child {
    border-bottom: none;
}

.region-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* ============================================
   ARTICLE/PROJECT DETAIL PAGE STYLES
   ============================================ */

.article-content, .project-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2, .project-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.article-content p, .project-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.article-content img, .project-content img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 32px 0;
}

.project-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.metric-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Related articles */
.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.related-articles h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ============================================
   RESPONSIVE: NEW PAGE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .articles-grid, .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .coverage-regions {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
    .coverage-regions {
        grid-template-columns: 1fr;
    }
    .project-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .routes-table {
        font-size: 0.82rem;
    }
    .routes-table th, .routes-table td {
        padding: 10px 12px;
    }
}
