:root {
  --navy: #0B1C2C;
  --navy-2: #10283f;
  --gold: #C8A96A;
  --gold-soft: rgba(200, 169, 106, 0.14);
  --white: #FFFFFF;
  --ink: #F5F2EC;
  --text: #14202c;
  --muted: #646464;
  --surface: #F7F7F5;
  --border: rgba(11, 28, 44, 0.12);
  --shadow: 0 22px 50px rgba(11, 28, 44, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1280px;
  --header-height: 88px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.lang-en, .lang-el { display: none; }
html[data-lang="el"] .lang-el { display: block; }
html[data-lang="en"] .lang-en { display: block; }
.container { width: min(100% - 2rem, var(--max-width)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(11, 28, 44, 0.85); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand-link { display: inline-flex; align-items: center; }
.brand-title { font-family: 'Playfair Display', serif; color: var(--white); font-size: clamp(1.12rem, 2vw, 1.4rem); letter-spacing: 0.02em; }
.desktop-nav { display: flex; gap: 1.2rem; align-items: center; }
.desktop-nav a { color: rgba(255,255,255,0.82); font-size: 0.94rem; transition: color 0.2s ease; }
.desktop-nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: inline-flex; align-items: center; border: 1px solid rgba(200, 169, 106, 0.4); background: rgba(255,255,255,0.08); border-radius: 999px; padding: 0.22rem; }
.lang-btn { border: 0; background: transparent; color: var(--white); width: 42px; height: 36px; border-radius: 999px; font-weight: 700; }
.lang-btn.active { background: var(--gold); color: var(--navy); }
.header-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 1rem; border-radius: 999px; background: linear-gradient(135deg, var(--gold), #dbc08b); color: var(--navy); font-weight: 700; white-space: nowrap; box-shadow: 0 12px 25px rgba(200, 169, 106, 0.3); }
.header-cta .lang-en, .header-cta .lang-el, .gallery-tab .lang-en, .gallery-tab .lang-el, .gallery-item.placeholder .lang-en, .gallery-item.placeholder .lang-el, .mobile-sticky-cta .lang-en, .mobile-sticky-cta .lang-el { display: none; }
html[data-lang="el"] .header-cta .lang-el, html[data-lang="en"] .header-cta .lang-en, html[data-lang="el"] .gallery-tab .lang-el, html[data-lang="en"] .gallery-tab .lang-en, html[data-lang="el"] .gallery-item.placeholder .lang-el, html[data-lang="en"] .gallery-item.placeholder .lang-en, html[data-lang="el"] .mobile-sticky-cta .lang-el, html[data-lang="en"] .mobile-sticky-cta .lang-en { display: inline; }
.hero {     position: relative;
    min-height: calc(100svh - var(--header-height));
    display: grid;
    align-items: stretch;
    isolation: isolate;
    align-content: center;
    justify-content: space-around;}
.hero-media, .hero-overlay, .lifestyle-media, .lifestyle-overlay { position: absolute; inset: 0; }
.hero-media img, .lifestyle-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {background-color: #000000a6;}
.hero-content { position: relative; z-index: 1; display: grid; align-content: end; padding-block: 9rem 5rem; color: var(--white); }
.eyebrow, .section-kicker { display: inline-block; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem; color: var(--gold); margin-bottom: 0.9rem; }
.hero h1, .section h2, .lifestyle h2 { font-family: 'Playfair Display', serif; line-height: 1.08; letter-spacing: 0.01em; margin: 0; }
.hero h1 { font-size: clamp(2.9rem, 7vw, 5.7rem); max-width: 11ch; }
.hero-subtitle { margin-top: 1.2rem; font-size: clamp(1.02rem, 2vw, 1.3rem); max-width: 64rem; }
.hero-meta { margin-top: 1rem; font-weight: 600; color: rgba(255,255,255,0.9); text-align: center;
    font-size: 18px;}
.hero-actions, .map-actions, .contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    justify-content: space-between;
    align-content: space-around;
    align-items: stretch;
    max-width: 725px;
    margin: 40px auto;
}
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0.85rem 1.2rem; border-radius: 999px; font-weight: 700; transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease; border: 1px solid transparent; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), #dbc08b); color: var(--navy); box-shadow: 0 14px 24px rgba(200, 169, 106, 0.26); }
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.24); }
.dark-btn { color: var(--navy); background: var(--gold-soft); border-color: rgba(11, 28, 44, 0.08); }
.btn-tertiary { background: rgba(11, 28, 44, 0.3); color: var(--white); border-color: rgba(255,255,255,0.16); }
.section { padding: 5.5rem 0; }
.section-dark { background: var(--navy); color: var(--ink); }
.section-heading { margin-bottom: 2rem; }
.section h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.section-heading p { max-width: 75ch; color: inherit; }
.highlights-grid, .details-grid, .investment-grid, .tables-grid, .contact-grid, .media-grid { display: grid; gap: 1.4rem; }
.highlights-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.details-grid, .media-grid, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.investment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tables-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tables-grid.three-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.highlight-card, .detail-card, .investment-card, .table-card, .contact-card, .media-panel, .map-card { background: var(--white); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; }
.section-dark .media-panel, .section-dark .investment-card { background: rgba(255,255,255,0.05); color: var(--ink); border-color: rgba(255,255,255,0.08); box-shadow: none; }
.highlight-card h3, .detail-card h3, .investment-card h3, .table-card h3, .media-panel h3, .contact-card h3, .table-card h4 { margin-top: 0; font-family: 'Playfair Display', serif; font-size: 1.45rem; }
.highlight-card p:last-child, .detail-card p:last-child, .investment-card p:last-child, .table-card p:last-child, .media-panel p:last-child, .contact-card p:last-child { margin-bottom: 0; }
.detail-card ul, .table-card ul { padding-left: 1.25rem; }
.detail-card li + li, .table-card li + li { margin-top: 0.55rem; }
.media-grid { margin-bottom: 1.6rem; }
.placeholder-box { min-height: 220px; border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(200, 169, 106, 0.12), rgba(255,255,255,0.06)); border: 1px dashed rgba(200, 169, 106, 0.55); }
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.4rem; }
.gallery-tab { min-height: 46px; padding: 0 1rem; border-radius: 999px; background: transparent; color: var(--ink); border: 1px solid rgba(255,255,255,0.2); font-weight: 700; }
.gallery-tab.active { background: linear-gradient(135deg, var(--gold), #dbc08b); color: var(--navy); border-color: transparent; }
.gallery-slider { display: none; align-items: center; gap: 1rem; }
.gallery-slider.active { display: flex; }
.gallery-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 34vw); gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item { position: relative; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); overflow: hidden; min-height: 340px; background: rgba(255,255,255,0.06); color: var(--ink); scroll-snap-align: start; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.placeholder { display: grid; place-items: center; font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2vw, 2rem); background: linear-gradient(135deg, rgba(200, 169, 106, 0.12), rgba(255,255,255,0.05)); }
.gallery-nav { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.08); color: var(--ink); font-size: 2rem; line-height: 1; }
.map-card { padding: 0; overflow: hidden; margin-bottom: 1.6rem; }
.map-card iframe { width: 100%; height: 420px; border: 0; }
.map-actions { padding: 1.25rem; }
.table-card table { width: 100%; border-collapse: collapse; }
.table-card th, .table-card td { text-align: left; padding: 0.8rem 0.4rem; border-bottom: 1px solid rgba(11, 28, 44, 0.08); vertical-align: top; }
.table-card th { color: var(--navy); }
.table-card a { color: var(--navy-2); text-decoration: underline; text-underline-offset: 3px; }
.poi-section { margin-top: 1.6rem; }
.full-width { width: 100%; }
.aerial-section { background: #f7f7f5; padding-top: 3rem; padding-bottom: 5rem; }
.lifestyle { position: relative; min-height: 60svh; display: grid; align-items: center; color: var(--white); isolation: isolate; }
.lifestyle-overlay { background: linear-gradient(180deg, rgba(11, 28, 44, 0.25), rgba(11, 28, 44, 0.75)); }
.lifestyle-content { position: relative; z-index: 1; padding-block: 6rem; }
.lifestyle-content > div { max-width: 60rem; }
.contact-links { display: grid; gap: 0.7rem; }
.contact-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1rem; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border); font-weight: 600; }
.form-card label { display: grid; gap: 0.5rem; margin-bottom: 1rem; font-weight: 600; }
.form-card input, .form-card textarea { width: 100%; border: 1px solid rgba(11, 28, 44, 0.18); background: var(--surface); border-radius: 12px; padding: 0.9rem 1rem; outline: none; }
.form-card textarea { resize: vertical; }
.privacy-note { margin-top: 1rem; color: var(--muted); }
.site-footer { background: var(--navy); color: var(--ink); padding: 2rem 0 6rem; }
.footer-inner { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }
.mobile-sticky-cta { position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%); z-index: 110; display: none; grid-template-columns: 1fr auto auto; align-items: center; gap: 0.5rem; width: min(100% - 1rem, 560px); padding: 0.55rem; border-radius: 999px; background: rgba(11, 28, 44, 0.94); box-shadow: 0 22px 48px rgba(11, 28, 44, 0.32); }
.mobile-sticky-cta a { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 700; color: var(--navy); background: var(--gold); padding: 0 1rem; }
.mobile-sticky-cta a:nth-child(2), .mobile-sticky-cta a:nth-child(3) { min-width: 50px; background: rgba(255,255,255,0.12); color: var(--white); }
.lightbox { position: fixed; inset: 0; display: none; place-items: center; padding: 2rem; background: rgba(6, 15, 24, 0.88); z-index: 140; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(100%, 1200px); max-height: 86vh; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,0.35); }
.lightbox-close { position: absolute; top: 1.2rem; right: 1.2rem; width: 52px; height: 52px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.1); color: var(--white); font-size: 2rem; }
@media (max-width: 1180px) { .desktop-nav { display: none; } .highlights-grid, .investment-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); } .tables-grid.three-cols { grid-template-columns: repeat(1, minmax(0, 1fr)); } }
@media (max-width: 920px) { .details-grid, .media-grid, .contact-grid, .tables-grid, .tables-grid.three-cols { grid-template-columns: 1fr; } .hero h1 { max-width: 12ch; } }
@media (max-width: 720px) { :root { --header-height: 74px; } .section { padding: 4.3rem 0; } .header-inner { min-height: var(--header-height); } .header-cta { display: none; } .hero-content { padding-block: 6rem 5rem; } .hero-actions { gap: 0.75rem; } .hero-actions .btn { width: 100%; } .highlights-grid, .investment-grid { grid-template-columns: 1fr; } .gallery-slider { gap: 0.6rem; } .gallery-track { grid-auto-columns: 88%; } .gallery-nav { display: flex;align-items: center;justify-content: center;width: 40px;height: 40px;font-size: 1.5rem;z-index: 10;} .mobile-sticky-cta { display: grid; } .map-card iframe { height: 320px; } .site-footer { padding-bottom: 7rem; } }
@media (max-width: 480px) { .container { width: min(100% - 1rem, var(--max-width)); } .lang-switch { transform: scale(0.95); transform-origin: center; } .hero h1 { font-size: clamp(2.4rem, 12vw, 4rem); } .highlight-card, .detail-card, .investment-card, .table-card, .contact-card, .media-panel { padding: 1.1rem; } }
.youtube{
  position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}
.youtube iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lightbox {
  position: fixed;
  /* ... τα υπόλοιπα στυλ σου ... */
}

/* Στυλ για τα βέλη πλοήγησης του Lightbox */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  font-size: 3rem;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 1010;
  transition: background 0.2s ease, color 0.2s ease;
  user-select: none;
}

.lightbox-nav:hover {
  background: rgba(219, 192, 139, 0.8); /* Χρυσό hover για να ταιριάζει με το design */
  color: #0b1c2c;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Κρύβουμε τα βέλη σε πολύ μικρές οθόνες αν εμποδίζουν */
@media (max-width: 576px) {
  .lightbox-nav {
    padding: 5px 12px;
    font-size: 2rem;
  }
  .lightbox-prev { left: 5px; }
  .lightbox-next { right: 5px; }
}

@media (max-width: 768px) {
  .tables-grid {
    grid-template-columns: 1fr !important; /* Μετατρέπει τις στήλες σε 1 μονοκόμματη στήλη */
    gap: 15px; /* Μειώνει ελαφρώς το κενό μεταξύ τους για εξοικονόμηση χώρου */
  }

  .table-card {
    width: 100%;
    overflow-x: auto; /* Αν για οποιοδήποτε λόγο το κείμενο μέσα στον πίνακα είναι πολύ μεγάλο, θα κάνει scroll τοπικά μέσα στην κάρτα αντί να χαλάει όλη τη σελίδα */
    box-sizing: border-box;
  }
}

.section-kicker{
  display:none;
}

/* --- Property Highlight Metrics Row --- */
.property-highlights-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* 7 ισαπέχουσες στήλες στο desktop */
  background: var(--white);
  padding: 1.5rem 0;
  margin-bottom: 3rem;
  border-top: 1px solid #f0f0f0;    /* Λεπτή γραμμή πάνω όπως στο screenshot */
  border-bottom: 1px solid #f0f0f0; /* Λεπτή γραμμή κάτω όπως στο screenshot */
  text-align: center;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Προαιρετικά κάθετα lines ανάμεσα στα items (εκτός από το τελευταίο) */
.highlight-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #eaeaea;
}

.highlight-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #999999; /* Απαλό γκρι για τον τίτλο */
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.highlight-value {
  display: block;
  font-family: 'Playfair Display', serif; /* Elegant serif στυλ */
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy); /* Το premium βαθύ μπλε σου */
}

/* Responsive Συμπεριφορά για οθόνες Tablet */
@media (max-width: 992px) {
  .property-highlights-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 0;
    padding: 1.5rem;
  }
  .highlight-item:not(:last-child)::after {
    display: none; /* Αφαιρούμε τις κάθετες γραμμές όταν σπάει το layout */
  }
}

/* Responsive Συμπεριφορά για Κινητά */
@media (max-width: 576px) {
  .property-highlights-row {
    grid-template-columns: repeat(2, 1fr); /* 2 στήλες στα κινητά για τέλεια ανάγνωση */
    gap: 1.25rem 0;
    padding: 1.25rem 0;
  }
  .highlight-value {
    font-size: 1.25rem;
  }
}

.matterport{
    background-image: url('img/matterport.jpg');
    background-size: cover;
    background-position: center;
    display: block;
    min-height: 300px;
    text-align: center;
    border-radius: 6px;
}