/* ============================================================
   Freedom Sports Academy — Mac-like Nav Dock v2
   nav-dock.css — Slimmer, Elegant Bottom Navigation
   ============================================================ */

/* ─── Dock Wrapper ─── */
#fsa-dock {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    overflow: visible;
}

/* ─── Gradient Border Wrap (matches header) ─── */
.dock-border-wrap {
    border-radius: 9999px;
    padding: 0;
    background: transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

html.light .dock-border-wrap {
    background: transparent;
}

/* Ambient glow beneath dock */
.dock-border-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 9999px;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(255, 45, 45, 0.12) 0%,
        transparent 65%
    );
    z-index: -1;
    pointer-events: none;
}

/* ─── Dock Container (dark glass in BOTH themes) ─── */
.dock-container {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 5px 10px;
    border-radius: 9999px;
    border: 1px solid #ff2d2d;
    background: rgba(8, 14, 10, 0.82);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.10) inset,
        0 16px 48px rgba(0, 0, 0, 0.35),
        0 0 24px rgba(255, 45, 45, 0.06);
    position: relative;
    transition: box-shadow 0.4s ease;
}

/* Override any light-mode variables */
html.light .dock-container {
    background: rgba(8, 14, 10, 0.86);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 8px 28px rgba(0, 0, 0, 0.28),
        0 0 18px rgba(255, 45, 45, 0.08);
}

/* Top specular line */
.dock-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.16) 20%,
        rgba(255, 45, 45, 0.40) 50%,
        rgba(255, 255, 255, 0.16) 80%,
        transparent
    );
    border-radius: 50%;
    pointer-events: none;
}

/* ─── Logo Item (Horizontally Centered within cell) ─── */
.dock-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    cursor: default;
    width: 60px;
    flex-shrink: 0;
    position: relative;
}

.dock-logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    animation: dock-logo-breathe 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
    margin: 0 auto;
    padding: 2px;
    box-sizing: border-box;
}

@keyframes dock-logo-breathe {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.dock-logo-item:hover .dock-logo-img {
    transform: scale(1.12) rotate(-6deg);
}

/* ─── Tooltip for Nav Dock Logo ─── */
.dock-logo-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.85) translateY(4px);
    background: var(--glass-card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-card-border);
    color: var(--color-on-surface);
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.09em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 7px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.dock-logo-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
}

/* ─── Dock Separator ─── */
.dock-separator {
    width: 1px;
    height: 22px;
    flex-shrink: 0;
    margin: 0 4px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--glass-border) 30%,
        var(--glass-border) 70%,
        transparent
    );
    align-self: center;
}

/* ─── Dock item default text color (always light on dark bg) ─── */
.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 8px;
    border-radius: 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    position: relative;
    cursor: pointer;
    transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
                color 250ms ease;
    min-width: 52px;
}

.dock-item:hover {
    color: #ff2d2d;
}

/* ─── Logout Special Style (Red Accent) ─── */
.dock-item.dock-logout-item {
    color: rgba(255, 69, 58, 0.65);
}

.dock-item.dock-logout-item:hover {
    color: #ff453a !important;
}

.dock-item.dock-logout-item:hover .dock-icon-wrap {
    background: rgba(255, 69, 58, 0.16) !important;
}

/* ─── Active State ─── */
.dock-item.active {
    color: #ff2d2d;
}

html.light .dock-item.active { color: #ff2d2d; }

.dock-item.active .dock-icon-wrap {
    background: #ff2d2d;
    box-shadow:
        0 0 0 1px rgba(255, 45, 45, 0.40),
        0 4px 20px rgba(255, 45, 45, 0.40),
        0 2px 8px rgba(0, 0, 0, 0.20);
}

.dock-item.active .dock-icon-wrap .material-symbols-outlined {
    color: #2d0000;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

/* ─── Icon Wrapper ─── */
.dock-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 350ms cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
}

.dock-item:not(.active):hover .dock-icon-wrap {
    background: rgba(255, 45, 45, 0.10);
    transform: scale(1.06);
}

html.light .dock-item:not(.active):hover .dock-icon-wrap {
    background: rgba(255, 45, 45, 0.12);
}

.dock-icon-wrap .material-symbols-outlined {
    font-size: 19px;
    font-variation-settings: 'FILL' 0, 'wght' 350, 'GRAD' 0, 'opsz' 24;
    transition: font-variation-settings 0.25s ease, color 0.25s ease;
}

.dock-item:hover .dock-icon-wrap .material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ─── Dock Label ─── */
.dock-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.07em;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 0.25s ease;
}

/* ─── Mac Magnification Effect ─── */
/* JS sets --dock-scale on each item */
.dock-item {
    transform: translateY(0);
}

/* ─── Tooltip ─── */
.dock-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.85) translateY(4px);
    background: var(--glass-card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-card-border);
    color: var(--color-on-surface);
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.09em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 7px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.dock-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
}

/* ─── Active Indicator Dot ─── */
.dock-active-dot {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #ff2d2d;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 45, 45, 0.60);
}

.dock-item.active .dock-active-dot {
    opacity: 1;
}

/* ─── Contact Button ─── */
.dock-item-contact {
    background: none;
    border: none;
    font: inherit;
}

/* ─── Mobile ─── */
@media (max-width: 600px) {
    #fsa-dock {
        bottom: 12px;
        width: 96%;
    }

    .dock-border-wrap { width: 100%; }

    .dock-container {
        gap: 0;
        padding: 5px 8px;
        justify-content: space-around;
        width: 100%;
    }

    .dock-item {
        padding: 5px 6px;
        flex: 1;
        max-width: 58px;
        min-width: unset;
    }

    .dock-icon-wrap {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .dock-icon-wrap .material-symbols-outlined { font-size: 17px; }
    .dock-separator { display: none; }
    .dock-logo-item { display: none; }
    .dock-item::after { display: none; }
}

@media (max-width: 380px) {
    .dock-label { display: none; }
    .dock-item { padding: 7px 4px; }
}

@media (min-width: 601px) and (max-width: 900px) {
    .dock-container { gap: 1px; }
    .dock-item { padding: 5px 7px; }
}

/* ────────────────────────────────────────────────────
   CONTACT MODAL — HUD v2
──────────────────────────────────────────────────── */
#contact-modal {
    position: fixed;
    inset: 0;
    z-index: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                visibility 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#contact-modal.modal-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* ─── HUD Card ─── */
.hud-modal-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 20px;
    background: rgba(6, 10, 8, 0.92);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 45, 45, 0.30);
    box-shadow:
        0 0 0 1px rgba(255, 45, 45, 0.08) inset,
        0 32px 80px rgba(0, 0, 0, 0.60),
        0 0 60px rgba(255, 45, 45, 0.06);
    transform: translateY(32px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

#contact-modal.modal-open .hud-modal-card {
    transform: translateY(0) scale(1);
}

/* Scanlines overlay */
.hud-scanlines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 45, 45, 0.012) 2px,
        rgba(255, 45, 45, 0.012) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* HUD corner brackets */
.hud-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    z-index: 5;
    pointer-events: none;
}

.hud-tl { top: 8px; left: 8px; border-top: 1.5px solid rgba(255,45,45,0.70); border-left: 1.5px solid rgba(255,45,45,0.70); }
.hud-tr { top: 8px; right: 8px; border-top: 1.5px solid rgba(255,45,45,0.70); border-right: 1.5px solid rgba(255,45,45,0.70); }
.hud-bl { bottom: 8px; left: 8px; border-bottom: 1.5px solid rgba(255,45,45,0.30); border-left: 1.5px solid rgba(255,45,45,0.30); }
.hud-br { bottom: 8px; right: 8px; border-bottom: 1.5px solid rgba(255,45,45,0.30); border-right: 1.5px solid rgba(255,45,45,0.30); }

/* Close button */
.hud-close-btn {
    position: absolute;
    top: 48px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid rgba(255, 45, 45, 0.25);
    background: rgba(255, 45, 45, 0.06);
    color: rgba(255, 45, 45, 0.70);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.hud-close-btn:hover {
    background: rgba(255, 59, 48, 0.18);
    border-color: rgba(255, 59, 48, 0.50);
    color: #ff3b30;
    transform: rotate(90deg);
}

.hud-close-btn .material-symbols-outlined { font-size: 15px; }

/* ─── HUD Top Bar ─── */
.hud-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 45, 45, 0.15);
    background: rgba(255, 45, 45, 0.04);
    position: relative;
    z-index: 2;
}

.hud-topbar-left,
.hud-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hud-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff2d2d;
    animation: hud-blink 2s step-end infinite;
    flex-shrink: 0;
}

@keyframes hud-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.hud-topbar-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 45, 45, 0.85);
}

.hud-topbar-sep {
    width: 1px;
    height: 12px;
    background: rgba(255, 45, 45, 0.20);
}

/* ─── HUD Body ─── */
.hud-body {
    padding: 24px 28px 28px;
    position: relative;
    z-index: 2;
}

/* Title row */
.hud-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hud-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 45, 45, 0.35);
    background: rgba(255, 45, 45, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hud-icon {
    font-size: 26px;
    color: #ff2d2d;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 32;
}

.hud-title {
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 4px;
}

.hud-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.38);
}

/* ─── Form Fields ─── */
.hud-form { display: flex; flex-direction: column; gap: 14px; }

.hud-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hud-form-group { display: flex; flex-direction: column; gap: 6px; }

.hud-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 45, 45, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hud-label-prefix {
    color: rgba(255, 45, 45, 0.30);
    font-size: 10px;
}

.hud-input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 45, 45, 0.18);
    color: rgba(255, 255, 255, 0.90);
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    outline: none;
    resize: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.hud-input::placeholder {
    color: rgba(255, 255, 255, 0.22);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
}

.hud-input:focus {
    border-color: rgba(255, 45, 45, 0.60);
    background: rgba(255, 45, 45, 0.04);
    box-shadow: 0 0 0 2px rgba(255, 45, 45, 0.12);
    color: #ffffff;
}

.hud-input.is-invalid,
.hud-select.is-invalid {
    border-color: rgba(255, 45, 45, 0.85) !important;
    background: rgba(255, 45, 45, 0.06) !important;
    box-shadow: 0 0 0 2px rgba(255, 45, 45, 0.20) !important;
}

.hud-textarea { min-height: 88px; }

/* ─── Styled Select Overrides ─── */
.hud-select {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
}
.hud-select option,
.hud-select optgroup {
    background: #192122;
    color: #dce4e5;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
}
html.light .hud-select option,
html.light .hud-select optgroup {
    background: #ffffff !important;
    color: #1a0606 !important;
}


/* ─── Submit Button ─── */
.hud-submit {
    position: relative;
    width: 100%;
    padding: 14px;
    background: #ff2d2d;
    color: #0a1400;
    border: none;
    border-radius: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    margin-top: 4px;
}

.hud-submit:hover {
    background: #ff4444;
    transform: translateY(-2px);
}

.hud-submit:active { transform: scale(0.97); }

.hud-submit-icon {
    font-size: 16px;
    font-variation-settings: 'FILL' 1;
}

.hud-submit-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    transform: translateX(-200%);
    transition: transform 0s;
}

.hud-submit:hover .hud-submit-glow {
    transform: translateX(200%);
    transition: transform 0.6s ease;
}

/* ─── Mobile HUD ─── */
@media (max-width: 600px) {
    .hud-body { padding: 20px 18px 22px; }
    .hud-form-row { grid-template-columns: 1fr; gap: 14px; }
    .hud-title { font-size: 18px; }
    .hud-title-row { gap: 12px; margin-bottom: 18px; }
    .hud-icon-wrap { width: 40px; height: 40px; }
    .hud-icon { font-size: 22px; }
}

/* -------------------------------------------
   DOCK COMMUNICATION SUBMENU
------------------------------------------- */

/* Make logo trigger interactive */
.dock-logo-item {
    cursor: pointer !important;
    position: relative;
}

.dock-comm-submenu {
    position: fixed;          /* Viewport-level: escapes dock-container overflow */
    bottom: auto;             /* Set via JS from getBoundingClientRect */
    left: auto;               /* Set via JS */
    transform: translateX(-50%) translateY(12px);
    width: 300px;
    border-radius: 16px;
    background: rgba(6, 10, 8, 0.96);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 45, 45, 0.30);
    box-shadow: 0 -12px 40px rgba(0,0,0,0.50), 0 0 32px rgba(255,45,45,0.05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.22,1,0.36,1),
                transform 0.28s cubic-bezier(0.22,1,0.36,1),
                visibility 0.28s;
    z-index: 600;
    overflow: hidden;
}

.dock-comm-submenu.dock-submenu-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dock-submenu-arrow {
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid rgba(255, 45, 45, 0.30);
    z-index: 2;
}

.dock-submenu-arrow::after {
    content: '';
    position: absolute;
    top: -9px;
    left: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(6, 10, 8, 0.96);
}

.dock-submenu-topbar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 45, 45, 0.10);
    background: rgba(255, 45, 45, 0.03);
}

.dock-submenu-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff2d2d;
    animation: hud-blink 2s step-end infinite;
    flex-shrink: 0;
}

.dock-submenu-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 45, 45, 0.75);
    flex: 1;
}

.dock-submenu-close {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid rgba(255, 45, 45, 0.18);
    background: rgba(255, 45, 45, 0.04);
    color: rgba(255, 45, 45, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.dock-submenu-close:hover {
    background: rgba(255, 59, 48, 0.18);
    border-color: rgba(255, 59, 48, 0.40);
    color: #ff3b30;
    transform: rotate(90deg);
}

.dock-submenu-body {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dock-submenu-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 45, 45, 0.06);
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dock-submenu-row:hover {
    background: rgba(255, 45, 45, 0.07);
    border-color: rgba(255, 45, 45, 0.22);
    transform: translateX(3px);
}

.dock-submenu-row-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 45, 45, 0.14);
    background: rgba(255, 45, 45, 0.05);
    color: rgba(255, 45, 45, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dock-submenu-row:hover .dock-submenu-row-icon {
    background: rgba(255, 45, 45, 0.12);
    color: #ff2d2d;
}

.dock-submenu-row-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.dock-submenu-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 45, 45, 0.38);
}

.dock-submenu-value {
    font-family: 'Geist', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.35;
}

.dock-submenu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    padding: 8px;
    border-top: 1px solid rgba(255, 45, 45, 0.08);
}

.dock-submenu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 6px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.22s ease;
}

.dock-submenu-btn-call { background: #ff2d2d; color: #0a1400; border: none; }
.dock-submenu-btn-call:hover { background: #ff4444; transform: translateY(-2px); }

.dock-submenu-btn-wa { background: #25d366; color: #fff; border: none; }
.dock-submenu-btn-wa:hover { background: #2edc6d; transform: translateY(-2px); }

.dock-submenu-btn-email { background: rgba(255,45,45,0.08); color: rgba(255,45,45,0.80); border: 1px solid rgba(255,45,45,0.20); }
.dock-submenu-btn-email:hover { background: rgba(255,45,45,0.14); color: #ff2d2d; transform: translateY(-2px); }

@media (max-width: 700px) {
    .dock-comm-submenu { display: none !important; }
}

/* -------------------------------------------
   HEADER: FIND US BUTTON (mobile-only)
------------------------------------------- */
.header-findus-btn {
    display: none; /* hidden by default on desktop */
    align-items: center;
    gap: 5px;
    padding: 5px 12px 5px 9px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 45, 45, 0.30);
    background: rgba(255, 45, 45, 0.07);
    color: rgba(255, 45, 45, 0.80);
    font-family: 'JetBrains Mono', monospace;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-findus-label {
    display: inline;
}

.header-findus-btn:hover {
    background: rgba(255, 45, 45, 0.14);
    border-color: rgba(255, 45, 45, 0.55);
    color: #ff2d2d;
}

html.dark .header-findus-btn {
    background: #ffffff;
    color: #ff2d2d;
    border-color: #ffffff;
}

html.light .header-findus-btn {
    background: #ff2d2d;
    color: #ffffff;
    border-color: #ff2d2d;
}

/* Show on mobile only */
@media (max-width: 700px) {
    .header-findus-btn {
        display: flex;
    }
}
