/*
Theme Name: JSA Global Luxury
Version: Luxury Editorial 1.0
*/

/* =========================
   FONTS + RESET
========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

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

:root {
  --bg: #070a10;
  --bg-2: #0c111b;
  --navy: #101827;
  --graphite: #151922;
  --graphite-soft: #202631;

  --text: #e8eaf0;
  --text-soft: rgba(232,234,240,0.68);
  --text-muted: rgba(232,234,240,0.46);

  --champagne: #c9c1a6;
  --champagne-soft: #e5ddc7;

  --line: rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.055);

  --radius: 28px;
  --max: 1460px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--text-soft);
  line-height: 1.72;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  letter-spacing: -0.035em;
}

/* =========================
   HEADER + OFFCANVAS MENU
========================= */
.jsa-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  background: rgba(7,10,16,0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}

.jsa-brand {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

.jsa-brand span {
  display: inline-block;
  font-size: 23px;
  font-weight: 800;
}

.jsa-brand small {
  display: block;
  margin-top: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.42em;
  color: var(--text-muted);
}

.jsa-menu-trigger {
  min-width: 112px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.jsa-menu-trigger:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.jsa-menu-trigger i {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--champagne);
  position: relative;
}

.jsa-menu-trigger i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px;
  height: 1px;
  background: var(--champagne);
}

.jsa-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.jsa-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.jsa-offcanvas-menu {
  position: fixed;
  top: 18px;
  right: 18px;
  width: min(420px, calc(100vw - 36px));
  min-height: calc(100vh - 36px);
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(201,193,166,0.13), transparent 36%),
    linear-gradient(160deg, rgba(18,23,32,0.98), rgba(6,8,13,0.98));
  border: 1px solid var(--line);
  box-shadow: 0 50px 140px rgba(0,0,0,0.74);
  backdrop-filter: blur(24px);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transform: translateX(22px) scale(0.96);
  transition: 0.35s ease;
}

.jsa-offcanvas-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.jsa-offcanvas-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 66px;
}

.jsa-offcanvas-brand {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.jsa-offcanvas-brand span {
  font-size: 23px;
  font-weight: 800;
}

.jsa-offcanvas-brand small {
  display: block;
  margin-top: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.42em;
  color: var(--text-muted);
}

.jsa-menu-close {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.jsa-offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.jsa-offcanvas-nav a {
  color: rgba(232,234,240,0.74);
  font-size: 17px;
  font-weight: 700;
  transition: 0.25s ease;
}

.jsa-offcanvas-nav a:hover {
  color: var(--champagne-soft);
  padding-left: 8px;
}

.jsa-offcanvas-footer {
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.jsa-offcanvas-footer p {
  font-size: 14px;
}

.jsa-offcanvas-footer a {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne-soft);
}

/* =========================
   SHARED
========================= */
.jsa-kicker {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--champagne-soft);
  margin-bottom: 22px;
}

.jsa-btn {
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.jsa-btn:hover {
  transform: translateY(-2px);
}

.jsa-btn-primary {
  background: linear-gradient(135deg, var(--champagne-soft), var(--champagne));
  color: #070a10;
  box-shadow: 0 22px 70px rgba(201,193,166,0.16);
}

.jsa-btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
}

/* =========================
   HERO WITH PHOTO
========================= */
.jsa-lux-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 160px clamp(24px, 6vw, 96px) 92px;
  background: var(--bg);
}

.jsa-lux-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) saturate(0.72) contrast(1.08);
  transform: scale(1.04);
}

.jsa-lux-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 72%, rgba(201,193,166,0.18), transparent 34%),
    linear-gradient(90deg, rgba(7,10,16,0.96) 0%, rgba(7,10,16,0.72) 42%, rgba(7,10,16,0.34) 100%),
    linear-gradient(180deg, rgba(7,10,16,0.85) 0%, rgba(7,10,16,0.36) 48%, rgba(7,10,16,0.94) 100%);
}

.jsa-lux-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.jsa-lux-hero-content h1 {
  font-size: clamp(58px, 7.2vw, 116px);
  line-height: 0.91;
  max-width: 880px;
  margin-bottom: 28px;
  text-shadow: 0 35px 110px rgba(0,0,0,0.84);
}

.jsa-lux-hero-content > p {
  max-width: 700px;
  font-size: 19px;
}

.jsa-hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================
   INTRO EDITORIAL
========================= */
.jsa-lux-intro {
  padding: 140px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  background:
    linear-gradient(180deg, #070a10, #0b0f17);
  border-top: 1px solid var(--line-soft);
}

.jsa-lux-intro-left span {
  display: block;
  font-size: clamp(72px, 8vw, 132px);
  color: rgba(255,255,255,0.055);
  font-weight: 800;
  line-height: 0.8;
  margin-bottom: 34px;
}

.jsa-lux-intro h2 {
  font-size: clamp(38px, 4.6vw, 76px);
  line-height: 0.98;
  max-width: 850px;
}

.jsa-lux-intro-right {
  align-self: end;
  max-width: 520px;
}

.jsa-lux-intro-right p {
  font-size: 18px;
}

/* =========================
   IMAGE STATEMENT
========================= */
.jsa-lux-image-statement {
  position: relative;
  min-height: 760px;
  padding: clamp(24px, 6vw, 96px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
}

.jsa-lux-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.35) saturate(0.72) contrast(1.12);
  transform: scale(1.03);
}

.jsa-lux-image-statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,10,16,0.96), rgba(7,10,16,0.38)),
    linear-gradient(180deg, rgba(7,10,16,0.2), rgba(7,10,16,0.9));
}

.jsa-lux-statement-card {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 58px;
  border-radius: 34px;
  background: rgba(10,15,23,0.70);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
}

.jsa-lux-statement-card h2 {
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 0.98;
}

/* =========================
   SERVICES IMAGE + LIST
========================= */
.jsa-lux-services {
  padding: 150px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 94px;
  align-items: center;
  background: linear-gradient(180deg, #0b0f17, #080b12);
}

.jsa-lux-services-image {
  min-height: 680px;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) saturate(0.75);
  border: 1px solid var(--line);
  box-shadow: 0 40px 140px rgba(0,0,0,0.45);
}

.jsa-lux-services-content h2 {
  font-size: clamp(38px, 4.4vw, 72px);
  line-height: 1;
  max-width: 820px;
  margin-bottom: 52px;
}

.jsa-lux-service-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid var(--line-soft);
}

.jsa-lux-service-row:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.jsa-lux-service-row span {
  color: var(--champagne);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.jsa-lux-service-row h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.jsa-lux-service-row p {
  max-width: 640px;
}

/* =========================
   INDUSTRIES
========================= */
.jsa-lux-industries {
  padding: 150px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 100px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 40%, rgba(201,193,166,0.07), transparent 30%),
    #070a10;
}

.jsa-lux-industries-content h2 {
  font-size: clamp(38px, 4.4vw, 74px);
  line-height: 1;
  max-width: 760px;
  margin-bottom: 58px;
}

.jsa-lux-industry-list {
  border-top: 1px solid var(--line-soft);
  max-width: 760px;
}

.jsa-lux-industry-list a {
  display: block;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: -0.03em;
  color: var(--text);
  transition: 0.3s ease;
}

.jsa-lux-industry-list a:hover {
  color: var(--champagne-soft);
  padding-left: 16px;
}

.jsa-lux-industries-image {
  min-height: 600px;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.28) saturate(0.76) contrast(1.08);
  border: 1px solid var(--line);
  box-shadow: 0 38px 130px rgba(0,0,0,0.5);
}

/* =========================
   TRUST
========================= */
.jsa-lux-trust {
  padding: 110px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  background: #0b0f17;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.jsa-lux-trust div {
  padding: 36px 0;
}

.jsa-lux-trust span {
  display: block;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.jsa-lux-trust p {
  max-width: 380px;
}

/* =========================
   FINAL CTA WITH IMAGE
========================= */
.jsa-lux-final {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px clamp(24px, 6vw, 96px);
  overflow: hidden;
}

.jsa-lux-final-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.35) saturate(0.72) contrast(1.1);
}

.jsa-lux-final-overlay {
  background: linear-gradient(
    rgba(5,10,20,0.6),
    rgba(5,10,20,0.75)
  );
}

.jsa-lux-final-content {
  position: relative;
  z-index: 2;
}

.jsa-lux-final h2 {
  font-size: clamp(42px, 5vw, 88px);
  line-height: 0.96;
  max-width: 980px;
  margin-bottom: 38px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .jsa-site-header {
    height: 78px;
  }

  .jsa-lux-hero {
    padding-top: 135px;
    min-height: 92vh;
  }

  .jsa-lux-hero-content h1 {
    font-size: clamp(44px, 13vw, 72px);
  }

  .jsa-lux-intro,
  .jsa-lux-services,
  .jsa-lux-industries {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .jsa-lux-services-image,
  .jsa-lux-industries-image {
    min-height: 430px;
  }

  .jsa-lux-trust {
    grid-template-columns: 1fr;
  }

  .jsa-lux-statement-card {
    padding: 34px;
  }
}
/* =========================
   LUXURY TYPOGRAPHY FIX
========================= */

/* HERO TITLE */
.jsa-lux-hero-content h1 {
  font-size: clamp(48px, 5.2vw, 82px); /* πιο μικρό */
  line-height: 1.05; /* πιο ανοιχτό */
  letter-spacing: -0.02em; /* λιγότερο "βαρύ" */
  max-width: 900px;
}

/* SECTION TITLES */
.jsa-lux-intro h2,
.jsa-lux-services-content h2,
.jsa-lux-industries-content h2,
.jsa-lux-final h2 {
  font-size: clamp(34px, 3.6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 800px;
}

/* STATEMENT BLOCK */
.jsa-lux-statement-card h2 {
  font-size: clamp(32px, 3.2vw, 58px);
  line-height: 1.1;
}

/* INDUSTRIES LINKS */
.jsa-lux-industry-list a {
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.01em;
}

/* SERVICES TITLES */
.jsa-lux-service-row h3 {
  font-size: 22px;
  letter-spacing: -0.01em;
}

/* GENERAL TEXT IMPROVEMENT */
p {
  font-size: 17px;
  line-height: 1.85; /* πιο luxury spacing */
}

/* HERO PARAGRAPH */
.jsa-lux-hero-content > p {
  font-size: 18px;
  line-height: 1.8;
}

/* BUTTONS πιο refined */
.jsa-btn {
  letter-spacing: 0.12em;
  font-size: 11px;
}

/* EXTRA: περισσότερο "αέρα" sections */
section,
.jsa-lux-intro,
.jsa-lux-services,
.jsa-lux-industries {
  gap: 110px;
}
/* =========================
   FINAL LUXURY REFINEMENT
   Smaller titles + premium polish
========================= */

/* HERO title πιο μικρό και πιο elegant */
.jsa-lux-hero-content h1 {
  font-size: clamp(42px, 4.6vw, 74px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.012em !important;
  max-width: 920px !important;
}

/* Όλοι οι μεγάλοι τίτλοι sections */
.jsa-lux-intro h2,
.jsa-lux-services-content h2,
.jsa-lux-industries-content h2,
.jsa-lux-final h2 {
  font-size: clamp(30px, 3.15vw, 54px) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.008em !important;
}

/* Statement card title */
.jsa-lux-statement-card h2 {
  font-size: clamp(28px, 2.85vw, 48px) !important;
  line-height: 1.14 !important;
}

/* Industry list titles */
.jsa-lux-industry-list a {
  font-size: clamp(22px, 2.15vw, 32px) !important;
  line-height: 1.25 !important;
}

/* Services μικροί τίτλοι */
.jsa-lux-service-row h3 {
  font-size: 20px !important;
  line-height: 1.25 !important;
}

/* Πιο σοβαρό, luxury text color */
p {
  color: rgba(232,234,240,0.64) !important;
}

/* Kicker πιο premium */
.jsa-kicker {
  color: rgba(229,221,199,0.82) !important;
  letter-spacing: 0.46em !important;
}

/* Εικόνες πιο cinematic */
.jsa-lux-hero-bg,
.jsa-lux-image,
.jsa-lux-services-image,
.jsa-lux-industries-image,
.jsa-lux-final-bg {
  filter: grayscale(0.38) saturate(0.58) contrast(1.15) brightness(0.82) !important;
}

/* Premium depth στα image blocks */
.jsa-lux-services-image,
.jsa-lux-industries-image,
.jsa-lux-statement-card {
  box-shadow:
    0 45px 130px rgba(0,0,0,0.58),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

/* Πιο refined buttons */
.jsa-btn {
  min-height: 50px !important;
  padding: 0 28px !important;
  font-size: 10.5px !important;
  letter-spacing: 0.16em !important;
}

/* Hover luxury */
.jsa-btn:hover,
.jsa-lux-industry-list a:hover,
.jsa-offcanvas-nav a:hover {
  transform: translateY(-2px);
  transition: 0.28s ease;
}

/* Πολύ διακριτικό luxury grain / βάθος */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 20% 20%, #ffffff 0 1px, transparent 1px);
  background-size: 18px 18px;
}

.jsa-site-header,
.jsa-offcanvas-menu {
  z-index: 9999;
}
/* Brighten first two images only */
.jsa-lux-hero-bg,
.jsa-lux-image {
  filter: grayscale(0.25) saturate(0.72) contrast(1.05) brightness(1.05) !important;
}

/* ===== SERVICES PAGE ===== */

.jsa-services-hero {
  padding: 160px 0 80px;
  max-width: 1100px;
  margin: auto;
}

.jsa-services-hero h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.jsa-services-hero p {
  color: #9aa3b2;
  max-width: 600px;
}

/* SERVICES LIST */

.jsa-services-list {
  padding: 80px 0;
}

.jsa-service-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 30px 0;
  display: flex;
  gap: 40px;
}

.jsa-service-item span {
  font-size: 14px;
  color: #8a93a3;
  min-width: 40px;
}

.jsa-service-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.jsa-service-item p {
  color: #9aa3b2;
}

/* IMAGE BLOCK */

.jsa-services-image {
  position: relative;
  height: 500px;
  margin: 100px 0;
}

.jsa-services-image-bg {
  position: absolute;
  inset: 0;
  background: url('ΒΑΛΕ-ΕΔΩ-IMAGE') center/cover no-repeat;
  filter: brightness(0.6);
}

.jsa-services-image h2 {
  position: relative;
  z-index: 2;
  font-size: 42px;
  max-width: 600px;
}
/* =========================
   SERVICES PAGE – LUXURY STYLE
========================= */

.jsa-services-page {
    background: linear-gradient(180deg, #060c16 0%, #02050a 100%);
    color: #e8edf2;
}

/* HERO */

.jsa-services-hero {
    padding: 140px 0 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.jsa-services-hero .jsa-kicker {
    letter-spacing: 2px;
    font-size: 12px;
    color: #c5a47e;
    margin-bottom: 20px;
    display: block;
}

.jsa-services-hero h1 {
    font-size: 64px;
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 25px;
    font-weight: 500;
}

.jsa-services-hero p {
    font-size: 16px;
    color: #9aa4af;
    max-width: 500px;
}

/* SERVICES LIST */

.jsa-services-list {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.jsa-service-item {
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.jsa-service-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.jsa-service-item span {
    font-size: 14px;
    color: #c5a47e;
    display: block;
    margin-bottom: 10px;
}

.jsa-service-item h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 500;
}

.jsa-service-item p {
    font-size: 15px;
    color: #9aa4af;
    max-width: 500px;
}

/* HOVER EFFECT */

.jsa-service-item:hover {
    transform: translateX(10px);
    transition: 0.4s ease;
}

/* RESPONSIVE */

@media(max-width:768px){
    .jsa-services-hero h1 {
        font-size: 38px;
    }

    .jsa-service-item h3 {
        font-size: 24px;
    }
}
/* =========================
   SERVICES PAGE FINAL
========================= */

.jsa-services-page {
  background: #070a10;
  color: var(--text);
}

.jsa-services-hero-pro {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 150px clamp(24px, 6vw, 96px) 90px;
  overflow: hidden;
}

.jsa-services-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) saturate(0.7) contrast(1.1) brightness(0.82);
  transform: scale(1.04);
}

.jsa-services-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,10,16,0.96), rgba(7,10,16,0.62), rgba(7,10,16,0.30)),
    linear-gradient(180deg, rgba(7,10,16,0.68), rgba(7,10,16,0.95));
}

.jsa-services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.jsa-services-hero-content h1 {
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  max-width: 780px;
  margin-bottom: 24px;
}

.jsa-services-hero-content p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 640px;
  color: rgba(232,234,240,0.66);
}

.jsa-services-editorial {
  padding: 120px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.045);
}

.jsa-service-block {
  position: relative;
  overflow: hidden;
  background: #070a10;
  padding: clamp(48px, 6vw, 90px);
  min-height: 340px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.35s ease;
}

.jsa-service-block:hover {
  background: #0d121d;
  transform: translateY(-4px);
}

.jsa-service-block::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #c9c1a6, transparent);
  transition: width 0.6s ease;
}

.jsa-service-block:hover::after {
  width: 100%;
}

.jsa-service-block span {
  display: block;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  margin-bottom: 30px;
}

.jsa-service-block h2 {
  font-size: clamp(24px, 2.35vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-bottom: 20px;
}

.jsa-service-block p {
  max-width: 520px;
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(232,234,240,0.62);
}

.jsa-services-statement {
  min-height: 68vh;
  padding: 130px clamp(24px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle at center, rgba(201,193,166,0.10), transparent 34%),
    #080b12;
  text-align: center;
}

.jsa-services-statement h2 {
  font-size: clamp(32px, 3.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 860px;
}

@media (max-width: 900px) {
  .jsa-services-editorial {
    grid-template-columns: 1fr;
  }

  .jsa-services-hero-content h1 {
    font-size: clamp(34px, 10vw, 52px);
  }
}
/* ===== ULTRA LUXURY LINE ===== */

.jsa-service-block {
  position: relative;
  overflow: hidden;
}

.jsa-service-block::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #c9c1a6, transparent);
  transition: width 0.6s ease;
}

.jsa-service-block:hover::after {
  width: 100%;
}
/* =========================
   SERVICES REFINEMENT FIX
========================= */

/* 📸 ΦΩΤΟ ΠΙΟ ΦΩΤΕΙΝΗ (hero + final) */
.jsa-services-hero,
.jsa-services-page .jsa-services-hero {
    position: relative;
}

.jsa-services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(5,10,20,0.55),
        rgba(5,10,20,0.65)
    );
    z-index: 1;
}

/* Αν υπάρχει background image */
.jsa-services-hero-bg {
    filter: brightness(1.15) contrast(1.05) !important;
}

/* 🔤 HERO TITLE (πιο μικρό & elegant) */
.jsa-services-hero h1 {
    font-size: clamp(42px, 3.8vw, 60px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.01em !important;
}

/* 🔤 FINAL TITLE (πιο μικρό) */
.jsa-lux-final h2,
.jsa-services-final h2 {
    font-size: clamp(28px, 2.6vw, 44px) !important;
    line-height: 1.15 !important;
}

/* ✨ EXTRA: λίγο πιο καθαρό text πάνω στη φωτεινή εικόνα */
.jsa-services-hero p {
    color: rgba(232,234,240,0.72) !important;
}
/* =========================
   SERVICES CINEMATIC POLISH
========================= */

/* Slow zoom στην hero εικόνα */
.jsa-services-hero-bg {
  animation: jsaSlowZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes jsaSlowZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.11);
  }
}

/* Cinematic fade στο περιεχόμενο */
.jsa-services-hero-content {
  animation: jsaFadeUp 1.25s ease forwards;
}

.jsa-service-block {
  animation: jsaFadeUp 1s ease forwards;
}

@keyframes jsaFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apple-level typography polish */
.jsa-services-hero-content h1,
.jsa-services-statement h2 {
  font-weight: 500 !important;
  letter-spacing: -0.018em !important;
  text-wrap: balance;
}

.jsa-services-hero-content p,
.jsa-service-block p {
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* πιο premium μικρές ετικέτες */
.jsa-services-page .jsa-kicker,
.jsa-service-block span {
  letter-spacing: 0.34em !important;
  font-size: 11px !important;
}
/* =========================
   INDUSTRIES LUXURY DESIGN
========================= */

/* =========================
   INDUSTRIES – FINAL LUXURY VERSION
========================= */

/* HERO */
.jsa-ind-hero {
  padding: 140px 0 80px;
  max-width: 1100px;
  margin: auto;
}

.jsa-ind-hero h1 {
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: #ffffff;
}

.jsa-ind-hero p {
  color: rgba(232,234,240,0.7);
  max-width: 520px;
}

/* SECTIONS */
.jsa-ind-section {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* IMAGE BACKGROUND */
.jsa-ind-section::before {
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--bg);
  background-size:cover;
  background-position:center;

  transform:scale(1.06);
  transition:transform 1.8s ease;

  filter: brightness(1.08) contrast(1.08) saturate(0.85);
}

/* OVERLAY (IMPORTANT FIX) */
.jsa-ind-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(5,10,20,0.82) 0%,
    rgba(5,10,20,0.55) 40%,
    rgba(5,10,20,0.25) 100%
  );
}

/* CONTENT */
.jsa-ind-inner {
  position: relative;
  z-index: 5;
  max-width: 600px;
  margin-left: 8%;
}

/* TEXT FIX (IMPORTANT) */
.jsa-ind-inner h2 {
  font-size: clamp(26px, 2.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: #ffffff;
  margin-bottom: 16px;
}

.jsa-ind-inner p {
  color: rgba(232,234,240,0.82);
  font-size: 15px;
  max-width: 420px;
}

/* CINEMATIC ZOOM */
.jsa-ind-section.in-view::before {
  transform: scale(1.18);
}

/* FADE + SLIDE */
.jsa-ind-inner {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.jsa-ind-section.in-view .jsa-ind-inner {
  opacity: 1;
  transform: translateY(0);
}

/* LUXURY LIGHT EFFECT */
.jsa-ind-section::after {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    circle at 70% 40%,
    rgba(255,255,255,0.05),
    transparent 60%
  );
  pointer-events:none;
}

/* HOVER DEPTH */
.jsa-ind-section:hover::before {
  transform: scale(1.22);
  transition: transform 2.5s ease;
}

/* MOBILE */
@media(max-width:768px){
  .jsa-ind-section {
    height: 70vh;
  }

  .jsa-ind-inner {
    margin-left: 20px;
    margin-right: 20px;
  }
}
/* =========================
   ULTRA CINEMATIC SYSTEM
========================= */

/* =========================
   HERO CINEMATIC ZOOM
========================= */

.jsa-services-hero-bg {
  transform: scale(1.05);
  animation: jsaCinematicZoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes jsaCinematicZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.12);
  }
}

/* πιο cinematic overlay */
.jsa-services-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5,10,20,0.96), rgba(5,10,20,0.6), rgba(5,10,20,0.25)),
    linear-gradient(180deg, rgba(5,10,20,0.6), rgba(5,10,20,0.92));
}

/* =========================
   FADE SYSTEM (Apple feel)
========================= */

.jsa-services-hero-content {
  animation: jsaFadeUp 1.4s ease forwards;
}

.jsa-service-block {
  opacity: 0;
  animation: jsaFadeUp 1s ease forwards;
}

.jsa-service-block:nth-child(1) { animation-delay: 0.2s; }
.jsa-service-block:nth-child(2) { animation-delay: 0.4s; }
.jsa-service-block:nth-child(3) { animation-delay: 0.6s; }
.jsa-service-block:nth-child(4) { animation-delay: 0.8s; }

@keyframes jsaFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   APPLE TYPOGRAPHY
========================= */

.jsa-services-hero-content h1 {
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  text-wrap: balance;
}

.jsa-service-block h2 {
  font-weight: 500;
  letter-spacing: -0.015em;
}

.jsa-services-hero-content p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(232,234,240,0.72);
}

/* μικρό refinement σε labels */
.jsa-kicker,
.jsa-service-block span {
  letter-spacing: 0.35em !important;
  font-size: 11px !important;
}

/* =========================
   MICRO INTERACTION
========================= */

.jsa-service-block {
  transition: 0.35s ease;
}

.jsa-service-block:hover {
  transform: translateY(-6px);
  background: #0d121d;
}

/* subtle line effect */
.jsa-service-block::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #c9c1a6, transparent);
  transition: width 0.6s ease;
}

.jsa-service-block:hover::after {
  width: 100%;
}
/* =========================
   INDUSTRIES CINEMATIC
========================= */

.jsa-industries-cinematic {
  background:#05070c;
  color:#e8edf2;
}

/* HERO */
.jsa-ind-hero {
  min-height:80vh;
  display:flex;
  align-items:flex-end;
  padding:140px clamp(24px,6vw,96px) 80px;
}

.jsa-ind-hero h1 {
  font-size:clamp(38px,4vw,64px);
  line-height:1.1;
  max-width:800px;
}

/* SECTION */
.jsa-ind-section {
  position:relative;
  min-height:90vh;
  display:flex;
  align-items:center;
  padding:0 clamp(24px,6vw,96px);
  overflow:hidden;
}

/* background μέσω CSS variable */
.jsa-ind-section::before {
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--bg);
  background-size:cover;
  background-position:center;
  transform:scale(1.08);
  transition:transform 1.5s ease;
  will-change:transform;
  filter:brightness(0.75) contrast(1.1) saturate(0.7);
}

/* overlay */
.jsa-ind-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(5,10,20,0.95), rgba(5,10,20,0.5));
}

/* content */
.jsa-ind-inner {
  position:relative;
  z-index:2;
  max-width:600px;
}

.jsa-ind-inner span {
  display:block;
  color:#c9c1a6;
  letter-spacing:0.3em;
  font-size:11px;
  margin-bottom:20px;
}

.jsa-ind-inner h2 {
  font-size:clamp(28px,2.8vw,48px);
  margin-bottom:15px;
  letter-spacing:-0.01em;
}

.jsa-ind-inner p {
  color:rgba(232,234,240,0.65);
}

/* SCROLL ZOOM */
.jsa-ind-section.in-view::before {
  transform:scale(1.15);
}

/* REVEAL */
.jsa-ind-inner {
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.jsa-ind-section.in-view .jsa-ind-inner {
  opacity:1;
  transform:translateY(0);
}
/* =========================
   ULTRA INDUSTRIES PACK
========================= */

/* SNAP (Apple-like) */
html {
  scroll-behavior: smooth;
}
body {
  scroll-snap-type: y mandatory;
}
.jsa-ind-section {
  scroll-snap-align: start;
}

/* SECTION BASE */
.jsa-ind-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.jsa-ind-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.1);
  filter: brightness(0.85) contrast(1.1);
  transition: transform 1.5s ease;
}

/* PARALLAX (θα κινείται με mouse) */
.jsa-ind-section.parallax-active .jsa-ind-video {
  transform: scale(1.15) translate3d(var(--x,0), var(--y,0), 0);
}

/* OVERLAY (για να φαίνονται τα γράμματα) */
.jsa-ind-overlay {
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(
    90deg,
    rgba(5,10,20,0.85) 0%,
    rgba(5,10,20,0.55) 40%,
    rgba(5,10,20,0.2) 100%
  );
}

/* CONTENT */
.jsa-ind-inner {
  position: relative;
  z-index: 5;
  margin-left: 8%;
  max-width: 600px;
}

/* TYPOGRAPHY */
.jsa-ind-inner h2 {
  font-size: clamp(28px,2.6vw,44px);
  color:#fff;
  margin-bottom:12px;
}

.jsa-ind-inner p {
  color:rgba(232,234,240,0.82);
}

/* FADE REVEAL */
.jsa-ind-inner {
  opacity:0;
  transform:translateY(40px);
  transition:all 1s ease;
}
.jsa-ind-section.in-view .jsa-ind-inner {
  opacity:1;
  transform:translateY(0);
}

/* BLUR TRANSITION */
.jsa-ind-section {
  filter: blur(6px);
  opacity:0.6;
  transition:all 1s ease;
}
.jsa-ind-section.in-view {
  filter: blur(0);
  opacity:1;
}

/* LIGHT GLOW */
.jsa-ind-section::after {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    circle at 70% 40%,
    rgba(255,255,255,0.05),
    transparent 60%
  );
  z-index:3;
  pointer-events:none;
}
/* =========================
   INDUSTRIES FINAL IMAGE VERSION
========================= */

.jsa-industries-cinematic {
  background: #05070c;
  color: #fff;
}

.jsa-ind-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 140px clamp(24px,6vw,96px) 80px;
}

.jsa-ind-hero h1 {
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.08;
  max-width: 850px;
}

.jsa-ind-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px,6vw,96px);
  overflow: hidden;
}

.jsa-ind-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: brightness(0.88) contrast(1.12) saturate(0.85);
  transition: transform 2s ease;
}

.jsa-ind-section:hover::before {
  transform: scale(1.13);
}

.jsa-ind-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,7,14,0.86), rgba(3,7,14,0.48), rgba(3,7,14,0.20)),
    linear-gradient(180deg, rgba(3,7,14,0.25), rgba(3,7,14,0.62));
  z-index: 2;
}

.jsa-ind-inner {
  position: relative;
  z-index: 5;
  max-width: 620px;
}

.jsa-ind-inner span {
  display: block;
  color: #d8cda9;
  font-size: 12px;
  letter-spacing: 0.34em;
  margin-bottom: 22px;
}

.jsa-ind-inner h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.jsa-ind-inner p {
  color: rgba(255,255,255,0.82) !important;
  font-size: 16px;
  line-height: 1.75;
  max-width: 500px;
}
/* =========================
   INDUSTRIES FINAL REFINEMENT
========================= */

/* Hero με εικόνα στην κορυφή */
.jsa-ind-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 160px clamp(24px,6vw,96px) 95px;
  overflow: hidden;
  background:
  linear-gradient(90deg, rgba(3,7,14,0.55), rgba(3,7,14,0.25), rgba(3,7,14,0.05)),
  linear-gradient(180deg, rgba(3,7,14,0.20), rgba(3,7,14,0.65)),
  url('https://jsaglobal.gr/wp-content/uploads/2026/04/wmremove-transformed-scaled.jpeg') center/cover no-repeat !important;
	.jsa-ind-hero {
  filter: brightness(1.15) contrast(1.05);
}
}

/* Κρύβει το απλό μαύρο hero background */
.jsa-ind-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 35%, rgba(255,255,255,0.08), transparent 45%);
  pointer-events: none;
}

.jsa-ind-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

/* Πιο premium/καθαρές εικόνες στα industry blocks */
.jsa-ind-section::before {
  background-size: cover !important;
  background-position: center !important;
  filter: brightness(0.94) contrast(1.16) saturate(0.95) !important;
}

/* Λίγο πιο έντονη αλλά όχι σκοτεινή επικάλυψη */
.jsa-ind-overlay {
  background:
    linear-gradient(90deg, rgba(3,7,14,0.82), rgba(3,7,14,0.42), rgba(3,7,14,0.16)),
    linear-gradient(180deg, rgba(3,7,14,0.18), rgba(3,7,14,0.58)) !important;
}

/* Μεγαλύτεροι αριθμοί */
.jsa-ind-inner span {
  font-size: 16px !important;
  letter-spacing: 0.28em !important;
  font-weight: 800 !important;
  color: #e0d4ad !important;
}
/* =========================
   INDUSTRIES NEXT LEVEL HERO
========================= */

.jsa-ind-hero {
  isolation: isolate !important;
}

/* Cinematic slow zoom */
.jsa-ind-hero {
  animation: jsaHeroBreath 18s ease-in-out infinite alternate !important;
}

@keyframes jsaHeroBreath {
  from {
    background-size: 100% !important;
    background-position: center center !important;
  }
  to {
    background-size: 112% !important;
    background-position: center 48% !important;
  }
}

/* Soft luxury moving light */
.jsa-ind-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: -20% !important;
  z-index: 1 !important;
  background:
    radial-gradient(circle at 25% 70%, rgba(201,193,166,0.14), transparent 32%),
    radial-gradient(circle at 78% 28%, rgba(120,170,255,0.10), transparent 34%) !important;
  animation: jsaHeroLightMove 12s ease-in-out infinite alternate !important;
  pointer-events: none !important;
}

@keyframes jsaHeroLightMove {
  from {
    transform: translate3d(-2%, 1%, 0) scale(1);
    opacity: 0.65;
  }
  to {
    transform: translate3d(2%, -1%, 0) scale(1.08);
    opacity: 1;
  }
}

/* Text reveal */
.jsa-ind-hero-content {
  animation: jsaHeroTextReveal 1.35s cubic-bezier(.2,.8,.2,1) both !important;
}

@keyframes jsaHeroTextReveal {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Premium title polish */
.jsa-ind-hero h1 {
  text-wrap: balance;
  text-shadow:
    0 24px 70px rgba(0,0,0,0.78),
    0 1px 0 rgba(255,255,255,0.08) !important;
}

/* Fine cinematic vignette */
.jsa-ind-hero::after {
  background:
    radial-gradient(circle at 72% 34%, rgba(255,210,130,0.16), transparent 40%),
    radial-gradient(circle at 20% 78%, rgba(80,150,255,0.12), transparent 38%),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.38)) !important;
}
/* =========================
   FORCE INDUSTRIES FULL SCREEN
========================= */

body,
html {
  overflow-x: hidden !important;
}

/* Σπάει όλα τα WordPress/theme containers */
body .jsa-industries-cinematic,
body .jsa-ind-hero,
body .jsa-ind-section {
  width: 100vw !important;
  max-width: none !important;
  margin-left: 50% !important;
  transform: translateX(-50%) !important;
  left: auto !important;
  right: auto !important;
}

/* HERO full οθόνη */
body .jsa-ind-hero {
  min-height: 100vh !important;
  padding: 0 clamp(28px, 8vw, 140px) !important;
  display: flex !important;
  align-items: center !important;
  background:
    linear-gradient(90deg, rgba(3,7,14,0.58), rgba(3,7,14,0.24), rgba(3,7,14,0.06)),
    linear-gradient(180deg, rgba(3,7,14,0.18), rgba(3,7,14,0.55)),
    url('https://jsaglobal.gr/wp-content/uploads/2026/04/wmremove-transformed-scaled.jpeg')
    center/cover no-repeat !important;
}

/* Sections full οθόνη */
body .jsa-ind-section {
  min-height: 100vh !important;
  padding: 0 clamp(28px, 8vw, 140px) !important;
}

/* Να μη μικραίνει το content */
body .jsa-ind-hero-content,
body .jsa-ind-inner {
  max-width: 760px !important;
  margin-left: 0 !important;
  transform: none !important;
}
/* =========================
ABOUT PAGE
========================= */

.jsa-about-hero {
    position: relative;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1523961131990-5ea7c61b2107?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.jsa-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,10,20,0.9), rgba(5,10,20,0.3));
}

.jsa-about-content {
    position: relative;
    max-width: 700px;
    z-index: 2;
}

.jsa-about-content span {
    font-size: 12px;
    letter-spacing: 3px;
    opacity: 0.6;
}

.jsa-about-content h1 {
    font-size: 60px;
    line-height: 1.1;
    margin: 20px 0;
}

.jsa-about-content p {
    font-size: 18px;
    opacity: 0.7;
}


/* SECTIONS */

.jsa-about-section {
    padding: 120px 8%;
    background: #050a14;
}

.jsa-about-section.alt {
    background: #070f1f;
}

.jsa-about-inner {
    max-width: 800px;
}

.jsa-about-inner h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.jsa-about-inner p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.7;
}
/* ABOUT HERO */

.jsa-about-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: url('https://images.unsplash.com/photo-1523961131990-5ea7c61b2107?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
}

.jsa-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,10,20,0.9), rgba(5,10,20,0.4));
}

.jsa-about-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.jsa-about-content h1 {
    font-size: 64px;
    margin: 20px 0;
}

.jsa-about-content p {
    opacity: 0.7;
}


/* GRID SECTIONS */

.jsa-about-block {
    padding: 120px 8%;
    background: #050a14;
}

.jsa-about-block.alt {
    background: #070f1f;
}

.jsa-about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.jsa-about-grid.reverse {
    flex-direction: row-reverse;
}

.jsa-about-text {
    flex: 1;
}

.jsa-about-image {
    flex: 1;
}

.jsa-about-image img {
    width: 100%;
    border-radius: 12px;
}


/* VALUES */

.jsa-about-values {
    display: flex;
    justify-content: space-between;
    padding: 100px 8%;
    background: #050a14;
}

.jsa-value {
    width: 30%;
}

.jsa-value h3 {
    font-size: 22px;
    margin-bottom: 10px;
}


/* CTA */

.jsa-about-cta {
    padding: 120px 8%;
    text-align: center;
    font-size: 32px;
}
/* CLEAN HEADER */

header {
    backdrop-filter: blur(10px);
    background: rgba(5,10,20,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* MENU LINKS */

nav a {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: 0.3s;
}

nav a:hover {
    opacity: 1;
}

/* MENU BUTTON */

.jsa-menu-btn {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
}
/* CONTACT HERO */

.jsa-contact-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: url('https://images.unsplash.com/photo-1492724441997-5dc865305da7?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
}

.jsa-contact-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,10,20,0.7);
}

.jsa-contact-hero .content {
    position: relative;
    z-index: 2;
}

.jsa-contact-hero h1 {
    font-size: 60px;
}


/* GRID */

.jsa-contact-grid {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    background: #050a14;
}

.jsa-contact-info {
    flex: 1;
}

.jsa-contact-form {
    flex: 1;
}


/* FORM */

.jsa-contact-form input,
.jsa-contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.jsa-contact-form textarea {
    height: 150px;
}

.jsa-contact-form button {
    padding: 15px;
    width: 100%;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
}
/* WHATSAPP BUTTON */

.jsa-whatsapp {
    display: inline-block; /* ΠΟΛΥ σημαντικό */
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 25px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    width: auto; /* να ΜΗΝ απλώνεται */
    max-width: fit-content; /* extra safety */
}

.jsa-whatsapp:hover {
    background: #25D366;
    color: #000;
}
/* FLOATING WHATSAPP */

.jsa-floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 52px;
  padding: 0 22px;

  border-radius: 999px;
  background: rgba(37, 211, 102, 0.92);
  color: #031007 !important;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;

  box-shadow: 0 18px 50px rgba(37, 211, 102, 0.28);
  transition: 0.3s ease;
}

.jsa-floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #25D366;
  box-shadow: 0 24px 70px rgba(37, 211, 102, 0.38);
}

@media (max-width: 768px) {
  .jsa-floating-whatsapp {
    right: 18px;
    bottom: 18px;
    height: 48px;
    padding: 0 18px;
    font-size: 11px;
  }
}
/* CONTACT GRID FIX (LEFT INFO - RIGHT FORM CENTERED) */

.jsa-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center; /* αυτό κάνει τη φόρμα να έρθει στη μέση */
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

/* LEFT SIDE */
.jsa-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* RIGHT SIDE (FORM) */
.jsa-contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .jsa-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.jsa-whatsapp {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 30px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.jsa-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}
.jsa-contact-info h2 {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.jsa-contact-info p {
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-size: 12px;
    opacity: 0.7;
}

.jsa-contact-info strong {
    letter-spacing: 0.6px;
    text-transform: none;
    font-size: 15px;
}

.jsa-contact-info br {
    display: none; /* κόβουμε τα <br> για να ελέγχουμε spacing με CSS */
}
/* =========================
   CLEAN OFFCANVAS WORDPRESS MENU
========================= */

.jsa-offcanvas-nav ul,
.jsa-offcanvas-nav li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.jsa-offcanvas-nav .jsa-menu {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.jsa-offcanvas-nav a {
  display: inline-block !important;
  color: rgba(255,255,255,0.82) !important;
  text-decoration: none !important;
  font-size: clamp(28px, 3vw, 48px) !important;
  line-height: 1.05 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  transition: 0.25s ease !important;
}

.jsa-offcanvas-nav a:hover,
.jsa-offcanvas-nav .current-menu-item > a {
  color: #ffffff !important;
  transform: translateX(8px) !important;
}

.jsa-offcanvas-nav a::before {
  content: "— ";
  color: rgba(229,221,199,0.65);
}

.jsa-offcanvas-nav {
  margin-top: 60px !important;
}
/* =========================
   MENU CLICK FIX
========================= */

.jsa-offcanvas-menu {
  z-index: 99999 !important;
  pointer-events: auto !important;
}

.jsa-offcanvas-nav,
.jsa-offcanvas-nav ul,
.jsa-offcanvas-nav li,
.jsa-offcanvas-nav a {
  position: relative !important;
  z-index: 100000 !important;
  pointer-events: auto !important;
}

.jsa-menu-backdrop {
  z-index: 99990 !important;
  pointer-events: auto !important;
}

.jsa-offcanvas-nav a {
  cursor: pointer !important;
}
/* =========================
   MENU TYPOGRAPHY REFINED
========================= */

.jsa-offcanvas-nav a {
  font-weight: 400 !important;   /* πιο λεπτό */
  letter-spacing: -0.01em !important;
  font-family: "Playfair Display", serif !important; /* πιο luxury */
}
/* =========================
   HERO IMAGE BRIGHTER
========================= */

.jsa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* πιο ανοιχτό overlay */
  z-index: 1;
}

.jsa-hero img,
.jsa-hero video,
.jsa-hero {
  filter: brightness(4.45) contrast(1.05);
}
.jsa-hero {
  background-blend-mode: lighten;
}
/* =========================
   CLEAN MODERN TITLES
========================= */

h1, h2, h3, .jsa-title, .jsa-hero h1 {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em;
}
font-size: clamp(16px, 1.8vw, 24px) !important;
}
/* =========================
   HEADER LOWER POSITION
========================= */

.jsa-header {
  padding-top: 50px !important;
}
/* FORCE MENU SIZE FIX */

.jsa-offcanvas-nav ul li a {
  font-size: 16px !important;
  line-height: 1.2 !important;
}