/* =============================================================================
   MOVING JACK MEGA MENU - Clean CSS
   ============================================================================= */

/* CSS Variables */
:root {
    --primary: #0d3b2e;
    --primary-light: #1a5a47;
    --accent: #ff6b35;
    --accent-glow: rgba(255, 107, 53, 0.4);
    --text: #1a1a1a;
    --text-light: #5a5a5a;
    --bg: #fefefe;
    --cream: #faf8f5;
    --border: #e8e4df;
    --shadow: rgba(13, 59, 46, 0.08);
    --resources-bg: linear-gradient(135deg, #e8f4f0 0%, #d4ece5 100%);
    --resources-border: #9ecfbe;
}

/* =============================================================================
   HEADER
   ============================================================================= */

.site-header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
margin-bottom:10px;
}

.site-header.scrolled {
    background: rgba(254, 254, 254, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px var(--shadow);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.scrolled .site-logo {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    height: 90px;
}

/* =============================================================================
   LOGO
   ============================================================================= */

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img {
    height: 40px;
    width: auto;
}

/* =============================================================================
   HEADER ACTIONS
   ============================================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.search-toggle {
    width: 42px;
    height: 42px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text);
}

.search-toggle:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.search-toggle svg {
    width: 18px;
    height: 18px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-light);
    opacity: 0.8;
}

.trust-badges span {
    font-weight: 600;
}

.trust-badges .badge-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
}

.trust-badges .badge {
    padding: 3px 8px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
}

/* =============================================================================
   MAIN NAVIGATION
   ============================================================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}

.nav-link:hover {
    background: var(--cream);
    color: var(--primary);
}

.nav-link.resources-link {
    background: rgba(232, 244, 240, 0.7);
    border: 1px solid rgba(158, 207, 190, 0.4);
}

.nav-link.resources-link:hover {
    background: rgba(232, 244, 240, 1);
    border-color: var(--resources-border);
}

/* Dropdown Arrow */
.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* =============================================================================
   MEGA MENU DROPDOWN
   ============================================================================= */

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.02);
    padding: 32px 36px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 820px;
}

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

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Top Row - Trip Teaser + Location */
.mega-menu-top-row {
    grid-column: span 4;
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: stretch;
}

.trip-teaser {
    flex: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #6ee7b7;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.trip-teaser:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.trip-teaser-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.trip-teaser-content {
    flex: 1;
}

.trip-teaser-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.trip-teaser-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

.trip-teaser-title {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #065f46;
    margin: 0;
}

.trip-teaser-meta {
    font-size: 12px;
    color: #047857;
    margin-top: 2px;
}

.trip-teaser-arrow {
    font-size: 18px;
    color: #059669;
}

/* Location Badge */
.mega-menu-location {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-align: center;
}

.mega-menu-location .pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

.mega-menu-location a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mega-menu-location a:hover {
    text-decoration: none;
}

/* Mega Menu Columns */
.mega-menu-column .mega-menu-heading {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cream);
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column li {
    margin-bottom: 4px;
}

.mega-menu-column a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    margin: 0px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mega-menu-column a:hover {
    background: var(--cream);
    color: var(--primary);
    padding-left: 16px;
}

.mega-menu-column .country-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-column .country-name::before {
    content: '';
    width: 0;
    height: 0;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.2s;
}

.mega-menu-column a:hover .country-name::before {
    width: 6px;
    height: 6px;
    opacity: 1;
}

.post-count {
    font-size: 11px;
    color: var(--text-light);
    opacity: 0.6;
    margin-left: auto;
    font-weight: 400;
}

/* Smaller mega menu for About */
.mega-menu.mega-menu-small {
    min-width: 220px;
}

.mega-menu.mega-menu-small .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
}

/* =============================================================================
   RESOURCES DROPDOWN
   ============================================================================= */

.resources-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--resources-bg);
    border: 2px solid var(--resources-border);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: 24px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 480px;
    transform: translateY(10px);
}

.nav-item:hover .resources-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.resources-dropdown h4 {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.affiliate-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.affiliate-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.affiliate-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.affiliate-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.affiliate-btn span:last-child {
    font-family: 'Syne', sans-serif;
}

/* =============================================================================
   SEARCH OVERLAY
   ============================================================================= */

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.search-container {
    width: 90%;
    max-width: 600px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 20px 24px 20px 56px;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    border: none;
    border-radius: 16px;
    background: white;
    color: var(--text);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-input:focus {
    outline: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 3px var(--accent);
}

.search-input::placeholder {
    color: #999;
}

.search-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-hints {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.search-hint {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-hint:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* =============================================================================
   STICKY DESKTOP CTA
   ============================================================================= */

.sticky-cta {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(calc(100% - 48px));
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px 14px 16px;
    background: linear-gradient(135deg, var(--accent) 0%, #e85a2a 100%);
    color: white;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 4px 20px var(--accent-glow);
    transition: transform 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.sticky-cta:hover {
    transform: translateY(-50%) translateX(0);
    writing-mode: horizontal-tb;
}

.sticky-cta .icon {
    font-size: 20px;
}

/* =============================================================================
   MOBILE MENU TOGGLE
   ============================================================================= */

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--cream);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary);
}

.mobile-menu-toggle:hover span {
    background: white;
}

.mobile-menu-toggle span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) { top: 14px; }
.mobile-menu-toggle span:nth-child(2) { top: 21px; }
.mobile-menu-toggle span:nth-child(3) { top: 28px; }

.mobile-menu-toggle.active span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-100%);
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

/* =============================================================================
   FLOATING RESOURCES BUTTON (Mobile)
   ============================================================================= */

.floating-resources-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1100;
    width: 72px;
    height: 72px;
    padding: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, #e85a2a 100%);
    color: white;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-decoration: none;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px var(--accent-glow),
        0 4px 12px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    border: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
    line-height: 1.2;
}

.floating-resources-btn span {
    display: block;
}


.affiliate-disclosure a {
    color: var(--text-light);
    text-decoration: underline;
}

.affiliate-disclosure a:hover {
    color: var(--primary);
}


/* =============================================================================
   MOBILE RESOURCES PANEL
   ============================================================================= */

.mobile-dest-heading {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cream);
}

.panel-title {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.resources-heading {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.affiliate-disclosure {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    opacity: 0.7;
    margin-bottom: 16px;
}


.mobile-resources-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 59, 46, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1200;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.mobile-resources-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #f0f9f6 0%, #e8f4f0 100%);
    border-radius: 28px 28px 0 0;
    z-index: 1300;
    padding: 28px 24px 40px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 -10px 60px rgba(0,0,0,0.2);
}

.mobile-resources-panel.active {
    transform: translateY(0);
}

.panel-handle {
    width: 48px;
    height: 5px;
    background: rgba(13, 59, 46, 0.2);
    border-radius: 3px;
    margin: 0 auto 24px;
    cursor: pointer;
}

.panel-header {
    text-align: center;
    margin-bottom: 24px;
}

.panel-header h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.panel-header p {
    font-size: 14px;
    color: var(--text-light);
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.panel-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.panel-btn:hover, .panel-btn:active {
    transform: scale(0.98);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}

.panel-btn .icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.panel-btn .label {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
}

/* Lead Magnet Banner */
.lead-magnet {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lead-magnet:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.lead-magnet-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.lead-magnet-text {
    flex: 1;
}

.lead-magnet-text strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    color: #92400e;
    margin-bottom: 2px;
}

.lead-magnet-text span {
    font-size: 12px;
    color: #b45309;
}

.lead-magnet-arrow {
    font-size: 18px;
    color: #92400e;
}

/* =============================================================================
   MOBILE NAV PANEL
   ============================================================================= */

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.mobile-nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: white;
    z-index: 1060;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 10px 0 60px rgba(0,0,0,0.15);
}

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

.mobile-nav-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
}

.mobile-tab-btn {
    flex: 1;
    padding: 16px 12px;
    background: none;
    border: none;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
}

.mobile-tab-btn.active {
    color: var(--primary);
    background: white;
}

.mobile-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
}

.mobile-tab-content {
    padding: 24px;
    display: none;
}

.mobile-tab-content.active {
    display: block;
}

.mobile-dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mobile-dest-column h4 {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cream);
}

.mobile-dest-column ul {
    list-style: none;
}

.mobile-dest-column li {
    margin-bottom: 2px;
}

.mobile-dest-column a {
    display: block;
    padding: 10px 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-dest-column a:hover {
    background: var(--cream);
    color: var(--primary);
}

/* About Content */
.mobile-about-content {
    line-height: 1.8;
    color: var(--text-light);
}

.mobile-about-content h4 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.about-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(13, 59, 46, 0.2);
}

.about-header-text h4 {
    margin-bottom: 4px;
}

.about-header-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.about-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.about-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--cream);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.about-link:hover {
    background: var(--primary);
    color: white;
}

.about-link::before {
    content: '→';
    font-size: 12px;
    opacity: 0.6;
}

/* Newsletter */
.mobile-newsletter {
    padding: 20px 24px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-top: 1px solid #f59e0b;
}

.mobile-newsletter h4 {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 4px;
}

.mobile-newsletter p {
    font-size: 12px;
    color: #b45309;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #f59e0b;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    background: white;
    color: var(--text);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 12px 18px;
    background: #92400e;
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #78350f;
}

/* Mobile Nav Actions */
.mobile-nav-actions {
    display: none;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--cream);
    gap: 12px;
}

.mobile-nav-actions button {
    width: 64px;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-nav-actions button:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mobile-nav-actions button svg {
    width: 22px;
    height: 22px;
}

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

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

@keyframes floatPulse {
    0%, 100% { 
        transform: translateY(0);
        box-shadow: 
            0 8px 32px var(--accent-glow),
            0 4px 12px rgba(0,0,0,0.15),
            inset 0 1px 0 rgba(255,255,255,0.2);
    }
    50% { 
        transform: translateY(-4px);
        box-shadow: 
            0 16px 48px var(--accent-glow),
            0 8px 20px rgba(0,0,0,0.12),
            inset 0 1px 0 rgba(255,255,255,0.2);
    }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

/* =============================================================================
   ACCESSIBILITY
   ============================================================================= */

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.nav-link:focus-visible {
    background: var(--cream);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* =============================================================================
   RESPONSIVE - TABLET & MOBILE
   ============================================================================= */

@media (max-width: 968px) {
    .site-header {
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        transform: none !important;
    }
    
    .site-header.scrolled {
        background: transparent !important;
        box-shadow: none !important;
    }

    .site-header.header-hidden {
        transform: none !important;
    }

    .site-header.scrolled .site-logo {
        opacity: 1;
        transform: none;
z-index:10;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        padding: 0 16px;
        height: 68px;
    }

    .main-nav,
    .header-actions,
    .sticky-cta,
    .trust-badges {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .floating-resources-btn {
        display: flex;
        animation: floatPulse 3s ease-in-out infinite;
    }

    .mega-menu-top-row {
        grid-column: span 2;
        flex-direction: column;
    }

    .trip-teaser {
        flex: none;
    }

    .mobile-nav-actions {
        display: flex;
    }

    .mobile-nav-actions[data-show-on],
    .mobile-newsletter[data-show-on] {
        display: none;
    }

    .mobile-nav-actions[data-show-on].show-element,
    .mobile-newsletter[data-show-on].show-element {
        display: flex;
    }

    .mobile-newsletter[data-show-on].show-element {
        display: block;
    }
}

@media (max-width: 480px) {
    .panel-grid {
        gap: 10px;
    }

    .panel-btn {
        padding: 16px 12px;
    }

    .panel-btn .icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .panel-btn .label {
        font-size: 12px;
    }
}