/* ==========================================================================
   WORLD HAULING OPERATION (WHO) - VINTAGE NAUTICAL / AGE OF SAIL STYLESHEET
   World of Sea Battle MMORPG Guild Portal
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@400;600;700;800&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Pirata+One&display=swap');

:root {
    /* Color Palette: Ocean & Weathered Timber */
    --ocean-deep: #070d14;
    --ocean-navy: #0e1a26;
    --ocean-slate: #162638;
    --ocean-card: #121e2c;
    --ocean-border: #22374d;

    /* Color Palette: Antique Parchment */
    --parchment-light: #f7f1e1;
    --parchment-base: #ebdcb9;
    --parchment-dark: #dfcaa0;
    --parchment-shadow: #c4ab7c;
    --parchment-ink: #2b1f14;
    --parchment-muted: #574635;

    /* Color Palette: Burnished Gold & Brass */
    --gold-bright: #ffd700;
    --gold-primary: #d4af37;
    --gold-antique: #c59b27;
    --gold-dark: #8c6a12;
    --gold-glow: rgba(212, 175, 55, 0.35);

    /* Color Palette: Wax Seal Crimson & Accents */
    --crimson-seal: #8b1e0f;
    --crimson-dark: #5c1106;
    --seafoam: #2a9d8f;
    --seafoam-dark: #1b635a;
    --danger-red: #b22222;
    --wood-timber: #23160c;

    /* Typography */
    --font-heading-ornate: 'Cinzel Decorative', Georgia, serif;
    --font-heading: 'Cinzel', Georgia, serif;
    --font-pirate: 'Pirata One', cursive, serif;
    --font-body: 'Crimson Pro', Georgia, serif;

    /* Borders & Shadows */
    --border-brass: 1px solid var(--gold-antique);
    --border-parchment: 1px solid #d1b988;
    --shadow-nautical: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 18px rgba(212, 175, 55, 0.25);
}

/* Base & Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--ocean-deep);
    color: var(--parchment-light);
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(22, 38, 56, 0.8) 0%, rgba(7, 13, 20, 0.95) 75%),
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0 L60 120 M0 60 L120 60 M0 0 L120 120 M0 120 L120 0' stroke='%2322374d' stroke-width='0.4' stroke-opacity='0.15' stroke-dasharray='3,3'/%3E%3Ccircle cx='60' cy='60' r='40' stroke='%2322374d' stroke-width='0.4' stroke-opacity='0.15' fill='none'/%3E%3C/svg%3E");
    background-attachment: fixed;
}

/* Custom Vintage Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--ocean-deep);
    border-left: 1px solid var(--ocean-border);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-dark), var(--gold-antique), var(--gold-dark));
    border-radius: 4px;
    border: 1px solid var(--gold-bright);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-bright);
}

/* Links & Typography */
a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.25s ease;
}
a:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 8px var(--gold-glow);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--parchment-light);
    letter-spacing: 0.05em;
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.0rem; }
h3 { font-size: 1.5rem; }

.font-ornate {
    font-family: var(--font-heading-ornate);
}

.text-gold {
    color: var(--gold-primary) !important;
}
.text-parchment {
    color: var(--parchment-base) !important;
}
.text-muted {
    color: #92a4b8 !important;
}

/* Header & Navigation Bar */
.nautical-nav-wrapper {
    background: linear-gradient(180deg, #101c29 0%, #09111a 100%);
    border-bottom: 2px solid var(--gold-antique);
    box-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 0 15px var(--gold-glow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
}

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

.brand-compass {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 0 6px var(--gold-glow));
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand-logo:hover .brand-compass {
    transform: rotate(180deg);
}

.brand-titles {
    display: flex;
    flex-direction: column;
}
.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold-bright);
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.brand-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--parchment-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--parchment-base);
    padding: 0.55rem 0.9rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid transparent;
    letter-spacing: 0.04em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-toggle-btn {
    display: none;
    background: none;
    border: 1px solid var(--gold-antique);
    color: var(--gold-bright);
    font-size: 1.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
}

/* Containers */
.nautical-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    width: 100%;
}

/* Page Headers */
.page-header-banner {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding: 2rem 1rem;
    background: radial-gradient(circle at 50% 50%, rgba(22, 38, 56, 0.6) 0%, transparent 70%);
}

.page-header-banner h1 {
    font-size: 2.75rem;
    color: var(--gold-bright);
    text-shadow: 0 3px 6px rgba(0,0,0,0.9);
    margin-bottom: 0.5rem;
}

.page-header-banner p {
    font-size: 1.25rem;
    color: var(--parchment-base);
    max-width: 700px;
    margin: 0 auto;
}

.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.25rem auto;
    max-width: 400px;
}
.ornament-divider::before,
.ornament-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-antique), transparent);
}
.ornament-divider .anchor-icon {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* Parchment Box Component */
.parchment-card {
    background: linear-gradient(135deg, #f7f1e1 0%, #ebdcb9 50%, #dfcaa0 100%);
    color: var(--parchment-ink);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7), inset 0 0 25px rgba(139, 106, 18, 0.2);
    border: 1px solid #c4ab7c;
    position: relative;
}

.parchment-card::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px dashed rgba(87, 70, 53, 0.4);
    pointer-events: none;
    border-radius: 2px;
}

.parchment-card h2, 
.parchment-card h3 {
    color: #4a2810;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.4);
}

/* Dark Ocean Nautical Cards */
.nautical-card {
    background: linear-gradient(145deg, #132130 0%, #0e1722 100%);
    border: 1px solid var(--ocean-border);
    border-top: 2px solid var(--gold-antique);
    border-radius: 6px;
    padding: 1.75rem;
    box-shadow: var(--shadow-nautical);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nautical-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-nautical), var(--shadow-gold);
}

/* Wax Seal Badge */
.wax-seal {
    width: 65px;
    height: 65px;
    background: radial-gradient(circle at 35% 35%, #b22d15 0%, #8b1e0f 60%, #4a0d05 100%);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.6), inset 0 0 8px rgba(255,255,255,0.2), inset 0 0 12px rgba(0,0,0,0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ebdcb9;
    font-family: var(--font-heading-ornate);
    font-size: 1.1rem;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    border: 2px solid rgba(139, 30, 15, 0.6);
    flex-shrink: 0;
}

/* Buttons */
.btn-nautical {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.65rem 1.4rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.25s ease;
    border: none;
    text-decoration: none;
}

.btn-primary-gold {
    background: linear-gradient(180deg, #ffd700 0%, #d4af37 50%, #aa8010 100%);
    color: #1a1005;
    border: 1px solid #ffd700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary-gold:hover {
    background: linear-gradient(180deg, #ffe033 0%, #e5c158 50%, #c59b27 100%);
    color: #0d0802;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.55);
    transform: translateY(-2px);
}

.btn-secondary-ocean {
    background: linear-gradient(180deg, #1e3347 0%, #132230 100%);
    color: var(--parchment-light);
    border: 1px solid var(--gold-antique);
}
.btn-secondary-ocean:hover {
    background: linear-gradient(180deg, #27435e 0%, #1a2d40 100%);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    transform: translateY(-2px);
}

.btn-discord {
    background: linear-gradient(180deg, #5865F2 0%, #4752c4 100%);
    color: #ffffff !important;
    border: 1px solid #7289da;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}
.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

/* Badges */
.badge, .badge-rank {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-safe {
    background: rgba(42, 157, 143, 0.2);
    border: 1px solid var(--seafoam);
    color: #48cae4;
}
.badge-danger-moderate {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold-antique);
    color: #ffd166;
}
.badge-danger-high {
    background: rgba(224, 86, 36, 0.2);
    border: 1px solid #e05624;
    color: #ff7b47;
}
.badge-danger-extreme {
    background: rgba(178, 34, 34, 0.25);
    border: 1px solid #b22222;
    color: #ff5a5f;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 5px rgba(178, 34, 34, 0.3); }
    to { box-shadow: 0 0 15px rgba(178, 34, 34, 0.7); }
}

.rank-admiral {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(139, 30, 15, 0.25));
    border: 1px solid var(--gold-bright);
    color: var(--gold-bright);
}
.rank-commander {
    background: rgba(42, 157, 143, 0.25);
    border: 1px solid var(--seafoam);
    color: #56a394;
}
.rank-quartermaster {
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid var(--gold-antique);
    color: #e5c158;
}
.rank-trader {
    background: rgba(235, 220, 185, 0.15);
    border: 1px solid var(--parchment-dark);
    color: var(--parchment-base);
}
.rank-escort {
    background: rgba(178, 34, 34, 0.2);
    border: 1px solid #b22222;
    color: #ff7b47;
}

/* Tables (Ship Logs) */
.nautical-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--ocean-border);
    border-radius: 6px;
    background: var(--ocean-card);
    box-shadow: var(--shadow-nautical);
}

.nautical-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
}

.nautical-table th {
    background: linear-gradient(180deg, #182838 0%, #101c29 100%);
    color: var(--gold-bright);
    font-family: var(--font-heading);
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    border-bottom: 2px solid var(--gold-antique);
    text-transform: uppercase;
}

.nautical-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--ocean-border);
    color: var(--parchment-light);
}

.nautical-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.06);
}

/* Forms & Inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--parchment-base);
    letter-spacing: 0.04em;
}

.form-control {
    width: 100%;
    background: #0b141d;
    border: 1px solid var(--ocean-border);
    color: var(--parchment-light);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-glow);
    background: #0f1c29;
}

/* Parchment form override */
.parchment-card .form-label {
    color: var(--parchment-ink);
}
.parchment-card .form-control {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #bda376;
    color: #2b1f14;
}
.parchment-card .form-control:focus {
    background: #ffffff;
    border-color: #8c6a12;
    box-shadow: 0 0 8px rgba(140, 106, 18, 0.3);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Hero Section */
.hero-banner {
    position: relative;
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(22, 38, 56, 0.7) 0%, rgba(7, 13, 20, 0.9) 75%);
    border-bottom: 1px solid var(--ocean-border);
    overflow: hidden;
}

.hero-title-group {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 2;
}

.hero-supertitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-antique);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.hero-title {
    font-family: var(--font-heading-ornate);
    font-size: 3.5rem;
    color: var(--gold-bright);
    text-shadow: 0 4px 15px rgba(0,0,0,0.9), 0 0 30px var(--gold-glow);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-tagline {
    font-size: 1.45rem;
    color: var(--parchment-base);
    font-style: italic;
    max-width: 750px;
    margin: 0 auto;
}

.hero-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Stats Counter Bar */
.stats-counter-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
}

.stat-box {
    background: linear-gradient(180deg, #162638 0%, #0d1621 100%);
    border: 1px solid var(--gold-antique);
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-nautical);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gold-bright);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--parchment-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Trade Calculator Specific Styles */
.calc-card-result {
    background: linear-gradient(135deg, #1b2f42 0%, #101c29 100%);
    border: 2px solid var(--gold-bright);
    border-radius: 6px;
    padding: 2rem;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.calc-profit-display {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(7, 13, 20, 0.6);
    border-radius: 6px;
    border: 1px dashed var(--gold-antique);
    margin: 1.5rem 0;
}

.calc-profit-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-bright);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    line-height: 1.1;
}

.calc-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.metric-item {
    background: rgba(14, 26, 38, 0.7);
    padding: 0.85rem;
    border-radius: 4px;
    border-left: 3px solid var(--gold-antique);
}
.metric-label {
    font-size: 0.85rem;
    color: var(--parchment-dark);
    text-transform: uppercase;
}
.metric-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--parchment-light);
    font-weight: 700;
}

/* Ship Stats Progress Bar */
.ship-stat-row {
    margin-bottom: 0.85rem;
}
.ship-stat-label-group {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--parchment-base);
}
.ship-stat-bar-track {
    height: 8px;
    background: #080e15;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--ocean-border);
}
.ship-stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-antique), var(--gold-bright));
    border-radius: 4px;
}

/* Interactive Map & Port Selector */
.sea-chart-wrapper {
    position: relative;
    background: #111d28;
    border: 2px solid var(--gold-antique);
    border-radius: 6px;
    min-height: 480px;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sea-chart-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.45;
    pointer-events: none;
}

.port-node {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
    transition: transform 0.25s ease;
}
.port-node:hover {
    transform: translate(-50%, -50%) scale(1.18);
}
.port-marker-circle {
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, var(--gold-bright) 20%, var(--gold-dark) 80%);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold-bright);
}
.port-node-label {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(11, 20, 29, 0.9);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    border: 1px solid var(--gold-antique);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--gold-bright);
    pointer-events: none;
}

/* Flash Alerts */
.flash-alert {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1rem;
}
.flash-success {
    background: rgba(42, 157, 143, 0.2);
    border: 1px solid var(--seafoam);
    color: #48cae4;
}
.flash-warning {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold-antique);
    color: #ffd166;
}
.flash-danger {
    background: rgba(178, 34, 34, 0.25);
    border: 1px solid #b22222;
    color: #ff5a5f;
}

/* Footer */
.nautical-footer {
    background: linear-gradient(180deg, #0d1722 0%, #060a0f 100%);
    border-top: 2px solid var(--gold-antique);
    padding: 4rem 1.5rem 2rem;
    margin-top: auto;
    position: relative;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--gold-bright);
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-antique);
}

.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    color: var(--parchment-base);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-links a:hover {
    color: var(--gold-bright);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--ocean-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #7b8fa3;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .stats-counter-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle-btn {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0b141d;
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 2px solid var(--gold-antique);
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }
    .nav-links.show {
        display: flex;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .stats-counter-bar {
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
