  :root {
    /* Pastelinė pakrantės paletė */
    --navy: #2E6B96;          /* gili dulkėta mėlyna — tekstas, antraštės */
    --navy-dark: #1F4E73;     /* tamsesnė — hero fonas */
    --sea: #6FB0D4;            /* pastelinė mėlyna — Palanga */
    --sea-soft: #B5DCEC;       /* dar šviesesnis akcentas */
    --peach: #F1B98C;          /* pastelinė saulės — Šventoji */
    --peach-soft: #FBDFC2;
    --butter: #F0D58A;         /* švelni geltona — Liepoja */
    --butter-soft: #F8E7B5;
    --rose: #F2A89C;           /* pastelinė koralinė — Jūrmala */
    --rose-soft: #FBD2C8;
    --gold: #F2A832;           /* šiltas ryškus akcentas */
    --gold-light: #F8BC65;
    --gold-dark: #D88B12;
    --cream: #FAF6EE;
    --sand: #EBD4AB;
    --white: #ffffff;
    --text: #2C3E50;
    --muted: #7A8A99;
    --shadow-sm: 0 2px 10px rgba(46, 107, 150, 0.06);
    --shadow-md: 0 10px 30px rgba(46, 107, 150, 0.12);
    --shadow-lg: 0 20px 50px rgba(46, 107, 150, 0.18);
    --radius: 14px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, h4 {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.025em;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ========== NAV ========== */
  .nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(14, 92, 138, 0.1);
    box-shadow: 0 2px 12px rgba(14, 92, 138, 0.06);
  }
  .nav-links {
    display: flex;
    gap: 34px;
    align-items: center;
  }
  .nav-links a {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.25rem;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-sublink { display: none; }
  .nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
  }
  .nav-dropdown-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  .dropdown-arrow {
    font-size: 0.8em;
    transition: transform 0.2s ease;
  }
  .nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
    border-radius: 12px;
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, visibility 0s linear 0.18s;
    z-index: 200;
    border: 1px solid rgba(11, 61, 110, 0.08);
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.18s ease, visibility 0s linear 0s;
  }
  .nav-dropdown-menu a {
    display: block !important;
    padding: 10px 22px 10px 38px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
    position: relative;
  }
  .nav-dropdown-menu a::before {
    content: '›';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
  }
  .nav-dropdown-menu a:hover {
    background: rgba(243, 156, 18, 0.1);
    color: var(--gold-dark);
  }
  .nav-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo img {
    height: 48px;
    width: auto;
    display: block;
  }
  .nav-phones {
    display: flex;
    gap: 22px;
    align-items: center;
  }
  .nav-phones a {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }
  .nav-phones a:hover { color: var(--gold); }
  .phone-icon {
    width: 18px; height: 18px;
    fill: var(--gold);
  }
  .logo .logo-mobile { display: none; }
  .nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    background: transparent;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ========== HERO ========== */
  .hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 180px 24px 0;
    overflow: hidden;
    background: #134566;
  }
  /* Jūsų video kaip fonas */
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    filter: saturate(0.95) contrast(1.04) brightness(0.92);
  }
  .hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg,
        rgba(15, 40, 70, 0.4) 0%,
        rgba(15, 40, 70, 0.5) 40%,
        rgba(15, 40, 70, 0.55) 100%),
      radial-gradient(ellipse at center, transparent 30%, rgba(15, 40, 70, 0.45) 100%);
    pointer-events: none;
  }
  /* Hero fade: ilgas perėjimas, paskutiniai 80px solidi smėlio spalva */
  .hero-fade-to-sand {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 300px;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(180deg,
      rgba(245, 233, 210, 0) 0%,
      rgba(245, 233, 210, 0.05) 15%,
      rgba(245, 233, 210, 0.15) 28%,
      rgba(245, 233, 210, 0.3) 42%,
      rgba(245, 233, 210, 0.5) 55%,
      rgba(245, 233, 210, 0.72) 68%,
      rgba(245, 233, 210, 0.9) 78%,
      rgba(245, 233, 210, 1) 87%,
      rgba(245, 233, 210, 1) 100%);
  }

  /* === Šilta saulės atspinda video viršuje === */
  .hero-sun {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 218, 170, 0.5) 0%, rgba(243, 156, 18, 0.25) 40%, transparent 70%);
    filter: blur(30px);
    animation: sun-pulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
  }
  @keyframes sun-pulse {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.12); opacity: 0.8; }
  }

  /* === Šviesos atspindžiai vandens paviršiuje === */
  .hero-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }
  .hero-sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle-float ease-in-out infinite;
  }
  @keyframes sparkle-float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 0.8; }
    100% { transform: translateY(-60px) translateX(15px); opacity: 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-sun, .hero-sparkle {
      animation: none;
    }
  }
  .hero-content { position: relative; max-width: 760px; z-index: 5; }
  .hero-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 22px;
  }
  .hero h1 {
    color: var(--white);
    font-size: clamp(2.1rem, 4.8vw, 3.6rem);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .hero h1 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
  }
  .hero p {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    max-width: 740px;
    margin: 0 auto 36px;
    color: rgba(255,255,255,0.95);
    line-height: 1.55;
    font-weight: 500;
  }
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    cursor: pointer;
  }
  .btn-primary {
    background: #F2A832;
    color: var(--white);
    border-radius: 28px;
    box-shadow: 0 6px 20px rgba(232, 149, 21, 0.32);
  }
  .btn-primary:hover {
    background: #D88B12;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(232, 149, 21, 0.45);
  }
  .btn-outline {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--white);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  }
  .btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.3);
  }

  /* ========== SECTIONS ========== */
  section { padding: 90px 24px; }
  .container { max-width: 1280px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 60px; }
  .section-eyebrow {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    font-size: 1.15rem;
    margin-bottom: 18px;
    display: block;
  }
  .section-header h2 {
    font-size: clamp(2.1rem, 4.8vw, 3.3rem);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.03em;
  }
  .section-header p {
    color: var(--text);
    font-size: 1.38rem;
    font-weight: 600;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.55;
  }

  /* ========== APIE MUS ========== */
  .about { background: var(--white); }
  .about-content {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
  }
  .about-content p {
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 50px;
  }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .about-stat {
    background: var(--cream);
    border: 1px solid rgba(46, 107, 150, 0.08);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(221, 162, 80, 0.25);
  }
  .about-stat .icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
  }
  .about-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.2;
  }

  /* ========== DESTINATIONS (smėlio nuotrauka su sklandžiu perėjimu iš hero) ========== */
  .destinations { padding-top: 20px; padding-bottom: 50px; }
  .destinations .section-header { margin-bottom: 40px; }
  .destinations {
    position: relative;
    /* REPLACE WITH REAL PHOTO: NUOTRAUKOS/smelis2.jpg */
    background:
      /* Viršus: solidi smėlio spalva pirmus 80px (susilieja su hero fade galu) */
      /* Tada palaipsniui mažėja iki ~25% — smėlio nuotrauka palaipsniui atsiranda */
      linear-gradient(180deg,
        rgb(245, 233, 210) 0px,
        rgb(245, 233, 210) 80px,
        rgba(245, 233, 210, 0.88) 160px,
        rgba(245, 233, 210, 0.65) 280px,
        rgba(245, 233, 210, 0.4) 420px,
        rgba(245, 233, 210, 0.25) 100%),
      url('NUOTRAUKOS/smelis2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: start;
  }
  .dest-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 61, 110, 0.07);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
  }
  .dest-card:hover {
    box-shadow: var(--shadow-md);
  }
  .dest-header-link, .dest-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }
  .dest-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 22px 20px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.05;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }
  .dest-header::before,
  .dest-header::after {
    content: '';
    flex: 1;
    height: 2px;
    max-width: 40px;
    background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
  }
  .dest-image {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  /* Nuotrauka — atskirta į ::before sluoksnį, kad galėtų zoomintis ant hover */
  .dest-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.8s ease-out;
    z-index: 0;
  }
  /* Tamsus gradientas viršuje nuotraukos (kad badge'ai ir antraštė matytųsi) */
  .dest-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.25) 100%),
      linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 40%, transparent 70%);
    z-index: 1;
    pointer-events: none;
  }
  /* Zoom efektas tik ant nuotraukos, kai pelė užvedama ant kortelės */
  .dest-card:hover .dest-image::before {
    transform: scale(1.08);
  }

  .dest-image.palanga::before { background-image: url('NUOTRAUKOS/Palanga.jpg'); }
  .dest-image.sventoji::before { background-image: url('NUOTRAUKOS/SVENTOJI.jpg'); }
  .dest-image.liepoja::before { background-image: url('NUOTRAUKOS/LIEPOJA.jpg'); }
  .dest-image.jurmala::before { background-image: url('NUOTRAUKOS/JURMALA.webp'); }
  .dest-overlay {
    position: absolute;
    bottom: 22px;
    left: 24px;
    right: 24px;
    z-index: 2;
  }
  .dest-name {
    color: var(--white);
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 2px 14px rgba(0,0,0,0.55);
    letter-spacing: 0.2px;
  }
  .dest-top-meta {
    position: absolute;
    top: 22px;
    left: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 3;
  }
  .dest-price-tag {
    background: #E74C3C;
    color: var(--white);
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.45);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
  }
  .dest-price-tag .from {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 5px;
  }
  .dest-price-tag .amount {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.3px;
  }
  .dest-price-tag .amount em {
    font-style: normal;
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    margin-left: 5px;
  }
  .dest-country {
    position: absolute;
    top: 22px;
    right: 24px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    color: var(--white);
    padding: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);
  }
  .dest-country .globe-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  }
  .dest-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--coral);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 6px 18px rgba(231, 76, 60, 0.45);
    transform: rotate(-8deg);
    line-height: 1;
  }
  .dest-badge .small {
    font-size: 0.58rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
    opacity: 0.95;
  }
  .dest-badge .big {
    font-size: 1.15rem;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-weight: 700;
  }
  .dest-duration {
    display: inline-flex;
    align-items: center;
    background: #EFDFC4;
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.22);
    white-space: nowrap;
  }
  .dest-body { padding: 22px 16px; flex: 1; display: flex; flex-direction: column; }
  .dest-title {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.25;
  }
  .dest-desc {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 0.93rem;
    line-height: 1.55;
    flex: 1;
  }
  .dest-detailed {
    color: var(--text);
    font-size: 1.12rem;
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
    padding: 0 10px;
  }
  .dest-detailed .incl-title {
    color: var(--navy);
    font-weight: 700;
    margin: 16px 0 8px;
    font-size: 1.2rem;
  }
  .dest-detailed .incl-title:first-child { margin-top: 0; }
  .dest-detailed .incl-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .dest-detailed .incl-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 6px;
  }
  .dest-detailed .incl-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 800;
    font-size: 1rem;
  }
  .dest-detailed .incl-list--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }
  .dest-detailed .incl-list--inline li {
    margin-bottom: 0;
  }
  .dest-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(11, 61, 110, 0.08);
    margin-bottom: 14px;
  }
  .dest-price {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 1.45rem;
    color: var(--navy);
    font-weight: 700;
  }
  .dest-price small {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 4px;
  }
  /* Datų lentelė kortelėje */
  .dates-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.18rem;
    margin-top: 8px;
    table-layout: fixed;
  }
  /* Fiksuotos stulpelių proporcijos — kad išskleidus papildomas datas nesusislinktų */
  .dates-table th:nth-child(1), .dates-table td:nth-child(1) { width: 28%; }
  .dates-table th:nth-child(2), .dates-table td:nth-child(2) { width: 12%; }
  .dates-table th:nth-child(3), .dates-table td:nth-child(3) { width: 14%; }
  .dates-table th:nth-child(4), .dates-table td:nth-child(4) { width: 18%; }
  .dates-table th:nth-child(5), .dates-table td:nth-child(5) { width: 28%; }
  .dates-table th, .dates-table td { overflow: hidden; }
  .dates-table thead {
    background: var(--navy);
    color: var(--white);
  }
  .dates-table th {
    padding: 12px 8px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .dates-table td {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(11, 61, 110, 0.08);
    vertical-align: middle;
  }
  .dates-table td {
    color: #1A1A1A;
    font-weight: 500;
  }
  .dates-table td strong {
    color: var(--navy);
    font-weight: 800;
    font-size: 1.1rem;
  }
  .dates-table td:nth-child(3) {
    color: #E74C3C;
    font-weight: 700;
  }
  /* Data ir mygtukas turi savo kraštinį padding */
  .dates-table th:first-child,
  .dates-table td:first-child { padding-left: 14px; }
  .dates-table th:last-child,
  .dates-table td:last-child { padding-right: 14px; }
  .dates-table tbody tr:last-child td { border-bottom: none; }
  .dates-table tbody tr:hover { background: rgba(243, 156, 18, 0.06); }
  /* Centruoti Dienos (2 st.) ir Vietos (4 st.) tiek header, tiek body */
  .dates-table th:nth-child(2),
  .dates-table th:nth-child(4),
  .dates-table td:nth-child(2),
  .dates-table td:nth-child(4) {
    text-align: center;
  }

  .dates-more { display: none; }
  .dates-more.is-open { display: table-row-group; }

  .dates-toggle {
    width: 100%;
    background: rgba(46, 107, 150, 0.12);
    color: var(--navy);
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    margin-top: 14px;
  }
  .dates-toggle:hover {
    background: var(--navy);
    color: var(--white);
  }
  .dates-toggle .arrow { transition: transform 0.3s ease; }
  .dates-toggle.open .arrow { transform: rotate(180deg); }
  .dates-toggle .hide-text { display: none; }
  .dates-toggle.open .show-text { display: none; }
  .dates-toggle.open .hide-text { display: inline; }

  .date-full { display: inline; }
  .date-short { display: none; }

  .spots-badge {
    display: inline-block;
    background: rgba(22, 160, 133, 0.14);
    color: #0E6B5F;
    padding: 4px 11px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
    border: 1px solid rgba(22, 160, 133, 0.35);
    min-width: 100px;
    text-align: center;
    box-sizing: border-box;
  }
  .spots-badge--low {
    background: rgba(208, 2, 27, 0.08);
    color: #D0021B;
    border-color: #D0021B;
    animation: spots-pulse-border 1.6s ease-in-out infinite;
  }
  .spots-badge--full {
    background: #D0021B;
    color: #fff;
    border-color: #D0021B;
    animation: none;
  }
  @keyframes spots-pulse-border {
    0%, 100% { border-color: rgba(208, 2, 27, 1); }
    50%      { border-color: rgba(208, 2, 27, 0.3); }
  }
  @media (prefers-reduced-motion: reduce) {
    .spots-badge--low { animation: none; }
  }
  /* Datų lentelės skiltys nesusispaudžia */
  .dates-table td,
  .dates-table th { white-space: nowrap; }
  .reserve-btn {
    background: #F2A832;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 22px;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(232, 149, 21, 0.3);
    white-space: nowrap;
  }
  .reserve-btn:hover {
    background: #D88B12;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 149, 21, 0.45);
  }

  /* ========== OTHER TRIPS ========== */
  .other-trips { background: var(--cream); }
  .other-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .other-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 61, 110, 0.07);
    text-align: center;
    transition: all 0.4s ease;
  }
  .other-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 151, 58, 0.3);
  }
  .other-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(200, 151, 58, 0.25);
  }
  .other-icon svg { width: 38px; height: 38px; fill: var(--white); }
  .other-card h3 {
    font-size: 1.8rem;
    margin-bottom: 14px;
  }
  .other-card p {
    color: var(--muted);
    margin-bottom: 26px;
    font-size: 1rem;
  }
  .btn-secondary {
    background: var(--navy);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-block;
    transition: all 0.3s ease;
  }
  .btn-secondary:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
  }

  /* ========== RESERVATION FORM ========== */
  .reservation {
    background: linear-gradient(135deg, #1F5F8B 0%, #134566 100%);
    color: var(--white);
    position: relative;
  }
  .reservation::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 15% 25%, rgba(243, 156, 18, 0.12) 0%, transparent 45%),
      radial-gradient(circle at 85% 75%, rgba(243, 156, 18, 0.1) 0%, transparent 45%);
    pointer-events: none;
  }
  .reservation .container { position: relative; }
  .reservation .section-header h2 { color: var(--white); }
  .reservation .section-header p { color: rgba(255,255,255,0.8); }
  .form-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 44px;
    backdrop-filter: blur(10px);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
  }
  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.98rem;
    color: var(--text);
    transition: all 0.25s ease;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 151, 58, 0.2);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%;
    background: #F2A832;
    color: var(--white);
    padding: 16px;
    border-radius: 28px;
    font-weight: 800;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 6px 16px rgba(232, 149, 21, 0.3);
  }
  .form-submit:hover {
    background: #D88B12;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 149, 21, 0.45);
  }
  .form-note {
    text-align: center;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    margin-top: 18px;
    font-style: italic;
  }
  .form-success {
    display: none;
    background: rgba(22, 160, 133, 0.18);
    border: 1px solid rgba(72, 201, 176, 0.4);
    color: #d4f5e9;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 600;
  }
  .form-success.show { display: block; }

  /* ========== CONTACT BAR ========== */
  .contact-bar {
    background: #0E3A5C;
    padding: 40px 24px;
    text-align: center;
    color: var(--white);
    border-top: 1px solid rgba(200, 151, 58, 0.15);
  }
  .contact-bar h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  .contact-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }
  .contact-phones a {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'DM Sans', -apple-system, sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }
  .contact-phones a:hover { color: var(--gold-light); }
  .contact-phones svg { width: 22px; height: 22px; fill: var(--gold); }

  /* ========== FOOTER ========== */
  footer {
    background: #08273F;
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 28px 24px;
    font-size: 0.88rem;
  }
  footer .seo-line {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    margin-bottom: 8px;
  }

  /* ========== MODAL ========== */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 25, 48, 0.75);
    backdrop-filter: blur(6px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.25s ease;
  }
  .modal-overlay.show { display: flex; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .modal {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 480px;
    width: 100%;
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
  }
  @keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
  .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--navy);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .modal-close:hover { background: var(--navy); color: var(--white); }
  .modal h3 {
    font-size: 1.7rem;
    margin-bottom: 8px;
  }
  .modal-info {
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding: 14px 18px;
    border-radius: 8px;
    margin: 18px 0 24px;
    font-size: 0.92rem;
  }
  .modal-info strong { color: var(--navy); }
  .modal .form-group label { color: var(--text); }
  .modal .form-group input {
    background: var(--cream);
    border: 1px solid rgba(11, 61, 110, 0.12);
    color: var(--text);
  }
  .modal .form-group input:focus {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 151, 58, 0.18);
  }
  .modal .form-submit { margin-top: 4px; }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 768px) {
    section { padding: 48px 18px; }
    .desktop-only { display: none; }

    /* NAV — vienas telefonas centruotas + hamburger meniu */
    .nav-inner { padding: 12px 16px; gap: 10px; position: relative; justify-content: space-between; }
    .logo .logo-desktop { display: none; }
    .logo .logo-mobile { display: block; }
    .logo img { height: 48px; }
    .nav-toggle { display: flex; }
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--white);
      flex-direction: column;
      padding: 14px 16px;
      gap: 0;
      box-shadow: 0 10px 24px rgba(0,0,0,0.12);
      border-top: 1px solid rgba(11, 61, 110, 0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
      padding: 14px 4px;
      font-size: 1.05rem;
      border-bottom: 1px solid rgba(11, 61, 110, 0.06);
    }
    .nav-links a:last-child { border-bottom: none; }
    .nav-dropdown {
      display: block !important;
      position: static;
    }
    .nav-dropdown-trigger {
      padding: 14px 4px !important;
      font-size: 1.05rem !important;
      border-bottom: 1px solid rgba(11, 61, 110, 0.06);
    }
    .nav-dropdown-menu {
      display: none !important;
    }
    .dropdown-arrow { display: none; }
    .nav-sublink {
      display: block;
      padding: 10px 4px 10px 24px !important;
      font-size: 0.95rem !important;
      color: var(--navy);
      position: relative;
      font-weight: 600;
    }
    .nav-sublink::before {
      content: '›';
      position: absolute;
      left: 8px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold);
      font-weight: 800;
      font-size: 1.2rem;
      line-height: 1;
    }
    .nav-phones { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); gap: 10px; margin: 0; }
    .nav-phones a:nth-child(2) { display: none; }
    .nav-phones a { font-size: 1.2rem; gap: 10px; font-weight: 800; white-space: nowrap; }
    .nav-phones .phone-label { display: inline; letter-spacing: 0.3px; font-size: 1.2rem; white-space: nowrap; }
    .phone-icon { width: 20px; height: 20px; flex-shrink: 0; }
    .hero-sparkles, .hero-sun { display: none; }

    /* HERO */
    .hero { padding: 110px 18px 60px; min-height: auto; }
    .hero-eyebrow { font-size: 0.95rem; letter-spacing: 2.5px; margin-bottom: 14px; }
    .hero h1 { font-size: 2rem; margin-bottom: 14px; }
    .hero p { font-size: 1.02rem; margin-bottom: 24px; }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
    .btn { width: 100%; font-size: 1rem; padding: 12px 20px; }

    /* SECTION HEADERS */
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: 1.75rem; margin-bottom: 10px; }
    .section-header p { font-size: 1rem; }
    .section-eyebrow { font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 10px; }

    /* APIE MUS */
    .about-content p { font-size: 1rem; line-height: 1.65; margin-bottom: 30px; }
    .about-stats { grid-template-columns: 1fr; gap: 12px; }
    .about-stat { padding: 20px 18px; }
    .about-stat .icon { font-size: 1.8rem; margin-bottom: 8px; }
    .about-stat .stat-value { font-size: 1.2rem; }

    /* DESTINATION CARDS — title nukeliamas po nuotrauka */
    .dest-grid, .other-grid { grid-template-columns: 1fr; gap: 22px; }
    .dest-header { font-size: 1.5rem; letter-spacing: 2px; padding: 16px 14px; gap: 10px; }
    .dest-header::before, .dest-header::after { max-width: 24px; }
    .dest-image { height: 200px; }
    .dest-top-meta { top: 12px; left: 12px; gap: 8px; }
    .dest-country { top: 12px; right: 12px; font-size: 0.85rem; }
    .dest-country .globe-icon { width: 14px; height: 14px; }
    .dest-price-tag { padding: 7px 12px; }
    .dest-price-tag .from { font-size: 0.62rem; letter-spacing: 0.4px; margin-bottom: 2px; }
    .dest-price-tag .amount { font-size: 1.05rem; }
    .dest-price-tag .amount em { font-size: 0.82rem; }
    .dest-duration { padding: 5px 11px; font-size: 0.7rem; letter-spacing: 0.3px; }
    /* Pavadinimas nebepersikloja — paslepiame overlay'į */
    .dest-overlay { display: none; }
    .dest-body { padding: 20px 18px; }
    .dest-detailed { font-size: 0.98rem; padding: 0; margin-bottom: 14px; }
    .dest-detailed .incl-title { font-size: 1.05rem; margin: 12px 0 6px; }
    .dest-detailed .incl-list--inline { display: block; }
    .dest-detailed .incl-list--inline li { margin-bottom: 5px; }
    .dest-desc { font-size: 0.95rem; }

    /* DATŲ LENTELĖ — kompaktiška */
    .dates-table { font-size: 0.9rem; }
    .dates-table th { font-size: 0.64rem; padding: 10px 2px; letter-spacing: 0.1px; }
    .dates-table td { padding: 12px 2px; }
    .dates-table td strong { font-size: 0.9rem; }
    .dates-table th:first-child, .dates-table td:first-child { padding-left: 6px; }
    .dates-table th:last-child, .dates-table td:last-child { padding-right: 6px; }
    /* Slėpti tik KAINA — palikti DATA, DIENOS, VIETOS, REZERVUOTI */
    .dates-table th:nth-child(3), .dates-table td:nth-child(3) { display: none; }
    .dates-table th:nth-child(1), .dates-table td:nth-child(1) { width: 26%; }
    .dates-table th:nth-child(2), .dates-table td:nth-child(2) { width: 18%; }
    .dates-table th:nth-child(4), .dates-table td:nth-child(4) { width: 26%; }
    .dates-table th:nth-child(5), .dates-table td:nth-child(5) { width: 30%; }
    /* Trumpesnės datos mobiliai */
    .date-full { display: none; }
    .date-short { display: inline; }
    .reserve-btn { padding: 5px 7px; font-size: 0.62rem; letter-spacing: 0; }
    .dates-toggle { font-size: 0.92rem; padding: 11px 14px; }
    .spots-badge { padding: 3px 5px; font-size: 0.62rem; letter-spacing: 0; min-width: 62px; }

    /* OTHER CARDS */
    .other-card { padding: 28px 22px; }
    .other-icon { width: 64px; height: 64px; margin-bottom: 16px; }
    .other-icon svg { width: 30px; height: 30px; }
    .other-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
    .other-card p { font-size: 0.95rem; margin-bottom: 18px; }

    /* REZERVACIJOS FORMA */
    .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .form-wrap { padding: 24px 18px; }
    .form-group { margin-bottom: 14px; }
    .form-group label { font-size: 0.82rem; margin-bottom: 6px; }
    .form-group input, .form-group select, .form-group textarea { padding: 11px 13px; font-size: 0.95rem; }
    .form-submit { padding: 14px; font-size: 1rem; }

    /* CONTACT BAR */
    .contact-bar { padding: 28px 18px; }
    .contact-bar h3 { font-size: 1.2rem; margin-bottom: 14px; }
    .contact-phones { gap: 14px; }
    .contact-phones a { font-size: 1.05rem; }
    .contact-phones svg { width: 18px; height: 18px; }

    /* MODAL */
    .modal { padding: 24px 20px; }
    .modal h3 { font-size: 1.3rem; }
    .modal-info { padding: 12px 14px; font-size: 0.85rem; margin: 14px 0 18px; }

    /* FOOTER */
    footer { padding: 22px 16px; font-size: 0.82rem; }
  }
  @media (max-width: 380px) {
    .hero h1 { font-size: 1.75rem; }
    .dest-header { font-size: 1.3rem; letter-spacing: 1.5px; }
    .dest-image { height: 180px; }
    .dest-price-tag .amount { font-size: 0.95rem; }
    .nav-phones a { font-size: 0.85rem; }
  }
