/* ═══════════════════════════════════════════
   DRS Rent Igoumenitsa — Global Stylesheet
   ═══════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --red: #b62025;
  --red-dark: #921a1e;
  --red-light: #d42830;
  --black: #181818;
  --dark: #202020;
  --card-bg: #262626;
  --border: #363636;
  --text: #f0f0f0;
  --muted: #999;
  --white: #fff;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Quicksand', sans-serif; }
input, select, button, textarea { font-family: 'Quicksand', sans-serif; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--red);
  display: flex; align-items: center; justify-content: center; gap: 32px;
  padding: 8px 48px;
  font-size: 13px; font-weight: 500;
  position: relative;
  z-index: 99;
}
.top-bar a { color: white; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.top-bar a svg { width: 14px; height: 14px; fill: white; }

/* ─── TOPBAR alias (cookies / policy pages) ─── */
.topbar {
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  padding: 8px 48px;
  font-size: 13px; font-weight: 500;
  position: relative; z-index: 99;
}
.topbar-wrap {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.topbar-left, .topbar-right {
  display: flex; align-items: center; gap: 24px;
}
.topbar a, .topbar span {
  color: white; text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 62px;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 101;
  margin-top: 5px;
}
.logo img {
  height: 70px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* ─── MOBILE MENU TOGGLE ─── */
.menu-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 102;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); text-decoration: none;
  font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .nav-cta { font-size: 16px; }

/* ─── FLEET HERO ─── */
.fleet-hero {
  padding: 80px 48px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fleet-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(215,43,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.fleet-hero-label {
  display: inline-block;
  background: rgba(215,43,43,0.15);
  border: 1px solid rgba(215,43,43,0.4);
  color: var(--red-light);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.fleet-hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}
.fleet-hero h1 em { color: var(--red); font-style: normal; }
.fleet-hero p {
  max-width: 520px; margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

/* ─── FILTERS ─── */
.filters-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 48px 48px;
}
.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.filter-group label {
  display: block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 8px;
}
.filter-group select {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s;
}
.filter-group select:focus { outline: none; border-color: var(--red); }
.filter-btn {
  align-self: end;
  background: var(--red);
  color: white;
  border: none;
  padding: 11px 28px;
  border-radius: 6px;
  font-size: 15px; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.filter-btn:hover { background: var(--red-dark); }
.filter-btn:active { transform: scale(0.98); }

/* ─── FLEET SECTION ─── */
.fleet-section {
  max-width: 1200px; margin: 0 auto;
  padding: 0 48px 80px;
}
.fleet-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.fleet-header h2 {
  font-size: 28px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fleet-count { font-size: 14px; color: var(--muted); }
.fleet-count span { color: var(--red); font-weight: 600; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ─── CAR CARD ─── */
.car-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.5s forwards;
}
.car-card:nth-child(1) { animation-delay: 0.05s; }
.car-card:nth-child(2) { animation-delay: 0.15s; }
.car-card:nth-child(3) { animation-delay: 0.25s; }
.car-card:nth-child(4) { animation-delay: 0.1s; }
.car-card:nth-child(5) { animation-delay: 0.2s; }
.car-card:nth-child(6) { animation-delay: 0.3s; }
.car-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215,43,43,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(215,43,43,0.15);
}
.car-img-wrap {
  position: relative; height: 200px; overflow: hidden; background: #111;
}
.car-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.car-card:hover .car-img-wrap img { transform: scale(1.05); }
.car-year {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.car-type-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: white; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.car-body { padding: 20px 22px; }
.car-name {
  font-size: 24px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--white); margin-bottom: 16px;
}
.car-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 20px;
}
.spec { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.spec-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.spec-icon svg { width: 14px; height: 14px; fill: var(--red-light); }
.spec-val { font-weight: 600; color: var(--text); }
.car-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.car-price { display: flex; flex-direction: column; }
.price-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.price-val { font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; }
.price-val span { font-size: 14px; color: var(--muted); font-weight: 400; }
.car-btn {
  background: transparent;
  border: 1.5px solid var(--red); color: var(--red);
  padding: 10px 20px; border-radius: 6px;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, color 0.2s; display: inline-block;
}
.car-btn:hover { background: var(--red); color: white; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(215,43,43,0.08) 0%, transparent 70%);
}
.cta-banner h2 {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 12px; position: relative;
}
.cta-banner p { color: var(--muted); font-size: 16px; margin-bottom: 32px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-primary {
  background: var(--red); color: white;
  padding: 14px 32px; border-radius: 6px;
  font-size: 16px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  text-decoration: none; transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent; border: 1.5px solid var(--border); color: var(--text);
  padding: 14px 32px; border-radius: 6px;
  font-size: 16px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 56px 48px 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px; margin: 0 auto;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--muted); font-size: 14px;
  margin-top: 16px; max-width: 260px; line-height: 1.7;
}
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background 0.2s, border-color 0.2s;
}
.social-btn:hover { background: var(--red); border-color: var(--red); }
.social-btn svg { width: 16px; height: 16px; fill: var(--muted); }
.social-btn:hover svg { fill: white; }
footer h4 {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--white); margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
footer ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; color: var(--muted); font-size: 14px;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--muted); text-decoration: none; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 13px; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  z-index: 999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-banner-text h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cookie-banner-text p { font-size: 13px; color: var(--muted); max-width: 600px; }
.cookie-banner-text a { color: var(--red); text-decoration: none; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner-actions button {
  padding: 9px 18px; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--text); transition: all 0.2s;
}
.cookie-banner-actions button:hover { border-color: var(--white); color: var(--white); }
.cookie-banner-actions .btn-accept {
  background: var(--red); border-color: var(--red); color: white;
}
.cookie-banner-actions .btn-accept:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* ─── COOKIE MODAL ─── */
.cookie-modal { display: none; position: fixed; inset: 0; z-index: 1000; }
.cookie-modal.open { display: block; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.cookie-modal-box {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 32px;
  width: 90%; max-width: 540px;
  max-height: 90vh; overflow-y: auto;
}
.cookie-modal-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 24px; gap: 16px;
}
.cookie-modal-head h2 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.cookie-modal-head p { font-size: 13px; color: var(--muted); }
.cookie-modal-close {
  background: none; border: none; color: var(--muted);
  font-size: 24px; cursor: pointer; line-height: 1; padding: 0; flex-shrink: 0;
}
.cookie-modal-close:hover { color: var(--white); }
.cookie-groups { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.cookie-group {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px; background: var(--black);
  border: 1px solid var(--border); border-radius: 8px;
}
.cookie-group-info h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cookie-group-info p { font-size: 12px; color: var(--muted); }
.cookie-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute; inset: 0;
  background: var(--border); border-radius: 24px;
  cursor: pointer; transition: background 0.2s;
}
.cookie-slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  background: white; left: 3px; top: 3px;
  transition: transform 0.2s;
}
.cookie-switch input:checked + .cookie-slider { background: var(--red); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-switch.is-locked .cookie-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-modal-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.cookie-modal-actions button {
  padding: 10px 18px; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--text); transition: all 0.2s;
}
.cookie-modal-actions button:hover { border-color: var(--white); }
.cookie-modal-actions .btn-save {
  background: var(--red); border-color: var(--red); color: white; margin-left: auto;
}
.cookie-modal-actions .btn-save:hover { background: var(--red-dark); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 20px; justify-content: center; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; position: absolute; right: 20px; }
  .fleet-hero, .filters-wrap, .fleet-section { padding-left: 20px; padding-right: 20px; }
  .fleet-hero { padding-top: 48px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 20px 24px; }
  .cta-banner { padding: 48px 20px; }
  .top-bar { padding: 8px 20px; flex-wrap: wrap; gap: 12px; }
  .topbar { padding: 8px 20px; flex-wrap: wrap; }
  .topbar-right { display: none; }
  .cookie-banner { padding: 16px 20px; }
  .cookie-banner-content { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════
   TERMS PAGE — Γενικοί Όροι Ενοικίασης
   ═══════════════════════════════════════════ */

/* ─── CONTAINER ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── SITE HEADER (terms / other pages) ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.main-nav {
  display: flex; gap: 28px; align-items: center;
}
.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--white); }
.main-nav a.active { color: var(--red); }
.header-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 22px; border-radius: 4px;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; text-decoration: none;
  font-size: 14px; transition: background 0.2s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--red-dark); }

/* ─── BTN ─── */
.btn { display: inline-block; text-decoration: none; border-radius: 6px; font-weight: 700; transition: background 0.2s, color 0.2s, border-color 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--red); color: white; padding: 12px 28px; }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border); padding: 11px 28px;
}
.btn-secondary:hover { border-color: var(--white); color: var(--white); }

/* ─── SECTION LABEL ─── */
.section-label {
  display: inline-block;
  background: rgba(182,32,37,0.15);
  border: 1px solid rgba(182,32,37,0.4);
  color: var(--red-light);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 14px;
}

/* ─── TERMS HERO ─── */
.terms-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.terms-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 0% 50%, rgba(182,32,37,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.terms-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; color: var(--white);
  margin-bottom: 16px; line-height: 1.1;
}
.terms-intro {
  color: var(--muted); font-size: 16px;
  max-width: 680px; line-height: 1.7;
}

/* ─── TERMS LAYOUT ─── */
.terms-section { padding: 56px 0 80px; }
.terms-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

/* ─── SIDEBAR ─── */
.terms-sidebar { position: sticky; top: 80px; }
.terms-side-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.terms-side-card h3 {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); margin-bottom: 16px;
}
.terms-side-card ul { list-style: none; }
.terms-side-card ul li { margin-bottom: 6px; }
.terms-side-card ul a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s; display: block;
  padding: 5px 10px; border-radius: 6px;
  border-left: 2px solid transparent;
}
.terms-side-card ul a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border-left-color: var(--red);
}

/* ─── TERMS CONTENT ─── */
.terms-content { display: flex; flex-direction: column; gap: 24px; }
.terms-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  scroll-margin-top: 88px;
}
.terms-card h2 {
  font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.terms-card h3 {
  font-size: 16px; font-weight: 700;
  color: var(--white); margin: 20px 0 10px;
}
.terms-card p {
  color: var(--muted); font-size: 15px;
  line-height: 1.75; margin-bottom: 12px;
}
.terms-card p:last-child { margin-bottom: 0; }
.terms-card p strong { color: var(--text); font-weight: 700; }
.terms-card ul {
  list-style: none; margin: 10px 0 12px 0;
}
.terms-card ul li {
  color: var(--muted); font-size: 15px;
  padding: 5px 0 5px 20px;
  position: relative; line-height: 1.6;
}
.terms-card ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--red); font-size: 13px;
}

/* ─── TERMS TABLE ─── */
.terms-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-top: 16px;
}
.terms-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.terms-table thead tr {
  background: var(--dark);
}
.terms-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.terms-table td {
  padding: 12px 16px;
  color: var(--text); font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.terms-table tbody tr:last-child td { border-bottom: none; }
.terms-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.terms-table tbody tr:hover { background: rgba(182,32,37,0.06); }
.terms-table td:last-child { color: var(--red-light); font-weight: 700; }

/* ─── SITE FOOTER (shared) ─── */
.site-footer {
  background: var(--dark);
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-card h3 {
  font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.footer-card h4 {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--white); margin-bottom: 16px;
}
.footer-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.footer-card ul { list-style: none; }
.footer-card ul li { margin-bottom: 10px; }
.footer-card ul a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-card ul a:hover { color: var(--white); }

/* ─── RESPONSIVE TERMS ─── */
@media (max-width: 900px) {
  .terms-layout { grid-template-columns: 1fr; }
  .terms-sidebar { position: static; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-wrap { padding: 0; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .terms-hero { padding: 40px 0 32px; }
  .terms-card { padding: 20px; }
  .site-footer { padding: 40px 0 24px; }
}

/* ═══════════════════════════════════════════
   POLICY PAGE — Aliases (.policy-* = .terms-*)
   ═══════════════════════════════════════════ */
.policy-hero          { padding: 64px 0 48px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.policy-hero::before  { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 0% 50%, rgba(182,32,37,0.08) 0%, transparent 70%); pointer-events: none; }
.policy-hero h1       { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.policy-intro         { color: var(--muted); font-size: 16px; max-width: 680px; line-height: 1.7; }

.policy-section       { padding: 56px 0 80px; }
.policy-layout        { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }

.policy-sidebar       { position: sticky; top: 80px; }
.policy-side-card     { background: var(--dark); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.policy-side-card h3  { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 16px; }
.policy-side-card ul  { list-style: none; }
.policy-side-card ul li { margin-bottom: 6px; }
.policy-side-card ul a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; display: block; padding: 5px 10px; border-radius: 6px; border-left: 2px solid transparent; }
.policy-side-card ul a:hover { color: var(--white); background: rgba(255,255,255,0.04); border-left-color: var(--red); }

.policy-content       { display: flex; flex-direction: column; gap: 24px; }
.policy-card          { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 32px; scroll-margin-top: 88px; }
.policy-card h2       { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.policy-card h3       { font-size: 16px; font-weight: 700; color: var(--white); margin: 20px 0 10px; }
.policy-card p        { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 12px; }
.policy-card p:last-child { margin-bottom: 0; }
.policy-card p strong { color: var(--text); font-weight: 700; }
.policy-card a        { color: var(--red-light); text-decoration: none; }
.policy-card a:hover  { text-decoration: underline; }
.policy-card ul       { list-style: none; margin: 10px 0 12px 0; }
.policy-card ul li    { color: var(--muted); font-size: 15px; padding: 5px 0 5px 20px; position: relative; line-height: 1.6; }
.policy-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--red); font-size: 13px; }

@media (max-width: 900px) {
  .policy-layout { grid-template-columns: 1fr; }
  .policy-sidebar { position: static; }
}
@media (max-width: 768px) {
  .policy-card { padding: 20px; }
}

/* ─── SCROLL OFFSET για sticky nav ─── */
:target,
[id] {
  scroll-margin-top: 80px;
}

/* ─── Footer logo z-index fix ─── */
.footer-brand .logo { z-index: auto; }

/* FIX μόνο εκεί που χρειάζεται */
.top-bar a,
.footer-contact-item a,
.policy-card a,
.terms-card a {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* flex/grid παιδιά να μπορούν να μικρύνουν */
.top-bar,
.top-bar a,
.footer-contact-item,
.footer-grid > div,
.policy-layout,
.policy-content,
.policy-card,
.policy-side-card {
  min-width: 0;
}

@media (max-width: 768px) {


  .footer-contact-item a {
    word-break: break-word;
    overflow-wrap: break-word;
  }


  .menu-toggle {
    display: flex;
    position: static;
    margin-left: 12px;
    flex-shrink: 0;
  }
}