/* ═══════════════════════════════════════════════════════════════
   FLOWGEEK — global.css
   Loaded on EVERY page. Contains only what is truly shared:
   variables, reset, base, particle canvas, preloader, cursor,
   header/nav, footer, shared component primitives (card, buttons,
   section patterns, scroll reveal), and responsive rules for all
   of the above.
   ═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────
   2. GOOGLE FONTS IMPORT
   (kept here so every page gets the same font stack via one file)
───────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&family=JetBrains+Mono:wght@300;400;500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap');

/* ───────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
───────────────────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-base:    #040406;
  --bg-surface: #07070a;
  --bg-raised:  #0d0d14;

  /* Accent — teal only */
  --teal:       #63cab7;
  --teal-dim:   rgba(99, 202, 183, 0.15);
  --teal-glow:  rgba(99, 202, 183, 0.35);
  --teal-faint: rgba(99, 202, 183, 0.06);

  /* Text scale */
  --text-primary:   #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.5);
  --text-muted:     rgba(255, 255, 255, 0.2);
  --text-ghost:     rgba(255, 255, 255, 0.07);

  /* Borders */
  --border:       rgba(255, 255, 255, 0.07);
  --border-teal:  rgba(99, 202, 183, 0.25);
  --border-glow:  rgba(99, 202, 183, 0.5);

  /* Shadows */
  --shadow-card: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
  --shadow-teal: 0 0 30px rgba(99, 202, 183, 0.15);

  /* Typography */
  --font-display:   'Bebas Neue', sans-serif;
  --font-editorial: 'Cormorant Garamond', serif;
  --font-body:      'DM Sans', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;

  /* Secondary accent palette (used for stats, sliders, etc.) */
  --blue-400:   rgba(96, 165, 250, 1);
  --purple-400: rgba(167, 139, 250, 1);
  --pink-400:   rgba(244, 114, 182, 1);
}

/* ───────────────────────────────────────────────────────────────
   CUSTOM SCROLLBAR (Flowgeek Theme)
───────────────────────────────────────────────────────────────── */
/* 1. Firefox Support (Modern standard) */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--teal) var(--bg-base);
}

/* 2. WebKit Browsers (Chrome, Safari, Edge, Opera) */
::-webkit-scrollbar {
    width: 10px;  
    height: 10px; 
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
    border-left: 1px solid rgba(255, 255, 255, 0.05); 
}
::-webkit-scrollbar-thumb {
    background: rgba(99, 202, 183, 0.3); 
    border-radius: 10px; 
    border: 2px solid var(--bg-base); 
    transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--teal); 
}
::-webkit-scrollbar-corner {
    background: var(--bg-base);
}

/* ───────────────────────────────────────────────────────────────
   3. RESET & BASE
───────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Hide native cursor everywhere — custom cursor takes over */
* { cursor: none !important; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { background: none; border: none; font-family: inherit; }

/* ───────────────────────────────────────────────────────────────
   4. GLOBAL PARTICLE CANVAS
───────────────────────────────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ───────────────────────────────────────────────────────────────
   5. PAGE WRAPPER
───────────────────────────────────────────────────────────────── */
.page-wrapper {
  position: relative;
  z-index: 1;
}

/* ───────────────────────────────────────────────────────────────
   6. PRELOADER
───────────────────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-base);
  transition: opacity 0.7s ease;
}
#preloader img {
  width: 96px;
  height: auto;
  animation: fg-pulse 1.4s ease-in-out infinite;
}
@keyframes fg-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.93); }
}

/* ───────────────────────────────────────────────────────────────
   7. CUSTOM CURSOR
───────────────────────────────────────────────────────────────── */
.cursor,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  will-change: transform;
}

.cursor {
  width: 10px;
  height: 10px;
  background: #ffffff;
  mix-blend-mode: difference;
  transition: transform 0.15s, width 0.3s, height 0.3s;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: width 0.4s, height 0.4s, border-color 0.3s;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor  { transform: scale(0.4); }

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(255, 255, 255, 0.9);
}

/* ───────────────────────────────────────────────────────────────
   8. HEADER / NAV  — floating pill glassmorphism
───────────────────────────────────────────────────────────────── */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 16px 24px;
  pointer-events: none; 
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(13, 13, 20, 0.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 8px 16px; 
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 -1px 0 rgba(0, 0, 0, 0.3) inset;
  pointer-events: all; 
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}

#main-header.scrolled .nav-inner {
  background: rgba(7, 7, 10, 0.75);
  border-color: var(--border-teal);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px var(--border-teal),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

/* ── Logo (UPDATED SIZES) ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  pointer-events: all; 
}
.logo-icon {
  width: 48px; /* Increased */
  height: 48px; /* Increased */
  background: linear-gradient(135deg, rgba(99,202,183,0.25), rgba(99,202,183,0.05));
  border: 1px solid var(--border-teal);
  border-radius: 50%;           
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
  flex-shrink: 0;
}
.logo-icon:hover {
  background: rgba(99,202,183,0.15);
  box-shadow: var(--shadow-teal);
  border-color: var(--teal);
}
.logo-icon img { 
  width: 30px; /* Increased */
  height: 30px; /* Increased */
  object-fit: contain; 
}

#company-name {
  font-family: var(--font-display);
  font-size: 1.5rem; /* Increased from 1rem */
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  transition: color 0.3s;
}
.nav-logo:hover #company-name { color: var(--teal); }

/* ── Desktop links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}
.nav-link.active {
  color: var(--teal);
  background: var(--teal-faint);
  border-color: var(--border-teal);
  box-shadow: 0 0 12px rgba(99,202,183,0.1);
}

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  margin-right: 8px;
  flex-shrink: 0;
}
.lang-sep { display: none; } 
.lang-btn {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 100px;
  transition: all 0.2s;
}
.lang-btn:hover { color: var(--text-primary); }
.lang-btn.active,
.lang-btn:focus-visible {
  background: var(--teal-faint);
  color: var(--teal);
  border: 1px solid var(--border-teal);
}

/* ── Hamburger (mobile) ── */
/* ── Hamburger (mobile) ── */
.hamburger {
  display: none; 
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 26px;
  padding: 16px; /* Αυξήσαμε τον "αόρατο" χώρο πατήματος */
  margin-right: -12px; /* Αρνητικό περιθώριο για να παραμείνει το εικονίδιο οπτικά στην ίδια θέση δεξιά */
  transition: color 0.2s;
  flex-shrink: 0;
  cursor: pointer; /* Πάντα καλή πρακτική */
}
.hamburger:hover { color: var(--teal); }

/* ── Mobile Full-Screen Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-base); 
  z-index: 100;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { 
  opacity: 1; 
  pointer-events: all; 
}
.mobile-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-links {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.mobile-nav-link {
  font-family: var(--font-editorial);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: capitalize;
  letter-spacing: 0;
  transition: color 0.2s, transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-nav-link:hover { color: var(--teal); }
.mobile-menu.open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-cta-btn {
  margin-top: 16px;
  font-size: 0.8rem;
  padding: 16px 40px;
  border-radius: 100px; 
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.35s; 
}
.mobile-menu.open .mobile-cta-btn {
  opacity: 1;
  transform: translateY(0);
}
.mobile-lang {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.4s ease 0.45s;
}
.mobile-menu.open .mobile-lang { opacity: 1; }

.mobile-menu .close-btn {
  color: #ffffff !important; 
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 38px; 
  position: relative;
  z-index: 101; 
  cursor: pointer;
  pointer-events: all;
}
.mobile-menu .close-btn:hover { color: var(--teal) !important; }

/* ───────────────────────────────────────────────────────────────
   9. FOOTER
───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 0 24px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img  { width: 24px; height: 24px; object-fit: contain; }
.footer-logo span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--teal);
}
.footer-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 24px;
}
.footer-social   { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--border-teal);
  color: var(--teal);
  background: var(--teal-faint);
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links-col ul li a:hover { color: var(--teal); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-icon { flex-shrink: 0; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-ghost);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--teal); }

/* ───────────────────────────────────────────────────────────────
   10. SHARED COMPONENT PRIMITIVES
───────────────────────────────────────────────────────────────── */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}
.section-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-top: 1.5rem;
}

/* ── Card (glassmorphism base) ── */
.card {
  background: rgba(7, 7, 10, 0.7);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1),
              border-color 0.3s,
              box-shadow 0.3s;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-glow) 40%, var(--teal-glow) 60%, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}
.card:hover {
  border-color: var(--border-teal);
  box-shadow: var(--shadow-card), var(--shadow-teal);
}
.card:hover::before { opacity: 1; }

.tick {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--border-teal);
  border-style: solid;
  transition: border-color 0.3s;
  z-index: 2;
}
.card:hover .tick { border-color: var(--teal); }
.tick-tl { top: 8px;    left: 8px;   border-width: 1px 0 0 1px; }
.tick-tr { top: 8px;    right: 8px;  border-width: 1px 1px 0 0; }
.tick-bl { bottom: 8px; left: 8px;   border-width: 0 0 1px 1px; }
.tick-br { bottom: 8px; right: 8px;  border-width: 0 1px 1px 0; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--teal);
  color: var(--bg-base);
  border: none;
  border-radius: 3px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,202,183,0.3);
}
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 31px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: var(--border-teal);
  color: var(--teal);
}

/* ── Scroll reveal (Optimized) ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.visible, .reveal.in { 
    opacity: 1; 
    transform: translateY(0); 
}

.reveal-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 0.9s cubic-bezier(.16, 1, .3, 1),
              transform 0.9s cubic-bezier(.16, 1, .3, 1);
}
.reveal-left.in, .reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 1s cubic-bezier(.16, 1, .3, 1),
              transform 1s cubic-bezier(.16, 1, .3, 1);
}
.reveal-scale.in, .reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delay helpers */
.stagger-1 { transition-delay: 0.10s; }
.stagger-2 { transition-delay: 0.20s; }
.stagger-3 { transition-delay: 0.30s; }
.stagger-4 { transition-delay: 0.40s; }
.stagger-5 { transition-delay: 0.50s; }

/* ── Google review badge ── */
.google-review-container { display: flex; justify-content: center; }
.google-review-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  transition: border-color 0.25s, background 0.25s;
}
.google-review-badge:hover {
  border-color: var(--border-teal);
  background: var(--teal-faint);
}
.google-logo        { width: 16px; height: 16px; flex-shrink: 0; }
.star-rating        { display: flex; gap: 1px; }
.star               { color: #fbbf24; font-size: 0.7rem; }
.review-text-small  {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ── Logo carousel strip ── */
.logo-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.logo-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
  animation: fg-logo-scroll 28s linear infinite;
}
.logo-track img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.35;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.logo-track img:hover { opacity: 0.8; }
@keyframes fg-logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───────────────────────────────────────────────────────────────
   11. RESPONSIVE — rules that apply globally across all pages
───────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  * { cursor: auto !important; }      
  .cursor, .cursor-ring { display: none; }

  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title { font-size: clamp(2rem, 8vw, 3.5rem); }
}

@media (max-width: 390px) {
  .section-container { padding: 0 16px; }
}

/* ───────────────────────────────────────────────────────────────
   12. REDUCED MOTION
───────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
  .reveal,
  .reveal-left,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ── FULL SCREEN SECTIONS ── */
.hero-section, 
.section-chat, 
.section-calculator, 
.section-portfolio,
.nexus-wrapper,
.services-hero
 {
    min-height: 100svh; /* 100% του ύψους της οθόνης (το svh είναι τέλειο για κινητά) */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Κεντράρει τα πάντα κάθετα */
    align-items: center; /* Κεντράρει τα πάντα οριζόντια */
    padding-top: 80px; /* Αφήνει χώρο για το Header ώστε να μην κρύβει περιεχόμενο */
    padding-bottom: 40px;
    box-sizing: border-box;
    width: 100%;
}

/* Εξασφαλίζουμε ότι τα containers μέσα στα sections πιάνουν όλο το πλάτος */
.section-container {
    width: 100%;
    max-width: 1280px;
}


/* ── Τροποποίηση για Λευκά Κείμενα στο Footer ── */

/* Η κύρια περιγραφή της εταιρείας κάτω από το logo */
.footer-desc {
    color: #ffffff !important;
    opacity: 0.9;
}

/* Οι σύνδεσμοι στα Quick Links */
.footer-links-col ul li a {
    color: #ffffff !important;
    opacity: 0.8;
}

.footer-links-col ul li a:hover {
    color: var(--teal) !important; /* Διατηρούμε το teal στο hover για να ξέρει ο χρήστης ότι πατιέται */
    opacity: 1;
}

/* Τα στοιχεία επικοινωνίας (Location, Phone, Email) */
.footer-contact li {
    color: #ffffff !important;
    opacity: 0.9;
}

/* Το κείμενο του copyright στο κάτω μέρος */
.footer-bottom p {
    color: #ffffff !important;
    opacity: 0.6; /* Λίγο πιο χαμηλό εδώ για να μην "χτυπάει" στο μάτι */
}

/* Οι νομικοί σύνδεσμοι (Privacy Policy κλπ) */
.footer-legal a {
    color: #ffffff !important;
    opacity: 0.7;
}

.footer-legal a:hover {
    color: var(--teal) !important;
}

/* =========================================================
   FOOTER OVERRIDES - ΧΡΩΜΑΤΑ & ΜΕΓΕΘΟΣ ΓΡΑΜΜΑΤΟΣΕΙΡΑΣ
========================================================= */

/* 1. Αλλαγή χρώματος & μεγέθους στο "Flowgeek" */
.site-footer .footer-logo span {
    color: #ffffff !important;
    font-size: 1.5rem !important; /* Αρκετά μεγάλο για να δεις αμέσως τη διαφορά */
}

/* 2. Περιγραφή κάτω από το logo */
.site-footer .footer-desc {
    color: #ffffff !important;
    font-size: 1rem !important; 
    opacity: 0.9 !important;
}

/* 3. Τίτλοι στηλών (Quick Links, Get In Touch) */
.site-footer .footer-col-title {
    color: #ffffff !important;
    font-size: 1.1rem !important;
}

/* 4. Μενού Links (Home, Services, κλπ) */
.site-footer .footer-links-col ul li a {
    color: #ffffff !important;
    font-size: 0.95rem !important; 
    opacity: 0.8 !important;
}
.site-footer .footer-links-col ul li a:hover {
    color: var(--teal) !important;
    opacity: 1 !important;
}

/* 5. Στοιχεία Επικοινωνίας (Τοποθεσία, Τηλέφωνα) */
.site-footer .footer-contact li {
    color: #ffffff !important;
    font-size: 0.95rem !important;
}

/* 6. Footer Bottom (Copyright, Privacy Policy κλπ) */
.site-footer .footer-bottom p, 
.site-footer .footer-legal a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.8rem !important;
}


/* =========================================================
   ORBITRON FONT & TEAL GRADIENT (HEADER & FOOTER)
========================================================= */

#company-name,
.site-footer .footer-logo span {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 700 !important;
    
    /* 1. Create the dark-to-light teal gradient background */
    background: linear-gradient(to right, #1f8a75, var(--teal)) !important;
    
    /* 2. Clip the background to the text */
    -webkit-background-clip: text !important;
    background-clip: text !important;
    
    /* 3. Make the actual font color transparent so the background shows through */
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    
    /* Keep a little letter spacing so Orbitron is easy to read */
    letter-spacing: 0.1em !important; 
}