/* ═══════════════════════════════════════════════════════════════
   ŽVEJYBOS PROGNOZĖ – style.css
   Modernus glassmorphism dizainas su dark/light tema
   ═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────
   1. CSS KINTAMIEJI (Variables)
─────────────────────────────────────────────────────────────── */
:root {
    /* Spalvų paletė – tamsus režimas (numatytasis) */
    --bg-primary:       #060d1a;
    --bg-secondary:     #0a1628;
    --bg-tertiary:      #0f2040;
    --bg-card:          rgba(10, 30, 60, 0.6);
    --bg-card-hover:    rgba(14, 38, 75, 0.75);
    --bg-glass:         rgba(255, 255, 255, 0.04);
    --bg-glass-hover:   rgba(255, 255, 255, 0.08);

    --color-primary:    #38bdf8;   /* Sky blue */
    --color-secondary:  #0ea5e9;
    --color-accent:     #22d3ee;   /* Cyan */
    --color-green:      #34d399;
    --color-orange:     #fb923c;
    --color-red:        #f87171;
    --color-yellow:     #fbbf24;

    --text-primary:     #f0f9ff;
    --text-secondary:   #bae6fd;
    --text-muted:       #7ea8c4;
    --text-placeholder: #4d7090;

    --border-color:     rgba(56, 189, 248, 0.12);
    --border-hover:     rgba(56, 189, 248, 0.28);
    --divider:          rgba(255, 255, 255, 0.06);

    --shadow-sm:        0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md:        0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg:        0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow:      0 0 30px rgba(56, 189, 248, 0.15);
    --shadow-glow-lg:   0 0 60px rgba(56, 189, 248, 0.1);

    --blur-sm:  blur(8px);
    --blur-md:  blur(16px);
    --blur-lg:  blur(24px);

    /* Tipografija */
    --font-body:    'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-mono:    'Fira Code', 'Consolas', monospace;

    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.125rem;
    --text-xl:   1.25rem;
    --text-2xl:  1.5rem;
    --text-3xl:  1.875rem;
    --text-4xl:  2.25rem;
    --text-5xl:  3rem;
    --text-6xl:  3.75rem;
    --text-7xl:  4.5rem;

    --weight-regular: 400;
    --weight-medium:  500;
    --weight-semi:    600;
    --weight-bold:    700;
    --weight-extra:   800;

    /* Tarpai */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Kraštai */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --radius-full: 9999px;

    /* Perėjimai */
    --transition-fast:   150ms ease;
    --transition-base:   250ms ease;
    --transition-slow:   400ms ease;
    --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1200px;
    --header-height: 68px;
    --section-padding: var(--space-20);
}

/* Šviesus režimas */
[data-theme="light"] {
    --bg-primary:       #f0f8ff;
    --bg-secondary:     #e8f4fd;
    --bg-tertiary:      #dbeeff;
    --bg-card:          rgba(255, 255, 255, 0.7);
    --bg-card-hover:    rgba(255, 255, 255, 0.9);
    --bg-glass:         rgba(255, 255, 255, 0.5);
    --bg-glass-hover:   rgba(255, 255, 255, 0.75);

    --text-primary:     #0c2d4a;
    --text-secondary:   #1e5276;
    --text-muted:       #4a7d9e;
    --text-placeholder: #7da8c4;

    --border-color:     rgba(14, 165, 233, 0.18);
    --border-hover:     rgba(14, 165, 233, 0.4);
    --divider:          rgba(0, 0, 0, 0.06);

    --shadow-sm:        0 2px 8px rgba(0, 80, 140, 0.1);
    --shadow-md:        0 4px 20px rgba(0, 80, 140, 0.15);
    --shadow-lg:        0 8px 40px rgba(0, 80, 140, 0.2);
    --shadow-glow:      0 0 30px rgba(14, 165, 233, 0.12);
}

/* ───────────────────────────────────────────────────────────────
   2. RESET & BASE
─────────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--weight-regular);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(56, 189, 248, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(34, 211, 238, 0.04) 0%, transparent 60%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color var(--transition-slow), color var(--transition-slow);
}

img, svg, video { display: block; max-width: 100%; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: var(--weight-bold); }
p { margin: 0; }
strong { font-weight: var(--weight-semi); }

/* Fokusas prieinamumui */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ───────────────────────────────────────────────────────────────
   3. CUSTOM SCROLLBAR
─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar              { width: 6px; height: 6px; }
::-webkit-scrollbar-track        { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb        { background: var(--color-secondary); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover  { background: var(--color-primary); }
* { scrollbar-width: thin; scrollbar-color: var(--color-secondary) var(--bg-secondary); }

/* ───────────────────────────────────────────────────────────────
   4. LAYOUT UTILITIES
─────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Glass Card – pagrindinis komponentas */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform var(--transition-base),
                box-shadow var(--transition-base),
                border-color var(--transition-base),
                background var(--transition-base);
}
.glass-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.1);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}
.section-badge {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--weight-semi);
    color: var(--color-primary);
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: var(--radius-full);
    padding: var(--space-1) var(--space-4);
    margin-bottom: var(--space-4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.section-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: var(--weight-extra);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}
.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.subsection-title {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    margin-top: var(--space-12);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ───────────────────────────────────────────────────────────────
   5. LOADING SCREEN
─────────────────────────────────────────────────────────────── */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}
.loading-logo { animation: floatBob 2s ease-in-out infinite; }
.loading-fish-svg {
    width: 120px;
    height: 70px;
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.5));
}
.fish-body-group { animation: fishSwim 2s ease-in-out infinite; }
@keyframes fishSwim {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(6px); }
}
.loading-spinner-ring {
    position: relative;
    width: 56px;
    height: 56px;
}
.loading-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--border-color);
    border-top-color: var(--color-primary);
    animation: spinRing 0.9s linear infinite;
}
@keyframes spinRing { to { transform: rotate(360deg); } }

.loading-text {
    font-size: var(--text-base);
    color: var(--text-muted);
    font-weight: var(--weight-medium);
}
.loading-dots {
    display: flex;
    gap: var(--space-2);
}
.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: dotPulse 1.4s ease-in-out infinite both;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40%           { transform: scale(1);   opacity: 1; }
}
@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ───────────────────────────────────────────────────────────────
   6. HEADER & NAVIGATION
─────────────────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(6, 13, 26, 0.85);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-base),
                box-shadow var(--transition-base),
                border-color var(--transition-base);
}
[data-theme="light"] .header {
    background: rgba(240, 248, 255, 0.88);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--border-hover);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-lg);
    color: var(--text-primary);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; }
.logo-icon { font-size: 1.5em; }
.logo-text { font-weight: var(--weight-medium); }
.logo-text strong { font-weight: var(--weight-extra); color: var(--color-primary); }

/* Desktop Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    flex: 1;
    justify-content: center;
}
.nav-link {
    display: inline-block;
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: rgba(56, 189, 248, 0.1);
    text-decoration: none;
}

/* Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-shrink: 0;
}
.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.1em;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    position: relative;
    overflow: hidden;
}
.btn-icon:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-hover);
    transform: scale(1.05);
}

/* Tema toggle ikonos */
.theme-icon-dark, .theme-icon-light { transition: opacity var(--transition-base), transform var(--transition-base); }
[data-theme="light"] .theme-icon-dark  { opacity: 0; transform: rotate(-90deg) scale(0); position: absolute; }
[data-theme="light"] .theme-icon-light { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"]  .theme-icon-light { opacity: 0; transform: rotate(90deg) scale(0); position: absolute; }
[data-theme="dark"]  .theme-icon-dark  { opacity: 1; transform: rotate(0) scale(1); }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: 10px 9px;
    transition: background var(--transition-fast);
}
.nav-hamburger:hover { background: var(--bg-glass-hover); }
.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
    transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(6, 13, 26, 0.97);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-4) var(--space-6) var(--space-6);
    animation: slideDownMenu 0.25s ease;
}
[data-theme="light"] .mobile-menu { background: rgba(240, 248, 255, 0.97); }
@keyframes slideDownMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { display: flex; flex-direction: column; gap: var(--space-1); }
.mobile-nav-link {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: color var(--transition-fast), background var(--transition-fast);
}
.mobile-nav-link:hover {
    color: var(--color-primary);
    background: rgba(56, 189, 248, 0.1);
    text-decoration: none;
}

/* ───────────────────────────────────────────────────────────────
   7. BUTTONS
─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    font-weight: var(--weight-semi);
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast),
                background var(--transition-fast),
                border-color var(--transition-fast),
                color var(--transition-fast);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.btn:active { transform: scale(0.97); }
.btn span[aria-hidden] { font-size: 1.1em; }

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #0c2d4a;
    font-weight: var(--weight-bold);
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(56, 189, 248, 0.5);
    filter: brightness(1.05);
}

.btn-ghost {
    background: var(--bg-glass);
    border-color: var(--border-color);
    color: var(--text-primary);
    backdrop-filter: var(--blur-sm);
}
.btn-ghost:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Ripple efektas */
.ripple-btn { overflow: hidden; }
.ripple-btn .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}
@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

/* ───────────────────────────────────────────────────────────────
   8. HERO SECTION
─────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-16);
    overflow: hidden;
}

/* Hero fonas */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(56, 189, 248, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 60%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(14, 165, 233, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 40%, var(--bg-tertiary) 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%);
}

/* Animuotos bangos */
.water-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    overflow: hidden;
}
.wave {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    border-radius: 43% 57% 40% 60% / 50% 50% 50% 50%;
    opacity: 0.06;
    animation: waveMove linear infinite;
}
.wave-1 {
    background: var(--color-primary);
    animation-duration: 8s;
    animation-delay: 0s;
}
.wave-2 {
    background: var(--color-accent);
    animation-duration: 12s;
    animation-delay: -4s;
    opacity: 0.04;
}
.wave-3 {
    background: var(--color-green);
    animation-duration: 16s;
    animation-delay: -8s;
    opacity: 0.03;
}
@keyframes waveMove {
    0%   { transform: translateX(0) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

/* Foninės žuvytės */
.bg-fish {
    position: absolute;
    font-size: 2rem;
    opacity: 0.08;
    animation: fishFloat linear infinite;
    pointer-events: none;
    user-select: none;
}
.bg-fish-1 { bottom: 25%; left: 10%; animation-duration: 20s; animation-delay: 0s;   font-size: 2.5rem; }
.bg-fish-2 { bottom: 40%; right: 15%; animation-duration: 28s; animation-delay: -8s;  font-size: 1.5rem; }
.bg-fish-3 { bottom: 15%; left: 60%; animation-duration: 22s; animation-delay: -14s; font-size: 3rem; }
@keyframes fishFloat {
    0%   { transform: translateX(-100px) translateY(0); }
    50%  { transform: translateX(50px) translateY(-20px); }
    100% { transform: translateX(200px) translateY(0); }
}

/* Hero turinys */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--weight-semi);
    color: var(--color-primary);
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    letter-spacing: 0.04em;
    backdrop-filter: var(--blur-sm);
}

.hero-title {
    font-size: clamp(var(--text-4xl), 7vw, var(--text-7xl));
    font-weight: var(--weight-extra);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    max-width: 800px;
}

.hero-subtitle {
    font-size: clamp(var(--text-base), 2vw, var(--text-xl));
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
}

/* Scroll indikatorius */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: var(--text-placeholder);
    margin-top: var(--space-4);
    animation: scrollHint 2s ease-in-out infinite;
}
.scroll-dot-wrapper {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-placeholder);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(12px); opacity: 0.4; }
}
@keyframes scrollHint {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

/* ───────────────────────────────────────────────────────────────
   9. CUSTOM SELECT (Searchable Dropdown)
─────────────────────────────────────────────────────────────── */
.hero-city-selector { width: 100%; max-width: 460px; }

.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    user-select: none;
}
.select-trigger:hover,
.custom-select[aria-expanded="true"] .select-trigger {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
    background: rgba(255, 255, 255, 0.09);
}
.select-trigger-icon { font-size: 1.1em; flex-shrink: 0; }
.select-trigger-text {
    flex: 1;
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    text-align: left;
}
.select-trigger-text.placeholder { color: var(--text-placeholder); }
.select-arrow {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}
.custom-select[aria-expanded="true"] .select-arrow { transform: rotate(180deg); }

.select-dropdown {
    position: absolute;
    top: calc(100% + var(--space-2));
    left: 0;
    right: 0;
    background: rgba(8, 20, 45, 0.97);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 500;
    overflow: hidden;
    animation: dropdownAppear 0.2s ease;
}
[data-theme="light"] .select-dropdown { background: rgba(240, 248, 255, 0.97); }
.select-dropdown[hidden] { display: none; }
@keyframes dropdownAppear {
    from { opacity: 0; transform: translateY(-8px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.select-search-box {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--border-color);
}
.search-icon { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; }
.select-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: var(--text-sm);
    color: var(--text-primary);
    padding: var(--space-1) 0;
}
.select-search-input::placeholder { color: var(--text-placeholder); }

.select-options-list {
    max-height: 280px;
    overflow-y: auto;
    padding: var(--space-2) 0;
}
.select-option {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
    border-radius: 0;
}
.select-option:hover,
.select-option.focused {
    background: rgba(56, 189, 248, 0.1);
    color: var(--text-primary);
}
.select-option.selected {
    color: var(--color-primary);
    background: rgba(56, 189, 248, 0.08);
}
.select-option .option-icon { font-size: 0.85em; opacity: 0.6; }
.select-no-results {
    padding: var(--space-6);
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-placeholder);
}

/* ───────────────────────────────────────────────────────────────
   10. ORO KORTELĖS
─────────────────────────────────────────────────────────────── */
.weather-section { background: none; }
.update-info {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-3);
    padding: var(--space-2) var(--space-4);
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
}
.update-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.update-icon.spinning { animation: spinRing 1s linear infinite; }

.weather-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.weather-card {
    padding: var(--space-6);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    position: relative;
    overflow: hidden;
}
.weather-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.weather-card:hover::before { opacity: 1; }

.weather-card-icon {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4));
}
.weather-card-body {
    display: flex;
    align-items: baseline;
    gap: var(--space-1);
}
.weather-value {
    font-size: var(--text-3xl);
    font-weight: var(--weight-extra);
    color: var(--text-primary);
    line-height: 1;
    transition: color var(--transition-base);
}
.weather-unit {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: var(--weight-medium);
}
.weather-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: var(--weight-medium);
}
.weather-desc {
    font-size: var(--text-xs);
    color: var(--text-placeholder);
    min-height: 1.4em;
}
.weather-trend { font-weight: var(--weight-semi); }
.weather-trend.trend-up    { color: var(--color-green); }
.weather-trend.trend-down  { color: var(--color-red); }
.weather-trend.trend-stable { color: var(--color-yellow); }

/* Skeleton loading efektas */
.skeleton-card .weather-value,
.skeleton-card .weather-desc {
    position: relative;
    overflow: hidden;
}
.skeleton-card.is-loading .weather-value::after,
.skeleton-card.is-loading .weather-desc::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.0) 0%,
        rgba(255,255,255,0.08) 50%,
        rgba(255,255,255,0.0) 100%);
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}
@keyframes skeletonShimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ───────────────────────────────────────────────────────────────
   11. PROGNOZĖS KORTELĖS
─────────────────────────────────────────────────────────────── */
.forecast-section {
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(56, 189, 248, 0.03) 50%,
        transparent 100%);
}

.forecast-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.forecast-card {
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
    text-align: center;
}

.forecast-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
}

.fish-icon-bubble {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.white-fish-bubble {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, rgba(56, 189, 248, 0.05) 100%);
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.2), 0 0 20px rgba(56, 189, 248, 0.15);
    animation: bubblePulse 3s ease-in-out infinite;
}
.predator-fish-bubble {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.05) 100%);
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.2), 0 0 20px rgba(249, 115, 22, 0.15);
    animation: bubblePulse 3s ease-in-out infinite reverse;
}
@keyframes bubblePulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.06); }
}
.fish-icon-big {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.forecast-card-title {
    font-size: var(--text-2xl);
    font-weight: var(--weight-extra);
    color: var(--text-primary);
    margin: 0;
}
.forecast-card-subtitle {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

/* Circular Progress */
.circular-progress-container {
    position: relative;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}
.circular-progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.progress-track {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 8;
}
.progress-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.circular-progress-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
}
.progress-percent-text {
    font-size: var(--text-3xl);
    font-weight: var(--weight-extra);
    color: var(--text-primary);
    line-height: 1;
}
.progress-status-text {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Rating badge */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-semi);
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}
.rating-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-placeholder);
    transition: background var(--transition-base);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
}
/* Reitingo spalvos */
.rating-badge.rating-excellent { background: rgba(52, 211, 153, 0.1); border-color: rgba(52, 211, 153, 0.3); color: var(--color-green); }
.rating-badge.rating-excellent .rating-dot { background: var(--color-green); box-shadow: 0 0 8px rgba(52, 211, 153, 0.5); }
.rating-badge.rating-good      { background: rgba(56, 189, 248, 0.1); border-color: rgba(56, 189, 248, 0.3); color: var(--color-primary); }
.rating-badge.rating-good .rating-dot { background: var(--color-primary); box-shadow: 0 0 8px rgba(56, 189, 248, 0.5); }
.rating-badge.rating-average   { background: rgba(251, 191, 36, 0.1); border-color: rgba(251, 191, 36, 0.3); color: var(--color-yellow); }
.rating-badge.rating-average .rating-dot { background: var(--color-yellow); }
.rating-badge.rating-poor      { background: rgba(251, 146, 60, 0.1); border-color: rgba(251, 146, 60, 0.3); color: var(--color-orange); }
.rating-badge.rating-poor .rating-dot { background: var(--color-orange); }
.rating-badge.rating-bad       { background: rgba(248, 113, 113, 0.1); border-color: rgba(248, 113, 113, 0.3); color: var(--color-red); }
.rating-badge.rating-bad .rating-dot { background: var(--color-red); }

.forecast-explanation {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 340px;
}

/* Forecast factors */
.forecast-factors {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.forecast-factor-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-2) var(--space-3);
    background: var(--bg-glass);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-size: var(--text-xs);
}
.factor-label { color: var(--text-muted); font-weight: var(--weight-medium); }
.factor-value { font-weight: var(--weight-semi); }
.factor-value.good   { color: var(--color-green); }
.factor-value.mid    { color: var(--color-yellow); }
.factor-value.bad    { color: var(--color-red); }
.factor-value.neutral { color: var(--text-secondary); }

/* ───────────────────────────────────────────────────────────────
   12. ANALIZĖ & LAIKAS
─────────────────────────────────────────────────────────────── */
.analysis-section { background: none; }

.analysis-text-card {
    padding: var(--space-8);
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    margin-bottom: var(--space-4);
}
.analysis-icon { font-size: 2.5rem; flex-shrink: 0; }
.analysis-text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Laiko kortelės */
.time-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}
.time-card {
    padding: var(--space-6) var(--space-4);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}
.time-period-icon  { font-size: 1.8rem; }
.time-period-name  { font-size: var(--text-base); font-weight: var(--weight-bold); color: var(--text-primary); }
.time-period-hours { font-size: var(--text-xs); color: var(--text-muted); }
.time-period-score {
    font-size: var(--text-lg);
    font-weight: var(--weight-extra);
    color: var(--color-primary);
    min-height: 1.5em;
}
.time-bar-track {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: var(--radius-full);
    overflow: hidden;
}
.time-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-full);
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ───────────────────────────────────────────────────────────────
   13. PATARIMAI
─────────────────────────────────────────────────────────────── */
.tips-section {
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(52, 211, 153, 0.02) 50%,
        transparent 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
}
.tip-card {
    padding: var(--space-6);
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}
.tip-icon-wrapper {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}
.tip-title {
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}
.tip-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ───────────────────────────────────────────────────────────────
   14. INFO KORTELĖS (Metodika)
─────────────────────────────────────────────────────────────── */
.info-section {
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(56, 189, 248, 0.03) 50%,
        transparent 100%);
}
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
}

/* Grid maketas: ikonėlė kairėje, turinys dešinėje, skalė apačioje */
.info-card {
    padding: var(--space-6);
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto 1fr auto;
    column-gap: var(--space-4);
    row-gap: var(--space-2);
    align-items: start;
}

/* Ikonėlė – 1 eilutė, 1 stulpelis */
.info-card-icon {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}
.info-card:hover .info-card-icon { transform: scale(1.06); }

/* Antraštė – 1 eilutė, 2 stulpelis */
.info-card-title {
    grid-column: 2;
    grid-row: 1;
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin: 0;
    align-self: center;
    line-height: 1.3;
}

/* Aprašymas – 2 eilutė, 2 stulpelis */
.info-card p {
    grid-column: 2;
    grid-row: 2;
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Skalė – 3 eilutė, abu stulpeliai */
.info-scale {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding-top: var(--space-4);
    margin-top: var(--space-2);
    border-top: 1px solid var(--divider);
}

.info-scale-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--text-muted);
}

.scale-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.scale-good { background: var(--color-green);  box-shadow: 0 0 6px rgba(52,211,153,0.5); }
.scale-mid  { background: var(--color-yellow); box-shadow: 0 0 6px rgba(251,191,36,0.4); }
.scale-bad  { background: var(--color-red);    box-shadow: 0 0 6px rgba(248,113,113,0.4); }

/* ───────────────────────────────────────────────────────────────
   15. DUK / FAQ ACCORDION
─────────────────────────────────────────────────────────────── */
.faq-section { background: none; }
.faq-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    align-items: start;
}

.faq-item {
    align-self: start;
    background: var(--bg-card);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.faq-item:hover { border-color: var(--border-hover); box-shadow: var(--shadow-md); }
.faq-item.open  { border-color: rgba(56, 189, 248, 0.3); box-shadow: var(--shadow-glow); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    font-size: var(--text-base);
    font-weight: var(--weight-semi);
    color: var(--text-primary);
    background: none;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--color-primary); }
.faq-item.open .faq-question { color: var(--color-primary); }

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition-base), color var(--transition-base);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--color-primary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
    padding: 0 var(--space-6) var(--space-5);
    border-top: 1px solid var(--divider);
    padding-top: var(--space-4);
}
.faq-answer-inner p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.8;
}

/* ───────────────────────────────────────────────────────────────
   15b. SAVAITĖS PROGNOZĖ
─────────────────────────────────────────────────────────────── */
.weekly-forecast-wrap {
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid var(--divider);
}

.weekly-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-5);
    letter-spacing: 0.01em;
}

.weekly-forecast-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-3);
}

.weekly-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-8);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Dienos kortelė */
.week-day-card {
    padding: var(--space-4) var(--space-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.week-day-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.week-today {
    border-color: var(--color-primary) !important;
    background: rgba(56, 189, 248, 0.08);
}

.week-day-name {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.week-today .week-day-name {
    color: var(--color-primary);
}

.week-date {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.week-weather-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.week-temp {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Kibimo juostelės */
.week-scores {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-1);
}

.week-score-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.week-fish-icon {
    font-size: 0.75rem;
    flex-shrink: 0;
}

.week-score-bar-track {
    flex: 1;
    height: 5px;
    background: var(--bg-glass);
    border-radius: 99px;
    overflow: hidden;
}

.week-score-bar-fill {
    height: 100%;
    border-radius: 99px;
    transition: width 0.6s ease;
}

.week-white-fill    { background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); }
.week-predator-fill { background: linear-gradient(90deg, #f97316, #ef4444); }

.week-score-pct {
    font-size: 0.68rem;
    font-weight: 700;
    min-width: 28px;
    text-align: right;
    flex-shrink: 0;
    color: var(--text-muted);
}

/* Reitingo spalvos (pct tekste) */
.week-score-pct.rating-excellent { color: var(--color-green);   }
.week-score-pct.rating-good      { color: var(--color-primary); }
.week-score-pct.rating-average   { color: var(--color-yellow);  }
.week-score-pct.rating-poor      { color: var(--color-orange);  }
.week-score-pct.rating-bad       { color: var(--color-red);     }

/* Responsive */
@media (max-width: 900px) {
    .weekly-forecast-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .weekly-forecast-grid {
        grid-template-columns: repeat(4, 1fr);
        overflow-x: auto;
        padding-bottom: var(--space-3);
    }
    .week-day-card {
        min-width: 80px;
    }
}

@media (max-width: 400px) {
    .weekly-forecast-grid {
        grid-template-columns: repeat(4, 1fr);
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .week-day-card {
        scroll-snap-align: start;
        flex-shrink: 0;
        width: 85px;
    }
}

/* ───────────────────────────────────────────────────────────────
   16. FOOTER
─────────────────────────────────────────────────────────────── */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: var(--space-16) 0 var(--space-8);
    margin-top: var(--space-8);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr;
    gap: var(--space-10);
    padding-bottom: var(--space-10);
    border-bottom: 1px solid var(--divider);
    margin-bottom: var(--space-8);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xl);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}
.footer-logo strong { font-weight: var(--weight-extra); color: var(--color-primary); }
.footer-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}
.footer-badges { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.footer-badge {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-3);
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-muted);
}
.footer-nav-title {
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-4);
}
.footer-nav ul, .footer-info ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-nav a, .footer-info li, .footer-info a {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.footer-nav a:hover, .footer-info a:hover { color: var(--color-primary); }
.footer-disclaimer {
    margin-top: var(--space-4);
    font-size: var(--text-xs);
    color: var(--text-placeholder);
    padding: var(--space-3) var(--space-4);
    background: rgba(248, 113, 113, 0.06);
    border: 1px solid rgba(248, 113, 113, 0.15);
    border-radius: var(--radius-md);
    line-height: 1.5;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-3);
}
.footer-bottom p { font-size: var(--text-sm); color: var(--text-placeholder); }
.footer-credits a { color: var(--color-primary); }

/* ───────────────────────────────────────────────────────────────
   17. SCROLL TO TOP
─────────────────────────────────────────────────────────────── */
.scroll-to-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 900;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #0c2d4a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.4);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-base);
    opacity: 1;
}
.scroll-to-top[hidden] { opacity: 0; pointer-events: none; display: flex !important; visibility: hidden; }
.scroll-to-top:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 24px rgba(56, 189, 248, 0.5); }
.scroll-to-top svg { width: 20px; height: 20px; }

/* ───────────────────────────────────────────────────────────────
   18. TOAST PRANEŠIMAI
─────────────────────────────────────────────────────────────── */
.toast-container {
    position: fixed;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    pointer-events: none;
}
.toast {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-5);
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: all;
    white-space: nowrap;
}
.toast.toast-error  { border-color: rgba(248, 113, 113, 0.3); color: var(--color-red); }
.toast.toast-success { border-color: rgba(52, 211, 153, 0.3); color: var(--color-green); }
.toast.hiding { animation: toastOut 0.3s ease forwards; }
@keyframes toastIn  { from { opacity: 0; transform: translateY(12px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastOut { from { opacity: 1; transform: translateY(0);  } to { opacity: 0; transform: translateY(8px); } }

/* ───────────────────────────────────────────────────────────────
   19. SCROLL REVEAL ANIMACIJOS
─────────────────────────────────────────────────────────────── */

/* Pradinės būsenos */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].revealed {
    opacity: 1;
    transform: translateY(0);
}
[data-delay="50"]  { transition-delay: 50ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="250"] { transition-delay: 250ms; }

/* Hero animacijos (pradinės, ne scroll) */
.animate-fade-in {
    animation: fadeIn 0.8s ease both;
}
.animate-slide-up {
    animation: slideUpAnim 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }
.anim-delay-4 { animation-delay: 0.6s; }

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

/* ───────────────────────────────────────────────────────────────
   20. RESPONSIVE – TABLET (≤1024px)
─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    :root { --section-padding: 4rem; }

    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .weather-grid { grid-template-columns: repeat(4, 1fr); }
    .forecast-cards-grid { gap: var(--space-4); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
    .footer-grid > .footer-brand { grid-column: 1 / -1; }
}

/* ───────────────────────────────────────────────────────────────
   21. RESPONSIVE – TABLET SMALL (≤768px)
─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    :root { --section-padding: 3rem; }

    .weather-grid { grid-template-columns: repeat(2, 1fr); }
    .forecast-cards-grid { grid-template-columns: 1fr; }
    .time-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .tips-grid { grid-template-columns: 1fr; }
    .info-cards-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

    .forecast-card { padding: var(--space-6); }
    .hero-actions { flex-direction: column; align-items: center; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .analysis-text-card { flex-direction: column; }
}

/* ───────────────────────────────────────────────────────────────
   22. RESPONSIVE – MOBILE (≤480px)
─────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    :root { --section-padding: 2.5rem; }

    .container { padding: 0 var(--space-4); }
    .weather-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
    .weather-card { padding: var(--space-4); }
    .weather-value { font-size: var(--text-2xl); }

    .hero-title { font-size: var(--text-4xl); }
    .section-title { font-size: var(--text-2xl); }

    .time-cards-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }

    .faq-accordion { grid-template-columns: 1fr; }
    .faq-question { padding: var(--space-4); font-size: var(--text-sm); }
    .faq-answer-inner { padding: var(--space-3) var(--space-4) var(--space-4); }

    .scroll-to-top { bottom: var(--space-4); right: var(--space-4); width: 44px; height: 44px; }

    .forecast-card-title { font-size: var(--text-xl); }
    .circular-progress-container { width: 140px; height: 140px; }
}

/* ───────────────────────────────────────────────────────────────
   23. PRINT STILIAI
─────────────────────────────────────────────────────────────── */
@media print {
    .header, .loading-screen, .scroll-to-top, .toast-container { display: none !important; }
    body { background: white; color: black; }
    .glass-card { border: 1px solid #ddd; background: white; }
}

/* ───────────────────────────────────────────────────────────────
   24. REDUCED MOTION (prieinamumas)
─────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
