/* CSS Reset */

			:root {
  	/* Brand */
 		 --color-primary: #2b2d42;
		--color-secondary: #edf2f4;
 		 --color-accent: #d90429;

	 /* 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.65); /* ⬅️ ΠΡΟΣΘΗΚΗ */
	
	/* 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;
			}

			img {
			max-width: 100%;
			display: block;
			}

			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;
}

































/* ==========================================================
   Header
========================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;

  /* Brand dark glass */
  background: rgba(43, 45, 66, 0.85);
  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: 107px; /* ⬅️ μεγαλύτερο 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: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
   padding: 1rem 2rem;   /* ⬅️ μέγεθος κουμπιού */
  font-size: 1.5rem;          /* ⬅️ μέγεθος γραμματοσειράς */
  line-height: 1;
  font-weight: 500;
}

/* ==========================================================
   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: 110%;
  object-fit: cover;
  z-index: -2;

  will-change: transform;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

/* Overlay layer */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-bg);
  z-index: -1;
}


/* 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: 14000px;
}

.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);
}

/* Crypto highlight box */
.hero-crypto-highlight {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;

  background: rgba(217, 4, 41, 0.14);
  border-left: 4px solid var(--color-accent);
  border-radius: 4px;

  max-width: 560px;
  align-self: flex-start;

  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-crypto-highlight strong {
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.3;
}

.hero-crypto-highlight span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.hero-crypto-highlight p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}














/* ==========================================================
   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;

  /* brand-tinted dark overlay */
  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-radius: var(--radius-lg);
  padding: 2.2rem;

  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 {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}


.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;
}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);

  border-color: color-mix(
    in srgb,
    var(--color-secondary) 65%,
    transparent
  );
}


























/* ================= Virtual Office Section ================= */
.virtual-office {
  background-color: var(--color-secondary);
  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);
}




.virtual-office .section-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.text-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.text-image .image {
  flex: 1;
  width: 100%;
   aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-md);
}


.text-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


  .text-image.reverse {
    flex-direction: row-reverse;
  }

  .text-image .text,
  .text-image .image {
    flex: 1;
  }

































/* ==========================================================
   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.75);
  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);
  background: rgba(43, 45, 66, 0.75);
  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.75);
  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
========================================================== */




.business-support {
  background-color: var(--color-secondary);
  color: var(--color-muted);
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  position: relative;
}

.business-support .section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

/* Section Header */
.business-support .section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  color: var(--color-muted);
}

.business-support h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  line-height: 1.25;
}




.business-support .section-header p {
  text-align: center;
  margin-bottom: var(--space-5);
  color: var(--color-muted);
}

/* Text + Image Blocks */
.business-support .text-image {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

/* Image frame — ΙΔΙΟ με Virtual Office */
.business-support .text-image .image {
  flex: 1;
  width: 100%;
  aspect-ratio: 16 / 10; /* ΙΔΙΟ ratio */
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

/* Image */
.business-support .text-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text vertical centering */
.business-support .text-image .text {
  display: flex;
  flex-direction: column;
  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);
}

/* ==========================================================
   Common Challenges
========================================================== */

.challenges {
  position: relative;
  background: none; /* ⬅️ Αφαιρέθηκε το gradient */
  padding-block: clamp(5rem, 7vw, 8rem);
}

.challenges::after {
  display: none; /* ⬅️ Αφαιρέθηκε το overlay */
}

.challenges .section-header {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.challenges .section-header h2,
.challenges .section-header p {
  color: var(--color-text);
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.5vw, 2rem);
  max-width: 1100px;
  margin-inline: auto;
}

.challenge-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: visible;
  height: 100%;
  align-self: start;
}

.challenge-card.animate-in {
  opacity: 1;
  transform: scale(1);
}

.challenge-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.challenge-image {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  z-index: 1;
}

.speech-bubble {
  position: absolute;
  top: 90px;
  left: -80px;
  z-index: 3;
  background: var(--color-secondary);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  width: 200px;
  text-align: left;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.challenge-card:hover .speech-bubble {
  opacity: 1;
  transform: translateY(0);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--color-secondary);
}

.speech-bubble p {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  font-weight: 500;
  font-style: italic;
}

.challenge-solution {
  padding: var(--space-4);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  transition: background 0.4s var(--ease-standard);
  position: relative;
  z-index: 2;
}

.challenge-card:hover .challenge-solution {
  background: linear-gradient(
    to bottom,
    rgba(0, 200, 83, 0.18),
    rgba(0, 200, 83, 0.06)
  );
}

.solution-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-3);
  transition: transform 0.3s var(--ease-standard), background 0.3s var(--ease-standard);
}

.challenge-card:hover .solution-badge {
  transform: scale(1.08);
  background: #00c853;
}

.challenge-solution p {
  margin: 0;
  color: #ffffff;
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  font-weight: 500;
}

.section-footer {
  text-align: center;
  margin-top: var(--space-7);
}

/* Stagger Animation */
.challenge-card:nth-child(1).animate-in { transition-delay: 0.05s; }
.challenge-card:nth-child(2).animate-in { transition-delay: 0.12s; }
.challenge-card:nth-child(3).animate-in { transition-delay: 0.18s; }
.challenge-card:nth-child(4).animate-in { transition-delay: 0.25s; }
.challenge-card:nth-child(5).animate-in { transition-delay: 0.32s; }
.challenge-card:nth-child(6).animate-in { transition-delay: 0.40s; }

























/* ==========================================================
   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-bg {
  position: absolute;
  inset: 0;
  background-image: url("../../images/pic04.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.journey-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-bg);
  z-index: -1;
}

.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: relative;
  text-align: center;
}

.video-container .section-header {
  margin-bottom: var(--space-4);
}

.video-container .section-header h2,
.video-container .section-header p {
  color: var(--color-text);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(var(--overlay-bg), var(--overlay-bg)), var(--color-primary);
  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-text);
  margin-bottom: 45px;
}

.faq-title h2::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 60px;
  height: 2px;
  background: var(--color-text);
  bottom: -25px;
  margin-left: -30px;
}

.faq-title p {
  color: var(--color-text);
  max-width: 600px;
  margin-inline: auto;
}

.faq {
  background: var(--color-primary);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  max-width: 1200px;
  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 - ΜΟΝΟ ΕΔΩ */
.faq-card-header {
  padding: 0;
  border: none;
  background: none;
  transition: 
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 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-size: var(--fs-lg);
  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;
  font-size: var(--fs-base);
  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;
}






























/* =========================================================
   PRICES - NEW 3-SECTION LAYOUT
========================================================= */

.pricing {
  background: var(--color-secondary);
  padding-block: clamp(4rem, 6vw, 7rem);
}

.pricing .section-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.pricing .section-header h2 {
  color: var(--color-primary);
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-2);
}

.pricing .section-header p {
  color: var(--color-muted);
  font-size: var(--fs-lg);
}

/* ========== PRICING CATEGORY ========== */

.pricing-category {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 2px solid rgba(43, 45, 66, 0.1);
}

.pricing-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.category-title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-2);
}

.category-description {
  text-align: center;
  color: var(--color-muted);
  font-size: var(--fs-base);
  margin-bottom: var(--space-5);
  max-width: 600px;
  margin-inline: auto;
}

/* ========== PRICING GRID ========== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  max-width: 1000px; /* ΑΝΟΙΓΕΙ ΟΛΑ */
  margin-inline: auto;
  
}

.pricing-category:nth-of-type(2) .pricing-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 500px;
}


/* ========== PRICING CARD ========== */

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(43, 45, 66, 0.08);

  display: flex;
  flex-direction: column;

  width: 100%;

  transition: all var(--duration-normal) var(--ease-standard);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(43, 45, 66, 0.15);
  border-color: var(--color-accent);

 
}



/* Featured Card */
.pricing-card.featured {
  border: 3px solid var(--color-accent);
  position: relative;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  
  background: var(--color-accent);
  color: var(--color-text);
  
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-md);
  
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  
  box-shadow: 0 4px 12px rgba(217, 4, 41, 0.3);
}

/* ========== CARD HEADER ========== */

.pricing-card-header {
  text-align: center;
  padding-bottom: var(--space-4);
  border-bottom: 2px solid rgba(43, 45, 66, 0.1);
  margin-bottom: var(--space-4);
}

.plan-name {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}

.price-amount {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--color-accent);
}

.price-period {
  font-size: var(--fs-sm);
  color: var(--color-muted);
}

/* ========== FEATURES LIST ========== */

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start; /* όλα ξεκινάνε από πάνω */
  gap: var(--space-2);
  padding: var(--space-2) 0;
  color: var(--color-muted);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  position: relative;
}

.feature-item i {
  color: #2ea44f;
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Agreement items (handshake icon) */
.feature-item.agreement i {
  color: var(--color-accent);
}

/* ========== CONCIERGE SECTIONS ========== */

.concierge-card {
  padding: var(--space-6);
    max-width: 1100px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.concierge-section {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(43, 45, 66, 0.1);
}






/* ========== PRICING BUTTON ========== */

.pricing-btn {
  width: 100%;
  margin-top: auto;
  text-align: center;
  padding: 0.85em 1.5em;
  font-size: var(--fs-base);
}





/* Tooltip wrapper */
.info-tooltip {
  position: relative;
  display: inline-flex;
}

/* ? button */
.info-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

/* Tooltip box */
.tooltip-box {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);

  width: 260px;
  padding: 0.9rem 1rem;

  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 0.85rem;
  line-height: 1.4;

  border-radius: 0.6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Arrow */
.tooltip-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* Show on hover */
.info-tooltip:hover .tooltip-box,
.info-tooltip:focus-within .tooltip-box {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-4px);
}
.feature-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start; /* ΑΠΟ ΠΑΝΩ */
  column-gap: 0.5rem;
  width: 100%;
}

.feature-label {
  justify-self: start;
  white-space: nowrap;
}

.info-tooltip {
  margin-left: 0;
}
























/* =========================================================
   CTA SECTION
========================================================= */



.section.contact {
  
  background:
    linear-gradient(
      var(--overlay-bg),
      var(--overlay-bg)
    ),
    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: 620px;
  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);
}




















/* =========================================================
   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;

  padding-block: 3.5rem 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;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-icons a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.2rem;

  transition:
    transform var(--duration-fast) var(--ease-standard),
    background var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

.footer-icons a:hover {
  transform: translateY(-3px);
  background: var(--color-accent);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* 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;
}








/* 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;
}








































/* ===================================================================
   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: translateZ(0);
  transition: transform 0.12s ease-out;
}


/* ===================================================================
   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);
}


/* ===================================================================
   5. SPEECH BUBBLES POP-IN
=================================================================== */
.speech-bubble {
  will-change: transform, opacity;
}

.speech-bubble.bubble-hidden {
  opacity: 0;
  transform: scale(0.6) translateY(24px);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.speech-bubble.bubble-pop {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Stagger via DOM order */
.challenge-card:nth-child(1) .speech-bubble { transition-delay: 0.05s; }
.challenge-card:nth-child(2) .speech-bubble { transition-delay: 0.12s; }
.challenge-card:nth-child(3) .speech-bubble { transition-delay: 0.18s; }
.challenge-card:nth-child(4) .speech-bubble { transition-delay: 0.24s; }
.challenge-card:nth-child(5) .speech-bubble { transition-delay: 0.30s; }
.challenge-card:nth-child(6) .speech-bubble { transition-delay: 0.36s; }


/* ===================================================================
   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: translateZ(0);
}







































/* ==========================================================
   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 - MEDIUM SCREENS (max-width: 1024px)
========================================================== */

@media (max-width: 1024px) {
  
  /* Comparison Wrapper - Stack on Tablet */
  .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 - Stack */
  .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 Adjustments */
  .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 Mobile */
  .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;
  }

  /* Challenge Images - ΣΒΗΣΕ ΑΥΤΟ */
  /* .challenge-image {
    height: 200px;
  } */
  
  .speech-bubble {
    left: -60px;              /* ✅ Καλύτερη θέση για tablet */
    width: 180px;             /* ✅ Λίγο πιο στενό */
  }
}




















/* ==========================================================
   MOBILE - RESPONSIVE DESIGN (max-width: 640px)
========================================================== */

@media (max-width: 640px) {

  /* =================== Typography Scaling =================== */
  
  :root {
    --fs-3xl: 1.75rem;
    --fs-2xl: 1.5rem;
    --fs-xl: 1.25rem;
    --fs-lg: 1rem;
    --fs-base: 0.9rem;
    --fs-sm: 0.85rem;
    --fs-xs: 0.75rem;
  }

  p {
    line-height: 1.5;
  }

  h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
  }

  /* =================== HEADER - Language Selector Fixed =================== */
  
  .header-inner {
    min-height: 60px;
    padding-inline: 1rem;
    gap: 1rem;
    justify-content: space-between;
  }

  .logo img {
    height: 40px;
  }

  /* Hide main navigation items */
  .main-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .main-nav ul li {
    display: none;
  }

  /* Keep ONLY language switcher visible */
  .main-nav ul li.language-switcher {
    display: block !important;
  }

  /* Compact language switcher */
  .lang-toggle {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    min-width: auto;
  }

  .lang-menu {
    min-width: 160px;
    right: 0;
    left: auto;
  }

  .lang-option {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  /* =================== SECTIONS SPACING =================== */
  
  .section {
    padding-block: 3rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* =================== HERO =================== */
  
  .hero {
    min-height: calc(100vh - 60px);
    padding-top: 2rem;
  }

  .hero-content {
    padding-inline: 1.25rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero h2 {
    font-size: 1.25rem;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* =================== INTRO =================== */
  
  .intro-card {
    padding: 1.5rem;
  }

  .intro-icon {
    font-size: 1.5rem;
  }

  .intro-card h3 {
    font-size: 1.15rem;
  }

  .intro-card p {
    font-size: 0.85rem;
  }

  /* =================== VIRTUAL OFFICE =================== */
  
  .virtual-office .text-image,
  .virtual-office .text-image:nth-child(even) {
    flex-direction: column !important;
  }

  .virtual-office .text-image .image {
    order: 1;
  }

  .virtual-office .text-image .text {
    order: 2;
  }

  .virtual-office .text-image .image {
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }

  /* =================== BUSINESS SUPPORT =================== */
  
  .business-support .text-image,
  .business-support .text-image:nth-child(even) {
    flex-direction: column !important;
  }

  .business-support .text-image .image {
    order: 1;
  }

  .business-support .text-image .text {
    order: 2;
  }

  .business-support .text-image .image {
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }

  /* =================== SERVICES - SIMPLE LIST STYLE =================== */
  
  .services {
    min-height: auto;
    padding-block: 3rem;
  }

  .services-grid {
    gap: 1rem;
    padding: 0 1rem;
  }

  /* Reset all 3D effects */
  .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: rgba(43, 45, 66, 0.85);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--color-accent);
  }

  .service-card:hover .card-inner {
    transform: none !important;
    background: rgba(43, 45, 66, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  /* Hide back, show everything in front */
  .card-back {
    display: none;
  }

  .card-front {
    position: static;
    background: transparent;
    padding: 0;
    backface-visibility: visible;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    transform: none;
    margin-top: 0.25rem;
  }

  .service-icon i {
    font-size: 22px;
  }

  .card-front h3 {
    transform: none;
    font-size: 1.1rem;
    padding: 0;
    background: none;
    text-align: left;
    margin-bottom: 0.5rem;
    color: var(--color-text);
  }

  /* Show description from card-back */
  .card-front::after {
    content: attr(data-description);
    display: block;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
  }

  /* =================== HIDE WHY CHOOSE & CHALLENGES =================== */
  
  .why-choose,
  .challenges {
    display: none !important;
  }

  /* =================== 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;
    margin-bottom: 0.75rem;
  }

  .timeline-content p {
    font-size: 0.85rem;
  }

  /* =================== FAQ =================== */
  
  .faq-section {
    padding-block: 4rem;
  }

  .faq-title h2 {
    font-size: 1.5rem;
  }

  .faq-title p {
    font-size: 0.9rem;
    padding: 0;
  }

  .faq-button {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .faq-badge {
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }

  .faq-card-body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-size: 0.85rem;
  }

  /* =================== PRICING =================== */
  
  .pricing {
    padding-block: 3rem;
  }

  .pricing-category {
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-5);
  }

  .category-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
  }

  .category-description {
    font-size: 0.9rem;
    padding-inline: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding-inline: 1rem;
  }

  .pricing-category:nth-of-type(2) .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: var(--space-4);
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px) scale(1);
  }

  .featured-badge {
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
  }

  .plan-name {
    font-size: 1.3rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .price-period {
    font-size: 0.8rem;
  }

  .features-list {
    margin-bottom: var(--space-4);
  }

  .feature-item {
    padding: var(--space-2) 0;
    font-size: 0.85rem;
  }

  .feature-item i {
    font-size: 0.9rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .pricing-btn {
    font-size: 0.95rem;
    padding: 0.75em 1.5em;
  }

  .info-tooltip {
    display: none;
  }

  /* =================== CONTACT FORM - Compact & Clean =================== */
  
  .section.contact {
    padding-block: 3rem;
    padding-inline: 1.25rem;
  }

  .section.contact .section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .section.contact .section-header p {
    font-size: 0.95rem;
    margin-bottom: var(--space-5);
  }

  /* Stack form fields on mobile */
  .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: 0.95rem;
    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;
  }
}

/* ==========================================================
   MOBILE - EXTRA SMALL SCREENS (max-width: 480px)
========================================================== */

@media (max-width: 480px) {
  
  :root {
    --fs-3xl: 1.5rem;
    --fs-2xl: 1.3rem;
    --fs-xl: 1.15rem;
  }

  .header-inner {
    padding-inline: 0.75rem;
  }

  .logo img {
    height: 36px;
  }

  .lang-toggle {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  .service-card .card-inner {
    padding: 1rem 1.25rem;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .service-icon i {
    font-size: 20px;
  }

  .card-front h3 {
    font-size: 1rem;
  }

  .pricing-grid {
    padding: 0 0.5rem;
  }

  .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.5rem;
  }

  .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;
  }
}







