/* ═══════════════════════════════════════════════════════════════
   PROFESSIONAL SHIPPING & WAREHOUSING STYLESHEET
   Premium Design System - Customer-Centric Edition - DARK BLUE
   ═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────
   CSS VARIABLES - Design Tokens
   ─────────────────────────────────────────────────────────────── */
:root {
    /* === Core Brand Palette - DARK BLUE === */
    --sw-red:       #D62B2B;
    --sw-navy:      #0B1B35;
    --sw-blue:      #1A4080;
    --sw-mid:       #2762B8;
    --sw-steel:     #7A93B5;
    --sw-dark:      #07101F;
    --sw-white:     #F4F4F2;

    /* === Professional Enhancements === */
    --sw-gold:      #C5A572;
    --sw-silver:    #A8B5C8;
    --sw-charcoal:  #1A2332;
    --sw-smoke:     rgba(122, 147, 181, 0.08);

    /* === Premium Gradients === */
    --gradient-hero: linear-gradient(135deg,
    rgba(214,43,43,0.95) 0%,
    rgba(184,32,32,0.98) 100%);
    --gradient-luxury: linear-gradient(135deg,
    var(--sw-navy) 0%,
    var(--sw-blue) 50%,
    var(--sw-mid) 100%);
    --gradient-glass: linear-gradient(135deg,
    rgba(26,64,128,0.15) 0%,
    rgba(11,27,53,0.35) 100%);
    --gradient-overlay: linear-gradient(180deg,
    transparent 0%,
    rgba(7,16,31,0.4) 100%);

    /* === Sophisticated Shadows === */
    --shadow-xs:    0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --shadow-md:    0 8px 24px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg:    0 16px 48px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.10);
    --shadow-xl:    0 24px 64px rgba(0,0,0,0.22), 0 12px 32px rgba(0,0,0,0.14);
    --shadow-glow:  0 0 48px rgba(214,43,43,0.25), 0 0 16px rgba(214,43,43,0.15);
    --shadow-inset: inset 0 2px 8px rgba(0,0,0,0.1);

    /* === Premium Transitions === */
    --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
    --ease-swift:   cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-bounce:  cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);

    --duration-fast:   200ms;
    --duration-base:   350ms;
    --duration-slow:   500ms;
    --duration-slower: 700ms;

    /* === Typography Scale === */
    --font-display:  'Bebas Neue', 'Impact', sans-serif;
    --font-heading:  'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body:     'Barlow', 'Helvetica Neue', -apple-system, sans-serif;

    --text-xs:   11px;
    --text-sm:   13px;
    --text-base: 15px;
    --text-lg:   17px;
    --text-xl:   20px;

    /* === Spacing System === */
    --space-xs:  8px;
    --space-sm:  12px;
    --space-md:  16px;
    --space-lg:  24px;
    --space-xl:  32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* === Accessibility === */
    --focus-ring: 0 0 0 3px rgba(214,43,43,0.4);
    --focus-offset: 3px;
    --min-touch: 44px;
}

/* ───────────────────────────────────────────────────────────────
   PROFESSIONAL BASE RESET
   ─────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
}

body {
    background: var(--sw-dark);
    color: var(--sw-white);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Premium Text Selection */
::selection {
    background: var(--sw-red);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--sw-red);
    color: #fff;
}

/* Professional Typography */
h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 0.75em;
}

p {
    margin-bottom: 1.25em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-base) var(--ease-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ───────────────────────────────────────────────────────────────
   ACCESSIBILITY ENHANCEMENTS
   ─────────────────────────────────────────────────────────────── */

/* Skip Navigation for Screen Readers */
.skip-to-main {
    position: absolute;
    left: -9999px;
    top: var(--space-md);
    z-index: 9999;
    padding: var(--space-md) var(--space-lg);
    background: var(--sw-red);
    color: #fff;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: var(--shadow-xl);
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
}

/* Premium Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.focusable:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    outline-offset: var(--focus-offset);
    position: relative;
    z-index: 10;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM BACKGROUND SYSTEM
   ─────────────────────────────────────────────────────────────── */

/* Sophisticated Grid Pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,64,128,0.03) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(26,64,128,0.03) 1.5px, transparent 1.5px);
    background-size: 80px 80px;
    background-position: 0 0, 0 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Animated Gradient Mesh */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(26,64,128,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(214,43,43,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(39,98,184,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: meshFlow 20s ease-in-out infinite alternate;
}

@keyframes meshFlow {
    0% { opacity: 0.4; }
    50% { opacity: 0.7; }
    100% { opacity: 0.4; }
}

/* ───────────────────────────────────────────────────────────────
   PROFESSIONAL NAVIGATION
   ─────────────────────────────────────────────────────────────── */

#mainNav {
    transition: all var(--duration-base) var(--ease-smooth);
    z-index: 1050;
    background: transparent;
}

#mainNav.scrolled {
    background: rgba(7,16,31,0.97) !important;
    backdrop-filter: blur(24px) saturate(180%);
    box-shadow:
        0 1px 0 rgba(26,64,128,0.2),
        var(--shadow-md);
    border-bottom: 1px solid rgba(26,64,128,0.15);
}

/* Premium Brand Identity */
.navbar-brand {
    padding: var(--space-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: transform var(--duration-base) var(--ease-smooth);
}

.navbar-brand:hover {
    transform: translateX(2px);
}

.logo-bubble {
    width: 48px;
    height: 48px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.logo-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
    transparent 0%,
    rgba(255,255,255,0.2) 50%,
    transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-smooth);
}

.navbar-brand:hover .logo-bubble::before {
    transform: translateX(100%);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.12em;
    color: #fff;
    line-height: 1;
    font-weight: 400;
}

.brand-sub {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.15em;
    color: var(--sw-steel);
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
}

/* Refined Navigation Links */
.nav-link {
    font-family: var(--font-heading);
    font-size: var(--text-sm) !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--sw-silver) !important;
    font-weight: 700 !important;
    position: relative;
    padding: var(--space-sm) var(--space-lg) !important;
    transition: color var(--duration-base) var(--ease-smooth) !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-hero);
    transform: translateX(-50%);
    transition: width var(--duration-base) var(--ease-smooth);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff !important;
}

.nav-link:hover::before,
.nav-link:focus::before {
    width: 80%;
}

/* Premium CTA Button */
.btn-nav-cta {
    background: var(--gradient-hero);
    color: #fff !important;
    padding: var(--space-sm) var(--space-xl) !important;
    font-family: var(--font-heading) !important;
    font-size: var(--text-sm) !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: var(--shadow-glow) !important;
    transition: all var(--duration-base) var(--ease-smooth) !important;
    min-height: var(--min-touch);
    position: relative;
    overflow: hidden;
}

.btn-nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.1) 50%,
    rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-smooth);
}

.btn-nav-cta:hover::before {
    transform: translateX(100%);
}

.btn-nav-cta:hover,
.btn-nav-cta:focus {
    transform: translateY(-2px);
    box-shadow:
        var(--shadow-glow),
        0 8px 32px rgba(214,43,43,0.3) !important;
}

.btn-nav-cta::after {
    display: none !important;
}

/* Mobile Navigation */
.navbar-toggler {
    border: 1.5px solid rgba(26,64,128,0.4) !important;
    border-radius: 4px;
    min-height: var(--min-touch);
    min-width: var(--min-touch);
    transition: all var(--duration-base) var(--ease-smooth);
}

.navbar-toggler:hover {
    border-color: var(--sw-mid) !important;
    background: rgba(26,64,128,0.1);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ───────────────────────────────────────────────────────────────
   PROFESSIONAL TICKER BAR
   ─────────────────────────────────────────────────────────────── */

.ticker-wrap {
    background: var(--gradient-hero);
    overflow: hidden;
    height: 44px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.ticker-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
    rgba(0,0,0,0.2) 0%,
    transparent 10%,
    transparent 90%,
    rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.ticker-track {
    display: flex;
    animation: ticker 35s linear infinite;
    white-space: nowrap;
}

.ticker-wrap:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0 var(--space-2xl);
    color: rgba(255,255,255,0.95);
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
}

.ticker-item::after {
    content: '◆';
    font-size: 8px;
    opacity: 0.4;
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM HERO SECTION
   ─────────────────────────────────────────────────────────────── */

#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: var(--space-3xl);
}

/* Sophisticated Lighting Effects */
.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 40%, rgba(26,64,128,0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(214,43,43,0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 20%, rgba(39,98,184,0.12) 0%, transparent 50%);
    pointer-events: none;
    filter: blur(60px);
    animation: glowPulse 8s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Premium Status Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(214,43,43,0.12);
    border: 1px solid rgba(214,43,43,0.3);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sw-red);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    animation: fadeSlideUp 0.8s var(--ease-smooth) both;
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--sw-red);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(214,43,43,0.6);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

/* Professional Hero Typography */
.hero-h1 {
    font-size: clamp(52px, 11vw, 140px);
    line-height: 1;
    letter-spacing: 0.02em;
    animation: fadeSlideUp 0.8s 0.15s var(--ease-smooth) both;
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.hero-h1 .text-outline {
    -webkit-text-stroke: 2px rgba(255,255,255,0.2);
    color: transparent;
    display: inline-block;
}

.hero-sub {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-base), 2.2vw, var(--text-xl));
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sw-silver);
    font-weight: 700;
    animation: fadeSlideUp 0.8s 0.25s var(--ease-smooth) both;
    margin-bottom: var(--space-lg);
}

.hero-desc {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    animation: fadeSlideUp 0.8s 0.35s var(--ease-smooth) both;
    margin-bottom: var(--space-2xl);
    font-weight: 400;
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM BUTTON SYSTEM
   ─────────────────────────────────────────────────────────────── */

.btn-sw-primary {
    background: var(--gradient-hero);
    color: #fff;
    padding: var(--space-md) var(--space-2xl);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    clip-path: polygon(
        0 0,
        calc(100% - 14px) 0,
        100% 14px,
        100% 100%,
        14px 100%,
        0 calc(100% - 14px)
    );
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    min-height: var(--min-touch);
    transition: all var(--duration-base) var(--ease-smooth);
    animation: fadeSlideUp 0.8s 0.45s var(--ease-smooth) both;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
}

.btn-sw-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0) 100%);
    transform: translateX(-100%) rotate(10deg);
    transition: transform 0.6s var(--ease-smooth);
}

.btn-sw-primary:hover::before {
    transform: translateX(100%) rotate(10deg);
}

.btn-sw-primary:hover,
.btn-sw-primary:focus {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        var(--shadow-glow),
        0 20px 50px rgba(214,43,43,0.35);
    border-color: rgba(255,255,255,0.25);
}

.btn-sw-primary:active {
    transform: translateY(-2px) scale(1);
}

.btn-sw-outline {
    color: #fff;
    padding: var(--space-md) var(--space-2xl);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    background: transparent;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    min-height: var(--min-touch);
    transition: all var(--duration-base) var(--ease-smooth);
    animation: fadeSlideUp 0.8s 0.5s var(--ease-smooth) both;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-sw-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-luxury);
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-smooth);
}

.btn-sw-outline:hover::before {
    opacity: 0.15;
}

.btn-sw-outline:hover,
.btn-sw-outline:focus {
    border-color: var(--sw-mid);
    color: var(--sw-mid);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.btn-sw-outline:active {
    transform: translateY(-2px);
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM HERO VISUAL
   ─────────────────────────────────────────────────────────────── */

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeSlideUp 0.8s 0.6s var(--ease-smooth) both;
}

.hero-card-main {
    position: absolute;
    inset: 0;
    background: var(--gradient-glass);
    border: 1px solid rgba(26,64,128,0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-xl);
}

.hero-card-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 32px,
        rgba(26,64,128,0.04) 32px,
        rgba(26,64,128,0.04) 33px
    );
}

.ring {
    width: 280px;
    height: 280px;
    border: 1.5px solid rgba(26,64,128,0.3);
    border-radius: 50%;
    position: relative;
    animation: spin 40s linear infinite;
}

.ring::before,
.ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(26,64,128,0.2);
}

.ring::before {
    inset: 28px;
}

.ring::after {
    inset: 56px;
    border-color: rgba(26,64,128,0.15);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: rgba(26,64,128,0.4);
    animation: spin 40s linear infinite reverse;
}

/* Premium Floating Cards */
.float-card {
    position: absolute;
    background: rgba(7,16,31,0.98);
    border: 1px solid rgba(26,64,128,0.35);
    border-radius: 8px;
    padding: var(--space-lg) var(--space-xl);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.float-card:nth-child(2) {
    bottom: 60px;
    right: -30px;
    width: 200px;
    animation: floatY 5s ease-in-out infinite;
}

.float-card:nth-child(3) {
    top: 60px;
    left: -30px;
    width: 190px;
    animation: floatY 6s ease-in-out infinite reverse;
}

.float-num {
    font-family: var(--font-display);
    font-size: 44px;
    color: var(--sw-red);
    line-height: 1;
    font-weight: 400;
}

.float-lbl {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.12em;
    color: var(--sw-steel);
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 600;
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ───────────────────────────────────────────────────────────────
   PROFESSIONAL STATS BAR
   ─────────────────────────────────────────────────────────────── */

.stats-bar {
    position: relative;
    z-index: 1;
    background: var(--gradient-glass);
    border-top: 1px solid rgba(26,64,128,0.25);
    border-bottom: 1px solid rgba(26,64,128,0.25);
    padding: var(--space-2xl) 0;
    backdrop-filter: blur(16px);
}

.stat-item {
    border-right: 1px solid rgba(26,64,128,0.2);
    padding: var(--space-lg);
    text-align: center;
    transition: transform var(--duration-base) var(--ease-smooth);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 58px;
    color: var(--sw-red);
    line-height: 1;
    display: block;
    font-weight: 400;
}

.stat-lbl {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sw-steel);
    margin-top: 8px;
    font-weight: 700;
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM SECTION SYSTEM
   ─────────────────────────────────────────────────────────────── */

.sw-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sw-red);
    margin-bottom: var(--space-lg);
}

.section-tag::before {
    content: '';
    display: block;
    width: 42px;
    height: 2px;
    background: var(--gradient-hero);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(42px, 5.5vw, 76px);
    line-height: 1.05;
    margin-bottom: var(--space-2xl);
    font-weight: 400;
}

.text-outline-sm {
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.18);
    color: transparent;
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM SERVICE CARDS WITH IMAGES
   ─────────────────────────────────────────────────────────────── */

.services-section {
    background: rgba(11,27,53,0.4);
}

.service-card {
    background: var(--gradient-glass);
    border: 1px solid rgba(26,64,128,0.2);
    border-radius: 8px;
    padding: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all var(--duration-slow) var(--ease-smooth);
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-card-content {
    padding: var(--space-2xl) var(--space-xl);
    flex: 1;
    position: relative;
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    order: 2;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--duration-slower) var(--ease-smooth);
    display: block;
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7,16,31,0.4) 0%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hero);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-slow) var(--ease-smooth);
    border-radius: 8px 8px 0 0;
    z-index: 2;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-8px);
    border-color: rgba(26,64,128,0.4);
    box-shadow:
        var(--shadow-xl),
        0 0 48px rgba(26,64,128,0.15);
}

.service-card:hover::before,
.service-card:focus-within::before {
    transform: scaleX(1);
}

.srv-icon {
    width: 60px;
    height: 60px;
    background: rgba(26,64,128,0.2);
    border: 1.5px solid rgba(26,64,128,0.35);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: var(--space-lg);
    transition: all var(--duration-slow) var(--ease-bounce);
}

.service-card:hover .srv-icon,
.service-card:focus-within .srv-icon {
    background: rgba(214,43,43,0.2);
    border-color: rgba(214,43,43,0.45);
    transform: scale(1.1) rotate(5deg);
}

.srv-num {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 68px;
    color: rgba(26,64,128,0.08);
    line-height: 1;
    font-weight: 400;
    transition: all var(--duration-slow) var(--ease-smooth);
    z-index: 1;
}

.service-card:hover .srv-num,
.service-card:focus-within .srv-num {
    color: rgba(214,43,43,0.12);
    transform: scale(1.05);
}

.service-card h5 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.service-card p {
    font-size: var(--text-base);
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    margin-bottom: 0;
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM CORRIDOR CARDS
   ─────────────────────────────────────────────────────────────── */

.corridors-section {
    background: rgba(11,27,53,0.5);
}

.corridor-card {
    background: var(--gradient-glass);
    border: 1px solid rgba(26,64,128,0.25);
    border-radius: 8px;
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all var(--duration-slow) var(--ease-smooth);
    opacity: 0;
    transform: translateX(-20px);
    cursor: pointer;
}

.corridor-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.corridor-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-luxury);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-slow) var(--ease-smooth);
    border-radius: 0 0 8px 8px;
}

.corridor-card:hover,
.corridor-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(26,64,128,0.45);
    box-shadow: var(--shadow-lg);
}

.corridor-card:hover::after,
.corridor-card:focus-within::after {
    transform: scaleX(1);
}

.corridor-flag {
    font-size: 36px;
    margin-bottom: var(--space-md);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.corridor-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
}

.corridor-desc {
    font-size: var(--text-sm);
    color: var(--sw-steel);
    letter-spacing: 0.03em;
    line-height: 1.6;
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM PROCESS STEPS
   ─────────────────────────────────────────────────────────────── */

.process-step {
    text-align: center;
    opacity: 0;
    transform: translateY(25px);
    transition: all var(--duration-slow) var(--ease-smooth);
    padding: var(--space-lg);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-circle {
    width: 68px;
    height: 68px;
    border: 2px solid rgba(26,64,128,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    background: var(--sw-dark);
    font-size: 26px;
    position: relative;
    transition: all var(--duration-slow) var(--ease-bounce);
    box-shadow: var(--shadow-sm);
}

.process-step:hover .step-circle,
.process-step:focus-within .step-circle {
    border-color: var(--sw-red);
    background: rgba(214,43,43,0.12);
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: var(--gradient-hero);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    color: #fff;
    line-height: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.process-step h6 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.process-step p {
    font-size: var(--text-sm);
    color: var(--sw-steel);
    line-height: 1.7;
}

.process-connector {
    height: 2px;
    background: linear-gradient(90deg,
    rgba(26,64,128,0.3) 0%,
    rgba(26,64,128,0.1) 100%);
    position: absolute;
    top: 34px;
    left: 50%;
    right: -50%;
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM CONTACT SECTION
   ─────────────────────────────────────────────────────────────── */

.contact-section {
    background: rgba(11,27,53,0.45);
    border-top: 1px solid rgba(26,64,128,0.25);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--gradient-glass);
    border: 1px solid rgba(26,64,128,0.25);
    border-radius: 8px;
    margin-bottom: var(--space-md);
    backdrop-filter: blur(12px);
    transition: all var(--duration-base) var(--ease-smooth);
}

.contact-detail:hover,
.contact-detail:focus-within {
    border-color: rgba(26,64,128,0.45);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(26,64,128,0.25);
    border: 1.5px solid rgba(26,64,128,0.35);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    transition: all var(--duration-base) var(--ease-smooth);
}

.contact-detail:hover .contact-icon {
    background: rgba(214,43,43,0.2);
    border-color: rgba(214,43,43,0.4);
}

.contact-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.12em;
    color: var(--sw-steel);
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-val {
    font-size: var(--text-base);
    color: #fff;
    font-weight: 500;
}

.contact-val a {
    transition: color var(--duration-base) var(--ease-smooth);
}

.contact-val a:hover,
.contact-val a:focus {
    color: var(--sw-red);
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM FORM DESIGN
   ─────────────────────────────────────────────────────────────── */

.form-card {
    background: var(--gradient-glass);
    border: 1px solid rgba(26,64,128,0.3);
    border-radius: 8px;
    padding: var(--space-3xl);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
}

.form-card .form-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sw-steel);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    display: block;
}

.form-card .form-control,
.form-card .form-select {
    background: rgba(7,16,31,0.85) !important;
    border: 1.5px solid rgba(26,64,128,0.3) !important;
    border-radius: 6px;
    color: #fff !important;
    font-family: var(--font-body);
    font-size: var(--text-base);
    padding: var(--space-md) var(--space-lg);
    min-height: 52px;
    transition: all var(--duration-base) var(--ease-smooth);
}

.form-card .form-control:hover,
.form-card .form-select:hover {
    border-color: rgba(26,64,128,0.45) !important;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
    border-color: var(--sw-mid) !important;
    box-shadow: 0 0 0 4px rgba(39,98,184,0.1) !important;
    background: rgba(7,16,31,0.95) !important;
    outline: none;
}

.form-card .form-control::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-card .form-select option {
    background: var(--sw-charcoal);
}

.form-card textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    background: var(--gradient-hero);
    color: #fff;
    padding: var(--space-lg);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    width: 100%;
    min-height: 56px;
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-smooth);
}

.btn-submit:hover::before {
    transform: translateX(100%);
}

.btn-submit:hover,
.btn-submit:focus {
    transform: translateY(-3px);
    box-shadow:
        var(--shadow-glow),
        0 16px 40px rgba(214,43,43,0.35);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Form Validation States */
.form-control.error,
.form-select.error {
    border-color: var(--sw-red) !important;
    box-shadow: 0 0 0 4px rgba(214,43,43,0.1) !important;
}

.error-message {
    color: var(--sw-red);
    font-size: var(--text-xs);
    margin-top: 6px;
    display: block;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.form-control.success {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 4px rgba(40,167,69,0.1) !important;
}

.success-message {
    color: #28a745;
    font-size: var(--text-xs);
    margin-top: 6px;
    display: block;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM VALUES STRIP
   ─────────────────────────────────────────────────────────────── */

.value-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border: 1.5px solid rgba(26,64,128,0.3);
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    transition: all var(--duration-base) var(--ease-smooth);
    cursor: pointer;
}

.value-tag:hover,
.value-tag:focus {
    border-color: var(--sw-red);
    color: #fff;
    background: rgba(214,43,43,0.12);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.value-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--sw-red);
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(214,43,43,0.5);
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM FOOTER
   ─────────────────────────────────────────────────────────────── */

footer {
    position: relative;
    z-index: 1;
    background: rgba(7,16,31,0.98);
    border-top: 1px solid rgba(26,64,128,0.25);
    padding: var(--space-3xl) 0 var(--space-lg);
    backdrop-filter: blur(16px);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.2);
    font-weight: 400;
}

.footer-copy {
    font-size: var(--text-sm);
    color: var(--sw-steel);
    letter-spacing: 0.03em;
}

.footer-right {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    font-weight: 600;
}

footer a {
    color: var(--sw-steel);
    transition: color var(--duration-base) var(--ease-smooth);
}

footer a:hover,
footer a:focus {
    color: var(--sw-red);
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM DIVIDER
   ─────────────────────────────────────────────────────────────── */

.sw-divider {
    height: 2px;
    background: linear-gradient(90deg,
    transparent,
    rgba(26,64,128,0.4) 50%,
    transparent);
    border-radius: 2px;
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM SCROLL ANIMATIONS
   ─────────────────────────────────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--duration-slower) var(--ease-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ───────────────────────────────────────────────────────────────
   LOADING & ERROR STATES
   ─────────────────────────────────────────────────────────────── */

.loading {
    opacity: 0.6;
    pointer-events: none;
    cursor: wait;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7,16,31,0.4);
    backdrop-filter: blur(4px);
    border-radius: inherit;
}

/* ───────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN - MOBILE FIRST
   ─────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    /* Section Spacing */
    .sw-section {
        padding: var(--space-3xl) 0;
    }

    /* Hero Adjustments */
    #hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: var(--space-3xl);
    }

    .hero-h1 {
        font-size: clamp(44px, 13vw, 80px);
    }

    .hero-visual {
        height: 400px;
        margin-top: var(--space-2xl);
    }

    /* Card Spacing */
    .service-card,
    .corridor-card {
        margin-bottom: var(--space-lg);
    }

    /* Service Card Image Mobile */
    .service-card-image {
        height: 180px;
    }

    .service-card-content {
        padding: var(--space-xl) var(--space-lg);
    }

    /* Form Padding */
    .form-card {
        padding: var(--space-xl) var(--space-lg);
    }

    /* Stats - Vertical Stack */
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(26,64,128,0.2);
        padding: var(--space-lg);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    /* Mobile Navigation */
    .navbar-collapse {
        background: rgba(7,16,31,0.98);
        padding: var(--space-lg);
        border-radius: 8px;
        margin-top: var(--space-md);
        border: 1px solid rgba(26,64,128,0.25);
        box-shadow: var(--shadow-lg);
    }

    .nav-link {
        padding: var(--space-md) !important;
        margin-bottom: var(--space-xs);
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-title {
        font-size: clamp(36px, 4.5vw, 60px);
    }

    .hero-h1 {
        font-size: clamp(60px, 10vw, 100px);
    }
}

/* Large Desktop Enhancements */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}

/* ───────────────────────────────────────────────────────────────
   PRINT STYLES
   ─────────────────────────────────────────────────────────────── */

@media print {
    .ticker-wrap,
    #mainNav,
    .btn-sw-primary,
    .btn-sw-outline,
    .btn-submit,
    .btn-nav-cta,
    .navbar-toggler {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    body::before,
    body::after {
        display: none;
    }

    .service-card,
    .corridor-card,
    .contact-detail,
    .form-card {
        border: 1px solid #ccc;
        page-break-inside: avoid;
        box-shadow: none;
    }

    .section-title,
    .hero-h1 {
        color: #000;
    }
}

/* ═══════════════════════════════════════════════════════════════
   END OF PROFESSIONAL STYLESHEET - DARK BLUE EDITION
   ═══════════════════════════════════════════════════════════════ */
