﻿    /* ── Page-level overrides (style.css is loaded first) ── */
    body { height: auto; min-height: 100vh; overflow: auto; }
    .app-header { position: sticky; top: 0; z-index: 100; }

    /* ── Page hero ── */
    .page-hero {
      background:
        linear-gradient(135deg, rgba(13,71,161,0.92) 0%, rgba(21,101,192,0.88) 50%, rgba(25,118,210,0.92) 100%),
        url('/images/card-argolis.png') center/cover no-repeat;
      padding: 52px 24px 56px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(249,168,37,0.2);
      border: 1px solid rgba(249,168,37,0.4);
      border-radius: 100px;
      padding: 4px 14px;
      font-size: 12px;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .hero-title {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(30px, 5vw, 52px);
      color: #fff;
      line-height: 1.1;
      margin-bottom: 14px;
    }
    .hero-title span { color: var(--gold); }
    .hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.72);
      max-width: 520px;
      margin: 0 auto 28px;
      line-height: 1.65;
    }
    .hero-stats {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hstat {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,0.8);
    }
    .hstat-icon { font-size: 16px; }

    /* ── Content area ── */
    .content {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 20px 80px;
    }

    /* ── Filter chips ── */
    .filters {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }
    .chip {
      padding: 7px 18px;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      background: var(--surface);
      font-size: 13px;
      font-weight: 700;
      color: var(--text-sec);
      cursor: pointer;
      transition: all 0.15s ease;
    }
    .chip:hover { border-color: var(--blue); color: var(--blue); }
    .chip.active {
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      border-color: transparent;
      color: #fff;
    }

    /* ── Grid ── */
    .trips-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 20px;
    }

    /* ── Trip card ── */
    .trip-card {
      background: var(--surface);
      border-radius: var(--radius);
      border: 1.5px solid var(--border);
      overflow: hidden;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
    }
    .trip-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(30,136,229,0.18);
      border-color: rgba(30,136,229,0.4);
    }

    /* Gradient hero banner */
    .card-hero {
      height: 140px;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 14px 16px;
    }
    .card-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,27,62,0.65) 0%, transparent 60%);
    }
    .hero-emoji {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 32px;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }
    .card-route {
      position: relative;
      z-index: 1;
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,0.92);
      display: flex;
      align-items: center;
      gap: 4px;
      flex-wrap: wrap;
    }
    .route-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #fff;
      flex-shrink: 0;
    }
    .route-arrow { color: rgba(255,255,255,0.55); font-size: 11px; }

    /* Tags on hero */
    .card-tags {
      position: absolute;
      top: 12px;
      left: 12px;
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      z-index: 1;
    }
    .tag {
      background: rgba(255,255,255,0.22);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 100px;
      padding: 3px 9px;
      font-size: 11px;
      font-weight: 700;
      color: #fff;
    }

    /* Card body */
    .card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
    .card-title {
      font-family: 'Fredoka One', cursive;
      font-size: 19px;
      color: var(--text);
      margin-bottom: 6px;
      line-height: 1.2;
    }
    .card-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 14px;
      flex: 1;
    }

    /* Stats row */
    .card-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin-bottom: 14px;
    }
    .stat {
      background: var(--bg);
      border-radius: 10px;
      padding: 8px 6px;
      text-align: center;
    }
    .stat-val {
      font-family: 'Fredoka One', cursive;
      font-size: 16px;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
    }
    .stat-lbl {
      font-size: 10px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    /* Highlights */
    .card-highlights {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }
    .highlight {
      background: var(--olive-dim);
      color: var(--olive);
      border-radius: 100px;
      padding: 3px 10px;
      font-size: 11px;
      font-weight: 700;
    }

    /* CTA */
    .card-cta {
      width: 100%;
      padding: 11px;
      border-radius: 10px;
      border: none;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      color: #fff;
      font-family: 'Nunito', sans-serif;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: opacity 0.15s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .card-cta:hover { opacity: 0.88; }

    /* Hero image themes */
    .hero-athens      { background: url(/images/card-argolis.png) center/cover no-repeat, linear-gradient(135deg, #1565c0, #0288d1); }
    .hero-peloponnese { background: url(/images/card-peloponnese.png) center/cover no-repeat, linear-gradient(135deg, #558b2f, #33691e); }
    .hero-islands     { background: url(/images/card-ionian.png) center/cover no-repeat, linear-gradient(135deg, #00838f, #006064); }
    .hero-north       { background: url(/images/card-northern.png) center/cover no-repeat, linear-gradient(135deg, #6a1b9a, #283593); }
    .hero-crete       { background: url(/images/card-crete.png) center/cover no-repeat, linear-gradient(135deg, #e65100, #bf360c); }
    .hero-epirus      { background: url(/images/card-oracle.png) center/cover no-repeat, linear-gradient(135deg, #37474f, #1a5276); }

    /* ── Detail page link (SEO) ── */
    .card-detail-link {
      display: block;
      text-align: center;
      margin-top: 8px;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
      text-decoration: none;
    }
    .card-detail-link:hover { color: var(--blue); }

    /* ── Footer ── */
    .page-footer {
      background: var(--surface);
      border-top: 1.5px solid var(--border);
      padding: 24px;
      text-align: center;
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .page-footer a {
      color: var(--blue);
      font-weight: 700;
      text-decoration: none;
    }
    .page-footer .btn-tc-footer {
      background: none;
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
      cursor: pointer;
      transition: border-color 0.15s, color 0.15s;
    }
    .page-footer .btn-tc-footer:hover {
      border-color: var(--blue);
      color: var(--blue);
    }

    /* Hidden when filtered out */
    .trip-card.filtered-out {
      display: none;
    }

    /* ── FAQ section ── */
    .faq-section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px 72px;
    }
    .faq-section h2 {
      font-family: 'Fredoka One', cursive;
      font-size: 26px;
      color: var(--text);
      margin-bottom: 6px;
    }
    .faq-intro {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 28px;
    }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .faq-item {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .faq-item summary {
      display: block;
      padding: 18px 20px;
      font-size: 15px;
      font-weight: 800;
      color: var(--text);
      cursor: pointer;
      list-style: none;
      position: relative;
      padding-right: 44px;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 22px;
      font-weight: 400;
      color: var(--blue);
      transition: transform 0.2s ease;
    }
    .faq-item[open] summary::after {
      transform: translateY(-50%) rotate(45deg);
    }
    .faq-item summary:hover { color: var(--blue); }
    .faq-answer {
      padding: 0 20px 18px;
      font-size: 14px;
      color: var(--text-sec);
      line-height: 1.7;
      border-top: 1px solid var(--border);
      padding-top: 14px;
    }

    /* ── TC Modal ── */
    .hidden { display: none !important; }
    .modal-overlay {
      position: fixed; inset: 0;
      background: rgba(10, 50, 100, 0.72);
      display: flex; align-items: center; justify-content: center;
      z-index: 1000; backdrop-filter: blur(8px);
    }
    .modal-box {
      background: var(--surface);
      border: 2px solid var(--border-hover);
      border-radius: 24px; width: 440px; max-width: 95vw;
      box-shadow: 0 24px 60px rgba(30,136,229,0.18), 0 6px 20px rgba(0,0,0,0.12);
    }
    .tc-modal-box { width: 580px; max-height: 85vh; display: flex; flex-direction: column; }
    .modal-header {
      padding: 30px 30px 22px; text-align: center;
      border-bottom: 2px solid var(--border);
      background: linear-gradient(180deg, rgba(30,136,229,0.08) 0%, transparent 100%);
      border-radius: 22px 22px 0 0; position: relative;
    }
    .modal-logo { font-size: 52px; margin-bottom: 10px; display: block; }
    .modal-header h2 {
      font-family: 'Fredoka One', sans-serif; font-size: 28px; font-weight: 400; margin-bottom: 6px;
      background: linear-gradient(90deg, var(--blue), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .modal-header p { color: var(--text-sec); font-size: 13px; font-weight: 600; }
    .tc-close-btn {
      position: absolute; top: 16px; right: 16px;
      width: 32px; height: 32px; border-radius: 50%;
      background: #f0f4f8; border: 2px solid var(--border);
      color: var(--text-sec); font-size: 20px; line-height: 1;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
    }
    .tc-close-btn:hover { background: var(--surface); color: var(--text); }
    .tc-modal-body {
      padding: 20px 28px; overflow-y: auto; flex: 1;
      display: flex; flex-direction: column; gap: 0;
      scrollbar-width: thin; scrollbar-color: var(--blue) transparent;
    }
    .tc-modal-body::-webkit-scrollbar { width: 5px; }
    .tc-modal-body::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
    .tc-section { padding: 14px 0; border-bottom: 1px solid var(--border); }
    .tc-section:last-child { border-bottom: none; }
    .tc-section h3 { font-size: 13px; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
    .tc-section p { font-size: 13px; color: var(--text-sec); line-height: 1.65; margin-bottom: 6px; }
    .tc-section p:last-child { margin-bottom: 0; }
    .tc-section strong { color: var(--text); }
    .tc-section-highlight {
      background: linear-gradient(135deg, rgba(245,166,35,0.06) 0%, rgba(74,159,226,0.04) 100%);
      border-radius: 10px; padding: 14px; border: 1px solid rgba(245,166,35,0.2) !important; margin: 4px 0;
    }
    .tc-partners-list { list-style: none; padding: 0; margin: 8px 0; display: flex; flex-direction: column; gap: 5px; }
    .tc-partners-list li { font-size: 13px; color: var(--text-sec); padding: 5px 10px; background: rgba(30,136,229,0.04); border-radius: 6px; border-left: 3px solid var(--gold); }
    .tc-partners-list li strong { color: var(--text); }
    .tc-modal-footer { padding: 14px 28px 24px; }
    .btn-primary {
      background: linear-gradient(135deg, #2563eb, #1a4bbf); color: #fff; border: none;
      border-radius: 10px; padding: 11px 18px; font-size: 14px; font-family: 'Nunito', sans-serif;
      font-weight: 900; cursor: pointer; width: 100%;
      box-shadow: 0 5px 0 #0f2d7a, 0 7px 0 rgba(0,0,0,0.3);
      transition: all 0.1s ease; letter-spacing: 0.3px;
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, #3b82f6, #2563eb);
      transform: translateY(-2px);
      box-shadow: 0 7px 0 #0f2d7a, 0 9px 0 rgba(0,0,0,0.3);
    }
    .btn-primary:active {
      transform: translateY(4px);
      box-shadow: 0 1px 0 #0f2d7a, 0 2px 0 rgba(0,0,0,0.3);
    }
    .btn-primary:disabled {
      opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: 0 3px 0 #0a1e5a;
    }