html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    scroll-behavior: smooth;
}

:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --primary-glow: rgba(0, 102, 255, 0.4);
    --primary-light: #e6f0ff;
    --secondary: #00d4ff;
    --secondary-dark: #00a8cc;
    --accent: #ff6b35;
    --danger: #dc3545;
    --text-main: #0a0f1d;
    --text-dim: #475569;
    --text-light: #64748b;
    --bg-body: #ffffff;
    --bg-alt: #f8fafc;
    --bg-section: #fafcff;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --container-w: 1440px;
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Dark mode variables */
    --dark-bg-body: #0f172a;
    --dark-bg-alt: #1e293b;
    --dark-bg-section: #1e293b;
    --dark-text-main: #f8fafc;
    --dark-text-dim: #cbd5e1;
    --dark-text-light: #94a3b8;
    --dark-border: #334155;
    --dark-border-light: #475569;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.dark-mode {
    background-color: var(--dark-bg-body);
    color: var(--dark-text-main);
}

body.dark-mode .elite-nav {
    background: rgba(15, 23, 42, 0.95);
    border-bottom-color: var(--dark-border);
}

body.dark-mode .nav-link {
    color: var(--dark-text-main);
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
    color: var(--primary);
}

body.dark-mode .lang-toggle-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
}

h1,
h2,
h3,
.brand-font {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Nav Modern */
nav,
.elite-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-inner {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 75px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    mix-blend-mode: normal;
    /* We don't need multiply if the logo is transparent */
}

/* Standard Logo State */
.logo-img {
    filter: none;
    opacity: 1;
}

.logo-link:hover .logo-img {
    transform: scale(1.05) translateY(-2px);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Default and Ligh state colors */
/* Default and Light state colors */
.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Active and Hover */
.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Nav Actions & Language Switcher Group */
.nav-actions-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    position: relative;
    z-index: 1002;
}

.lang-toggle-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    border: none !important;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.lang-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.lang-toggle-btn:hover::before {
    left: 100%;
}

.lang-toggle-btn>* {
    position: relative;
    z-index: 2;
}

.lang-toggle-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.lang-toggle-btn:hover::after {
    opacity: 1;
}

.lang-toggle-btn svg {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 12px;
    height: 12px;
}

.lang-switcher.active .lang-toggle-btn {
    background: var(--primary-dark) !important;
    transform: scale(0.98);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.lang-switcher.active .lang-toggle-btn svg.lang-chevron {
    transform: rotate(180deg);
}

.lang-toggle-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    display: none;
    flex-direction: column !important;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
    transform-origin: top right;
    border: 1px solid rgba(0, 102, 255, 0.1);
    animation: eliteSlideIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

.lang-dropdown.show {
    display: flex !important;
}

.rtl-mode .lang-dropdown {
    right: auto;
    left: 0;
}

.lang-btn {
    width: 100%;
    text-align: left;
    padding: 0.85rem 1.25rem;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.lang-btn:hover {
    background: rgba(0, 102, 255, 0.08);
    /* light subtle blue highlight */
    color: var(--primary);
    transform: translateX(4px);
}

.rtl-mode .lang-btn:hover {
    transform: translateX(-4px);
}

.lang-btn.active {
    background: var(--primary);
    color: #ffffff;
}

/* Directional handling */
.rtl-mode {
    direction: rtl;
    text-align: right;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Brochure Showcase Section */
.brochure-showcase {
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 968px) {
    .brochure-showcase {
        grid-template-columns: 1fr !important;
        padding: 40px 30px !important;
        gap: 40px !important;
        text-align: center;
    }

    .brochure-content h2 {
        font-size: 2.2rem !important;
    }
}

.rtl-mode .brochure-visual {
    transform: perspective(1000px) rotateY(10deg) !important;
}

/* Cinematic Hero Legend Architecture */
.hero-legend {
    position: relative;
    padding: 16rem 0 12rem;
    background-color: #f4f7fb;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

header[class*="-hero"] {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #020610;
}

[class*="-hero-bg"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    transform: scale(1.05);
    filter: brightness(0.95);
    animation: slowZoom 25s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.has-hero main header:hover [class*="-hero-bg"] {
    transform: scale(1.1);
}

.home-hero-bg {
    animation: slowZoom 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

header[class*="-hero"]::before {
    content: "ABILITY FREIGHT";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    user-select: none;
    text-transform: uppercase;
}

header[class*="-hero"]::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    z-index: 3;
    animation: lightSweep 8s infinite linear;
    pointer-events: none;
}

@keyframes lightSweep {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-overlay,
[class*="-hero-overlay"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0.95) 100%);
    z-index: 4;
}

/* White text for better contrast on cinematic dark heroes */
.hero-overlay+.container .hero-title {
    color: #ffffff;
}

.hero-overlay+.container .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero-overlay+.container .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.hero-overlay+.container .hero-badge .badge-dot {
    background: #00ff88;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(5px);
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 0.75rem;
    animation: pulse 2s infinite;
}

.hero-title,
[class*="-hero-title"] {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--text-main);
    letter-spacing: -0.05em;
    position: relative;
    z-index: 10;
    font-family: 'Outfit', sans-serif;
}

.hero-title::after,
[class*="-hero-title"]::after {
    content: "";
    display: inline-block;
    width: 0.2em;
    height: 0.2em;
    background: var(--primary);
    border-radius: 50%;
    margin-left: 0.1em;
    vertical-align: middle;
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    animation: brandingPulse 2s infinite ease-in-out;
}

@keyframes brandingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
        filter: brightness(1.2);
    }
}

.hero-subtitle,
[class*="-hero-subtitle"] {
    font-size: 1.4rem;
    color: var(--text-dim);
    max-width: 850px;
    font-weight: 500;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Sections */
.section {
    padding: 8rem 0;
    background: var(--bg-body);
}

.section-alt {
    padding: 8rem 0;
    background: var(--bg-alt);
}

.section-tag {
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    line-height: 1.1;
    color: var(--text-main);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 102, 255, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.service-card p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-card:hover .service-link {
    gap: 1rem;
}

/* Document/Profile List */
.doc-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.doc-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.doc-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    color: var(--primary);
}

.doc-info {
    flex-grow: 1;
}

.doc-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.doc-meta {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.doc-action {
    color: var(--primary);
    font-weight: 700;
}

/* Contact Block */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-block {
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: var(--primary);
    color: white;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    border-color: white;
}

/* Footer Premium */
.premium-footer {
    position: relative;
    padding: 8rem 0 4rem;
    background: var(--white);
    color: var(--text-main);
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.footer-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.footer-inner {
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    /* Removed white invert filter so it shows original colors */
}

.footer-desc {
    color: var(--text-dim);
    line-height: 1.8;
    max-width: 400px;
    font-size: 1rem;
}

.footer-heading {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.footer-link {
    display: block;
    color: var(--text-dim);
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes pulse {

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

    50% {
        opacity: 0.4;
        transform: scale(0.9);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        /* simple mobile hide for now */
    }

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

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

    .hero-legend {
        padding: 12rem 0 8rem;
    }
}

/* Mega Menu */
.nav-item {
    position: relative;
    padding: 1rem 0;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    min-width: 1100px;
    border-radius: 35px;
    box-shadow: 0 60px 150px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 1000;
}

.mega-menu-column h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
    font-weight: 800;
    border-bottom: 2px solid var(--bg-alt);
    padding-bottom: 0.75rem;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
}

.mega-menu-link:hover {
    background: #ffffff;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mega-icon {
    font-size: 2.2rem;
    background: rgba(0, 102, 255, 0.08);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.mega-menu-link:hover .mega-icon {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(5deg);
}

.mega-main-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.mega-sub-text {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ELITE NAV & FOOTER CSS */
/* Navigation consolidated at the top of the file */

/* Redundant nav styles removed to prevent overrides */

.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 0.3rem;
}

.mega-title {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.8rem;
}

.mega-main-text {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.mega-sub-text {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.mega-menu-link:hover .mega-main-text {
    color: var(--primary);
}

.btn-elite {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2.6rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-elite::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-elite:hover::before {
    width: 300%;
    height: 300%;
}

.btn-elite:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-elite:active {
    transform: translateY(-2px) scale(0.98);
}



/* === ULTRA PREMIUM FOOTER MATRIX === */
.elite-footer {
    background: linear-gradient(180deg, #060b19 0%, #020409 100%);
    color: #e2e8f0;
    padding: 7rem 0 3rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    box-shadow: inset 0 20px 40px -20px rgba(0, 102, 255, 0.1);
}

/* Strategic Radial Glow */
.elite-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
}

.footer-inner {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 4rem;
}

.footer-brand-col {
    padding-right: 2rem;
}

.footer-logo {
    height: 70px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
}

.footer-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(0, 102, 255, 0.6));
    transform: scale(1.02);
}

.footer-desc {
    color: #8b9bb4;
    line-height: 1.9;
    max-width: 450px;
    font-size: 1.1rem;
    font-weight: 400;
}

.footer-heading {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 900;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #0066ff;
    border-radius: 2px;
}

.footer-link,
.footer-comms a,
.footer-addr {
    display: block;
    color: #8b9bb4;
    text-decoration: none;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-link:hover,
.footer-comms a:hover {
    color: #ffffff;
    padding-left: 8px;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

/* Specific styling for command center links to show icons */
.footer-comms a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 3rem;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}


@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}



@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* CONTACT PAGE ENHANCEMENTS */
.contact-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38vh;
    padding-top: 6rem;
}

.contact-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.4) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.contact-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.contact-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
}

.contact-section {
    background: #f8fafc;
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form-card {
        padding: 2rem 1.5rem !important;
    }
}

/* Info Section */
.contact-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-address,
.contact-email {
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.contact-phones a,
.contact-email a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

.contact-phones a:hover,
.contact-email a:hover {
    color: var(--primary);
}

/* Map Styling */
.map-wrapper {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#map {
    width: 100%;
    height: 100%;
}

.maplibregl-popup-content {
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: #fafcff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    background: var(--white);
}

/* Validation styling */
.form-control.is-invalid {
    border-color: #ef4444;
    background: #fef2f2;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.btn-submit:hover {
    background: var(--primary);
}

.btn-submit:active {
    transform: translateY(1px);
}

.btn-submit:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none !important;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-message.success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* INDEX PAGE ENHANCEMENTS */
.home-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 16rem 0 8rem;
}

.home-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: contrast(1.1) brightness(0.85);
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.4) 100%);
    z-index: 1;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0066ff;
    margin-right: 0.8rem;
    box-shadow: 0 0 10px #0066ff;
}

.hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: #cbd5e1;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #0066ff;
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: #0052cc;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.reach-section {
    background: #ffffff;
    padding: 8rem 0;
}

.reach-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.reach-image-wrapper {
    position: relative;
}

.reach-image-decor {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 100px;
    height: 100px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.reach-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.section-tag {
    color: #0066ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #0a0f1d;
    margin-bottom: 2rem;
    line-height: 1.15;
}

.section-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.reach-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.reach-feature {
    border-left: 3px solid #0066ff;
    padding-left: 1.5rem;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #0a0f1d;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-section {
    background: #f8fafc;
    padding: 8rem 0;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-details {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: #0a0f1d;
    margin-bottom: 1rem;
}

.service-desc {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    color: #0066ff;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    transition: color 0.2s ease;
}

.service-card:hover .service-link {
    color: #0052cc;
}

.cta-section {
    background: #050b14;
    padding: 6rem 0;
    color: #fff;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-desc {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 500px;
}

.btn-cta {
    background: #fff;
    color: #0066ff;
    padding: 1.2rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    background: #f1f5f9;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

@media (max-width: 968px) {
    .reach-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
}

/* INDUSTRIES PAGE ENHANCEMENTS */
.industry-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.industry-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7);
}

.industry-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.industry-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.industry-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.industry-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.industry-section {
    background: #f8fafc;
    padding: 6rem 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.industry-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #e2e8f0;
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    line-height: 1;
}

.industry-details {
    flex-grow: 1;
}

.industry-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--text-main);
    font-weight: 700;
}

.industry-text {
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 0.95rem;
}

.industry-text strong {
    color: #334155;
    font-weight: 600;
}

.industry-cta {
    background: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.industry-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 700;
}

.industry-cta-desc {
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.industry-btn {
    display: inline-block;
    background: var(--primary-dark);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
    font-size: 1.05rem;
}

.industry-btn:hover {
    background: var(--primary);
}

@media (max-width: 768px) {
    .industry-cta {
        padding: 3rem 1.5rem;
    }
}

/* NETWORK PAGE ENHANCEMENTS */
.network-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.network-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.network-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.4) 100%);
    z-index: 1;
}

.network-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.network-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.network-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.network-map-section {
    background: #f8fafc;
    padding: 6rem 0 3rem 0;
}

.network-map-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#networkMap {
    width: 100%;
    height: 100%;
}

.region-section {
    background: #f8fafc;
    padding: 3rem 0 6rem 0;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.region-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.region-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.region-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.region-desc {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.region-details {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 0.95rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.region-details strong {
    color: #334155;
    font-weight: 600;
}

.network-strength-section {
    background: #ffffff;
    padding: 4rem 0 6rem 0;
}

.strength-box {
    background: #050b14;
    border-radius: 12px;
    padding: 4rem;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
}

.strength-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.strength-item h4 {
    color: #3b82f6;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.strength-item p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .network-map-wrapper {
        height: 350px;
    }

    .strength-box {
        padding: 3rem 1.5rem;
    }
}

/* PROFILE PAGE ENHANCEMENTS */
.profile-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.profile-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.profile-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.profile-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.profile-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.profile-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.profile-intro-section {
    background: #ffffff;
    padding: 6rem 0;
}

.profile-container {
    max-width: 900px;
    margin: 0 auto;
}

.profile-image-wrapper {
    margin-bottom: 4rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.profile-image {
    width: 100%;
    display: block;
}

.profile-section-title {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2rem;
    color: var(--text-main);
    font-weight: 700;
}

.profile-subsection-title {
    font-size: 1.3rem;
    font-family: 'Outfit', sans-serif;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.profile-text {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 5rem;
}

.mv-card {
    background: #f8fafc;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.mv-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mv-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 700;
}

.mv-text {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    flex-grow: 1;
}

.compliance-section {
    margin-bottom: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.compliance-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.compliance-item {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-dark);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.framework-section {
    background: #f8fafc;
    padding: 4rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.framework-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border);
}

.framework-card h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.framework-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

    .framework-section {
        padding: 2.5rem 1.5rem;
    }
}

/* QUOTE PAGE ENHANCEMENTS */
.quote-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.quote-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.quote-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.quote-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.quote-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.quote-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.quote-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
}

.quote-form-wrapper {
    background: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.form-instruction {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.form-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.form-legend {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    width: 100%;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-control,
.form-select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #0a0f1d;
    background-color: #f8fafc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
    background-color: #ffffff;
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-feedback {
    display: none;
    color: #e11d48;
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

.form-control.is-invalid+.form-feedback {
    display: block;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #e11d48;
    background-color: #fff1f2;
}

.form-actions {
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-text {
    display: inline-block;
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background-color: #fef2f2;
    color: #e11d48;
    border: 1px solid #fecaca;
}

.form-footer-note {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .quote-form-wrapper {
        padding: 2.5rem 1.5rem;
    }

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

/* AIR FREIGHT PAGE ENHANCEMENTS */
.air-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.air-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.air-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.air-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.air-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.air-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.process-section {
    background: #ffffff;
    padding: 6rem 0;
}

.air-container {
    max-width: 1000px;
    margin: 0 auto;
}

.air-section-title {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-weight: 700;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.overview-block {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.overview-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.overview-text {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.competency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.competency-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.competency-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.competency-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    line-height: 1;
}

.competency-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.competency-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
}

.multimodal-section {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid var(--border);
}

.multimodal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.multimodal-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-left: 3px solid var(--primary-dark);
    border-radius: 0 6px 6px 0;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
}

.multimodal-item strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.3rem;
}

.service-cta {
    background: #050b14;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-cta-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.btn-service-cta {
    display: inline-block;
    background: #ffffff;
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-service-cta:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .overview-grid,
    .multimodal-grid {
        grid-template-columns: 1fr;
    }

    .service-cta {
        padding: 3rem 1.5rem;
    }
}

/* COURIER PAGE ENHANCEMENTS */
.courier-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.courier-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.courier-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.courier-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.courier-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.courier-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.courier-container {
    max-width: 1000px;
    margin: 0 auto;
}

.courier-section-title {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    line-height: 1;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CUSTOMS PAGE ENHANCEMENTS */
.customs-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.customs-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.customs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.customs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.customs-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.customs-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.customs-section {
    background: #ffffff;
    padding: 6rem 0;
}

.customs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.customs-section-title {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-weight: 700;
    text-align: center;
}

/* DOOR-TO-DOOR PAGE ENHANCEMENTS */
.door-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.door-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.door-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.door-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.door-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.door-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.door-container {
    max-width: 1000px;
    margin: 0 auto;
}

.door-section-title {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-weight: 700;
}

.flow-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.flow-step {
    display: flex;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.flow-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.flow-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.8;
    margin-right: 1.5rem;
    min-width: 50px;
}

.flow-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.flow-text {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .flow-container {
        padding: 2rem 1.5rem;
    }

    .flow-step {
        flex-direction: column;
    }

    .flow-number {
        margin-bottom: 0.5rem;
    }
}

/* IMPORT & EXPORT PAGE ENHANCEMENTS */
.import-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.import-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.import-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.import-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.import-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.import-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.import-container {
    max-width: 1000px;
    margin: 0 auto;
}

.import-section-title {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-weight: 700;
}

.network-section {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid var(--border);
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.network-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-left: 3px solid var(--primary-dark);
    border-radius: 0 6px 6px 0;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
}

.network-item strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.3rem;
}

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

/* INSURANCE PAGE ENHANCEMENTS */
.insurance-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.insurance-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.insurance-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.insurance-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.insurance-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.insurance-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.insurance-section {
    background: #ffffff;
    padding: 6rem 0;
}

.insurance-container {
    max-width: 1000px;
    margin: 0 auto;
}

.insurance-section-title {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-weight: 700;
    text-align: center;
}

/* ROAD FREIGHT PAGE ENHANCEMENTS */
.road-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.road-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.road-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.road-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.road-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.road-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.road-section {
    background: #ffffff;
    padding: 6rem 0;
}

.road-container {
    max-width: 1000px;
    margin: 0 auto;
}

.road-section-title {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-weight: 700;
}

/* SEA FREIGHT PAGE ENHANCEMENTS */
.sea-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.sea-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.sea-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.sea-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.sea-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.sea-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.sea-section {
    background: #ffffff;
    padding: 6rem 0;
}

.sea-container {
    max-width: 1000px;
    margin: 0 auto;
}

.sea-section-title {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-weight: 700;
}

@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr !important;
    }
}

/* WAREHOUSING PAGE ENHANCEMENTS */
.warehousing-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.warehousing-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.warehousing-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.warehousing-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.warehousing-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.warehousing-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.warehousing-section {
    background: #ffffff;
    padding: 6rem 0;
}

.warehousing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.warehousing-section-title {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-weight: 700;
}

/* SERVICES OVERVIEW PAGE ENHANCEMENTS */
.services-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.services-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7);
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.9) 0%, rgba(5, 11, 20, 0.4) 100%);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.services-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.services-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.services-grid-section {
    background: #ffffff;
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

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

.service-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 700;
}

.service-card-desc {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card-link {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-top: auto;
}

/* TECHNOLOGY PAGE ENHANCEMENTS */
.tech-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding-top: 6rem;
}

.tech-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
}

.tech-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 100%);
    z-index: 1;
}

.tech-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.tech-hero-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.tech-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.tech-section {
    background: #ffffff;
    padding: 6rem 0;
}

.tech-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tech-section-title {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-weight: 700;
}

/* ========= MOBILE HAMBURGER MENU ========= */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-overlay.open {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 1200;
    transform: translateX(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.4s;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: all;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
}

.mobile-logo {
    height: 45px;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dim);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-close-btn:hover {
    background: #f1f5f9;
    color: var(--text-main);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    flex-grow: 1;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(0, 102, 255, 0.04);
    color: var(--primary);
    border-left-color: var(--primary);
}

.mobile-cta-btn {
    display: block;
    margin: 1rem 1.5rem 2rem;
    padding: 1rem;
    background: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background 0.3s;
}

.mobile-cta-btn:hover {
    background: var(--primary-dark);
}

@media (max-width: 968px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }

    .nav-action {
        display: none;
    }

    .nav-inner {
        padding: 0 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .hero-title {
        font-size: 2.2rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* ========= SCROLL TO TOP ========= */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.35);
}

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

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.5);
}

/* ========= ENHANCED LANG SWITCHER ========= */
.lang-globe-icon {
    flex-shrink: 0;
}

.lang-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.lang-flag {
    font-size: 1.2em;
    line-height: 1;
}

/* Scrollbar specific to dropdown */
.lang-dropdown::-webkit-scrollbar {
    width: 4px;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background: rgba(0, 102, 255, 0.2);
    border-radius: 4px;
}

/* ========= REVEAL ANIMATIONS ========= */
.service-card,
.doc-card,
.contact-info-block,
.industry-card,
.reveal,
.reveal-up,
.overview-block,
.mv-card,
.framework-card,
.competency-card,
.industry-block,
.region-block,
.flow-step,
.value-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card.revealed,
.doc-card.revealed,
.contact-info-block.revealed,
.industry-card.revealed,
.reveal.revealed,
.reveal-up.revealed,
.overview-block.revealed,
.mv-card.revealed,
.framework-card.revealed,
.competency-card.revealed,
.industry-block.revealed,
.region-block.revealed,
.flow-step.revealed,
.value-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========= INDUSTRIES PAGE CLASS-BASED ========= */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

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

.industry-block {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.industry-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 102, 255, 0.2);
}

.industry-block .industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.industry-block .industry-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.industry-block .industry-text {
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========= NETWORK PAGE CLASS-BASED ========= */
.network-map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #e2e8f0;
    margin-bottom: 5rem;
    box-shadow: var(--shadow-md);
    height: 500px;
}

.network-map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.network-map-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(10, 15, 29, 0.4) 100%);
    pointer-events: none;
}

.network-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
    text-align: center;
}

.network-stats-grid .stat-number {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.network-stats-grid .stat-label {
    color: var(--text-dim);
    font-weight: 600;
    margin-top: 0.25rem;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.region-block {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.region-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.region-block h3 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 1.3rem;
    font-weight: 700;
}

.region-block p {
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .network-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .network-map-container {
        height: 300px;
    }
}

/* ========= TECHNOLOGY PAGE CLASS-BASED ========= */
.tech-showcase {
    margin-top: 5rem;
    padding: 4rem;
    background: #0a0f1d;
    border-radius: 24px;
    color: white;
}

.tech-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-showcase h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.tech-showcase p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tech-feature-list {
    list-style: none;
    padding: 0;
}

.tech-feature-list li {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.tech-feature-list li .check {
    color: var(--primary);
    font-weight: 700;
}

.tech-showcase img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 968px) {
    .tech-showcase-grid {
        grid-template-columns: 1fr;
    }

    .tech-showcase {
        padding: 2.5rem 1.5rem;
    }
}

/* ========= BROCHURE SECTION POLISH ========= */
.brochure-showcase {
    margin-top: 80px;
    background: linear-gradient(135deg, #0a0f1d 0%, #0d1527 100%);
    border-radius: 28px;
    padding: 70px 55px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    color: white;
    overflow: hidden;
    position: relative;
}

.brochure-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.brochure-content {
    position: relative;
    z-index: 2;
}

.brochure-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.1;
}

.brochure-content p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 35px;
    line-height: 1.7;
}

.brochure-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.brochure-actions .btn-elite {
    padding: 16px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
}

.brochure-actions .btn-preview {
    padding: 16px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.brochure-actions .btn-preview:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.brochure-visual {
    position: relative;
    z-index: 2;
}

.brochure-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-8deg);
    transition: transform 0.5s ease;
}

.brochure-visual:hover img {
    transform: perspective(1000px) rotateY(-3deg);
}

.rtl-mode .brochure-visual img {
    transform: perspective(1000px) rotateY(8deg);
}

.pdf-viewer-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 850px;
    background: #eef1f6;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    width: 100%;
    margin-top: 50px;
    border: 1px solid var(--border);
}

.pdf-viewer-wrapper iframe {
    border: none;
    width: 100%;
    height: 100%;
}

@media (max-width: 968px) {
    .brochure-showcase {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 35px;
        text-align: center;
    }

    .brochure-content h2 {
        font-size: 2rem;
    }

    .brochure-actions {
        justify-content: center;
    }

    .brochure-visual img {
        transform: none;
    }

    .pdf-viewer-wrapper {
        height: 500px;
    }
}

/* ========= SMOOTH SCROLL ========= */
html {
    scroll-behavior: smooth;
}

/* ========= VALUE CARD STYLING ========= */
.value-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.3);
}

.value-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: #e2e8f0;
    font-weight: 700;
}

.value-text {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== MODERN UTILITIES & COMPONENTS ===== */

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Progressive Image Loading */
.blur-up {
    filter: blur(5px);
    transition: filter 0.6s ease;
}

.blur-up.loaded {
    filter: blur(0);
}

/* Modern Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

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

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

.btn-elite {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-elite:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

/* Modern Card System */
.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

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

body.dark-mode .card {
    background: var(--dark-bg-alt);
    border-color: var(--dark-border);
}

/* Modern Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

@media (max-width: 768px) {

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

@media (max-width: 1024px) {

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

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInScale {
    animation: fadeInScale 0.6s ease forwards;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Modern Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.section-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

body.dark-mode .section-title {
    color: var(--dark-text-main);
}

body.dark-mode .section-desc {
    color: var(--dark-text-dim);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-desc {
        font-size: 1.1rem;
    }

    .section {
        padding: 4rem 0;
    }
}

/* Modern Hero System */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

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

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

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 2rem;
    width: 60%;
    margin-bottom: 1rem;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
.focus-visible:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Modern Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

body.dark-mode .form-input {
    background: var(--dark-bg-alt);
    border-color: var(--dark-border);
    color: var(--dark-text-main);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Dark Mode Toggle */
.theme-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    z-index: 1000;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

body.dark-mode .theme-toggle {
    background: var(--dark-bg-alt);
    border-color: var(--dark-border);
}

/* Performance Optimizations */
.will-change-transform {
    will-change: transform;
}

.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Print Styles */
@media print {

    .nav-actions-group,
    .scroll-top-btn,
    .theme-toggle {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }
}

/* ===== MOBILE & TOUCH ENHANCEMENTS ===== */

/* Touch-friendly tap targets */
@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        min-width: 48px;
        padding: 1.2rem 2rem;
    }

    .nav-link {
        padding: 1rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .card {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* Touch feedback */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    .card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .nav-link:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* Mobile menu enhancements */
@media (max-width: 968px) {
    .mobile-menu {
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-overlay {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .mobile-nav-link {
        padding: 1.2rem 1.5rem;
        border-bottom: 1px solid var(--border-light);
        transition: all 0.2s ease;
    }

    .mobile-nav-link:active {
        background: var(--primary-light);
        transform: translateX(4px);
    }
}

/* Swipe gestures for touch devices */
.touch-swipe {
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

/* Pull-to-refresh indicator */
.pull-to-refresh {
    position: fixed;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: top 0.3s ease;
    z-index: 1001;
}

.pull-to-refresh.active {
    top: 20px;
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    .gpu-accelerated {
        transform: none;
        backface-visibility: visible;
    }

    .animate-fadeInUp,
    .animate-fadeInScale {
        animation: none;
        opacity: 1;
        transform: none;
    }

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

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

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

    .section {
        padding: 3rem 0;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

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

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

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

/* Large mobile phones */
@media (max-width: 425px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reach-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Landscape mobile optimizations */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding-top: 2rem;
    }

    .section {
        padding: 3rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .will-change-transform {
        will-change: auto;
    }

    .scroll-top-btn,
    .theme-toggle {
        transition: opacity 0.2s ease;
    }
}

/* Dark mode mobile optimizations */
@media (max-width: 768px) {
    body.dark-mode .mobile-menu {
        background: var(--dark-bg-alt);
    }

    body.dark-mode .mobile-nav-link {
        color: var(--dark-text-main);
        border-color: var(--dark-border);
    }

    body.dark-mode .mobile-nav-link:active {
        background: rgba(0, 102, 255, 0.1);
    }
}

/* Touch keyboard adjustments */
@media (max-width: 768px) {
    .keyboard-open .hero {
        min-height: 60vh;
    }

    .form-input:focus {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }
}

/* Mobile loading states */
@media (max-width: 768px) {
    .skeleton {
        background: linear-gradient(90deg, #f5f5f5 25%, #e8e8e8 50%, #f5f5f5 75%);
    }

    body.dark-mode .skeleton {
        background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    }
}

/* Mobile accessibility */
@media (max-width: 768px) {
    .sr-only-mobile {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}