/* ==========================================================
   Local Fonts — Inter (Full Charset: Latin, Greek, Cyrillic)
========================================================== */

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/inter-v20-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/inter-v20-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/inter-v20-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/inter-v20-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================
   Local Fonts — Playfair Display
========================================================== */

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair/playfair-v10-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair/playfair-v10-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}




@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair/playfair-v10-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair/playfair-v10-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair/playfair-v10-latin-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}



		











			:root {
  	/* Brand */
 		 --color-primary: #2b2d42;
		--color-secondary: #edf2f4;
 		 --color-accent: #d90429;
     --color-success: #22c55e;

	 /* Base */
		--color-bg: #edf2f4;
		--color-surface: #edf2f4;
		--color-text: #edf2f4;
		--color-muted: #0f172a;
		--color-border: #edf2f4;
    


	/*images overlay */
	
	--overlay-bg: rgba(43, 45, 66, 0.75); /* ⬅️ ΠΡΟΣΘΗΚΗ */
	
	/* Global Typography */

			
			--font-base: "Inter", system-ui, sans-serif;
			--font-heading: "Playfair Display", serif;

			--fs-xs: 0.75rem;
			--fs-sm: 0.875rem;
			--fs-base: 1rem;
			--fs-lg: 1.125rem;
			--fs-xl: 1.5rem;
			--fs-2xl: 2.4rem;
			--fs-3xl: 3.5rem;

			--lh-tight: 1.2;
			--lh-normal: 1.5;
			--lh-loose: 1.7;

	/* Spacing system */

			
			--space-1: 0.25rem;   /* 4px */
			--space-2: 0.5rem;    /* 8px */
			--space-3: 1rem;      /* 16px */
			--space-4: 1.5rem;    /* 24px */
			--space-5: 2rem;      /* 32px */
			--space-6: 3rem;      /* 48px */
        
			--container-max: 1280px;
			--container-padding: 1.25rem;


	/* Radius & Shadows */

			
			--radius-sm: 4px;
			--radius-md: 8px;
			--radius-lg: 14px;
			--radius-xl: 20px;

			--shadow-sm: 0 1px 2px rgba(0,0,0,.05);
			--shadow-md: 0 4px 10px rgba(0,0,0,.08);
			--shadow-lg: 0 12px 30px rgba(0,0,0,.12);


	/*Transitions & Motion */

		
			
			--ease-standard: cubic-bezier(.4,0,.2,1);
			--duration-fast: 150ms;
			--duration-normal: 300ms;
			--duration-slow: 600ms;


	

		
			
}
/* ==========================================================
   Base Elements
========================================================== */

			*,
			*::before,
			*::after {
			box-sizing: border-box;
			}

			html {
			scroll-behavior: smooth;
			font-size: 100%;
			}

			body {
			margin: 0;
			font-family: var(--font-base);
			font-size: var(--fs-base);
			line-height: var(--lh-normal);
			color: var(--color-text);
			background-color: var(--color-bg);
			text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
			}

			img {
			max-width: 100%;
			display: block;
			image-rendering: -webkit-optimize-contrast;
			image-rendering: crisp-edges;
			backface-visibility: hidden;
			-webkit-backface-visibility: hidden;
			}

			a  {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-accent);
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

			p {
			margin: 0 0 var(--space-3);
			color: var(--color-muted);
			}

			/* Headings */

			h1,
			h2,
			h3,
			h4,
			h5,
			h6 {
			font-family: var(--font-heading);
			line-height: var(--lh-tight);
			color: var(--color-text);
			margin: 0 0 var(--space-3);
			}

			h1 { font-size: var(--fs-3xl); }
			h2 { font-size: var(--fs-2xl); }
			h3 { font-size: var(--fs-xl); }
			h4 { font-size: var(--fs-lg); }
			h5 { font-size: var(--fs-base); }
			h6 { font-size: var(--fs-sm); }

			:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ==========================================================
   Layout Utilities
========================================================== */

			.container {
			width: 100%;
			max-width: var(--container-max);
			padding-inline: var(--container-padding);
			margin-inline: auto;
			}

			.grid {
			display: grid;
			gap: var(--space-4);
			}

			.flex {
			display: flex;
			gap: var(--space-3);
			}

			.flex-center {
			display: flex;
			align-items: center;
			justify-content: center;
			}


/* ==========================================================
   Components
========================================================== */

			/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    

    padding: 0.75em 1.75em;
    border-radius: var(--radius-md);

    font-size: var(--fs-lg);
    font-weight: 600;

    background: var(--color-accent);
    color: var(--color-text); /* αρχικά theme text */

    border: none;
    cursor: pointer;

    box-shadow: 0 6px 14px rgba(217, 4, 41, 0.25);

    transition:
        transform var(--duration-fast) var(--ease-standard),
        box-shadow var(--duration-fast) var(--ease-standard),
        background var(--duration-fast) var(--ease-standard),
        color var(--duration-fast) var(--ease-standard);
}

/* Hover effect */

.btn:hover {
     color: var(--color-text);

    transform: translateY(-4px) scale(1.04);

    box-shadow:
        0 22px 48px rgba(217, 4, 41, 0.85),
        0 0 40px rgba(217, 4, 41, 0.75),
        0 0 90px rgba(217, 4, 41, 0.45);

    filter: brightness(1.15) saturate(1.2);
}

/* Active state */

.btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(217, 4, 41, 0.35);
}

/* Accessibility */

.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

			/* Card */

			.card {
			background: var(--color-surface);
			border-radius: var(--radius-lg);
			box-shadow: var(--shadow-sm);
			padding: var(--space-4);
			}

.section {
  padding-block: clamp(4rem, 6vw, 7rem);
}

.section-inner {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

.section-header {
  max-width: 720px;
  margin-bottom: 3rem;
}




h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);

  font-weight: 800;
  

  letter-spacing: -0.02em;
  
}


h1 { font-size: 4.1rem; line-height: 1; }
h2 { font-size: 2.6rem; line-height: 1; }
h3 { font-size: 2.1rem; line-height: 1; }
h4 { font-size: 1.25rem; line-height: 1.35; }
h5 { font-size: 1rem; line-height: 1.4; }
h6 { font-size: 0.875rem; line-height: 1.4; }








.side-float {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.side-float-btn {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0.8rem;
  padding: 1.8rem 1rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.side-float-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  writing-mode: horizontal-tb;
}

.side-float-btn.whatsapp {
  background: #25D366 !important;
  color: #ffffff !important;
  border-radius: 0 10px 0 0;
  box-shadow: 3px 0 16px rgba(37, 211, 102, 0.5);
}

.side-float-btn.telegram {
  background: #229ED9 !important;
  color: #ffffff !important;
  border-radius: 0 0 10px 0;
  box-shadow: 3px 0 16px rgba(34, 158, 217, 0.5);
}

.side-float-btn:hover {
  transform: translateX(8px);
}


@media (max-width: 768px) {
  .side-float-btn {
    padding: 0.7rem 0.4rem;
    font-size: 0.6rem;
    gap: 0.3rem;
  }

  .side-float-btn svg {
    width: 14px;
    height: 14px;
  }


  .side-float-btn::after {
    display: none;
  }
}

/* ==========================================================
   Header
========================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000; /* ← από 100 */
  transition: transform 0.3s ease; /* ← ΠΡΟΣΘΗΚΗ */
  background: rgba(43, 45, 66, 0.95);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid rgba(237, 242, 244, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 110px; /* ⬅️ μεγαλύτερο header */
  max-width: 1380px;
  margin-inline: auto;
  padding-inline: 2.5rem;
  
}

.logo img {
  height: 100px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0; /* ← καθαρό, χωρίς padding στο ul */
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
}

.main-nav a {
  padding: 0.5rem 1rem; /* ← το padding πηγαίνει εδώ */
  display: inline-block;
}

/* ==========================================================
   Language Switcher Dropdown
========================================================== */

.language-switcher {
  position: relative;
}

.lang-dropdown {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  
  padding: 0.75rem 1.25rem;
  border: 2px solid rgba(237, 242, 244, 0.2);
  border-radius: var(--radius-md);
  
  background: rgba(43, 45, 66, 0.8);
  backdrop-filter: blur(8px);
  
  color: var(--color-text);
  font-size: var(--fs-base);
  font-weight: 500;
  
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
}

.lang-toggle:hover {
  background: rgba(43, 45, 66, 0.95);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 4, 41, 0.25);
}

.lang-toggle i {
  font-size: 0.8rem;
  transition: transform var(--duration-normal) var(--ease-standard);
}

.lang-dropdown:hover .lang-toggle i {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  
  background: rgba(43, 45, 66, 0.95);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(237, 242, 244, 0.15);
  border-radius: var(--radius-lg);
  
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(217, 4, 41, 0.1);
  
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  
  transition: all var(--duration-normal) var(--ease-standard);
  z-index: 1000;
}

.lang-dropdown:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  
  padding: 0.875rem 1.25rem;
  color: var(--color-text);
  font-size: var(--fs-base);
  font-weight: 500;
  text-decoration: none;
  
  border-bottom: 1px solid rgba(237, 242, 244, 0.1);
  
  transition: all var(--duration-fast) var(--ease-standard);
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: rgba(217, 4, 41, 0.15);
  color: var(--color-accent);
  transform: translateX(4px);
}

.lang-option.active {
  background: rgba(217, 4, 41, 0.2);
  color: var(--color-accent);
  font-weight: 600;
}

.lang-option.active::after {
  content: "✓";
  margin-left: auto;
  font-size: 0.9rem;
  color: var(--color-accent);
}

/* First and last option rounded corners */
.lang-option:first-child {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.lang-option:last-child {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}






























































/* ==========================================================
   Hero
========================================================== */

.hero {
  position: relative;
  isolation: isolate;

  min-height: calc(100vh - 107px); /* header offset */
  display: flex;
  align-items: center;            /* κάθετο centering */
  justify-content: flex-start;    /* πάντα αριστερά */
  overflow: hidden;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
 object-position: center  50%;   /* ✅ κατεβάζουμε το κάδρο προς το τραπέζι */
  z-index: -2;
  pointer-events: none;
  

}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(43, 45, 66, 0.65);
  z-index: -1;
  pointer-events: none;
}


/* Content wrapper */
.hero-content {
  max-width: 1400px;
  width: 100%;
  padding-inline: clamp(1.25rem, 4vw, 3rem);

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 0.75rem;
}

.hero-cta {
  margin-top: 2rem;
}

/* Typography */
.hero h1 {
  color: var(--color-text);
  max-width: 950px;
}

.hero h2 {
  color: var(--color-text);
  max-width: 800px;
}

.hero p {
  color: var(--color-text);
  max-width: 720px;
}

/* Accent text */
.hero-content p strong {
  color: var(--color-accent);
}











/* ==========================================================
   Intro
========================================================== */

.intro {
  position: relative;
  isolation: isolate;
  background-image: url("../../images/intro-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-text);
  text-align: center;
  padding-block: clamp(4rem, 6vw, 6rem);
  padding-inline: 2rem;
  margin-top: 0;
  border-top: 3px solid var(--color-secondary);
  border-bottom: 3px solid var(--color-secondary);
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(43, 45, 66, 0.95),
    rgba(43, 45, 66, 0.95)
  );
  z-index: -1;
}

.intro p {
  color: var(--color-text);
}

/* Intro Grid */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.intro-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
  border: 1px solid color-mix(in srgb, var(--color-secondary) 35%, transparent);
  border-top: 3px solid #d90429;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
  transition:
    transform var(--duration-normal) var(--ease-standard),
    box-shadow var(--duration-normal) var(--ease-standard),
    border-color var(--duration-normal) var(--ease-standard);
}


.intro-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.intro-icon svg {
  width: 48px;
  height: 48px;
  stroke: #d90429;
  filter: drop-shadow(0 0 8px rgba(217, 4, 41, 0.4));
}

.intro-card h2,
.intro-card h3 {
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.intro-card p {
  color: var(--color-text);
}

.section-header {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
}
































/* ==========================================================
   SERVICES SECTION
========================================================== */

.services {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding-block: clamp(5rem, 5vw, 5rem);
  overflow: hidden;
}

/* Background Image */
.services-bg {
  position: absolute;
  inset: 0;
  background-image: url("../../images/pic02.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.services-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-bg);
  z-index: -1;
}

/* Section Header */
.services .section-header {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  text-align: center;
}

.services .section-header h2,
.services .section-header p {
  color: var(--color-text);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 3vw, 3rem);
}

/* ==========================================================
   SERVICE CARD - 3D FLIP EFFECT
========================================================== */

.service-card {
  perspective: 800px;
  cursor: pointer;
  position: relative;
  height: 280px;
  will-change: transform, opacity;

  /* Initial state for scroll animation */
  opacity: 0;
  transform: translateY(36px) scale(0.94);

  transition:
    opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Visible state (triggered by JS) */
.service-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Glow Effect on Hover */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    rgba(217, 4, 41, 0),
    transparent 70%
  );
  filter: blur(60px);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
}

.service-card:hover::before {
  background: radial-gradient(
    circle at center,
    rgba(217, 4, 41, 0.28),
    transparent 65%
  );
  opacity: 1;
  filter: blur(22px);
  transform: scale(1.55);
}

/* Card Inner Container */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(0, 0, 0, 0.15)
  );
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.35),
    0 30px 70px rgba(0, 0, 0, 0.45);
}

.service-card:hover .card-inner {
  transform: rotateY(180deg) translateZ(28px) scale(1.04);
  box-shadow:
    0 0 28px rgba(217, 4, 41, 0.55),
    0 0 80px rgba(217, 4, 41, 0.35),
    0 18px 45px rgba(0, 0, 0, 0.55),
    0 45px 110px rgba(0, 0, 0, 0.65);
}

/* Card Faces - Shared Styles */
.card-front,
.card-back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    inset 0 -6px 12px rgba(0, 0, 0, 0.35);
}

/* Front Side */
.card-front {
  background: rgba(43, 45, 66, 0.85);
  backdrop-filter: blur(1.5px);
  flex-direction: column;
  gap: var(--space-3);
  transform-style: preserve-3d;
}

.service-icon {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent);
  border: 1px solid rgba(43, 45, 66, 0.75);
  transform: translateZ(40px);
}

.service-icon i {
  font-size: 28px;
  color: var(--color-text);
}

.card-front h3 {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--color-text);
  
  border-radius: var(--radius-sm);
  transform: translateZ(55px) rotateX(2deg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  backface-visibility: hidden;
}

/* Back Side */
.card-back {
  transform: rotateY(180deg);
  background: rgba(43, 45, 66, 0.95);
  color: var(--color-text);
  flex-direction: column;
  transform-style: preserve-3d;
}

.card-back p {
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  max-width: 240px;
  transform: translateZ(35px) rotateX(1.5deg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  backface-visibility: hidden;
}

/* Stagger Animation Delays */
.service-card:nth-child(1).animate-in { transition-delay: 0.05s; }
.service-card:nth-child(2).animate-in { transition-delay: 0.10s; }
.service-card:nth-child(3).animate-in { transition-delay: 0.15s; }
.service-card:nth-child(4).animate-in { transition-delay: 0.20s; }
.service-card:nth-child(5).animate-in { transition-delay: 0.25s; }
.service-card:nth-child(6).animate-in { transition-delay: 0.30s; }
.service-card:nth-child(7).animate-in { transition-delay: 0.35s; }
.service-card:nth-child(8).animate-in { transition-delay: 0.40s; }
.service-card:nth-child(9).animate-in { transition-delay: 0.45s; }
















/* ==========================================================
    BUSINESS CONCIERGE - CLEAN VERTICAL LAYOUT
========================================================== */

.business-support {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--color-secondary);
}

.business-support .section-inner {
    
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem; /* Περισσότερος χώρος ανάμεσα στα rows */
}

/* Section Header */
.business-support .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.business-support .section-header h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    
}

/* Κάρτες - Απλό Vertical Stack */
.business-support .text-image {
    position: relative;
    background: white;
    border-radius: 32px;
    display: flex;
    flex-direction: column; /* Κείμενο κάτω από την εικόνα */
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    overflow: hidden;
    width: 100%;
}



.business-support .image {
    flex: 1;
    height: 500px;
    border-radius: 40px; /* Πιο στρογγυλεμένες γωνίες για μοντέρνο ύφος */
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    
}
.business-support .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-support .text {
    padding: 3rem;
    background: white;
}

.business-support h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.business-support h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin-top: 0.5rem;
    border-radius: 2px;
}

.business-support p {
    line-height: 1.6;
    color: var(--color-muted);
    font-size: 1.1rem;
}







/* Container */
.concierge-audience-card {
    display: flex;
    flex-direction: row;
    background: var(--color-secondary);
    min-height: 550px;
    border-radius: 12px;
    overflow: hidden;
}

/* Αριστερή πλευρά */
.text-side {
    flex: 0 0 30%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    background: #ffffff;
}

.text-side h3 {
    margin-bottom: 1.2rem;
    width: 100%;
    max-width: 280px;
}

.text-side p {
    line-height: 1.5;
    color: var(--color-muted);
    max-width: 280px;
    margin-right: auto;
}

/* Δεξιά πλευρά */
.grid-side {
    flex: 0 0 70%;
    background: var(--color-primary);
    padding: 1.2rem;
    display: flex;
    align-items: center;
}

.audience-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    width: 100%;
}

/* Τα Boxes */
.audience-box {
    position: relative;
    background: #ffffff;
    padding: 1.5rem 1.2rem;
    border-radius: 4px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.icon-circle {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    color: var(--color-accent);
    opacity: 0.12;
    transition: all 0.5s ease;
    pointer-events: none;
}

.icon-circle svg {
    width: 100%;
    height: 100%;
}

.icon-header {
    height: 50px;
    display: flex;
    align-items: center;
    color: var(--color-accent);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.icon-header svg {
    width: 48px;
    height: 48px;
}

.audience-box h4 {
    position: relative;
    z-index: 2;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
    line-height: 1.2;
    font-size: 1.6rem;
    font-weight: 800;
}

.audience-box p {
    position: relative;
    z-index: 2;
    color: var(--color-muted);
    line-height: 1.3;
    margin: 0;
    font-size: 0.85rem;
}















/* ================= Virtual Office Section ================= */

.virtual-office {
  background-color: var(--color-secondary);
  background-image: 
    linear-gradient(rgba(43, 45, 66, 0.02) 2px, transparent 2px),
    linear-gradient(90deg, rgba(43, 45, 66, 0.02) 2px, transparent 2px);
  background-size: 30px 30px;
  color: var(--color-muted);
  position: relative;
  isolation: isolate;
}

.virtual-office h1,
.virtual-office h2,
.virtual-office h3,
.virtual-office h4,
.virtual-office h5,
.virtual-office h6 {
  color: var(--color-muted);
}


/* ================= Layout ================= */

.virtual-office .section-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}


/* ===== TEXT + IMAGE BLOCK ===== */

.virtual-office .text-image {
  display: flex;
  gap: 3rem;
  align-items: stretch; /* κάθετη ευθυγράμμιση text + image */
}

.virtual-office .text-image.reverse {
  flex-direction: row-reverse;
}


/* ίσο πλάτος */

.virtual-office .text-image .text,
.virtual-office .text-image .image {
  flex: 1 1 0;
}


/* ===== TEXT ===== */

.virtual-office .text-image .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* ===== IMAGE ===== */

.virtual-office .text-image .image {
  aspect-ratio: 16 / 9;          /* σταθερό ύψος */
  overflow: hidden;
  border-radius: var(--radius-md);
}

.virtual-office .text-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.btn-cta {
  
  padding: 1.2rem 2.8rem;
  border-radius: 60px;

  font-weight: 700;
  letter-spacing: 0.5px;

  background: var(--color-accent);
  color: #ffffff;

  box-shadow:
    0 10px 25px rgba(217, 4, 41, 0.35),
    0 0 40px rgba(217, 4, 41, 0.25);

  transition:
    transform var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard),
    filter var(--duration-fast) var(--ease-standard);
}

.btn-cta:hover {
  transform: translateY(-6px) scale(1.07);

  box-shadow:
    0 25px 60px rgba(217, 4, 41, 0.9),
    0 0 80px rgba(217, 4, 41, 0.6);

  filter: brightness(1.2);
}

.virtual-office .vo-cta {
  margin-top: var(--space-6);
  display: flex;
  justify-content: center;
}



/* ==========================================================
   SHARED BACKGROUND WRAPPER (Why Choose + Challenges)
========================================================== */

.shared-bg-wrapper {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Background Image Layer */
.shared-bg-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  
  background-image: url("../../images/pic03.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
  z-index: -2;
}

/* Dark Overlay Layer */
.shared-bg-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  
  background: linear-gradient(
    to bottom,
    rgba(20,24,39,0.7) 0%,
    rgba(20,24,39,0.8) 50%,
    rgba(20,24,39,0.85) 100%
  );
  
  z-index: -1;
}




/* ==========================================================
   Why Choose V-CORE
========================================================== */

.why-choose {
  position: relative;
  padding-block: clamp(5rem, 7vw, 8rem);
  padding-inline: 0;
  background: none;
}

/* Αφαίρεσε τα παλιά backgrounds */
.why-choose-bg,
.bg-particles {
  display: none;
}

/* Content πάνω από όλα */
.why-choose .section-inner {
  position: relative;
  z-index: 1;
  padding-inline: 0;
}

/* Header */
.why-choose .section-header {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  text-align: center;
  padding-inline: 2rem;
}

.why-choose .section-header h2,
.why-choose .section-header p {
  color: var(--color-text);
}

/* Comparison Wrapper */
.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-5);
  align-items: start;
  max-width: 1200px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  padding-inline: 1rem;
}

/* Compare Columns */
.compare-column {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.compare-column.animate-in {
  opacity: 1;
  transform: scale(1);
}

.compare-column h3 {
  font-size: var(--fs-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  text-align: center;
  padding-bottom: var(--space-3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Traditional styling */
.compare-traditional {
  border: 2px solid rgba(217, 4, 41, 0.3);
}

.compare-traditional h3 {
  color: var(--color-accent);
}

/* V-CORE styling */
.compare-vcore {
  border: 2px solid rgba(0, 200, 83, 0.3);
  transition-delay: 0.2s;
}

.compare-vcore h3 {
  color: #00c853;
}

/* Compare List */
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.compare-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

/* Compare Icons */
.compare-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: all var(--duration-normal) var(--ease-standard);
}

.icon-x {
  background: rgba(255, 107, 107, 0.15);
  color: var(--color-accent);    
  border: 2px solid #d90429;
}

.icon-x::before {
  content: "✕";
  display: block;
  line-height: 1;
}

.icon-check {
  background: rgba(0, 200, 83, 0.15);
  color: #00c853;
  border: 2px solid #00c853;
}

.icon-check::before {
  content: "✓";
  display: block;
  line-height: 1;
}

.compare-column:hover .icon-x {
  background: rgba(255, 107, 107, 0.25);
  transform: rotate(90deg);
}

.compare-column:hover .icon-check {
  background: rgba(0, 200, 83, 0.25);
  transform: scale(1.1);
}

.compare-text {
  flex: 1;
}

.compare-text strong {
  display: block;
  font-size: var(--fs-lg);
  color: #ffffff;
  margin-bottom: var(--space-1);
  font-weight: 600;
  line-height: var(--lh-tight);
}

.compare-text small {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--lh-normal);
}

/* VS Divider */
.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}

.compare-vs.animate-in {
  opacity: 1;
  transform: scale(1);
}

.compare-vs span {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(217, 4, 41, 0.1);
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(217, 4, 41, 0.3);
}

/* Address Section */
.address-section-header {
  max-width: 1200px;
  margin: 4rem auto 3rem;
  padding: 0;
  text-align: center;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
  align-items: stretch;
}

.address-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
  border: 1px solid color-mix(in srgb, var(--color-secondary) 35%, transparent);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 1vw, 1rem);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  transition: all var(--duration-normal) var(--ease-standard);
}

.address-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--color-secondary) 65%, transparent);
}

.address-card h3 {
  color: var(--color-text);
  margin-bottom: var(--space-3);
  flex-grow: 0;
}

.address-card p {
  color: rgba(255, 255, 255, 0.85);
  flex-grow: 1;
  line-height: var(--lh-normal);
}



















/* ==========================================================
   Your Journey 
========================================================== */

.journey {
  position: relative;
   isolation: isolate;
  min-height: 100vh;
  padding-block: clamp(4rem, 6vw, 7rem);
  overflow: hidden;
  

}

.journey h2 {
  color: var(--color-text);
}

.journey p {
  color: var(--color-text);
}





.journey .section-header {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  text-align: center;
}

/* Timeline Container */
.timeline {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  padding-left: 60px;
}

/* Vertical Line */
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--color-accent),
    rgba(217, 4, 41, 0.3)
  );
}

/* Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: var(--space-6);

  /* Animation */
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Timeline Marker */
.timeline-marker {
  position: absolute;
  left: -60px;
  top: 60px;                 /* αντί για 50% */
  transform: none;
  width: 40px;
  height: 40px;
  z-index: 2;
}
.timeline-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 50%;
  font-size: var(--fs-lg);
  font-weight: 700;
  box-shadow: 0 0 0 4px rgba(217, 4, 41, 0.2);
}

/* Timeline Content */
.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.timeline-content h3 {
  color: #ffffff;
  margin-bottom: var(--space-3);
  font-size: var(--fs-xl);
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
}

/* Stagger Animation */
.timeline-item:nth-child(1).animate-in { transition-delay: 0.1s; }
.timeline-item:nth-child(2).animate-in { transition-delay: 0.3s; }
.timeline-item:nth-child(3).animate-in { transition-delay: 0.5s; }
.timeline-item:nth-child(4).animate-in { transition-delay: 0.7s; }




























/* ==========================================================
   FAQ 
========================================================== */

/* Video Container */
.video-container {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  position: cover;
  text-align: center;
}

.video-container .section-header h2,
.faq-title h2 {
  color: var(--color-primary);  /* ← Ή var(--color-text) */
      /* ← Ίδιο μέγεθος */
  font-weight: 700;             /* ← Ίδιο weight */
  line-height: 1.2;             /* ← Ίδιο line-height */
  letter-spacing: -0.02em;      /* ← Ίδιο spacing */
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000;

  /* 3D effect */
  box-shadow:
    0 2px 0 #ccc,
    0 4px 0 #bbb,
    0 6px 0 #aaa,
    0 8px 20px rgba(0,0,0,0.3),
    0 20px 50px rgba(0,0,0,0.15);

  transform: perspective(1000px) rotateX(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover — ισιώνει και "ανεβαίνει" */
.video-wrapper:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-4px);
  box-shadow:
    0 2px 0 #ccc,
    0 4px 0 #bbb,
    0 30px 60px rgba(0,0,0,0.2);
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

/* FAQ Section */
.faq-section {
  /* Προσθήκη url('path/to/image.jpg') στο τέλος */
  background-color: var(--color-secondary);
  background-image: 
    linear-gradient(rgba(43, 45, 66, 0.02) 2px, transparent 2px),
    linear-gradient(90deg, rgba(43, 45, 66, 0.02) 2px, transparent 2px);
  background-size: 30px 30px;

  min-height: auto;
  padding-block: clamp(4rem, 10vh, 10rem);
  position: relative;
}

.faq-title h2 {
  position: relative;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  color: var(--color-muted);
  margin-bottom: 45px;
}

.faq-title h2::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 60px;
  
  background: var(--color-accent);
  bottom: -25px;
  margin-left: -30px;
}

.faq-title p {
  color: var(--color-muted);
  max-width: 600px;
  margin-inline: auto;
}

.faq {
  background: var(--color-primary);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin-inline: auto;
}

.faq p {
  color: var(--color-text);
}

.faq-card {
  border: none;
  background: none;
  border-bottom: 1px dashed var(--color-border);
}

.faq-card:last-child {
  border-bottom: none;
}

/* FAQ Card Header - FIXED */
.faq-card-header {
  padding: 0;
  border: none;
  background: none;
  transition: 
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
}

.faq-card-header:hover {
  background: linear-gradient(var(--overlay-bg), var(--overlay-bg));
  /* ← ΑΦΑΙΡΕΣΑ το transform: translateX(8px) scale(1.01); */
}

.faq-card.active .faq-card-header {
  background: linear-gradient(var(--overlay-bg), var(--overlay-bg));
}

/* FAQ Button */
.faq-button {
  width: 100%;
  text-align: left;
  padding: 20px 30px;
  font-weight: 500;
  font-size: var(--fs-base);
  letter-spacing: 0.5px;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.faq-button:hover {
  color: var(--color-accent);
}

/* ✅ FAQ Badge - ΜΟΝΟ ΕΔΩ */
.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-text);
  
  font-weight: 700;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55),
              background 0.3s ease;
}

.faq-card.active .faq-badge {
  transform: rotate(135deg) scale(1.15);
  background: #00c853;
}

/* ✅ FAQ Card Body - SMOOTH */
.faq-card-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  padding-left: 77px;
  font-weight: 400;
  
  color: var(--color-text);
  line-height: var(--lh-loose);
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(-15px);
  transition: 
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease 0.15s,
    transform 0.5s ease 0.15s;
}

.faq-card.active .faq-card-body {
  max-height: 800px;
  padding-top: 20px;
  padding-bottom: 30px;
  opacity: 1;
  transform: translateY(0);
}

.faq-card-body p {
  margin: 0;
}

.faq-section .section-inner {
  max-width: 1400px;
}










/* =========================================================
   CTA SECTION
========================================================= */



.section.contact {
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.3), /* 0.6 = 60% σκοτάδι. Ανέβασέ το για πιο σκούρο */
      rgba(0, 0, 0, 0.3)
    ),
    var(--color-accent);
  color: var(--color-text);
  padding-block: clamp(4rem, 8vw, 7rem);
}


.section.contact .section-inner {
  max-width: 900px;
  margin-inline: auto;
}

/* ---------- Header ---------- */

.section.contact .section-header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.section.contact .section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: var(--lh-tight);
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.section.contact .section-header p {
  max-width: 800px;
  margin-inline: auto;
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.9);
}

/* ---------- Form Grid ---------- */

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

/* message full width */
.contact-form .form-group:last-of-type {
  grid-column: 1 / -1;
}

/* ---------- Form fields ---------- */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: var(--font-base);
  font-size: var(--fs-base);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255,255,255,0.12);
}

/* ---------- Button ---------- */

.contact-form button {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: var(--space-4);
}


.form-status {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  display: none;
  align-items: center;
  gap: var(--space-3);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  grid-column: 1 / -1;
  font-size: var(--fs-base);
  font-weight: 500;
}

.form-status.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Success */
.form-status.success {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.2) 0%, rgba(0, 200, 83, 0.1) 100%);
  border: 2px solid rgba(0, 200, 83, 0.5);
  color: #00e676;
}

.form-status.success::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #00c853;
  color: white;
  border-radius: 50%;
  font-size: var(--fs-xl);
  font-weight: 700;
  flex-shrink: 0;
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% { transform: scale(0) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
  100% { transform: scale(1) rotate(360deg); }
}

/* Error */
.form-status.error {
  background: linear-gradient(135deg, rgba(255, 82, 82, 0.2) 0%, rgba(255, 82, 82, 0.1) 100%);
  border: 2px solid rgba(255, 82, 82, 0.5);
  color: #ff5252;
}

.form-status.error::before {
  content: "✕";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #5f0315;
  color: white;
  border-radius: 50%;
  font-size: var(--fs-xl);
  font-weight: 700;
  flex-shrink: 0;
  animation: errorShake 0.5s ease-out;
}

@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

/* Loading */
.form-status.loading {
  display: flex;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.form-status.loading::before {
  content: "";
  width: 45px;
  height: 45px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Button Loading */
.btn-accent.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.btn-accent.loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  margin-left: -9px;
  margin-top: -9px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .form-status {
    padding: var(--space-3);
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }
  
  .form-status::before {
    width: 40px;
    height: 40px;
  }
}







.instant-contact {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  
   
}

.instant-title {
  
  
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.instant-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-whatsapp,
.btn-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 180px;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-whatsapp svg { width: 30px; height: 30px; flex-shrink: 0; }
.btn-telegram svg { width: 28px; height: 28px; flex-shrink: 0; }

/* WhatsApp — outline */
.btn-whatsapp {
  background: transparent;
  color: #25D366;
  border-color: #25D366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Telegram — outline */
.btn-telegram {
  background: transparent;
  color: #229ED9;
  border-color: #229ED9;
  box-shadow: 0 0 20px rgba(34, 158, 217, 0.5), 0 0 40px rgba(34, 158, 217, 0.2);
}

.btn-telegram:hover {
  background: #229ED9;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 158, 217, 0.4);
}








.section-header h2 .char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-header h2 .char.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Κρύψε το h2 αρχικά μέχρι να τρέξει το JS */
.section-header h2 {
  visibility: hidden;
}

.section-header h2.splitting {
  visibility: visible;
}






/* =========================================================
   Footer
========================================================= */

.footer {
  position: relative;
  background-image:
    linear-gradient(rgba(43, 45, 66, 0.95), rgba(43, 45, 66, 0.95)),
    url("../../images/intro-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
 
  background-attachment: fixed;
  
  padding-block: 2 2.5rem; 
}

.footer .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}

/* Social Icons */

.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-icons li {
  margin: 0;
}

.footer-icons a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-lg);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  overflow: hidden;
}

/* Animated Ring on Hover */
.footer-icons a::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: conic-gradient(from 0deg, var(--color-accent), var(--color-accent));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotate 3s linear infinite;
  animation-play-state: paused;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.footer-icons a:hover::before {
  opacity: 1;
  animation-play-state: running;
}

/* Inner Circle */
.footer-icons a::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #2c3e50;
  border-radius: 50%;
  z-index: -1;
}

/* Icon Styles */
.footer-icons a i {
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Hover Effects */
.footer-icons a:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 25px rgba(217, 4, 41, 0.3), 0 0 30px rgba(217, 4, 41, 0.2);
}

.footer-icons a:hover i {
  color: #ffffff;
  transform: scale(1.2) rotate(360deg);
}

/* Individual Icon Colors */
.footer-icons li:nth-child(1) a:hover { background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%); }
.footer-icons li:nth-child(2) a:hover { background: linear-gradient(135deg, #4267B2 0%, #2d4a8a 100%); }
.footer-icons li:nth-child(3) a:hover { background: linear-gradient(135deg, #0077B5 0%, #005885 100%); }
.footer-icons li:nth-child(4) a:hover { background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%); }
.footer-icons li:nth-child(5) a:hover { background: linear-gradient(135deg, var(--color-accent) 0%, #ff0844 100%); }

/* Load Animation */
.footer-icons li {
  animation: iconFadeIn 0.6s ease-out backwards;
}

@keyframes iconFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.footer-icons li:nth-child(1) { animation-delay: 0.1s; }
.footer-icons li:nth-child(2) { animation-delay: 0.2s; }
.footer-icons li:nth-child(3) { animation-delay: 0.3s; }
.footer-icons li:nth-child(4) { animation-delay: 0.4s; }
.footer-icons li:nth-child(5) { animation-delay: 0.5s; }

/* Footer Meta */

.footer-meta p {
  margin: 0;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
}

.footer-meta p + p {
  margin-top: 0.4rem;
}

.footer-legal ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: #ffffff;
}






/* Add these styles to your main.css file */

#prices {
  background-color: var(--color-secondary); /* Set background to secondary color */
  padding-block: clamp(4rem, 6vw, 7rem);
  color: var(--color-text); /* Ensure text color is visible against the background */
}

#prices .flex {
  display: flex;
  gap: var(--space-4); /* Add space between text and image */
}

#prices .text-content,
#prices .image-content {
  flex: 1; /* Allow both text and image to take equal space */
}

#prices .text-content {
  padding-right: var(--space-4); /* Add some spacing between text and image */
}

#prices .image-content img {
  max-width: 100%; /* Ensure the image doesn't overflow its container */
  display: block;
}










/* ================= COOKIE BANNER ================= */

.cookie-banner {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(95%, 1000px);
  background: rgba(15, 20, 35, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
 padding: 36px 48px;
border-radius: 18px;
  z-index: 99999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.cookie-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  color: #ffffff;
  font-size: 14px;
line-height: 1.7;
  flex: 1;
  min-width: 260px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 14px 28px;
font-size: 15px;
border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.cookie-accept {
  background: var(--color-accent);
  color: #fff;
}

.cookie-accept:hover {
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
  background: rgba(255,255,255,0.08);
}




























/* ===================================================================
   V-CORE PREMIUM SCROLL EFFECTS - ALIGNED WITH JS
=================================================================== */

/* ===================================================================
   1. HEADER SMOOTH TRANSITION
=================================================================== */
#site-header {
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ===================================================================
   2. PARALLAX HERO BACKGROUND
=================================================================== */
.hero-bg {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}


/* ===================================================================
   3. SECTION REVEAL ON SCROLL
=================================================================== */
.section-animate {
  opacity: 0;
  transform: translateY(48px);
  will-change: opacity, transform;
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.section-visible {
  opacity: 1;
  transform: translateY(0);
}




/* ===================================================================
   7. PRICING TABLE HIGHLIGHT
=================================================================== */
.pricing-column {
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.pricing-column.pricing-highlight {
  transform: scale(1.05) translateY(-8px);
  z-index: 2;
  box-shadow:
    0 18px 40px rgba(217, 4, 41, 0.28),
    0 0 40px rgba(217, 4, 41, 0.18);
  background: linear-gradient(
    180deg,
    rgba(217, 4, 41, 0.06),
    rgba(217, 4, 41, 0.02)
  );
}

.pricing-column.pricing-highlight .pricing-head {
  background: rgba(217, 4, 41, 0.9);
}

.pricing-column.pricing-highlight .pricing-head h3 {
  color: var(--color-text);
}


/* ===================================================================
   8. MAGNETIC BUTTON BASE (JS handles movement)
=================================================================== */
.btn {
  will-change: transform;
  cursor: pointer;
  transition:
    transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.btn:hover {
  box-shadow:
    0 20px 40px rgba(217, 4, 41, 0.35),
    0 0 40px rgba(217, 4, 41, 0.25);
}


/* ===================================================================
   9. FAQ — ONLY VISUAL ENHANCEMENTS (LOGIC IN MAIN CSS)
=================================================================== */
.faq-badge {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-card.active .faq-badge {
  transform: rotate(90deg) scale(1.1);
}


/* ===================================================================
   PERFORMANCE OPTIMIZATIONS
=================================================================== */
.service-card,
.btn,
.speech-bubble,
.pricing-column,
#site-header,
.hero-bg {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

/* Image optimization */
img {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Prevent blur on scaled images */
.text-image img,
.challenge-image img,
.hero-bg {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: none !important;
}










#llm-context {
  display: none;
}





























































/* ==========================================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
========================================================== */

/* ==========================================================
   Desktop & Tablet (768px+)
========================================================== */

@media (min-width: 768px) {
  
  /* Intro Grid - 3 Columns */
  .intro-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }

  /* Text + Image Layouts - Alternating */
  .text-image {
    flex-direction: row;
  }

  .text-image:nth-child(even) {
    flex-direction: row-reverse;
  }

  .text-image .text,
  .text-image .image {
    flex: 0 0 50%;
    padding: 0 1rem;
  }

  /* Business Support - Alternating */
  .business-support .text-image {
    flex-direction: row;
    align-items: center;
  }

  .business-support .text-image:nth-child(even) {
    flex-direction: row-reverse;
  }

  .business-support .text-image .text {
    flex: 1;
    padding: 0 1rem;
  }

  .business-support .text-image .image {
    flex: 1;
    padding: 0 1rem;
  }

  /* Services Grid - 2 Columns */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Challenges Grid - 2 Columns */
  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Address Grid - 2 Columns */
  .address-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ==========================================================
   Large Desktop (1024px+)
========================================================== */

@media (min-width: 1024px) {
  
  /* Address Grid - 3 Columns */
  .address-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ==========================================================
   Extra Large Desktop (1100px+)
========================================================== */

@media (min-width: 1100px) {
  
  /* Services Grid - 3 Columns */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Challenges Grid - 3 Columns */
  .challenges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* ==========================================================
   TABLET - ALL SIZES (max-width: 1024px)
========================================================== */

@media (max-width: 1024px) {


  
  
  /* ========== HEADER & LOGO - UNIVERSAL FIX ========== */
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 1.25rem !important;
    max-width: 100% !important;
    overflow: visible !important;
    gap: 0.5rem;
  }

  .logo {
    flex-shrink: 0;
    min-width: 50px;
  }

  .logo img {
    height: 48px !important;
    width: auto !important;
    max-width: 180px !important;
  }

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin: 0 !important;
  }

  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.5rem !important;
    flex-wrap: nowrap;
    margin: 0 !important;
    padding: 0 !important;
  }

  .main-nav ul li a {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.6rem !important;
    white-space: nowrap;
  }

  .lang-toggle {
    font-size: 0.75rem !important;
    padding: 0.35rem 0.6rem !important;
    min-width: auto !important;
    margin: 0 !important;
    white-space: nowrap;
  }

  .language-switcher {
    margin: 0 !important;
    padding: 0 !important;
  }

  .btn-primary {
    font-size: 0.8rem !important;
    padding: 0.5rem 0.8rem !important;
  }

  /* ========== COMPARISON WRAPPER ========== */
  .comparison-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .compare-vs {
    order: 2;
    margin-block: var(--space-3);
  }

  .compare-vs span {
    width: 60px;
    height: 60px;
    font-size: var(--fs-2xl);
  }

  .compare-traditional {
    order: 1;
  }

  .compare-vcore {
    order: 3;
  }
}


/* ==========================================================
   TABLET - PRICING (max-width: 860px)
========================================================== */

@media (max-width: 860px) {
  
  .pricing-table {
    grid-template-columns: 1fr;
  }

  .pricing-features {
    display: none;
  }

  .pricing-column {
    margin-bottom: 2rem;
    border-radius: 1rem;
    overflow: hidden;
  }
}

/* ==========================================================
   TABLET - TIMELINE (max-width: 767px)
========================================================== */

@media (max-width: 767px) {
  
  .timeline {
    padding-left: 50px;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-marker {
    left: -50px;
    width: 30px;
    height: 30px;
  }

  .timeline-number {
    width: 30px;
    height: 30px;
    font-size: var(--fs-base);
  }

  .timeline-content {
    padding: var(--space-4);
  }

  .faq-title p {
    padding: 0;
  }
  
  .faq-button {
    font-size: var(--fs-sm);
    padding: 15px 20px;
    line-height: 1.4;
  }
  
  .faq-card-body {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .speech-bubble {
    left: -60px;
    width: 180px;
  }
}

@media (max-width: 768px) {
  
  .hero-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
  }
  
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}




@media (min-width: 768px) and (max-width: 1024px) {
  
  /* Κρύψε το horizontal scroll */
  html {
    overflow-x: hidden;
  }
  
  body {
    overflow-x: hidden;
    position: relative;
  }
  
  /* Όλα τα elements να μην ξεπερνούν το viewport */
  * {
    max-width: 100vw;
  }
  
  /* Header fix */
  .header {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  
  .header-inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 1rem;
    box-sizing: border-box;
  }
  
  /* Logo compact */
  .logo img {
    height: 48px;
    max-width: 150px;
  }
  
  /* Navigation σφίξιμο */
  .main-nav ul {
    gap: 0.4rem;
  }
  
  .main-nav ul li a {
    font-size: 0.8rem;
    padding: 0.4rem 0.5rem;
  }
  
  .lang-toggle {
    font-size: 0.75rem;
    padding: 0.4rem 0.5rem;
  }
  
  /* Hero section */
  .hero {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  
  /* Sections */
  .section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .section-inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 1.5rem;
    box-sizing: border-box;
  }
    .intro {
    padding-block: 3rem;
    padding-inline: 1.5rem;
  }
  
  .intro-grid {
    gap: 2rem;
  }
  
  .intro-card {
    padding: 1.75rem 1.5rem;
  }
  
  .intro-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .intro-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .intro-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
}




































/* ==========================================================
   HAMBURGER BASE - κρυμμένο παντού εκτός mobile
========================================================== */

.hamburger {
  display: none;
}

.mobile-nav-overlay {
  display: none;
}


/* ==========================================================
   MOBILE (max-width: 640px)
========================================================== */

@media (max-width: 640px) {

  /* ── TYPOGRAPHY ── */

  :root {
    --fs-3xl: 2rem;
    --fs-2xl: 1.6rem;
    --fs-xl:  1.25rem;
    --fs-lg:  1.1rem;
    --fs-base: 0.95rem;
    --fs-sm:  0.85rem;
  }

  /* Override desktop h2: 2.6rem → 1.6rem */
  h1 { font-size: 2rem !important;    font-weight: 700; line-height: 1.15; }
  h2 { font-size: 1.6rem !important;  font-weight: 700; line-height: 1.2;  }
  h3 { font-size: 1.25rem !important; font-weight: 600; line-height: 1.3;  }
  h4 { font-size: 1.1rem;  font-weight: 600; }
  p  { font-size: 0.95rem; line-height: 1.6; }

  .section-header h2 {
    font-size: 1.6rem !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .section-header p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* ── HEADER ── */

  .header-inner {
    min-height: 60px;
    padding-inline: 1rem;
    gap: 1rem;
    justify-content: space-between;
  }

  .logo img {
    height: 40px;
  }

  .main-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .main-nav ul li {
    display: none;
  }

  .main-nav ul li.language-switcher {
    display: block;
  }

  .lang-toggle {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    min-width: auto;
  }

  .lang-menu {
    min-width: 160px;
    right: 0;
    left: auto;
  }

  .lang-option {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  /* ── HAMBURGER ── */

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 100;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* ── MOBILE NAV OVERLAY ── */

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(43, 45, 66, 0.98);
    backdrop-filter: saturate(120%) blur(10px);
    -webkit-backdrop-filter: saturate(120%) blur(10px);
    z-index: 999;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transition: top 0.3s ease;
  }

  .mobile-nav-overlay.active {
    top: 60px;
  }

  .mobile-nav-overlay ul {
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-overlay ul li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-nav-overlay ul li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--color-text);
    text-decoration: none;
  }

  .mobile-nav-overlay ul li a:hover {
    color: var(--color-accent);
  }

  /* ── SECTIONS ── */

  .section {
    padding-block: 3rem;
  }

  .section-inner {
    padding-inline: 1.25rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  /* ── HERO ── */

  .hero {
    height: 100dvh;
    min-height: 100dvh;
    padding-top: 2rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-content {
    padding-inline: 1.25rem;
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    font-size: 2.2rem !important;
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }

  .hero h2 {
    font-size: 1.15rem !important;
    font-weight: 400;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
  }

  .hero p:first-of-type {
    display: none;
  }

  /* ── INTRO ── */

  .intro {
    padding-block: 2.5rem;
    padding-inline: 1rem;
  }

  .intro-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .intro-card {
    padding: 1.25rem 1rem;
  }

  .intro-icon {
    margin-bottom: 0.75rem;
  }

  .intro-card h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.5rem;
  }

  .intro-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
  }

  /* ── TEXT + IMAGE LAYOUTS ── */

  .text-image,
  .text-image.reverse,
  .text-image:nth-child(even),
  .virtual-office .text-image,
  .virtual-office .text-image:nth-child(even),
  .business-support .text-image,
  .business-support .text-image:nth-child(even) {
    flex-direction: column !important;
    gap: 1.5rem;
  }

  .text-image .image,
  .virtual-office .text-image .image,
  .business-support .text-image .image {
    order: 1;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    overflow: hidden;
    border-radius: 8px;
  }

  .text-image .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .text-image .text,
  .virtual-office .text-image .text,
  .business-support .text-image .text {
    order: 2;
    width: 100%;
    padding: 0;
  }

  .text-image .text h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.75rem;
  }

  .text-image .text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* ── CONCIERGE AUDIENCE CARD ── */

  .concierge-audience-card {
    flex-direction: column;
  }

  .text-side {
    flex: none;
    width: 100%;
    padding: 1.5rem 0;
  }

  .text-side h3 {
    font-size: 1.25rem !important;
    max-width: 100%;
  }

  .text-side p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .grid-side {
    flex: none;
    width: 100%;
    padding: 1rem;
  }

  .audience-grid-pro {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .audience-box {
    min-height: unset;
    padding: 1.25rem 1rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .icon-circle {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .audience-box h4 {
    font-size: 1rem !important;
  }

  .audience-box p {
    font-size: 0.85rem;
  }

  /* ── SERVICES ── */

  .services {
    min-height: auto;
    padding-block: 3rem;
  }

  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 1rem;
  }

  .service-card,
  .service-card.animate-in {
    height: auto;
    min-height: auto;
    perspective: none;
    opacity: 1;
    transform: none !important;
    transition: all 0.3s ease;
  }

  .service-card::before {
    display: none;
  }

  .card-inner {
    transform: none !important;
    box-shadow: none;
    transition: none;
    position: static;
    display: block;
    background: transparent;
    border-radius: 0;
    padding: 1rem 0 1rem 1rem;
    border-left: 3px solid var(--color-accent);
    margin-bottom: 1rem;
  }

  .card-back {
    display: none;
  }

  .card-front {
    position: static;
    background: transparent;
    padding: 0;
    backface-visibility: visible;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    text-align: left;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    transform: none;
    background: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-icon i {
    font-size: 22px;
    color: var(--color-secondary);
  }

  .card-front h3 {
    font-size: 1.1rem !important;
    padding: 0;
    background: none;
    text-align: left;
    margin-bottom: 0.5rem;
    color: var(--color-text);
  }

  .card-front::after {
    content: attr(data-description);
    display: block;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
  }

  /* ── JOURNEY / TIMELINE ── */

  .journey {
    min-height: auto;
    padding-block: 4rem;
  }

  .timeline {
    padding-left: 45px;
  }

  .timeline::before {
    left: 15px;
    top: 30px;
    bottom: 30px;
  }

  .timeline-marker {
    left: -45px;
    top: 50px;
    width: 30px;
    height: 30px;
  }

  .timeline-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .timeline-content {
    padding: 1.25rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem;
  }

  .timeline-content p {
    font-size: 0.85rem;
  }

  /* ── FAQ ── */

  .faq-section {
    padding-block: 4rem;
  }

  .faq-title h2 {
    font-size: 1.5rem !important;
    font-weight: 700;
  }

  .faq-title p {
    font-size: 0.9rem;
    padding: 0;
  }

  .faq-button {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.4;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    cursor: pointer;
  }

  .faq-badge {
    width: 26px;
    height: 26px;
    font-size: 1rem;
    transition: transform 0.3s ease;
  }

  .faq-card.active .faq-badge {
    transform: rotate(135deg);
  }

  .faq-card-body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-size: 0.85rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease,
                padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-card.active .faq-card-body {
    max-height: 3000px;
    opacity: 1;
  }

  /* ── CONTACT ── */

  .section.contact {
    padding-block: 3rem;
    padding-inline: 1.25rem;
  }

  .section.contact .section-header h2 {
    font-size: 1.6rem !important;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .section.contact .section-header p {
    font-size: 0.95rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .form-group input:focus,
  .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .contact-form button {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    margin-top: var(--space-2);
  }

  /* ── BUTTONS ── */

  .btn {
    font-size: 1rem;
    padding: 0.7em 1.4em;
  }

  /* ── FOOTER ── */

  .footer {
    padding-block: 2.5rem 2rem;
  }

  .footer-icons a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-meta p {
    font-size: 0.8rem;
  }

} /* ← ΤΕΛΟΣ @media (max-width: 640px) */

@media (max-width: 640px) {
    .whatsapp-float-class, 
    [class*="float"] {
        top: 180px !important; 
    }
}

/* ==========================================================
   EXTRA SMALL (max-width: 480px)
========================================================== */

@media (max-width: 480px) {

  :root {
    --fs-3xl: 1.75rem;
    --fs-2xl: 1.4rem;
    --fs-xl:  1.15rem;
  }

  h2 { font-size: 1.4rem !important; font-weight: 700; }
  h3 { font-size: 1.15rem !important; }

  .section-header h2 {
    font-size: 1.4rem !important;
  }

  .header-inner {
    padding-inline: 0.75rem;
  }

  .logo img {
    height: 36px;
  }

  .lang-toggle {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  .hero h1 {
    font-size: 1.75rem !important;
  }

  .service-card .card-inner {
    padding: 0.75rem 0 0.75rem 0.75rem;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .service-icon i {
    font-size: 20px;
  }

  .card-front h3 {
    font-size: 1rem !important;
  }

  .pricing-card {
    padding: var(--space-3);
  }

  .plan-name {
    font-size: 1.2rem;
  }

  .price-amount {
    font-size: 1.75rem;
  }

  .section.contact {
    padding-inline: 1rem;
  }

  .section.contact .section-header h2 {
    font-size: 1.4rem !important;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
  }

  .contact-form button {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  .timeline {
    padding-left: 40px;
  }

  .timeline-marker {
    left: -40px;
  }

  .timeline-number {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .text-image .image {
    min-height: 180px;
  }

  .intro-card {
    padding: 1.25rem;
  }

  .audience-box {
    flex-direction: column;
    gap: 0.5rem;
  }

  .icon-circle {
    width: 44px;
    height: 44px;
  }


} /* ← ΤΕΛΟΣ @media (max-width: 480px) */
