.hero{ overflow: visible; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-card{ position: relative; isolation: isolate; }
.card-glow{
  position:absolute;
  inset:-8px;
  border-radius:34px;
  background: conic-gradient(
    from 180deg,
    rgba(225,207,154,0.14),
    rgba(225,207,154,0.00),
    rgba(225,207,154,0.40),
    rgba(225,207,154,0.00),
    rgba(225,207,154,0.20)
  );
  filter: blur(4px);
  z-index:0;
  animation: spin 16s linear infinite;
  pointer-events:none;
}
.card-box{ position:relative; z-index:1; }
#services, #practice, #team, #faq, #contact{
  scroll-margin-top: 110px;
}

.section-stone{
  background: linear-gradient(180deg, var(--stone), #fff);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.logo-text {
    display: flex;
    flex-direction: column; 
    line-height: 1; 
}

.brand-name {
    color: #5a0a14;
    font-weight: bold;
    font-size: 22px; 
    letter-spacing: 1px;
}

.brand-subtext {
    color: #c7a867;
    font-size: 10px; 
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* ---------- Colors ---------- */
:root {
  --burgundy: #5a0a14;
  --gold: #c7a867;
  --gold-deep: #b9954b;
  --gold-soft: #e1cf9a;
  --stone: #f7f5f2;
}

/* ================ RESET ================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

/* Container */
.container {
  width: 92%;
  max-width: 1300px;
  margin: auto;
}

/* ================ NAVBAR ================ */
.navbar {
  width: 100%;
  height: 80px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0; left: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px;
}.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo αριστερά - menu δεξιά */
}

.logo {
  width: 45px;
  height: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
}



.navbar a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  margin-left: 20px;
  font-weight: 500;
  transition: .3s ease;
}

.navbar a:hover { color: var(--burgundy); }

.btn-burgundy {
  background: var(--burgundy);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 12px;
  transition: .3s ease;
}

.btn-burgundy:hover { background: #4a0710; }

.btn-outline {
  border: 2px solid var(--burgundy);
  padding: 10px 18px;
  border-radius: 12px;
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: none;
}

.btn-gold-outline {
  border: 2px solid var(--gold);
  padding: 10px 18px;
  border-radius: 12px;
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: none;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  user-select: none;
}

.lang-option {
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}

.lang-option.active {
  opacity: 1;
  color: #000;
  font-weight: 600;
}

.lang-option:hover {
  opacity: 1;
}

.lang-divider {
  opacity: 0.4;
}

/* ================ HERO SECTION ================ */
.hero {
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 62px;
  color: #1a1a1a;
  line-height: 1.1;
}

.hero-text {
  margin-top: 20px;
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #c7a86744;
  color: var(--burgundy);
  border-radius: 30px;
  font-size: 12px;
}

.hero-small {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

/* Hero Right Card */
.hero-card { position: relative; }

.card-box {
  background: #fff;
  padding: 50px 30px;
  border-radius: 30px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 5px 30px rgba(0,0,0,0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card-title {
  font-size: 24px;
  font-family: "Playfair Display", serif;
  margin-top: 20px;
}

.card-text {
  margin-top: 12px;
  font-size: 15px;
  color: #555;
}

.card-icon-left,
.card-icon-right {
  position: absolute;
  width: 55px;
  opacity: 0.15;
}

.card-icon-left { left: 15px; top: 30px; }
.card-icon-right { right: 20px; bottom: 30px; }

/* ================ SECTION BASICS ================ */
.section { padding: 110px 0; }

.section-light {
  padding: 110px 0;
  background: #f7f5f2;
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-family: "Playfair Display", serif;
  color: #1a1a1a;
}

/* ================ SERVICES ================ */
/* SERVICES — React-like grid */
.services-grid {
  margin-top: 40px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 780px) {
  .services-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Services Card look (React-like) */
.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  font-family: "Playfair Display", sans-serif;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.practice-grid{
  margin-top: 40px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr; /* mobile */
}

/* tablet: 2 δίπλα */
@media (min-width: 700px){
  .practice-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* desktop: 4 δίπλα */
@media (min-width: 1200px){
  .practice-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.practice-box{
  background: #fff;
  padding: 26px 24px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.practice-box:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  border-color: color-mix(in srgb, var(--gold) 75%, transparent);
}

.practice-title{
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: #111;
  font-weight: 700;
}

.practice-text{
  margin: 10px 0 0;
  color: #404040;
  line-height: 1.65;
  font-size: 14px;
}

.practice-box ul{
  margin: 14px 0 0;
  padding-left: 18px;
}

.practice-box li{
  margin: 8px 0;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.5;
}

.practice-box li::marker{
  color: var(--burgundy);
}

/* ================ TESTIMONIALS ================ */
.grid-2 {
  margin-top: 50px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.test-box {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid #eee;
  position: relative;
  box-shadow: 0 10px 22px rgba(0,0,0,0.04);
}

.test-quote {
  font-size: 80px;
  line-height: 0.3;
  color: #c7a86755;
  position: absolute;
  top: 20px;
  left: 25px;
  user-select: none;
}

.test-text {
  margin-top: 35px;
  color: #444;
  line-height: 1.7;
  font-size: 16px;
}

.test-author {
  margin-top: 20px;
  font-weight: bold;
  color: var(--burgundy);
}

/* ====== Fade-up animation (όπως "fade-up") ====== */
.fade-up {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 650ms cubic-bezier(.22,1,.36,1), transform 650ms cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   TEAM SECTION — CLEAN VERSION
============================ */
.team-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1000px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  background: #ffffff;
  padding: 2.2rem;
  border-radius: 18px;
  border: none;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.team-initial {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.team-name {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #2d2d2d;
}

.team-role {
  color: #333;
  font-weight: 500;
  font-size: 0.98rem;
  margin-bottom: 0.8rem;
}

.team-text {
  color: #444;
  line-height: 1.55;
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.team-lang {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
}

/* FULL-WIDTH LEAD PARTNER */
.team-card.large {
  grid-column: 1 / -1;
  padding: 3rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-radius: 22px;
}

.team-card.large .team-initial {
  width: 90px;
  height: 90px;
  font-size: 1.6rem;
}

.team-card.large .team-name { font-size: 1.8rem; }
.team-card.large .team-role { font-size: 1.15rem; }

/* ===== FAQ Professional Style ===== */
:root{
    /* άλλαξε αυτό για καθαρό κόκκινο: #c40000 */
    --accent: #5a0a14;  /* burgundy */
    --border: #ececec;
    --bg: #ffffff;
    --soft: #fafafa;
    --text: #111827;
    --muted: #6b7280;
    --shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .faq-section{
    padding: 80px 20px;
    background: #fff;
  }

  .faq-wrap{
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-wrap h2{
    font-size: 34px;
    margin: 0 0 10px;
    letter-spacing: 0.3px;
  }

  .faq-sub{
    margin: 0 0 28px;
    color: var(--muted);
    max-width: 650px;
    line-height: 1.6;
  }

  .faq-item{
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    overflow: hidden;
    margin-bottom: 12px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease;
  }

  .faq-item:hover{
    border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
    box-shadow: var(--shadow);
    transform: translateY(-1px);
  }

  .faq-question{
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text);
    font-weight: 650;
    font-size: 16px;
  }

  /* το κόκκινο βελάκι */
  .faq-arrow{
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    transition: transform .22s ease;
    flex: 0 0 10px;
  }

  .faq-item.is-open .faq-arrow{
    transform: rotate(-135deg);
  }

  .faq-answer{
    height: 0;
    overflow: hidden;
    background: var(--soft);
    transition: height .28s ease;
    border-top: 1px solid rgba(0,0,0,0.03);
  }

  .faq-answer-inner{
    padding: 0 22px 18px;
    color: #374151;
    line-height: 1.65;
    font-size: 15px;
  }

  .faq-item.is-open .faq-answer-inner{
    padding-top: 14px;
  }

  /* Focus states (πιο professional accessibility) */
  .faq-question:focus-visible{
    outline: 3px solid color-mix(in srgb, var(--accent) 25%, transparent);
    outline-offset: 3px;
    border-radius: 12px;
  }

  /* Mobile tweaks */
  @media (max-width: 520px){
    .faq-wrap h2{ font-size: 28px; }
    .faq-question{ padding: 18px 18px; font-size: 15px; }
    .faq-answer-inner{ padding: 0 18px 16px; font-size: 14px; }
  }
/* -------- CONTACT -------- */
:root{
    --burgundy:#5a0a14;
    --gold:#c7a867;
    --stone:#f7f5f2;
  }

  .contact-section{
    background: var(--burgundy);
    color:#fff;
    padding: 70px 20px;
  }

  .contact-wrap{
    max-width: 1100px;
    margin: 0 auto;
    display:grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items:center;
  }

  .contact-title{
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 34px;
    margin: 0;
    line-height: 1.15;
  }

  .contact-sub{
    margin-top: 10px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
  }

  .contact-info{
    margin-top: 22px;
    display:flex;
    flex-direction:column;
    gap: 10px;
    color: rgba(255,255,255,0.9);
  }

  .contact-row{
    display:flex;
    align-items:center;
    gap: 10px;
    font-size: 15px;
  }

  .contact-ico{
    width: 22px;
    height: 22px;
    display:inline-grid;
    place-items:center;
  }

  .contact-form{
    background:#fff;
    color:#111;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  }

  .form-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .span-2{ grid-column: span 2; }

  .field{
    width:100%;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    background:#fff;
  }

  .field:focus{
    border-color: color-mix(in srgb, var(--burgundy) 35%, #e6e6e6);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--burgundy) 15%, transparent);
  }

  textarea.field{
    resize: vertical;
    min-height: 110px;
  }

  .submit-btn{
    width:100%;
    margin-top: 14px;
    border: 0;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 700;
    color:#fff;
    background: var(--burgundy);
    cursor:pointer;
    transition: transform .15s ease, filter .2s ease;
  }

  .submit-btn:hover{ filter: brightness(1.05); transform: translateY(-1px); }
  .submit-btn:active{ transform: translateY(0); }

  .gdpr-note{
    margin-top: 10px;
    font-size: 12px;
    color:#6b7280;
    line-height: 1.45;
  }

  .form-status{
    margin-top: 10px;
    font-size: 13px;
    color:#374151;
  }
  

  /* Responsive */
  @media (max-width: 900px){
    .contact-wrap{
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .contact-title{ font-size: 30px; }
  }

  @media (max-width: 520px){
    .form-grid{ grid-template-columns: 1fr; }
    .span-2{ grid-column: span 1; }
  }
/* ================ RESPONSIVE ================ */
@media (max-width: 900px) {
  .hero-title { font-size: 45px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 36px; }
  .card-box { padding: 30px; }
}
.site-footer{
  background: var(--stone);
  border-top: 1px solid rgba(199,168,103,0.35);
  color: #3f3f3f;
}

.site-footer .footer-inner{
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top{
  padding: 48px 0;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.footer-col{
  min-width: 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(199,168,103,0.15);
  color: var(--burgundy);
}

.brand-text{
  line-height: 1.1;
}

.brand-name{
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--burgundy);
}

.brand-sub{
  display: block;
  font-size: 11px;
  letter-spacing: 1.2px;
  color: #777;
  margin-top: 2px;
}

.brand-desc{
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #5a5a5a;
  max-width: 320px;
}

.footer-title{
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-links{
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.footer-links a{
  text-decoration: none;
  color: #3f3f3f;
  font-size: 13px;
  transition: color .2s ease, text-decoration-color .2s ease;
  text-underline-offset: 3px;
}

.footer-links a:hover{
  color: var(--burgundy);
  text-decoration: underline;
}

.footer-contact{
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: #3f3f3f;
}

.footer-contact a{
  color: var(--burgundy);
  text-decoration: none;
}

.footer-contact a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom{
  border-top: 1px solid rgba(199,168,103,0.25);
  background: rgba(255,255,255,0.35);
}

.footer-bottom-inner{
  padding: 14px 0;
  font-size: 12px;
  color: #7a7a7a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Responsive */
@media (max-width: 980px){
  .footer-top{
    grid-template-columns: 1fr 1fr;
  }
  .brand-desc{ max-width: none; }
}

@media (max-width: 560px){
  .footer-top{
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner{
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .navbar-links {
    display: none; 
  }
  
  .navbar-links a:not(.btn-burgundy) {
    display: none; 
  }
}