/* System Font Stack */
@font-face {
    font-family: 'Tiro Devanagari Hindi';
    src: local('Tiro Devanagari Hindi'),
         local('Arial Unicode MS'),
         local('Nirmala UI');
    font-display: swap;
}

:root {
    /* Peacock Feather Theme Colors */
    --peacock-dark: #0a2239; /* Deep blue */
    --peacock-blue: #1e6f9f; /* Peacock blue */
    --peacock-teal: #17bebb; /* Teal */
    --peacock-green: #3ec300; /* Emerald green */
    --peacock-gold: #ffd700; /* Gold */
    --peacock-light: #e0f7fa; /* Light accent */
    --peacock-gradient: linear-gradient(135deg, #0a2239 0%, #1e6f9f 40%, #17bebb 70%, #ffd700 100%);
    --peacock-glass: linear-gradient(120deg, rgba(26,111,159,0.8) 0%, rgba(23,190,187,0.6) 50%, rgba(255,215,0,0.2) 100%);

    /* Gradients */
    --gradient-primary: var(--peacock-gradient);
    --gradient-secondary: linear-gradient(45deg, var(--peacock-teal), var(--peacock-dark));
    --gradient-dark: linear-gradient(to right, var(--peacock-dark), var(--peacock-blue));
    --gradient-light: linear-gradient(135deg, var(--peacock-light) 0%, #ffffff 100%);

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(30, 111, 159, 0.37);
    
    /* Background Image Variable (dynamically set by bg-rotator.js) */
    --bg-image-url: url("/static/delivery/img/peacock-feather-bg.01cffe36f693.jpg");

    /* ========================================
    # PREMIUM DESIGN SYSTEM VARIABLES
    # ======================================== */
    
    /* Color Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Accent Colors */
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-green: #10b981;
    --accent-orange: #f97316;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --accent-warm: #f59e0b;
    
    /* Gradients */
    --premium-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --enterprise-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --tech-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --transport-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --braj-gradient: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.4);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 200ms ease-in-out;
    --transition-slow: 300ms ease-in-out;
    --transition-slower: 500ms ease-in-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    min-height: 100%;
}

img,
svg,
video,
iframe,
canvas,
picture {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Global Styles */
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    scroll-behavior: smooth;
}
main, nav, footer, .container, .hero {
    position: relative;
    z-index: 1;
}
section {
    position: relative;
    z-index: 1;
}

/* Top Heading + Side Window */
body {
    padding-top: 90px;
}

.top-brandbar {
    background: linear-gradient(92deg, rgba(7,31,62,.98), rgba(6,70,101,.94), rgba(5,121,156,.88));
    border-bottom: 1px solid rgba(0, 212, 255, .5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    min-height: 70px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, .15), inset 0 -1px 0 rgba(245, 197, 66, .4);
    transition: all 0.3s ease;
}

.top-brandbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,212,255,.0), rgba(0,212,255,.75), rgba(245,197,66,.8), rgba(0,212,255,.75), rgba(0,212,255,.0));
}

.brand-logo {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, .55);
    box-shadow: 0 0 12px rgba(0, 212, 255, .32);
}

.navbar-brand-title {
    color: #f5c542;
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 700;
    text-shadow: 0 0 14px rgba(245, 197, 66, .4);
}

.side-toggle-btn {
    border: 1px solid rgba(0, 212, 255, .55);
    color: #00d4ff;
    background: rgba(6, 18, 44, .45);
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-toggle-btn:hover {
    color: #f5c542;
    border-color: #f5c542;
    background: rgba(0, 212, 255, .14);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(0, 212, 255, .3);
}

.k-sidepanel {
    background: radial-gradient(circle at 10% 10%, rgba(0, 212, 255, .18), rgba(5, 12, 38, .97) 45%);
    color: #ccefff;
    border-left: 1px solid rgba(0, 212, 255, .4);
    width: min(420px, 90vw) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.k-sidepanel .offcanvas-title {
    color: #00d4ff;
    letter-spacing: .4px;
}

.menu-title {
    color: #f5c542;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .08em;
    margin-bottom: .55rem;
}

.side-link {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: #d9f6ff;
    text-decoration: none;
    padding: .6rem .75rem;
    border: 1px solid transparent;
    border-radius: 12px;
    margin-bottom: .32rem;
    transition: all .28s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, .03);
    position: relative;
    overflow: hidden;
}

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

.side-link:hover::before {
    left: 100%;
}

.side-link:hover {
    color: #00d4ff;
    border-color: rgba(0, 212, 255, .5);
    background: rgba(0, 212, 255, .12);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, .15);
}

.neon-icon {
    color: #00d4ff;
    filter: drop-shadow(0 0 3px rgba(0, 212, 255, .6));
    animation: neonPulse 1.8s ease-in-out infinite;
}

@keyframes neonPulse {
    0% { transform: scale(1); text-shadow: 0 0 4px rgba(0,212,255,.5); }
    50% { transform: scale(1.09); text-shadow: 0 0 10px rgba(0,212,255,.85), 0 0 20px rgba(0,212,255,.35); }
    100% { transform: scale(1); text-shadow: 0 0 4px rgba(0,212,255,.5); }
}

.side-link .trail-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0,212,255,.95) 0%, rgba(0,212,255,.15) 70%, rgba(0,212,255,0) 100%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.side-link:hover .trail-dot {
    opacity: 1;
}

/* Header logo size lock (keep in sync with top-brandbar height) */
.top-brandbar .brand-heading {
    min-height: 70px;
}

.top-brandbar .brand-heading .brand-logo {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    max-width: 48px;
    object-fit: cover !important;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.top-brandbar .brand-heading .brand-logo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 20px rgba(0, 212, 255, .5);
}

/* Modern Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 160px 0 120px;
    background: var(--gradient-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30,111,159,0.4);
    z-index: 1;
}

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

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: var(--peacock-gold) !important;
}

.sanskrit-text {
    color: var(--peacock-gold) !important;
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.braj-text {
    color: var(--peacock-gold) !important;
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero-illustration {
    animation: float 6s ease-in-out infinite;
}

/* Animated Waves */
.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

/* React Futuristic Hub */
.react-future-shell {
    background:
        radial-gradient(1200px 300px at 10% 0%, rgba(0, 212, 255, 0.10), transparent 60%),
        radial-gradient(1000px 240px at 90% 0%, rgba(255, 215, 0, 0.08), transparent 55%),
        linear-gradient(180deg, rgba(3, 18, 40, 0.92), rgba(4, 25, 54, 0.9));
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.future-hub-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1rem;
}

.future-main-card,
.future-side-card {
    background: rgba(7, 16, 44, 0.62);
    border: 1px solid rgba(0, 212, 255, 0.28);
    border-radius: 18px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.future-main-title {
    margin: 0 0 .4rem;
    color: #78e8ff;
    font-weight: 700;
    letter-spacing: .02em;
    font-family: 'Orbitron', sans-serif;
}

.future-main-sub {
    margin: 0 0 1rem;
    color: #d9f6ff;
    opacity: .92;
    font-family: 'Rajdhani', sans-serif;
}

.future-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-bottom: 1rem;
}

.future-stat-tile {
    border: 1px solid rgba(0, 212, 255, 0.24);
    border-radius: 14px;
    padding: .7rem .8rem;
    background: linear-gradient(160deg, rgba(0,212,255,.08), rgba(255,215,0,.05));
}

.future-stat-label {
    color: #9fd4e0;
    font-size: .78rem;
    font-family: 'Rajdhani', sans-serif;
}

.future-stat-value {
    color: #f5c542;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.future-coverage {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.future-coverage-pill {
    border: 1px solid rgba(245, 197, 66, 0.45);
    color: #ffd86b;
    font-size: .8rem;
    border-radius: 999px;
    padding: .3rem .6rem;
    font-family: 'Rajdhani', sans-serif;
}

.future-side-title {
    color: #78e8ff;
    margin: 0 0 .75rem;
    font-family: 'Orbitron', sans-serif;
}

.future-promo-list {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.future-promo-chip {
    border: 1px solid rgba(0, 212, 255, 0.24);
    border-radius: 12px;
    padding: .6rem .7rem;
    background: rgba(255,255,255,.02);
}

.future-chip-code {
    color: #ffd86b;
    font-weight: 700;
    line-height: 1.1;
    font-family: 'Orbitron', sans-serif;
}

.future-chip-discount {
    color: #9ff3ff;
    font-size: .84rem;
    font-family: 'Rajdhani', sans-serif;
}

.future-chip-meta,
.future-empty {
    color: #a6c4d4;
    font-size: .73rem;
    font-family: 'Rajdhani', sans-serif;
}

/* Neo Homepage System */
.neo-hero {
    position: relative;
    padding: 4.75rem 0 3.25rem;
    overflow: hidden;
    background:
        radial-gradient(1200px 500px at 10% -20%, rgba(0, 212, 255, .16), transparent 55%),
        radial-gradient(900px 420px at 95% 5%, rgba(255, 215, 0, .14), transparent 58%),
        linear-gradient(145deg, rgba(3, 22, 46, .94), rgba(4, 34, 74, .84) 50%, rgba(3, 18, 44, .9));
    border-bottom: 1px solid rgba(0, 212, 255, .24);
}

.neo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, .07) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 92%);
    pointer-events: none;
    z-index: 0;
}

.neo-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr .95fr;
    gap: 1.15rem;
}

.neo-grid.neo-grid-single {
    grid-template-columns: 1fr;
}

.neo-panel {
    border-radius: 22px;
    border: 1px solid rgba(0, 212, 255, .3);
    background: linear-gradient(160deg, rgba(4, 22, 52, .86), rgba(4, 16, 39, .86));
    box-shadow: 0 18px 44px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.neo-hero-copy {
    padding: 2rem 2rem 1.8rem;
}

.neo-kicker {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #8fefff !important;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .82rem;
    border: 1px solid rgba(0, 212, 255, .45);
    border-radius: 999px;
    padding: .3rem .72rem;
    background: rgba(0, 212, 255, .08);
}

.neo-title {
    font-family: 'Orbitron', sans-serif !important;
    font-size: clamp(2.05rem, 5vw, 3.3rem);
    font-weight: 800;
    color: #f4c248 !important;
    margin: .9rem 0 .65rem;
    line-height: 1.1;
    text-shadow: 0 0 24px rgba(244, 194, 72, .2);
}

.neo-subtitle {
    color: #d6f6ff !important;
    font-size: 1.07rem;
    line-height: 1.65;
    font-family: 'Rajdhani', sans-serif !important;
    margin-bottom: 1.35rem;
}

.neo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-bottom: 1.25rem;
}

.neo-btn-primary {
    border: none;
    border-radius: 12px;
    padding: .68rem 1.05rem;
    background: linear-gradient(130deg, #00d4ff 0%, #05a7cd 48%, #f4c248 100%);
    color: #03213f !important;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    box-shadow: 0 10px 20px rgba(0, 212, 255, .22);
}

.neo-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(0, 212, 255, .3);
}

.neo-btn-ghost {
    border-radius: 12px;
    padding: .68rem 1.05rem;
    border: 1px solid rgba(0, 212, 255, .55);
    background: rgba(0, 212, 255, .1);
    color: #95ecff !important;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
}

.neo-btn-ghost:hover {
    background: rgba(0, 212, 255, .2);
    color: #ffffff !important;
}

.neo-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .62rem;
}

.neo-metric {
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, .35);
    background: linear-gradient(160deg, rgba(255, 215, 0, .13), rgba(0, 212, 255, .08));
    padding: .78rem .8rem;
}

.neo-num {
    display: block;
    font-family: 'Orbitron', sans-serif;
    color: #ffd975 !important;
    font-size: 1rem;
    font-weight: 700;
}

.neo-label {
    display: block;
    color: #b8ebff !important;
    font-size: .78rem;
    font-family: 'Rajdhani', sans-serif;
}

.neo-hero-visual {
    position: relative;
    min-height: 340px;
    padding: 1.2rem;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.neo-orbit {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, .25);
    box-shadow: inset 0 0 45px rgba(0, 212, 255, .14);
    animation: neoSpin 20s linear infinite;
}

.neo-road-scene {
    position: relative;
    z-index: 1;
    width: min(92%, 500px);
    height: 260px;
    --truck-width: 220px;
    overflow: hidden;
}

.neo-road-line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 54px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 212, 255, .28), rgba(0, 212, 255, .72), rgba(255, 215, 0, .6), rgba(0, 212, 255, .3));
    box-shadow: 0 0 20px rgba(0, 212, 255, .3);
}

.neo-road-line-secondary {
    bottom: 40px;
    height: 6px;
    opacity: .8;
    filter: blur(.2px);
}

.neo-logo-truck {
    position: absolute;
    left: 0;
    bottom: 46px;
    width: var(--truck-width);
    aspect-ratio: 35 / 32;
    border-radius: 0;
    overflow: visible;
    animation: neoTruckPingPong 10s ease-in-out infinite;
}

.neo-logo-truck-img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: screen;
    filter: saturate(1.2) contrast(1.08) brightness(1.08) drop-shadow(0 9px 16px rgba(0, 0, 0, .45));
}

.neo-logo-truck::after {
    content: "";
    position: absolute;
    left: -18%;
    right: -18%;
    bottom: -18%;
    height: 30%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, .45), rgba(0, 212, 255, 0));
}

.neo-chip-stack {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: .42rem;
}

.neo-chip {
    border-radius: 999px;
    padding: .3rem .62rem;
    font-size: .76rem;
    color: #e8f8ff !important;
    border: 1px solid rgba(0, 212, 255, .34);
    background: rgba(0, 212, 255, .13);
    font-family: 'Rajdhani', sans-serif;
}

.neo-promo-belt {
    border-top: 1px solid rgba(0, 212, 255, .24);
    border-bottom: 1px solid rgba(0, 212, 255, .24);
    background: linear-gradient(90deg, rgba(4, 20, 44, .85), rgba(5, 32, 65, .88));
    padding: .95rem 0;
}

.neo-section-title {
    margin: 0;
    font-family: 'Orbitron', sans-serif !important;
    font-size: clamp(1.18rem, 2.2vw, 2.05rem);
    color: #79e9ff !important;
    letter-spacing: .02em;
}

.neo-section-sub {
    color: #9cd6ea !important;
    margin-top: .6rem;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1rem;
}

.neo-promo-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .45rem;
}

.neo-promo-pill {
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, .48);
    background: rgba(255, 215, 0, .14);
    color: #ffd975 !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    padding: .34rem .7rem;
}

.neo-services {
    position: relative;
    background:
        radial-gradient(1000px 220px at 0% 0%, rgba(0, 212, 255, .08), transparent 60%),
        radial-gradient(900px 220px at 100% 0%, rgba(255, 215, 0, .08), transparent 60%);
}

.neo-service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .45rem;
    text-decoration: none;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, .3);
    background: linear-gradient(160deg, rgba(5, 27, 60, .88), rgba(7, 19, 44, .86));
    padding: 1rem .9rem;
    min-height: 178px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

.neo-service-card i {
    font-size: 1.35rem;
    color: #00d4ff;
}

.neo-service-card h5 {
    margin: .15rem 0 0;
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: .97rem;
    line-height: 1.2;
}

.neo-service-card p {
    margin: 0;
    color: #ccefff !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: .92rem;
    line-height: 1.45;
}

.neo-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, .55);
    box-shadow: 0 16px 26px rgba(0, 0, 0, .3);
}

.neo-map-zone {
    background: linear-gradient(180deg, rgba(3, 18, 40, .55), rgba(3, 18, 40, .3));
}

.neo-map-header {
    text-align: center;
    margin-bottom: .9rem;
}

.neo-map-shell {
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, .32);
    background: linear-gradient(155deg, rgba(6, 22, 48, .8), rgba(3, 15, 36, .76));
    padding: .8rem;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .3);
}

.neo-map {
    width: 100%;
    height: 360px;
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, .34);
}

.neo-map-overlay {
    margin-top: .68rem;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.neo-overlay-card {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, .28);
    background: rgba(0, 212, 255, .1);
    padding: .34rem .66rem;
    font-size: .82rem;
    color: #d8f5ff !important;
    font-family: 'Rajdhani', sans-serif;
}

.dot-cyan, .dot-gold, .dot-blue {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: none;
}

.dot-cyan { background: #00d4ff; }
.dot-gold { background: #f4c248; }
.dot-blue { background: #4fa7ff; }

.neo-contact .neo-panel {
    padding: 1.15rem;
}

.neo-contact h5 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
}

.neo-contact p {
    color: #d8f5ff !important;
    font-family: 'Rajdhani', sans-serif !important;
}

.neo-contact input,
.neo-contact textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, .32);
    background: rgba(255, 255, 255, .03);
    color: #e7f8ff !important;
    padding: .72rem .78rem;
    font-family: 'Rajdhani', sans-serif;
}

.neo-contact input::placeholder,
.neo-contact textarea::placeholder {
    color: rgba(206, 236, 246, .65);
}

.neo-contact input:focus,
.neo-contact textarea:focus {
    outline: none;
    border-color: rgba(255, 215, 0, .55);
    box-shadow: 0 0 0 0.18rem rgba(255, 215, 0, .12);
    background: rgba(255, 255, 255, .06);
}

.neo-contact textarea {
    min-height: 128px;
    resize: vertical;
}

@keyframes neoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes neoTruckPingPong {
    0% {
        left: 0;
        transform: scaleX(1) translateY(0);
    }
    45% {
        left: calc(100% - var(--truck-width));
        transform: scaleX(1) translateY(-1px);
    }
    50% {
        left: calc(100% - var(--truck-width));
        transform: scaleX(-1) translateY(-1px);
    }
    95% {
        left: 0;
        transform: scaleX(-1) translateY(0);
    }
    100% {
        left: 0;
        transform: scaleX(1) translateY(0);
    }
}

@media (max-width: 1199px) {
    .neo-grid {
        grid-template-columns: 1fr;
    }
    .neo-hero-visual {
        min-height: 300px;
    }
    .neo-orbit {
        width: 300px;
        height: 300px;
    }
    .neo-road-scene {
        width: min(92%, 460px);
    }
}

@media (max-width: 767px) {
    .neo-hero {
        padding: 4rem 0 2.6rem;
    }
    .neo-hero-copy {
        padding: 1.15rem;
    }
    .neo-metrics {
        grid-template-columns: 1fr;
    }
    .neo-promo-inline {
        justify-content: flex-start;
    }
    .neo-map {
        height: 300px;
    }
    .neo-service-card {
        min-height: 164px;
    }
    .neo-road-scene {
        width: 100%;
        height: 210px;
        --truck-width: 172px;
    }
    .neo-road-line {
        bottom: 46px;
    }
    .neo-road-line-secondary {
        bottom: 34px;
    }
    .neo-logo-truck {
        bottom: 40px;
    }
}

@media (max-width: 991px) {
    .future-hub-grid {
        grid-template-columns: 1fr;
    }
    .future-stat-row {
        grid-template-columns: 1fr;
    }
}

.wave-top {
    background-size: 50% 100px;
    animation: move-wave 15s linear infinite;
}

.wave-middle {
    background-size: 50% 120px;
    animation: move-wave 10s linear infinite;
}

@keyframes move-wave {
    0% { transform: translateX(0) translateZ(0) scaleY(1); }
    50% { transform: translateX(-25%) translateZ(0) scaleY(0.8); }
    100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
}

/* Modern Service Cards */
.service-card {
    background: var(--peacock-glass);
    border: 2px solid var(--peacock-gold);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px 0 rgba(30, 111, 159, 0.2), 0 0 0 1px var(--peacock-gold);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--peacock-gold);
    box-shadow: 0 20px 40px rgba(30, 111, 159, 0.3), 0 0 0 2px var(--peacock-gold), 0 0 30px rgba(255, 215, 0, 0.2);
}

.service-card .card-body {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.service-card .card-title {
    color: var(--peacock-gold) !important;
    font-weight: 700;
    font-size: 1.25rem;
}

.service-card .card-text {
    color: var(--peacock-light) !important;
}

/* Modern Contact Form */
.contact-card {
    background: var(--peacock-glass);
    border: 2px solid var(--peacock-gold);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(30, 111, 159, 0.2), 0 0 0 1px var(--peacock-gold);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--peacock-light) !important;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form .form-control:focus {
    border-color: var(--peacock-gold);
    box-shadow: 0 0 0 0.25rem rgba(255,215,0,0.15), 0 0 20px rgba(255,215,0,0.1);
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--peacock-light) !important;
    transform: translateY(-2px);
}

/* Gradient Buttons */
.btn-primary, .btn-gradient {
    background: var(--gradient-primary);
    color: var(--peacock-dark);
    font-weight: 700;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 212, 255, .3), 0 0 0 1px rgba(255, 215, 0, .3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before, .btn-gradient:hover::before {
    left: 100%;
}

.btn-primary:hover, .btn-gradient:hover {
    background: linear-gradient(90deg, var(--peacock-gold) 0%, var(--peacock-blue) 100%);
    color: var(--peacock-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, .4), 0 0 0 2px rgba(255, 215, 0, .5);
}

/* Footer Styles */
.footer-section {
    background:
        radial-gradient(900px 220px at 0% 0%, rgba(0, 212, 255, 0.15), transparent 55%),
        radial-gradient(1000px 260px at 100% 0%, rgba(255, 215, 0, 0.12), transparent 55%),
        linear-gradient(180deg, rgba(4, 21, 47, 0.96), rgba(4, 28, 60, 0.94));
    padding: 60px 0 24px;
    color: #ccefff;
    position: relative;
    z-index: 1;
    border-top: 2px solid rgba(0, 212, 255, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(4, 16, 40, 0.46), rgba(4, 16, 40, 0.2));
    z-index: -1;
}

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

.footer-shell {
    border: 2px solid rgba(0, 212, 255, 0.25);
    border-radius: 24px;
    padding: 2rem 1.5rem 1rem;
    background: linear-gradient(150deg, rgba(5, 24, 56, 0.72), rgba(4, 16, 39, 0.64));
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.08), 0 16px 32px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.footer-section > .container > .text-center:last-child {
    z-index: 1;
    position: relative;
}

.footer-title {
    font-family: 'Orbitron', sans-serif !important;
    color: #79e9ff !important;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 1.02rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: #cae9f5 !important;
    font-family: 'Rajdhani', sans-serif !important;
    line-height: 1.58;
    font-size: 1.02rem;
}

.footer-list,
.footer-item {
    color: #cae9f5 !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1.02rem;
    line-height: 1.5;
}

.footer-icon {
    color: #f4c248 !important;
}

.footer-link {
    color: #9eefff !important;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1.03rem;
    border-bottom: 1px solid rgba(0, 212, 255, .3);
    transition: all .2s ease;
}

.footer-link:hover {
    color: #f4c248 !important;
    border-bottom-color: rgba(244, 194, 72, .62);
}

.footer-copy p {
    color: #a7d8e7 !important;
    font-family: 'Rajdhani', sans-serif !important;
}

.social-links a {
    color: #9eefff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #f4c248;
}

.footer-divider {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-primary);
    color: var(--peacock-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3), 0 0 0 2px rgba(255, 215, 0, 0.2);
}

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

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 28px rgba(0, 212, 255, 0.5), 0 0 0 3px rgba(255, 215, 0, 0.4);
}

/* Auth Pages */
.auth-page {
    background: linear-gradient(135deg, rgba(7,21,47,0.92) 0%, rgba(11,39,79,0.88) 45%, rgba(6,63,97,0.85) 100%), var(--bg-image-url) center center / cover no-repeat fixed;
    background-size: cover;
    min-height: calc(100svh - 70px);
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.login-page main,
.register-page main {
    min-height: calc(100svh - 70px);
}

.auth-card {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 215, 0, 0.15);
}

.auth-card .logo-wrapper img {
    max-width: 100px;
    margin-bottom: 1rem;
    border-radius: 16px;
    border: 2px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.auth-card .logo-wrapper img:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.auth-card h2 {
    font-family: 'Orbitron', sans-serif !important;
    color: #f4c248 !important;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(244, 194, 72, 0.3);
}

.auth-card .subtitle {
    color: #d9f6ff !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.auth-form .form-label {
    color: #bfefff !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.auth-form .input-group-text {
    background: rgba(0, 212, 255, 0.1);
    border: 1.5px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    border-radius: 12px 0 0 12px;
}

.auth-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(0, 212, 255, 0.3);
    color: #e7f8ff !important;
    border-radius: 0 12px 12px 0;
    padding: 0.85rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f4c248;
    box-shadow: 0 0 0 0.25rem rgba(244, 194, 72, 0.15), 0 0 20px rgba(244, 194, 72, 0.1);
}

.auth-btn {
    background: linear-gradient(130deg, #00d4ff 0%, #05a7cd 48%, #f4c248 100%);
    color: #03213f !important;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 212, 255, .22);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 212, 255, .3);
}

.auth-links a {
    color: #00d4ff !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.auth-links a:hover {
    color: #f4c248 !important;
    border-bottom-color: rgba(244, 194, 72, 0.6);
}

.forgot-password-link {
    color: #00d4ff !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-password-link:hover {
    color: #f4c248 !important;
}

.auth-alert {
    background: rgba(255, 0, 0, 0.1);
    border: 1.5px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    color: #ffcccc !important;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}

/* Register Page Specific */
.register-card {
    border: 2px solid rgba(0, 212, 255, 0.35);
    background: linear-gradient(155deg, rgba(6, 25, 57, 0.94), rgba(5, 16, 39, 0.9));
}

.register-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
}

.map-select-btn {
    border: 1.5px solid rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.12);
    color: #8fefff !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.map-select-btn:hover {
    background: rgba(244, 194, 72, 0.25);
    color: #f4c248 !important;
    border-color: rgba(244, 194, 72, 0.5);
    transform: translateY(-2px);
}

.profile-pic-wrap {
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 16px;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.08);
}

#profile-preview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 12px;
}

.upload-icon-btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(130deg, #00d4ff, #f4c248);
    color: #062546;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

#registerAddressMap {
    height: 300px;
    border: 2px solid rgba(0, 212, 255, 0.35);
    border-radius: 16px;
}

.address-map-panel {
    margin-top: 1rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.08);
}

.address-map-panel .map-panel-title {
    margin-bottom: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    color: #9ceeff;
}

.map-action-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Profile Pages */
.profile-page {
    padding: 2rem 0;
}

.profile-main-card {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-main-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 215, 0, 0.15);
}

.profile-image {
    border: 3px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.profile-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
}

.profile-info-card h5 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.profile-info-card p {
    color: #d9f6ff !important;
    font-family: 'Rajdhani', sans-serif !important;
}

.profile-info-card strong {
    color: #00d4ff !important;
}

.profile-camera-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(130deg, #00d4ff, #f4c248);
    border: none;
    color: #03213f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.profile-camera-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.5);
}

.profile-name {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
}

.profile-date {
    color: #bfefff !important;
    font-family: 'Rajdhani', sans-serif !important;
}

.profile-nav-tabs .nav-link {
    color: #d9f6ff !important;
    border: 1.5px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.profile-nav-tabs .nav-link.active {
    background: linear-gradient(130deg, #00d4ff, #05a7cd);
    color: #03213f !important;
    border-color: transparent;
    font-weight: 700;
}

.profile-nav-tabs .nav-link:hover:not(.active) {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
}

/* Order Pages */
.order-page {
    padding: 2rem 0;
}

.form-card {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 215, 0, 0.15);
}

.form-card-header {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(5, 70, 101, 0.12));
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px 24px 0 0;
}

.form-card-header h2 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
}

.location-map-card {
    padding: 1.5rem;
    border-radius: 18px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    background: linear-gradient(160deg, rgba(9, 24, 46, 0.96), rgba(10, 35, 64, 0.9));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.location-map-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 45px rgba(0, 212, 255, 0.15);
}

.location-map-card h6 {
    color: #eef9ff;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1rem;
}

.location-map-card p {
    color: rgba(226, 242, 255, 0.74);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.map-mini {
    height: 180px !important;
    width: 100%;
    max-width: 100%;
    border-radius: 14px !important;
    border: 2px solid rgba(0, 212, 255, 0.2);
    overflow: hidden;
    background: linear-gradient(135deg, #071629, #0b2c4d) !important;
}

.map-tip {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: #88e8ff;
    font-family: 'Rajdhani', sans-serif;
}

.map-popup-content {
    border-radius: 20px !important;
    border: 2px solid rgba(0, 212, 255, 0.2);
    background: linear-gradient(160deg, rgba(8, 22, 42, 0.98), rgba(10, 34, 62, 0.96)) !important;
    color: #eef9ff;
}

.map-popup-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.map-popup-title {
    margin: 0;
    color: #eef9ff;
    font-family: 'Orbitron', sans-serif !important;
}

.map-popup-note {
    margin: 0;
    color: rgba(226, 242, 255, 0.72);
    font-size: 0.92rem;
    font-family: 'Rajdhani', sans-serif;
}

.order-history-card {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.5rem;
}

.order-history-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 215, 0, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
}

.order-status-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-status-pending {
    background: rgba(244, 194, 72, 0.2);
    color: #f4c248;
    border: 1px solid rgba(244, 194, 72, 0.4);
}

.order-status-completed {
    background: rgba(62, 195, 0, 0.2);
    color: #3ec300;
    border: 1px solid rgba(62, 195, 0, 0.4);
}

.order-status-cancelled {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.4);
}

.order-status-in-transit {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.4);
}

/* Admin Dashboard */
.admin-dashboard-page {
    padding: 2rem 0;
}

.admin-dashboard {
    min-height: calc(100vh - 70px);
}

.admin-dashboard .sidebar {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.95), rgba(4, 16, 39, 0.92));
    border-right: 2px solid rgba(0, 212, 255, 0.3);
    min-height: calc(100vh - 70px);
    padding: 1.5rem 1rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.admin-dashboard .sidebar .nav-link {
    color: #d9f6ff;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-dashboard .sidebar .nav-link:hover {
    background: rgba(0, 212, 255, 0.15);
    color: #f4c248;
    transform: translateX(4px);
}

.admin-dashboard .sidebar .nav-link.active {
    background: linear-gradient(130deg, #00d4ff, #05a7cd);
    color: #03213f;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.admin-dashboard .sidebar-icon {
    font-size: 1.2rem;
}

.dashboard-title {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.stats-card {
    background: linear-gradient(135deg, rgba(6, 25, 57, 0.9), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stats-card:hover::before {
    opacity: 1;
}

.stats-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 215, 0, 0.15);
}

.stats-card h3 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stats-card p {
    color: #d9f6ff !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.stats-card i {
    color: #00d4ff;
    margin-right: 0.5rem;
}

.section-heading {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.admin-table-card {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.admin-table-card .table {
    color: #d9f6ff;
    margin-bottom: 0;
}

.admin-table-card .table thead th {
    background: rgba(0, 212, 255, 0.1);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    color: #f4c248;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.9rem;
    padding: 1rem;
}

.admin-table-card .table tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-table-card .table tbody tr:hover {
    background: rgba(0, 212, 255, 0.08);
    transform: scale(1.01);
}

.admin-table-card .table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

.btn-action {
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Service Pages (Gift, Prasad, Agent) */
.service-page {
    padding: 2rem 0;
}

.service-header {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    margin-bottom: 1.5rem;
}

.service-map-card {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
    margin-bottom: 2rem;
}

.service-map-card h5 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    margin-bottom: 1rem;
}

.service-map-card p {
    color: #d9f6ff;
    font-family: 'Rajdhani', sans-serif;
}

.service-item-card {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 215, 0, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
}

.service-item-card h5 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    margin-bottom: 1rem;
}

.service-item-card p {
    color: #d9f6ff;
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 0.5rem;
}

.service-item-card .form-select {
    background: rgba(0, 212, 255, 0.1);
    border: 1.5px solid rgba(0, 212, 255, 0.3);
    color: #d9f6ff;
    border-radius: 10px;
}

.service-item-card .form-select:focus {
    background: rgba(0, 212, 255, 0.15);
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
    color: #d9f6ff;
}

/* Enterprise Pages (Business, Developers, IT Services) */
.enterprise-page {
    padding: 2rem 0;
}

.enterprise-header {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    margin-bottom: 1.5rem;
}

.enterprise-card {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.enterprise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 215, 0, 0.15);
}

.enterprise-card h3 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    margin-bottom: 1rem;
}

.enterprise-card h2 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    margin-bottom: 1rem;
}

.enterprise-card p {
    color: #d9f6ff;
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1rem;
}

.enterprise-card strong {
    color: #00d4ff;
}

.enterprise-card .btn-info {
    background: linear-gradient(130deg, #00d4ff, #05a7cd);
    border: none;
    color: #03213f !important;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enterprise-card .btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, .3);
}

.enterprise-card .btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #d9f6ff;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enterprise-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(6, 25, 57, 0.98), rgba(4, 16, 39, 0.98));
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    padding: 0.5rem 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
    height: auto;
    max-height: 70px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: #d9f6ff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-nav-item i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: #bfefff;
}

.mobile-nav-item span {
    font-size: 0.7rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.mobile-nav-item.active {
    color: #00d4ff;
}

.mobile-nav-item.active i {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.mobile-nav-item:hover {
    color: #00d4ff;
}

.mobile-nav-item:hover i {
    color: #00d4ff;
}

/* Mobile-specific page styles */
.mobile-page {
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    main {
        padding-bottom: 70px !important;
    }
}

@media (max-width: 420px) {
    .mobile-hero-features,
    .mobile-service-grid {
        grid-template-columns: 1fr;
    }

    .mobile-home-logo h1 {
        font-size: 1.05rem;
    }

    .mobile-home-logo p,
    .mobile-hero-title {
        font-size: 0.95rem;
    }

    .mobile-service-card {
        padding: 0.85rem;
    }

    .mobile-service-card h4 {
        font-size: 0.82rem;
    }

    .mobile-service-card p {
        font-size: 0.72rem;
    }

    .mobile-btn {
        padding: 0.75rem 1rem;
    }

    .mobile-order-summary {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }

    .mobile-bottom-nav {
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    }
}

.mobile-header {
    background: linear-gradient(135deg, rgba(7,21,47,0.95), rgba(11,39,79,0.92));
    padding: 1.5rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.mobile-header h1 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.mobile-header p {
    color: #d9f6ff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.mobile-card {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-card h3 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.mobile-btn {
    background: linear-gradient(130deg, #00d4ff, #05a7cd);
    border: none;
    color: #03213f !important;
    font-weight: 700;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, .3);
}

.mobile-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #d9f6ff;
    font-weight: 700;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    width: 100%;
    font-size: 1rem;
}

.mobile-input {
    background: rgba(0, 212, 255, 0.1);
    border: 1.5px solid rgba(0, 212, 255, 0.3);
    color: #d9f6ff;
    border-radius: 12px;
    padding: 0.875rem;
    font-size: 1rem;
}

.mobile-input:focus {
    background: rgba(0, 212, 255, 0.15);
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
    color: #d9f6ff;
}

/* Mobile-specific login page */
.mobile-login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(7,21,47,0.98), rgba(11,39,79,0.95));
    padding: 1.5rem;
}

.mobile-login-logo {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.mobile-login-logo img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    border: 3px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
    margin-bottom: 1rem;
}

.mobile-login-logo h1 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.mobile-login-logo p {
    color: #d9f6ff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

/* Mobile-specific register page */
.mobile-register-page {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(7,21,47,0.98), rgba(11,39,79,0.95));
    padding: 1.5rem;
    padding-bottom: 100px;
}

.mobile-register-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.mobile-register-header img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    border: 2px solid rgba(0, 212, 255, 0.4);
    margin-bottom: 1rem;
}

/* Mobile-specific create order page */
.mobile-order-page {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(7,21,47,0.98), rgba(11,39,79,0.95));
    padding: 1rem;
    padding-bottom: 100px;
}

.mobile-order-section {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.mobile-order-section h3 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-order-summary {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(6, 25, 57, 0.98), rgba(4, 16, 39, 0.98));
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    padding: 1rem;
    z-index: 999;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Hide desktop elements on mobile */
@media (max-width: 768px) {
    .top-brandbar {
        display: none !important;
    }
    
    .k-sidepanel {
        display: none !important;
    }
    
    .side-toggle-btn {
        display: none !important;
    }
    
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: auto;
        min-height: 60px;
        max-height: 80px;
    }
    
    .mobile-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        min-height: 50px;
    }
    
    /* Hide split-screen branding sides */
    .login-branding,
    .register-branding {
        display: none !important;
    }
    
    .login-layout,
    .register-layout {
        grid-template-columns: 1fr !important;
    }
    
    .login-form-container,
    .register-form-container {
        padding: 1.5rem !important;
        max-height: none !important;
    }
    
    .order-layout {
        grid-template-columns: 1fr !important;
    }
    
    .order-sidebar {
        position: static !important;
    }
    
    /* Adjust auth pages for mobile */
    .auth-page,
    .login-page,
    .register-page {
        padding: 0 !important;
    }
    
    .auth-card {
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    
    .auth-card .card-body {
        padding: 0 !important;
    }
    
    /* Hide footer on mobile */
    .footer-section {
        display: none !important;
    }
    
    /* Hide back to top on mobile */
    .back-to-top {
        display: none !important;
    }
    
    /* Mobile-specific adjustments */
    body {
        padding-top: 80px !important;
    }
    
    #main-bg {
        padding-top: 80px !important;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .top-brandbar {
        min-height: 64px;
    }
    .top-brandbar .brand-heading {
        min-height: 64px;
    }
    .top-brandbar .brand-heading .brand-logo {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px;
        max-width: 42px;
        border-radius: 10px;
    }
    .navbar-brand-title {
        font-size: 1.5rem;
    }
    .side-toggle-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .service-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
    }
    .footer-shell {
        padding: 1.5rem 1rem 0.75rem;
        border-radius: 16px;
    }
}

.truck-floating-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-truck {
    position: absolute;
    bottom: -50px;
    left: -20%;
    animation: truckMove 30s linear infinite;
    width: 300px;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.5));
}

@keyframes truckMove {
    0% { left: -20%; transform: translateY(0) scaleX(1); }
    49% { transform: translateY(-10px) scaleX(1); }
    50% { left: 100%; transform: translateY(-10px) scaleX(-1); }
    51% { left: 100%; transform: translateY(-10px) scaleX(-1); }
    99% { transform: translateY(0) scaleX(-1); }
    100% { left: -20%; transform: translateY(0) scaleX(1); }
}

.content-overlay {
    background: linear-gradient(135deg, rgba(30,111,159,0.5) 0%, rgba(23,190,187,0.3) 50%, rgba(255,215,0,0.1) 100%);
    border: 1.5px solid var(--peacock-gold);
    box-shadow: 0 4px 32px 0 rgba(30, 111, 159, 0.18), 0 0 0 2px var(--peacock-gold);
    border-radius: 15px;
    padding: 2rem 1.5rem;
}

h1, h2, h3, h4, h5, h6, .sanskrit-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #79e9ff !important;
    text-shadow: 0 0 12px rgba(121, 233, 255, 0.12);
}

.braj-text, .lead, p, li, label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: #cae9f5 !important;
    text-shadow: none;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--peacock-dark);
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(23,190,187,0.3) 0%, rgba(10,34,57,0.8) 70%, rgba(10,34,57,1) 100%);
    animation: rotateBackground 20s linear infinite;
}

.auth-page::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, rgba(23,190,187,0.6) 70%, rgba(10,34,57,0.9) 100%);
    animation: rotateBackground 25s reverse linear infinite;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.auth-card {
    background: var(--peacock-glass);
    border: 1.5px solid var(--peacock-gold);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(30, 111, 159, 0.18), 0 0 0 2px var(--peacock-gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.auth-card .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1.5px solid var(--peacock-gold);
    color: var(--peacock-gold) !important;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-card .form-control:focus {
    border-color: var(--peacock-gold);
    box-shadow: 0 0 0 0.25rem rgba(255,215,0,0.25);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--peacock-gold) !important;
}

.auth-card label, .auth-card .subtitle {
    color: var(--peacock-gold) !important;
    font-weight: 500;
}

.auth-btn {
    background: linear-gradient(90deg, #0a2239 0%, #1e6f9f 50%, var(--peacock-gold) 100%);
    color: var(--peacock-dark);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 12px 0 var(--peacock-gold), 0 0 8px var(--peacock-gold);
    transition: all 0.3s ease;
    width: 100%;
}

.auth-btn:hover {
    background: linear-gradient(90deg, var(--peacock-gold) 0%, var(--peacock-blue) 100%);
    color: var(--peacock-dark) !important;
}

.auth-links a, .forgot-password-link {
    color: var(--peacock-gold) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-links a:hover, .forgot-password-link:hover {
    color: var(--peacock-gold);
}

.auth-card .logo-wrapper img {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.auth-card h2 {
    color: var(--peacock-gold) !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

.auth-card .subtitle {
    color: var(--peacock-gold) !important;
    margin-bottom: 1.5rem;
}

.navbar-brand-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #79e9ff !important;
    text-shadow: 0 0 18px rgba(121, 233, 255, 0.22);
    background: linear-gradient(90deg, #f4c248 40%, #79e9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Admin Dashboard Styles */
.admin-dashboard {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(170deg, rgba(4, 19, 44, 0.95), rgba(4, 31, 64, 0.92));
}

#sidebar {
    width: 250px;
    background: linear-gradient(180deg, rgba(4, 18, 42, 0.96) 0%, rgba(5, 36, 72, 0.94) 100%);
    color: #cdefff;
    padding-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 2px 0 16px rgba(0,0,0,0.35);
    border-right: 1px solid rgba(0, 212, 255, 0.24);
    flex-shrink: 0;
}

#sidebar .list-group-item {
    background: transparent;
    border: none;
    color: #cdefff;
    padding: 10px 20px;
}

#sidebar .nav-link {
    color: #bdeeff;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

#sidebar .nav-link:hover {
    color: #79e9ff !important;
    background-color: rgba(0, 212, 255, 0.14);
}

#sidebar .nav-link.active {
    background: linear-gradient(130deg, rgba(0, 212, 255, 0.18), rgba(121, 233, 255, 0.12));
    color: #f4c248 !important;
    font-weight: 600;
    border: 1px solid rgba(244, 194, 72, 0.42);
}

#sidebar .sidebar-icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.admin-dashboard main {
    flex-grow: 1;
    padding: 30px;
    background: transparent;
    color: #cdefff;
}

.dashboard-title {
    color: #79e9ff !important;
    font-weight: 700;
    margin-bottom: 30px;
}

.stats-card {
    background: linear-gradient(155deg, rgba(6, 25, 57, 0.92), rgba(5, 17, 40, 0.9)) !important;
    border: 1px solid rgba(0, 212, 255, 0.24);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.24);
    transition: all 0.3s ease;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 26px rgba(0,0,0,0.28);
}

.stats-card h3 {
    color: #f4c248 !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-card p {
    color: #bdeeff !important;
    font-size: 1.1rem;
}

.stats-card i {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.section-heading {
    color: #79e9ff !important;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.table-responsive {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
    color: #d9f5ff;
    background: rgba(4, 22, 52, 0.72);
}

.table thead th {
    background-color: rgba(4, 18, 42, 0.92);
    color: #79e9ff;
    border-bottom: 2px solid rgba(0, 212, 255, 0.34);
    font-weight: 600;
    padding: 12px 15px;
}

.table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
    border-top: 1px solid rgba(0, 212, 255, 0.12);
}

.table tbody tr:hover {
    background-color: rgba(0, 212, 255, 0.08);
}

.btn-action {
    background-color: rgba(0, 212, 255, 0.16);
    color: #8fefff;
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.btn-action:hover {
    background-color: rgba(244, 194, 72, 0.2);
    color: #f4c248;
    border-color: rgba(244, 194, 72, 0.4);
}

.btn-action i {
    margin-right: 5px;
}

@media (max-width: 992px) {
    #sidebar {
        width: 80px;
        text-align: center;
    }
    #sidebar .nav-link {
        justify-content: center;
    }
    #sidebar .sidebar-icon {
        margin-right: 0;
    }
    #sidebar .nav-link span {
        display: none;
    }
    .admin-dashboard main {
        margin-left: 80px;
    }
}

@media (max-width: 768px) {
    #sidebar {
        width: 100%;
        height: auto;
        padding-top: 10px;
        box-shadow: none;
    }
    #sidebar .nav-link {
        justify-content: flex-start;
    }
    #sidebar .sidebar-icon {
        margin-right: 10px;
    }
    #sidebar .nav-link span {
        display: inline;
    }
    .admin-dashboard main {
        margin-left: 0;
        padding: 20px;
    }
    .stats-card {
        margin-bottom: 20px;
    }
    .table-responsive {
        margin-top: 20px;
    }
}

/* Form Card Styles (used for common forms like create order, edit profile, etc.) */
.form-card {
    background: var(--peacock-glass);
    border: 1.5px solid var(--peacock-gold);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(30, 111, 159, 0.18), 0 0 0 2px var(--peacock-gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.form-card .form-control, .form-card .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1.5px solid var(--peacock-gold);
    color: var(--peacock-gold) !important;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-card .form-control:focus, .form-card .form-select:focus {
    border-color: var(--peacock-gold);
    box-shadow: 0 0 0 0.25rem rgba(255,215,0,0.25);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--peacock-gold) !important;
}

.form-card label, .form-card .subtitle {
    color: var(--peacock-gold) !important;
    font-weight: 500;
}

.form-card .invalid-feedback {
    color: var(--peacock-gold);
}

.form-card .btn-primary, .form-card .btn {
    background: linear-gradient(90deg, #0a2239 0%, #1e6f9f 50%, var(--peacock-gold) 100%);
    color: var(--peacock-dark);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 12px 0 var(--peacock-gold), 0 0 8px var(--peacock-gold);
    transition: all 0.3s ease;
    width: 100%;
}

.form-card .btn-primary:hover, .form-card .btn:hover {
    background: linear-gradient(90deg, var(--peacock-gold) 0%, var(--peacock-blue) 100%);
    color: var(--peacock-dark) !important;
}

.form-card-header {
    border-bottom: 1.5px solid var(--peacock-gold);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.form-card-header h2 {
    color: var(--peacock-gold) !important;
    font-weight: 700;
    margin-bottom: 0;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

/* Gradient Flow */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-animation {
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
}

/* Card Hover Effect */
.card-hover {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 212, 255, 0.25), 0 0 0 2px rgba(255, 215, 0, 0.3);
}

/* Icon Hover Effects */
.icon-hover {
    transition: all 0.3s ease;
}

.icon-hover:hover {
    transform: scale(1.1);
    color: var(--peacock-gold);
    filter: drop-shadow(0 4px 6px rgba(38, 70, 83, 0.2));
}

/* Text Reveal Animation */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-reveal {
    animation: textReveal 1s ease forwards;
}

/* Loading Spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    animation: spin 1s linear infinite;
    border: 3px solid rgba(42, 157, 143, 0.3);
    border-top: 3px solid var(--peacock-teal);
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

/* Wave Animation */
@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-wave {
    animation: wave 10s linear infinite;
}

/* Button Shine Effect */
@keyframes buttonShine {
    0% { background-position: -100px; }
    100% { background-position: 200px; }
}

.btn-shine {
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 55%
    );
    background-size: 300% 100%;
    animation: buttonShine 3s infinite;
}

/* Peacock Feather Animation */
@keyframes featherWave {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.05); }
    100% { transform: rotate(0deg) scale(1); }
}

.feather-animation {
    animation: featherWave 4s ease-in-out infinite;
}

/* Gradient Border Animation */
@keyframes borderGlow {
    0% { border-color: var(--peacock-teal); }
    50% { border-color: var(--peacock-gold); }
    100% { border-color: var(--peacock-teal); }
}

.gradient-border {
    border: 2px solid var(--peacock-teal);
    animation: borderGlow 3s ease-in-out infinite;
}

.bg-peacock {
  background: linear-gradient(135deg, #0a2740 0%, #19747e 100%) !important;
}
.text-gold {
  color: #ffd700 !important;
}
.border-gold {
  border-color: #ffd700 !important;
}
.btn-gold {
  background: #ffd700 !important;
  color: #0a2740 !important;
  border: 2px solid #ffd700 !important;
}

/* Diwali Banner Styles */
.diwali-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #ffd700 50%, #ff6b35 75%, #f7931e 100%);
    background-size: 400% 400%;
    animation: diwaliGradient 3s ease infinite;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    border-bottom: 3px solid #ffd700;
}

@keyframes diwaliGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.diwali-container {
    position: relative;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.diwali-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

.diwali-text {
    flex: 1;
    text-align: center;
}

.diwali-title {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 5px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: diwaliPulse 2s ease-in-out infinite;
}

@keyframes diwaliPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.diwali-subtitle {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 10px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 500;
}

.diwali-timer {
    margin-top: 10px;
}

.timer-label {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.countdown-timer {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.countdown-timer span {
    background: rgba(0,0,0,0.2);
    padding: 5px 10px;
    border-radius: 8px;
    margin: 0 2px;
    border: 2px solid rgba(255,255,255,0.3);
    animation: timerGlow 1s ease-in-out infinite alternate;
}

@keyframes timerGlow {
    from { box-shadow: 0 0 5px rgba(255,255,255,0.3); }
    to { box-shadow: 0 0 15px rgba(255,255,255,0.6); }
}

.diwali-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0,0,0,0.3);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.diwali-close-btn:hover {
    background: rgba(0,0,0,0.6);
    transform: scale(1.1);
}

.diwali-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.diya {
    position: absolute;
    font-size: 1.5rem;
    animation: diyaFlicker 2s ease-in-out infinite;
}

.diya-1 {
    top: 15px;
    left: 10%;
    animation-delay: 0s;
}

.diya-2 {
    top: 15px;
    right: 10%;
    animation-delay: 0.7s;
}

.diya-3 {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.4s;
}

@keyframes diyaFlicker {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    25% { opacity: 1; transform: scale(1.1); }
    50% { opacity: 0.9; transform: scale(0.95); }
    75% { opacity: 1; transform: scale(1.05); }
}

.sparkle {
    position: absolute;
    font-size: 1rem;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 25px;
    left: 20%;
    animation-delay: 0.5s;
}

.sparkle-2 {
    top: 25px;
    right: 20%;
    animation-delay: 1.2s;
}

.sparkle-3 {
    top: 25px;
    left: 70%;
    animation-delay: 2s;
}

@keyframes sparkleFloat {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-10px) rotate(180deg); 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .diwali-container {
        padding: 10px 15px;
        min-height: 70px;
    }
    
    .diwali-title {
        font-size: 1.5rem;
    }
    
    .diwali-subtitle {
        font-size: 0.9rem;
    }
    
    .countdown-timer {
        font-size: 1.2rem;
    }
    
    .countdown-timer span {
        padding: 3px 8px;
        margin: 0 1px;
    }
    
    .diya {
        font-size: 1.2rem;
    }
    
    .sparkle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .diwali-container {
        padding: 8px 10px;
        min-height: 60px;
    }
    
    .diwali-title {
        font-size: 1.2rem;
    }
    
    .diwali-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-timer {
        font-size: 1rem;
    }
    
    .countdown-timer span {
        padding: 2px 6px;
    }
}

/* Sitewide Futuristic Harmonization */
main .card {
    background: linear-gradient(155deg, rgba(6, 25, 57, 0.86), rgba(5, 16, 39, 0.84));
    border: 1px solid rgba(0, 212, 255, 0.26);
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
    color: #d6f4ff;
}

main .card-header {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.16), rgba(4, 20, 46, 0.82)) !important;
    color: #79e9ff !important;
    border-bottom: 1px solid rgba(0, 212, 255, 0.25);
    font-family: 'Orbitron', sans-serif !important;
}

main .card-body,
main .card-footer {
    color: #cae9f5 !important;
    font-family: 'Rajdhani', sans-serif !important;
}

main .form-control,
main .form-select,
main .input-group-text {
    background: rgba(5, 24, 55, 0.68);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #d8f6ff !important;
    font-family: 'Rajdhani', sans-serif;
}

main .form-control::placeholder,
main .form-select::placeholder {
    color: rgba(196, 226, 236, 0.7);
}

main .form-control:focus,
main .form-select:focus {
    background: rgba(5, 24, 55, 0.82);
    border-color: rgba(244, 194, 72, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(244, 194, 72, 0.12);
    color: #e3f9ff !important;
}

main .table {
    color: #d8f5ff;
}

main .table thead th {
    color: #79e9ff;
    background: rgba(3, 18, 41, 0.9);
    border-bottom-color: rgba(0, 212, 255, 0.3);
}

main .table tbody td {
    border-color: rgba(0, 212, 255, 0.12);
}

main .table-hover tbody tr:hover {
    background: rgba(0, 212, 255, 0.08);
}

main .modal-content {
    background: linear-gradient(155deg, rgba(6, 25, 57, 0.92), rgba(5, 16, 39, 0.9));
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #d6f4ff;
}

main .alert {
    border: 1px solid rgba(0, 212, 255, 0.3);
    background: rgba(3, 27, 54, 0.78);
    color: #d6f4ff;
}

main .btn-secondary,
main .btn-outline-secondary {
    background: rgba(0, 212, 255, 0.12);
    color: #9eefff !important;
    border: 1px solid rgba(0, 212, 255, 0.35);
}

main .btn-secondary:hover,
main .btn-outline-secondary:hover {
    background: rgba(244, 194, 72, 0.18);
    color: #f4c248 !important;
    border-color: rgba(244, 194, 72, 0.45);
}

main .btn-outline-primary,
main .btn-outline-success,
main .btn-outline-info {
    color: #9eefff;
    border-color: rgba(0, 212, 255, 0.35);
}

main .btn-outline-primary:hover,
main .btn-outline-success:hover,
main .btn-outline-info:hover {
    color: #f4c248 !important;
    background: rgba(244, 194, 72, 0.18);
    border-color: rgba(244, 194, 72, 0.45);
}

main .page-link {
    background: rgba(5, 24, 55, 0.72);
    border: 1px solid rgba(0, 212, 255, 0.26);
    color: #9eefff;
}

main .page-item.active .page-link {
    background: linear-gradient(130deg, #00d4ff, #f4c248);
    color: #03213f !important;
    border-color: transparent;
}

/* Footer: clearer address & brand note on narrow screens */
.footer-contact-address {
    align-items: flex-start;
}
.footer-contact-address .footer-icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.footer-contact-address span {
    display: inline-block;
    line-height: 1.5;
}
.footer-brand-note {
    opacity: 0.95;
}

/* Side Panel Styling - Modern & Reactive */
#kSidePanel.k-sidepanel {
    background: linear-gradient(135deg, rgba(7,21,47,0.98) 0%, rgba(11,39,79,0.95) 50%, rgba(6,63,97,0.92) 100%) !important;
    color: #ccefff !important;
    border-left: 2px solid rgba(0, 212, 255, 0.4) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    box-shadow: -10px 0 40px rgba(0, 212, 255, 0.15), inset 0 0 60px rgba(0, 212, 255, 0.05) !important;
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

#kSidePanel .offcanvas-header {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.08), transparent);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3) !important;
    padding: 1.25rem 1.5rem;
    position: relative;
    overflow: hidden;
}

#kSidePanel .offcanvas-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, #f4c248, #00d4ff, transparent);
    animation: shimmer 3s linear infinite;
}

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

#kSidePanel .offcanvas-title {
    color: #00d4ff !important;
    font-weight: 700;
    letter-spacing: .4px;
    font-family: 'Orbitron', sans-serif !important;
    text-transform: uppercase;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

#kSidePanel .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

#kSidePanel .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

#kSidePanel .offcanvas-body {
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.02) 50%, transparent);
    padding: 1.5rem;
}

#kSidePanel .menu-block {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

#kSidePanel .menu-block:nth-child(1) { animation-delay: 0.1s; }
#kSidePanel .menu-block:nth-child(2) { animation-delay: 0.2s; }
#kSidePanel .menu-block:nth-child(3) { animation-delay: 0.3s; }
#kSidePanel .menu-block:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#kSidePanel .menu-title {
    color: #f4c248 !important;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .12em;
    margin-bottom: .75rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif !important;
    position: relative;
    padding-left: 1rem;
}

#kSidePanel .menu-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #00d4ff, #f4c248);
    border-radius: 2px;
}

#kSidePanel .side-link {
    display: flex !important;
    align-items: center;
    gap: .75rem;
    color: #d9f6ff !important;
    text-decoration: none !important;
    padding: .75rem 1rem;
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    margin-bottom: .5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

#kSidePanel .side-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

#kSidePanel .side-link:hover::before {
    left: 100%;
}

#kSidePanel .side-link:hover {
    color: #00d4ff !important;
    border-color: rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(0, 212, 255, 0.05);
}

#kSidePanel .side-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#kSidePanel .side-link:hover i {
    transform: scale(1.15);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

#kSidePanel .side-link.text-danger:hover {
    color: #ff6b6b !important;
    border-color: rgba(255, 107, 107, 0.5);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.05));
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.2), inset 0 0 20px rgba(255, 107, 107, 0.05);
}

#kSidePanel .side-link.text-danger:hover i {
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.8);
}

#kSidePanel .form-select {
    background: rgba(5, 24, 55, 0.8) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    color: #d9f6ff !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

#kSidePanel .form-select:focus {
    border-color: #00d4ff !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3) !important;
}

#kSidePanel .btn-warning {
    background: linear-gradient(135deg, #f4c248, #d4a428) !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 194, 72, 0.3);
}

#kSidePanel .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 194, 72, 0.5);
}

/* Side Toggle Button Enhancement */
.side-toggle-btn {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05)) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    color: #00d4ff !important;
    border-radius: 12px !important;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.side-toggle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.side-toggle-btn:hover::before {
    width: 300px;
    height: 300px;
}

.side-toggle-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(0, 212, 255, 0.1)) !important;
    border-color: rgba(0, 212, 255, 0.5) !important;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.side-toggle-btn:active {
    transform: scale(0.95);
}

/* Login Page Styling */
.login-page .footer-section,
.login-page .back-to-top {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-login-page {
        display: block !important;
    }
    
    .mobile-login-logo {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .mobile-login-logo img {
        width: 80px;
        height: 80px;
        border-radius: 16px;
        border: 2px solid rgba(0, 212, 255, 0.4);
        margin-bottom: 1rem;
    }
    
    .mobile-login-logo h1 {
        color: #f4c248 !important;
        font-family: 'Orbitron', sans-serif !important;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .mobile-login-logo p {
        color: #d9f6ff;
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.9rem;
    }
    
    .mobile-login-form {
        padding: 1.5rem;
    }
    
    .mobile-login-form .form-floating {
        margin-bottom: 1rem;
    }
    
    .mobile-login-form .btn {
        width: 100%;
        padding: 0.875rem;
        font-size: 1rem;
        border-radius: 12px;
    }
}

.login-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 70px);
    align-items: center;
}

.login-branding {
    background: linear-gradient(135deg, rgba(7,21,47,0.95) 0%, rgba(11,39,79,0.92) 45%, rgba(6,63,97,0.88) 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-branding::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.login-branding-content {
    position: relative;
    z-index: 1;
}

.login-branding img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    border: 3px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.login-branding h1 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.login-branding p {
    color: #d9f6ff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    max-width: 400px;
    line-height: 1.6;
}

.login-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #bfefff;
    font-family: 'Rajdhani', sans-serif;
}

.login-feature i {
    width: 40px;
    height: 40px;
    background: linear-gradient(130deg, #00d4ff, #05a7cd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03213f;
    font-size: 1.2rem;
}

.login-form-container {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .login-layout {
        grid-template-columns: 1fr;
    }
    .login-branding {
        display: none;
    }
}

/* Register Page Styling */
.register-page .footer-section,
.register-page .back-to-top {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-register-page {
        display: block !important;
    }
    
    .mobile-register-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .mobile-register-header img {
        width: 80px;
        height: 80px;
        border-radius: 16px;
        border: 2px solid rgba(0, 212, 255, 0.4);
        margin-bottom: 1rem;
    }
    
    .mobile-register-header h1 {
        color: #f4c248 !important;
        font-family: 'Orbitron', sans-serif !important;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .mobile-register-header p {
        color: #d9f6ff;
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.9rem;
    }
    
    .mobile-register-form {
        padding: 1.5rem;
    }
    
    .mobile-register-form .form-floating {
        margin-bottom: 1rem;
    }
    
    .mobile-register-form .btn {
        width: 100%;
        padding: 0.875rem;
        font-size: 1rem;
        border-radius: 12px;
    }
}

.register-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 70px);
    align-items: center;
}

.register-branding {
    background: linear-gradient(135deg, rgba(7,21,47,0.95) 0%, rgba(11,39,79,0.92) 45%, rgba(6,63,97,0.88) 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.register-branding img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    border: 3px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    margin-bottom: 2rem;
}

.register-branding h1 {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.register-branding p {
    color: #d9f6ff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    max-width: 400px;
}

.register-form-container {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
}

.register-form-card {
    width: 100%;
    max-width: 550px;
}

#selectedCoordsPreview {
    margin-top: .55rem;
    font-family: 'Rajdhani', sans-serif;
    color: #bfefff;
}

.map-action-row {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .6rem;
}

@media (max-width: 992px) {
    .register-layout { grid-template-columns: 1fr; }
    .register-branding { display: none; }
    .register-form-container { padding: 1.5rem; max-height: none; }
}

/* Order Page Styling */
@media (max-width: 768px) {
    .mobile-order-page {
        display: block !important;
    }
    
    .mobile-header {
        text-align: center;
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .mobile-header h1 {
        color: #f4c248 !important;
        font-family: 'Orbitron', sans-serif !important;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .mobile-header p {
        color: #d9f6ff;
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.9rem;
    }
    
    .mobile-order-section {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .mobile-order-section h3 {
        color: #f4c248 !important;
        font-family: 'Orbitron', sans-serif !important;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .mobile-order-section .form-floating {
        margin-bottom: 1rem;
    }
    
    .mobile-order-summary {
        position: fixed;
        bottom: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(160deg, rgba(6, 25, 57, 0.98), rgba(4, 16, 39, 0.95));
        border-top: 2px solid rgba(0, 212, 255, 0.4);
        padding: 1rem;
        z-index: 999;
    }
    
    .mobile-order-summary .btn {
        width: 100%;
        padding: 0.875rem;
        font-size: 1rem;
        border-radius: 12px;
    }
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.order-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.order-sidebar {
    position: sticky;
    top: 100px;
}

.order-section {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.order-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 215, 0, 0.15);
}

.order-section-title {
    color: #f4c248 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-section-title i {
    color: #00d4ff;
}

.order-summary-card {
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

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

.summary-label {
    color: #d9f6ff;
    font-family: 'Rajdhani', sans-serif;
}

.summary-value {
    color: #f4c248;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.summary-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
}

.summary-total .summary-label {
    font-size: 1.1rem;
    font-weight: 700;
}

.summary-total .summary-value {
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .order-layout {
        grid-template-columns: 1fr;
    }
    .order-sidebar {
        position: static;
    }
}

/* Home Page Mobile Styling */
@media (max-width: 767px) {
    .mobile-home-hero {
        display: block !important;
        min-height: auto;
        background: linear-gradient(135deg, rgba(7,21,47,0.98), rgba(11,39,79,0.95));
        padding: 1.5rem 1rem 2rem 1rem;
    }

    .desktop-layout {
        display: none !important;
    }

    .mobile-home-logo {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .mobile-home-logo img {
        width: 64px;
        height: 64px;
        border-radius: 12px;
        border: 2px solid rgba(0, 212, 255, 0.4);
        margin-bottom: 0.75rem;
    }

    .mobile-home-logo h1 {
        color: #f4c248 !important;
        font-family: 'Orbitron', sans-serif !important;
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }

    .mobile-home-logo p {
        color: #d9f6ff;
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .mobile-hero-title {
        color: #d9f6ff;
        font-family: 'Rajdhani', sans-serif;
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        text-align: center;
    }

    .mobile-hero-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .mobile-hero-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        color: #bfefff;
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.75rem;
        text-align: center;
        padding: 0.5rem;
    }

    .mobile-hero-feature i {
        width: 28px;
        height: 28px;
        background: linear-gradient(130deg, #00d4ff, #05a7cd);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #03213f;
        font-size: 0.85rem;
    }

    .mobile-service-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .mobile-service-card {
        background: linear-gradient(160deg, rgba(6, 25, 57, 0.92), rgba(4, 16, 39, 0.88));
        border: 2px solid rgba(0, 212, 255, 0.3);
        border-radius: 12px;
        padding: 1rem;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .mobile-service-card:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 212, 255, 0.5);
    }

    .mobile-service-card i {
        font-size: 1.5rem;
        color: #00d4ff;
        margin-bottom: 0.5rem;
    }

    .mobile-service-card h4 {
        color: #f4c248 !important;
        font-family: 'Orbitron', sans-serif !important;
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .mobile-service-card p {
        color: #d9f6ff;
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.7rem;
    }
}

@media (min-width: 768px) {
    .mobile-home-hero {
        display: none !important;
    }
}

/* Mobile shell fixes */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
canvas,
svg {
    max-width: 100%;
}

@media (max-width: 768px) {
    body,
    #main-bg {
        padding-top: 80px !important;
        padding-bottom: calc(70px + env(safe-area-inset-bottom)) !important;
        background-attachment: scroll !important;
    }

    body::before {
        width: 100%;
        background-attachment: scroll;
    }

    .top-brandbar {
        display: block !important;
        min-height: 64px;
    }

    .top-brandbar .container-fluid {
        min-height: 64px;
        gap: 0.5rem;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .top-brandbar .brand-heading {
        min-width: 0;
        min-height: 64px;
        flex: 1 1 auto;
    }

    .top-brandbar .brand-heading .brand-logo {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
        max-width: 40px;
        border-radius: 10px;
    }

    .navbar-brand-title {
        min-width: 0;
        max-width: calc(100vw - 112px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 1rem !important;
        line-height: 1.15;
    }

    .home-header-actions {
        display: none !important;
    }

    .side-toggle-btn {
        display: flex !important;
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
        font-size: 1rem;
    }

    .k-sidepanel {
        display: flex !important;
        width: min(92vw, 380px) !important;
    }

    .offcanvas-backdrop {
        z-index: 1040;
    }

    .offcanvas {
        z-index: 1045;
    }

    main {
        width: 100%;
        padding-bottom: calc(80px + env(safe-area-inset-bottom)) !important;
    }

    .container,
    .container-fluid {
        max-width: 100%;
    }

    .position-fixed.top-0.end-0 {
        left: 0 !important;
        right: 0 !important;
        min-width: 0 !important;
        width: 100% !important;
        padding: 0.75rem !important;
    }

    .toast {
        min-width: 0 !important;
        width: 100% !important;
    }

    .table-responsive,
    .admin-table-card,
    .card,
    .auth-card,
    .contact-card,
    .simple-card,
    .enterprise-card {
        max-width: 100%;
    }

    .table {
        min-width: 640px;
    }

    .mobile-bottom-nav {
        display: flex !important;
        justify-content: space-around;
        align-items: stretch;
        min-height: calc(62px + env(safe-area-inset-bottom));
        max-height: none;
        padding-bottom: env(safe-area-inset-bottom);
        z-index: 1030;
    }

    .mobile-nav-item {
        min-width: 0;
        flex: 1 1 0;
        padding: 0.45rem 0.25rem;
    }

    .mobile-nav-item i {
        font-size: 1.2rem;
        margin-bottom: 0.15rem;
    }

    .mobile-nav-item span {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.68rem;
    }

    .mobile-home-hero {
        padding-top: 1rem;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }

    .mobile-service-card {
        min-width: 0;
        text-decoration: none;
    }
}

@media (max-width: 380px) {
    .navbar-brand-title {
        max-width: calc(100vw - 104px);
        font-size: 0.92rem !important;
    }

    .mobile-service-grid {
        grid-template-columns: 1fr;
    }
}

/* Register page responsive overflow fixes */
html,
body {
    width: 100%;
    overflow-x: hidden;
}

body::before {
    width: 100%;
}

.register-page main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.register-page .top-brandbar .container-fluid,
.register-page .brand-heading,
.register-page .register-layout,
.register-page .register-branding,
.register-page .register-form-container,
.register-page .register-form-card,
.register-page .auth-form,
.register-page .row,
.register-page .col-md-6,
.register-page .input-group,
.register-page .form-control,
.register-page textarea {
    min-width: 0;
    max-width: 100%;
}

.register-page .register-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 70px);
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin-top: 70px;
}

.register-page .register-branding {
    min-height: calc(100svh - 70px);
    padding: clamp(1.5rem, 3vw, 3rem);
    max-width: 100%;
}

.register-page .register-branding h1 {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.register-page .register-branding p {
    width: 100%;
    max-width: 25rem;
}

.register-page .register-form-container {
    min-height: calc(100svh - 70px);
    max-height: none;
    overflow: visible;
    align-items: flex-start;
    padding: clamp(1rem, 2.6vw, 3rem);
    width: 100%;
    max-width: 100%;
}

.register-page .register-form-card {
    width: min(100%, 42rem);
    max-width: 100%;
    margin: clamp(1rem, 2vw, 2rem) auto;
    padding: clamp(1rem, 2vw, 2.5rem);
}

.register-page .auth-form .row {
    --bs-gutter-x: clamp(0.75rem, 1.5vw, 1.5rem);
}

.register-page .auth-form .input-group {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.register-page .auth-form .input-group-text {
    flex: 0 0 auto;
    min-width: auto;
    white-space: nowrap;
}

.register-page .auth-form .form-control {
    min-width: 0;
    width: 100%;
    flex: 1 1 auto;
}

.register-page .register-label-row {
    flex-wrap: wrap;
}

.register-page .map-select-btn {
    max-width: 100%;
    white-space: normal;
}

.register-page #addressMapPanel,
.register-page .address-map-panel,
.register-page #registerAddressMap {
    max-width: 100%;
    width: 100%;
}

@media (max-width: 1199.98px) {
    .register-page .register-layout {
        grid-template-columns: 1fr;
    }

    .register-page .register-form-card {
        width: min(100%, 38rem);
    }
}

@media (max-width: 991.98px) {
    .register-page .register-layout {
        grid-template-columns: 1fr !important;
    }

    .register-page .register-branding {
        display: none !important;
    }

    .register-page .register-form-container {
        min-height: auto;
        padding: clamp(1rem, 4vw, 2rem);
    }
}

@media (max-width: 767.98px) {
    .register-page .mobile-register-page {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding-left: clamp(0.875rem, 4vw, 1.5rem);
        padding-right: clamp(0.875rem, 4vw, 1.5rem);
    }

    .register-page .mobile-register-page .row {
        margin-left: 0;
        margin-right: 0;
    }

    .register-page .mobile-register-page .col-6 {
        min-width: 0;
        padding-left: 0.375rem;
        padding-right: 0.375rem;
    }

    .register-page .mobile-input,
    .register-page .mobile-btn {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .register-page .mobile-register-page .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

/* ========================================
   KLICHNADS PREMIUM DESIGN SYSTEM
   Modern SaaS + Logistics + Enterprise
   ======================================== */

:root {
    /* Premium Brand Colors */
    --premium-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --enterprise-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --tech-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --warm-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    
    /* Solid Colors */
    --primary-dark: #0a3555;
    --accent-purple: #667eea;
    --accent-pink: #f5576c;
    --accent-blue: #4facfe;
    --accent-green: #43e97b;
    
    /* Text Colors */
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-light: #8b8b9e;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9ff;
    --bg-dark: #0f0f1a;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 32px rgba(102, 126, 234, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   PREMIUM NAVBAR
   ======================================== */

.premium-navbar {
    background: linear-gradient(92deg, rgba(7,31,62,.98), rgba(6,70,101,.94), rgba(5,121,156,.88)) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    padding: var(--spacing-sm) 0;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.premium-navbar.scrolled {
    background: linear-gradient(92deg, rgba(7,31,62,.99), rgba(6,70,101,.97), rgba(5,121,156,.95)) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    padding: var(--spacing-xs) 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.premium-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.premium-brand:hover {
    transform: scale(1.02);
}

.brand-logo-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1;
}

.brand-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    color: #bfefff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #d9f6ff;
    text-decoration: none;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--premium-gradient);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: #f4c248;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.98), rgba(4, 16, 39, 0.96));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    min-width: 400px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-xl);
}

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

.mega-menu {
    min-width: 600px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.mega-menu-section h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #f4c248;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.mega-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    color: #d9f6ff;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
}

.mega-link:hover {
    color: #f4c248;
    transform: translateX(5px);
}

.mega-link i {
    color: #00d4ff;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.btn-premium-cta {
    background: var(--premium-gradient);
    color: var(--text-white);
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-xl);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-glow);
}

.btn-premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.5);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: #d9f6ff;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: linear-gradient(160deg, rgba(6, 25, 57, 0.98), rgba(4, 16, 39, 0.96));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: var(--spacing-lg);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-normal);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    color: #d9f6ff;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    background: rgba(0, 212, 255, 0.12);
    color: #f4c248;
}

.mobile-nav-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding-left: var(--spacing-md);
}

.mobile-nav-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: #f4c248;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Navbar */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .navbar-content {
        padding: 0 var(--spacing-md);
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .btn-premium-cta {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.85rem;
    }
}

/* ========================================
   PREMIUM HERO SECTION
   ======================================== */

.premium-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xxl) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 87, 108, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: var(--radius-xl);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--accent-purple);
    margin-bottom: var(--spacing-lg);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.hero-title span {
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: var(--spacing-xl);
}

.hero-cta-group {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--premium-gradient);
    color: var(--text-white);
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-xl);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-glow);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-xl);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   PLATFORM SECTION
   ======================================== */

.platform-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.section-label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.platform-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--premium-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

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

.platform-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.75rem;
    background: var(--premium-gradient);
    color: var(--text-white);
}

.platform-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.platform-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all var(--transition-fast);
}

.platform-link:hover {
    gap: var(--spacing-sm);
}

/* ========================================
   GLASSMORPHISM
   ======================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

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

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 32px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 48px rgba(102, 126, 234, 0.5);
    }
}

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

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-gradient {
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--premium-gradient);
}

.bg-gradient-secondary {
    background: var(--secondary-gradient);
}

.bg-gradient-enterprise {
    background: var(--enterprise-gradient);
}

.bg-gradient-tech {
    background: var(--tech-gradient);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.rounded-premium {
    border-radius: var(--radius-lg);
}

/* ========================================
# PREMIUM FOOTER STYLES
# ======================================== */

.premium-footer {
    background: var(--bg-dark);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

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

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

.footer-brand h3.footer-brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
    font-family: 'Outfit', sans-serif;
}

.footer-brand p.footer-brand-tagline {
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.footer-brand p.footer-brand-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
}

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

.footer-column h4.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    font-family: 'Outfit', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-links li a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

.footer-bottom-left .copyright {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.footer-bottom-links {
    color: var(--text-light);
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
}

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

.footer-bottom-links .separator {
    margin: 0 var(--spacing-xs);
    color: var(--text-light);
}

.footer-bottom-right .footer-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-bottom-right .footer-location i {
    color: var(--accent-green);
}

/* ========================================
# PLATFORM CARDS AND GRID
# ======================================== */

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

@media (min-width: 1024px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .platform-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.platform-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
}

.platform-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.platform-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: color var(--transition-fast);
}

.platform-link:hover {
    color: var(--accent-purple);
}

.platform-link i {
    transition: transform var(--transition-fast);
}

.platform-link:hover i {
    transform: translateX(4px);
}

/* ========================================
# PREMIUM HERO SECTION
# ======================================== */

.premium-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%) !important;
    position: relative;
    overflow: hidden;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--premium-gradient);
    opacity: 0.1;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge i {
    color: var(--accent-blue);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
}

.hero-title span {
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
# HERO BUTTONS
# ======================================== */

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--premium-gradient);
    color: var(--text-white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ========================================
# PLATFORM SECTIONS
# ======================================== */

.platform-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary) !important;
}

.platform-section:nth-child(even) {
    background: var(--bg-primary) !important;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
    padding: 0 var(--spacing-md);
}

.section-label {
    display: inline-block;
    background: var(--premium-gradient);
    color: var(--text-white);
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-family: 'Outfit', sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
# GLASS CARDS
# ======================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-card h3 {
    color: var(--text-white);
}

.glass-card p {
    color: var(--text-light);
}

/* ========================================
# LOADING STATES
# ======================================== */

.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

@keyframes skeletonLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--text-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    right: var(--spacing-lg);
}

/* ========================================
# PAGE TRANSITIONS
# ======================================== */

.page-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
# RESPONSIVE DESIGN FIXES
# ======================================== */

/* Mobile (< 576px) */
@media (max-width: 575.98px) {
    .premium-hero {
        min-height: 60vh;
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .section-header {
        padding: 0 var(--spacing-sm);
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

/* Tablet (576px - 991px) */
@media (min-width: 576px) and (max-width: 991.98px) {
    .premium-hero {
        min-height: 70vh;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .platform-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .platform-card:hover {
        transform: none;
    }
    
    .platform-card:active {
        transform: scale(0.98);
    }
    
    .btn-hero-primary:hover,
    .btn-hero-secondary:hover {
        transform: none;
    }
    
    .btn-hero-primary:active,
    .btn-hero-secondary:active {
        transform: scale(0.98);
    }
}

/* High DPI/Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .platform-icon {
        font-size: 1.5rem;
    }
}

/* Landscape Mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
    .premium-hero {
        min-height: 50vh;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}

/* Print Styles */
@media print {
    .premium-navbar,
    .mobile-bottom-nav,
    .back-to-top,
    .footer-social {
        display: none !important;
    }
    
    .platform-card {
        page-break-inside: avoid;
    }
}

/* ========================================
# GLOBAL RANDOM BACKGROUND + GLASS THEME
# ======================================== */

:root {
    --site-glass-bg: rgba(255, 255, 255, 0.18);
    --site-glass-bg-strong: rgba(255, 255, 255, 0.28);
    --site-glass-bg-dark: rgba(5, 12, 28, 0.58);
    --site-glass-bg-dark-strong: rgba(5, 12, 28, 0.72);
    --site-glass-border: rgba(255, 255, 255, 0.24);
    --site-glass-border-dark: rgba(125, 211, 252, 0.22);
    --site-glass-shadow: 0 22px 70px rgba(3, 8, 24, 0.22);
    --site-glass-blur: 18px;
}

html.has-random-bg,
body.site-glass-theme,
body#main-bg {
    min-height: 100%;
    background:
        linear-gradient(135deg, rgba(3, 8, 22, 0.46), rgba(8, 27, 52, 0.35), rgba(4, 42, 62, 0.31)),
        var(--bg-image-url) center center / cover no-repeat fixed !important;
}

body.site-glass-theme {
    color: #f8fbff;
}

body.site-glass-theme::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.36)),
        radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.14), transparent 34%),
        radial-gradient(circle at 82% 12%, rgba(6, 182, 212, 0.14), transparent 32%);
}

body.site-glass-theme main,
body.site-glass-theme nav,
body.site-glass-theme footer,
body.site-glass-theme section,
body.site-glass-theme .container,
body.site-glass-theme .container-fluid {
    position: relative;
    z-index: 1;
}

body.site-glass-theme .premium-navbar,
body.site-glass-theme .premium-navbar.scrolled,
body.site-glass-theme .top-brandbar,
body.site-glass-theme .mobile-bottom-nav,
body.site-glass-theme .mobile-nav,
body.site-glass-theme .dropdown-menu,
body.site-glass-theme .mega-menu,
body.site-glass-theme .k-sidepanel,
body.site-glass-theme .modal-content,
body.site-glass-theme .toast,
body.site-glass-theme .premium-footer,
body.site-glass-theme .footer-section {
    background: var(--site-glass-bg-dark-strong) !important;
    border-color: var(--site-glass-border-dark) !important;
    box-shadow: var(--site-glass-shadow);
    backdrop-filter: blur(var(--site-glass-blur)) saturate(145%);
    -webkit-backdrop-filter: blur(var(--site-glass-blur)) saturate(145%);
}

body.site-glass-theme section,
body.site-glass-theme .platform-section,
body.site-glass-theme .platform-section:nth-child(even),
body.site-glass-theme .hero,
body.site-glass-theme .premium-hero,
body.site-glass-theme .neo-hero,
body.site-glass-theme .order-section,
body.site-glass-theme .mobile-order-section {
    background: transparent !important;
}

body.site-glass-theme .card,
body.site-glass-theme main .card,
body.site-glass-theme .glass-card,
body.site-glass-theme .platform-card,
body.site-glass-theme .service-card,
body.site-glass-theme .neo-service-card,
body.site-glass-theme .future-main-card,
body.site-glass-theme .future-side-card,
body.site-glass-theme .auth-card,
body.site-glass-theme .register-card,
body.site-glass-theme .register-form-card,
body.site-glass-theme .form-card,
body.site-glass-theme .profile-main-card,
body.site-glass-theme .profile-info-card,
body.site-glass-theme .stats-card,
body.site-glass-theme .admin-table-card,
body.site-glass-theme .service-map-card,
body.site-glass-theme .service-item-card,
body.site-glass-theme .enterprise-card,
body.site-glass-theme .contact-card,
body.site-glass-theme .simple-card,
body.site-glass-theme .delivery-quick-card,
body.site-glass-theme .delivery-step-card,
body.site-glass-theme .local-trust-card,
body.site-glass-theme .enterprise-highlight,
body.site-glass-theme .enterprise-map-shell,
body.site-glass-theme .location-map-card,
body.site-glass-theme .order-summary-card,
body.site-glass-theme .mobile-card,
body.site-glass-theme .mobile-service-card,
body.site-glass-theme .neo-overlay-card,
body.site-glass-theme .hero-stat-card,
body.site-glass-theme .hero-code-card,
body.site-glass-theme .delivery-estimator,
body.site-glass-theme .menu-block {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.1)) !important;
    border: 1px solid var(--site-glass-border) !important;
    box-shadow: var(--site-glass-shadow);
    backdrop-filter: blur(var(--site-glass-blur)) saturate(145%);
    -webkit-backdrop-filter: blur(var(--site-glass-blur)) saturate(145%);
}

body.site-glass-theme .card-header,
body.site-glass-theme .card-footer,
body.site-glass-theme .form-card-header,
body.site-glass-theme .admin-table-card .table thead th,
body.site-glass-theme .toast-header {
    background: rgba(5, 12, 28, 0.46) !important;
    border-color: var(--site-glass-border-dark) !important;
    color: #f8fbff !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.site-glass-theme .card-body,
body.site-glass-theme .card-footer,
body.site-glass-theme .toast-body,
body.site-glass-theme .table,
body.site-glass-theme .table tbody tr,
body.site-glass-theme .list-group-item,
body.site-glass-theme .accordion-item,
body.site-glass-theme .accordion-button {
    background: transparent !important;
    color: #f8fbff !important;
}

body.site-glass-theme h1,
body.site-glass-theme h2,
body.site-glass-theme h3,
body.site-glass-theme h4,
body.site-glass-theme h5,
body.site-glass-theme h6,
body.site-glass-theme .section-title,
body.site-glass-theme .section-heading,
body.site-glass-theme .footer-brand-title,
body.site-glass-theme .footer-heading,
body.site-glass-theme .brand-name,
body.site-glass-theme .navbar-brand-title {
    color: #ffffff !important;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

body.site-glass-theme p,
body.site-glass-theme li,
body.site-glass-theme label,
body.site-glass-theme small,
body.site-glass-theme span,
body.site-glass-theme .text-muted,
body.site-glass-theme .section-subtitle,
body.site-glass-theme .footer-brand-desc,
body.site-glass-theme .footer-brand-tagline,
body.site-glass-theme .footer-links a,
body.site-glass-theme .mobile-nav-item span,
body.site-glass-theme .mobile-nav-link,
body.site-glass-theme .nav-link,
body.site-glass-theme .side-link {
    color: rgba(248, 251, 255, 0.86) !important;
}

body.site-glass-theme a:not(.btn):not(.premium-brand):not(.mobile-nav-item) {
    color: #bff4ff;
}

body.site-glass-theme .form-control,
body.site-glass-theme .form-select,
body.site-glass-theme textarea,
body.site-glass-theme input,
body.site-glass-theme select {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body.site-glass-theme .form-control::placeholder,
body.site-glass-theme textarea::placeholder,
body.site-glass-theme input::placeholder {
    color: rgba(255, 255, 255, 0.62) !important;
}

body.site-glass-theme .form-control:focus,
body.site-glass-theme .form-select:focus,
body.site-glass-theme textarea:focus,
body.site-glass-theme input:focus {
    background: rgba(255, 255, 255, 0.24) !important;
    border-color: rgba(125, 211, 252, 0.7) !important;
    box-shadow: 0 0 0 0.2rem rgba(6, 182, 212, 0.18) !important;
}

body.site-glass-theme .table {
    --bs-table-bg: transparent;
    --bs-table-color: #f8fbff;
    --bs-table-border-color: rgba(255, 255, 255, 0.16);
    --bs-table-hover-bg: rgba(255, 255, 255, 0.12);
    --bs-table-hover-color: #ffffff;
}

body.site-glass-theme .btn-outline-light,
body.site-glass-theme .btn-outline-primary,
body.site-glass-theme .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.42) !important;
    color: #f8fbff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.site-glass-theme .btn-outline-light:hover,
body.site-glass-theme .btn-outline-primary:hover,
body.site-glass-theme .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

body.site-glass-theme .premium-brand,
body.site-glass-theme .brand-text,
body.site-glass-theme .brand-tagline,
body.site-glass-theme .footer-bottom,
body.site-glass-theme .footer-bottom a,
body.site-glass-theme .footer-location {
    color: rgba(248, 251, 255, 0.9) !important;
}

body.site-glass-theme .mobile-nav-item {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    color: #f8fbff !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.site-glass-theme .map-container,
body.site-glass-theme #map,
body.site-glass-theme [id$="-map"],
body.site-glass-theme [class*="map"] iframe,
body.site-glass-theme [class*="map"] canvas {
    background: rgba(5, 12, 28, 0.35) !important;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    body.site-glass-theme .card,
    body.site-glass-theme main .card,
    body.site-glass-theme .glass-card,
    body.site-glass-theme .platform-card,
    body.site-glass-theme .service-card,
    body.site-glass-theme .auth-card,
    body.site-glass-theme .form-card,
    body.site-glass-theme .premium-navbar,
    body.site-glass-theme .premium-footer {
        background: rgba(5, 12, 28, 0.78) !important;
    }
}

/* Keep the fixed header pinned to the viewport edge; reserve space in content instead. */
body.site-glass-theme,
body#main-bg {
    padding-top: 0 !important;
}

body.site-glass-theme .premium-navbar.fixed-top {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    margin-top: 0 !important;
    z-index: 1100 !important;
    background: rgba(5, 12, 28, 0.94) !important;
    isolation: isolate;
    overflow: visible;
}

body.site-glass-theme main {
    padding-top: 104px !important;
    position: relative;
    z-index: 1;
}

body.site-glass-theme .mobile-nav {
    top: 78px;
    z-index: 1090 !important;
}

body.site-glass-theme .dropdown-menu,
body.site-glass-theme .mega-menu {
    z-index: 1110 !important;
}

@media (max-width: 768px) {
    body.site-glass-theme,
    body.site-glass-theme#main-bg {
        padding-top: 0 !important;
    }

    body.site-glass-theme main {
        padding-top: 92px !important;
    }
}

html.has-random-bg {
    scroll-padding-top: 104px;
}

@media (max-width: 768px) {
    html.has-random-bg {
        scroll-padding-top: 92px;
    }
}
