  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0D1B2A;
    --blue: #1A3A5C;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --gray: #6B7280;
    --light-gray: #E5E7EB;
  }

  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--navy); }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(13,27,42,0.97);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 64px;
    border-bottom: 1px solid rgba(201,168,76,0.3);
  }
  .nav-logo { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.15rem; letter-spacing: 0.01em; display: flex; align-items: center; gap: 12px; text-decoration: none; max-width: 65%; }
  .nav-logo img { height: 36px; width: auto; display: block; flex-shrink: 0; }
  .nav-logo span { white-space: normal; line-height: 1.2; }
  @media (max-width: 768px) { .nav-logo span { display: none; } }
  .nav-links { display: flex; gap: 32px; }
  .nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { background: var(--gold); color: var(--navy); padding: 8px 20px; border-radius: 4px; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: background 0.2s; }
  .nav-cta:hover { background: var(--gold-light); }

  /* HERO */
  .hero {
    min-height: 100vh; background: var(--navy);
    display: flex; align-items: center;
    padding: 100px 48px 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: 'Σ';
    position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 40vw; font-weight: 900;
    color: rgba(201,168,76,0.04);
    line-height: 1; pointer-events: none;
  }
  .hero-content { max-width: 680px; position: relative; z-index: 1; }
  .hero-eyebrow { color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; }
  .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); color: var(--white); line-height: 1.1; margin-bottom: 24px; }
  .hero h1 span { color: var(--gold); }
  .hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
  .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary { background: var(--gold); color: var(--navy); padding: 14px 32px; border-radius: 4px; font-weight: 600; text-decoration: none; font-size: 0.95rem; transition: background 0.2s; }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-secondary { border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 14px 32px; border-radius: 4px; font-weight: 500; text-decoration: none; font-size: 0.95rem; transition: all 0.2s; }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
  .hero-stats { display: flex; gap: 48px; margin-top: 64px; padding-top: 40px; }
  .stat-value { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
  .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

  /* SECTIONS */
  section { padding: 96px 48px; }
  .section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
  .section-sub { color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 560px; }

  /* CLASSES */
  .classes { background: var(--off-white); }
  .classes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
  .class-card {
    background: var(--white); border: 1px solid var(--light-gray);
    border-radius: 8px; padding: 32px;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
  }
  .class-card:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.1); transform: translateY(-2px); }
  .class-card.featured { border-color: var(--gold); background: var(--navy); color: var(--white); }
  .class-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 20px; background: var(--off-white); color: var(--navy); }
  .class-card.featured .class-badge { background: var(--gold); color: var(--navy); }
  .class-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 12px; }
  .class-card.featured h3 { color: var(--white); }
  .class-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
  .class-card.featured p { color: rgba(255,255,255,0.65); }
  .class-topics { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
  .topic-tag { font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; background: var(--off-white); color: var(--navy); border: 1px solid var(--light-gray); }
  .class-card.featured .topic-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.15); }



  /* PREMIUM CLASS SECTIONS */
  .level-block { margin-top: 54px; }
  .level-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(13,27,42,0.12);
  }
  .level-heading span {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    color: var(--navy);
    font-weight: 900;
  }
  .level-heading small {
    max-width: 560px;
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.92rem;
  }
  .premium-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    flex-direction: column;
  }
  .premium-card::after {
    content: "Γ";
    position: absolute;
    right: -18px;
    bottom: -52px;
    font-family: 'Playfair Display', serif;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(201,168,76,0.045);
    line-height: 1;
    pointer-events: none;
  }
  .premium-card.featured::after { color: rgba(255,255,255,0.04); }
  .premium-card h3 { position: relative; z-index: 1; }
  .premium-card p { position: relative; z-index: 1; margin-bottom: 4px; }
  .premium-card .class-topics { position: relative; z-index: 1; margin-bottom: 22px; }
  .class-action {
    position: relative;
    z-index: 1;
    margin-top: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 11px 16px;
    border-radius: 4px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .class-action:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(201,168,76,0.25);
  }
  .class-card.featured .class-action {
    background: var(--gold);
    color: var(--navy);
  }


  /* SHOP */
  .shop { background: var(--white); }
  .shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
  .shop-card { border: 1px solid var(--light-gray); border-radius: 8px; overflow: hidden; transition: box-shadow 0.2s; }
  .shop-card:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.08); }
  .shop-card-header { background: var(--navy); padding: 24px; display: flex; align-items: center; justify-content: space-between; }
  .shop-card-header .grade { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.4rem; font-weight: 700; }
  .shop-card-header .type { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
  .shop-card-body { padding: 24px; }
  .shop-card-body h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
  .shop-card-body p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; margin-bottom: 20px; }
  .shop-card-footer { display: flex; align-items: center; justify-content: space-between; }
  .price { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); font-weight: 700; }
  .price span { font-size: 0.8rem; font-family: 'Inter', sans-serif; color: var(--gray); font-weight: 400; }
  .btn-buy { background: var(--gold); color: var(--navy); border: none; padding: 10px 20px; border-radius: 4px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
  .btn-buy:hover { background: var(--gold-light); }

  /* MEMBERS AREA */
  .members { background: var(--navy); color: var(--white); }
  .members .section-title { color: var(--white); }
  .members .section-sub { color: rgba(255,255,255,0.6); }
  .members-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
  .members-features { display: flex; flex-direction: column; gap: 24px; }
  .member-feature { display: flex; gap: 16px; align-items: flex-start; }
  .feature-icon { width: 40px; height: 40px; border-radius: 6px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
  .feature-text h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
  .feature-text p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
  .login-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); border-radius: 12px; padding: 40px; }
  .login-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 8px; }
  .login-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
  .form-group input { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; padding: 10px 14px; color: var(--white); font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
  .form-group input:focus { border-color: var(--gold); }
  .form-group input::placeholder { color: rgba(255,255,255,0.25); }
  .btn-login { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 12px; border-radius: 4px; font-size: 0.95rem; font-weight: 700; cursor: pointer; margin-top: 8px; transition: background 0.2s; }
  .btn-login:hover { background: var(--gold-light); }

  /* CONTACT */
  .contact { background: var(--off-white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; align-items: start; }
  .contact-info { display: flex; flex-direction: column; gap: 24px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .contact-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
  .contact-item h4 { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 4px; }
  .contact-item p { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
  .contact-form { background: var(--white); border: 1px solid var(--light-gray); border-radius: 8px; padding: 36px; }
  .contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 24px; }
  .cf-group { margin-bottom: 16px; }
  .cf-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
  .cf-group input, .cf-group textarea { width: 100%; border: 1px solid var(--light-gray); border-radius: 4px; padding: 10px 14px; font-size: 0.9rem; outline: none; transition: border-color 0.2s; font-family: 'Inter', sans-serif; }
  .cf-group input:focus, .cf-group textarea:focus { border-color: var(--gold); }
  .cf-group textarea { height: 100px; resize: none; }
  .btn-send { background: var(--navy); color: var(--white); border: none; padding: 12px 28px; border-radius: 4px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
  .btn-send:hover { background: var(--blue); }

  /* FOOTER */
  footer { background: var(--navy); color: rgba(255,255,255,0.4); text-align: center; padding: 32px 48px; font-size: 0.82rem; border-top: 1px solid rgba(255,255,255,0.08); }
  footer span { color: var(--gold); }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    section { padding: 64px 20px; }
    .hero { padding: 100px 20px 64px; }
    .classes-grid, .shop-grid { grid-template-columns: 1fr; }
    .members-content, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-stats { gap: 24px; }
  }


/* STEP 3 — Μοτίβο καρτών: σκούρα / κρεμ / σκούρα */
.classes .class-card,
.classes .class-card.featured,
.classes .premium-card,
.classes .premium-card.featured {
  border: 1px solid rgba(201,168,76,0.55);
  box-shadow: 0 8px 28px rgba(13,27,42,0.08);
}

/* 1η και 3η κάρτα κάθε σειράς: navy */
.classes-grid .class-card:nth-child(1),
.classes-grid .class-card:nth-child(3) {
  background: var(--navy);
  color: var(--white);
}

/* 2η κάρτα κάθε σειράς: απαλό κρεμ */
.classes-grid .class-card:nth-child(2) {
  background: #FAF8F2;
  color: var(--navy);
}

/* Καταργούμε την παλιά λογική featured, για να δουλεύει καθαρά το νέο μοτίβο */
.classes-grid .class-card.featured {
  border-color: rgba(201,168,76,0.55);
}

/* Badges */
.classes-grid .class-card .class-badge,
.classes-grid .class-card.featured .class-badge {
  background: var(--gold);
  color: var(--navy);
}

/* Τίτλοι */
.classes-grid .class-card:nth-child(1) h3,
.classes-grid .class-card:nth-child(3) h3,
.classes-grid .class-card:nth-child(1).featured h3,
.classes-grid .class-card:nth-child(3).featured h3 {
  color: var(--white);
}

.classes-grid .class-card:nth-child(2) h3,
.classes-grid .class-card:nth-child(2).featured h3 {
  color: var(--navy);
}

/* Περιγραφές */
.classes-grid .class-card:nth-child(1) p,
.classes-grid .class-card:nth-child(3) p,
.classes-grid .class-card:nth-child(1).featured p,
.classes-grid .class-card:nth-child(3).featured p {
  color: rgba(255,255,255,0.70);
}

.classes-grid .class-card:nth-child(2) p,
.classes-grid .class-card:nth-child(2).featured p {
  color: var(--gray);
}

/* Chips μαθημάτων */
.classes-grid .class-card:nth-child(1) .topic-tag,
.classes-grid .class-card:nth-child(3) .topic-tag,
.classes-grid .class-card:nth-child(1).featured .topic-tag,
.classes-grid .class-card:nth-child(3).featured .topic-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border-color: rgba(201,168,76,0.48);
}

.classes-grid .class-card:nth-child(2) .topic-tag,
.classes-grid .class-card:nth-child(2).featured .topic-tag {
  background: rgba(255,255,255,0.72);
  color: var(--navy);
  border-color: rgba(201,168,76,0.42);
}

/* Link Εκδήλωσης Ενδιαφέροντος */
.classes-grid .class-card .class-action,
.classes-grid .class-card.featured .class-action {
  background: transparent;
  color: var(--gold);
  padding: 0;
  border-radius: 0;
  font-weight: 600;
  text-decoration: underline;
  box-shadow: none;
}

.classes-grid .class-card .class-action::after,
.classes-grid .class-card.featured .class-action::after {
  content: " →";
  margin-left: 8px;
  text-decoration: none;
}

.classes-grid .class-card .class-action:hover,
.classes-grid .class-card.featured .class-action:hover {
  background: transparent;
  color: var(--gold-light);
  transform: translateX(2px);
  box-shadow: none;
}

/* Hover */
.classes-grid .class-card:hover {
  box-shadow: 0 12px 34px rgba(13,27,42,0.14);
  transform: translateY(-3px);
}


/* STEP 5 — Οριζόντια κάρτα Αγγλικών */
.english-level {
  margin-top: 64px;
}

.english-card {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--navy) 0%, #12263A 100%);
  border: 1px solid rgba(201,168,76,0.55);
  border-radius: 10px;
  padding: 38px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(13,27,42,0.14);
}

.english-card::after {
  content: "EN";
  position: absolute;
  right: 28px;
  bottom: -34px;
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(201,168,76,0.045);
  line-height: 1;
  pointer-events: none;
}

.english-card-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.english-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
}

.english-card p {
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 760px;
}

.english-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 28px 0 26px;
}

.english-columns h4 {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.english-card .topic-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border-color: rgba(201,168,76,0.48);
}

.english-card .class-badge {
  background: var(--gold);
  color: var(--navy);
}

.english-card .class-action {
  background: transparent;
  color: var(--gold);
  padding: 0;
  border-radius: 0;
  font-weight: 600;
  text-decoration: underline;
  box-shadow: none;
}

.english-card .class-action::after {
  content: " →";
  margin-left: 8px;
  text-decoration: none;
}

.english-card .class-action:hover {
  color: var(--gold-light);
  transform: translateX(2px);
  background: transparent;
  box-shadow: none;
}

@media (max-width: 768px) {
  .english-card {
    padding: 28px;
  }

  .english-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .english-card::after {
    font-size: 6rem;
    right: 10px;
  }
}


/* STEP 6 — Μικρή σημαία στην ενότητα Αγγλικών */
.english-level .level-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.english-card .class-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


/* STEP 7 */
.english-note{
margin-top:14px;
color:rgba(255,255,255,.75);
font-size:.9rem;
}


/* STEP 8 */
.english-benefits{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:14px;
}

.english-card .class-action{
margin-top:24px;
display:inline-block;
}


/* STEP 9 — Γιατί να μας επιλέξετε */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.why-card {
  background: #FAF8F2;
  border: 1px solid rgba(201,168,76,0.38);
  border-radius: 10px;
  padding: 28px 24px;
  min-height: 235px;
  box-shadow: 0 8px 26px rgba(13,27,42,0.06);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(13,27,42,0.10);
  border-color: rgba(201,168,76,0.70);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 22px;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.65;
}

@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* STEP 10 — Επικοινωνία, Social και Χάρτης */
.contact-info a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: var(--gold);
}

.muted-line {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 400;
}

.map-block {
  margin-top: 56px;
  border: 1px solid rgba(201,168,76,0.32);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(13,27,42,0.07);
}

.map-heading {
  padding: 26px 30px;
  border-bottom: 1px solid var(--light-gray);
  background: #FAF8F2;
}

.map-heading h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.map-heading p {
  color: var(--gray);
  font-size: 0.92rem;
}

.map-block iframe {
  display: block;
  width: 100%;
}

.btn-maps-link {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--off-white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-top: 1px solid var(--light-gray);
  transition: background 0.2s ease;
}

.btn-maps-link:hover {
  background: #FAF8F2;
}

footer p {
  line-height: 1.7;
}


/* STEP 15 — Hero carousel φωτογραφιών */
.hero::before {
  content: none !important;
}

.hero {
  isolation: isolate;
}

.hero-content {
  width: min(48%, 680px);
}

.hero-carousel {
  position: absolute;
  top: 64px;
  right: 0;
  bottom: 0;
  width: 52%;
  z-index: 0;
  overflow: hidden;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(90deg, var(--navy) 0%, rgba(13,27,42,0.86) 16%, rgba(13,27,42,0.48) 48%, rgba(13,27,42,0.68) 100%),
    linear-gradient(180deg, rgba(13,27,42,0.35) 0%, rgba(13,27,42,0.88) 100%);
  pointer-events: none;
}

.hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(13,27,42,0.18);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0;
}

.hero-slide-1 {
  background-image: url("../img/hero/hero1.jpg");
}

.hero-slide-2 {
  background-image: url("../img/hero/hero2.jpg");
}

.hero-slide-3 {
  background-image: url("../img/hero/hero3.png");
}

.hero-logo-watermark {
  position: absolute;
  right: 8%;
  bottom: 9%;
  z-index: 6;
  opacity: 0.16;
  filter: grayscale(1) brightness(1.4);
}

.hero-logo-watermark img {
  width: min(260px, 24vw);
  height: auto;
}

@media (max-width: 900px) {
  .hero-content {
    width: 100%;
  }

  .hero-carousel {
    width: 100%;
    opacity: 0.22;
  }

  .hero-carousel::before {
    background: rgba(13,27,42,0.85);
  }
}


/* STEP 16 — Πιο εμφανές hero carousel, χωρίς μεγάλο watermark */
.hero-carousel::before {
  background:
    linear-gradient(90deg, var(--navy) 0%, rgba(13,27,42,0.70) 14%, rgba(13,27,42,0.12) 48%, rgba(13,27,42,0.20) 100%),
    linear-gradient(180deg, rgba(13,27,42,0.05) 0%, rgba(13,27,42,0.30) 100%) !important;
}

.hero-carousel::after {
  background: rgba(13,27,42,0.04) !important;
}

.hero-logo-watermark {
  display: none !important;
}

.hero-slide {
  animation: heroFadeVisible 21s infinite;
  filter: saturate(0.92) contrast(1.05);
}

.hero-slide-1 { animation-delay: 0s; }
.hero-slide-2 { animation-delay: 7s; }
.hero-slide-3 { animation-delay: 14s; }

@keyframes heroFadeVisible {
  0% { opacity: 0; transform: scale(1.03); }
  8% { opacity: 1; }
  38% { opacity: 1; transform: scale(1.08); }
  48% { opacity: 0; transform: scale(1.09); }
  100% { opacity: 0; transform: scale(1.03); }
}
