/*
 *  style.css
 */

/* ====================================
   ΓΡΑΜΜΑΤΟΣΕΙΡΕΣ (Font Faces)
   ==================================== */

/* Roboto Condensed — η κύρια γραμματοσειρά του site.
   Τα αρχεία βρίσκονται τοπικά στον φάκελο fonts/ ώστε να μην εξαρτάται το design
   από εγκατεστημένες γραμματοσειρές της συσκευής του επισκέπτη. */

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ====================================
   CSS METABΛΗΤΕΣ (Custom Properties)
   ==================================== */

:root {
    --my-primary-bg-color: #24a38a;
    --text-on-colored-background: #ffffff;
    --text-on-white-background: #283633;

    --nav-link: #ffffff;
    --nav-link-hover: #181818;

    --social-icon: #ffffff;
    --social-icon-hover: #181818;

    --font-primary: 'Roboto Condensed', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: Georgia, serif;
}

/* ====================================
   ΒΑΣΙΚΕΣ ΡΥΘΜΙΣΕΙΣ
   ==================================== */
body {
    font-family: var(--font-primary);
    color: var(--text-on-white-background);
    background-color: var(--my-primary-bg-color); /* Αποφυγή λευκού «φλαρέ» μεταξύ header και hero σε απότομο scroll */
    font-size: 16px;
    line-height: 1.6;
}

/* Το main αποτελεί το κοινό περίβλημα όλων των σελίδων και κρατά το τελικό wave. */
main {
    position: relative;
}

/* Εμφανίζεται μόνο με πληκτρολόγιο, ώστε να παραμένει ανέπαφο το οπτικό design. */
.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 10px 14px;
    color: #ffffff;
    background-color: var(--text-on-white-background);
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* ====================================
   ΕΠΑΝΑΧΡΗΣΙΜΟΠΟΙΗΣΙΜΑ ΣΤΥΛ ΤΙΤΛΩΝ
   ==================================== */

/* Τίτλοι σε σκούρο φόντο (π.χ. hero, cta) */
.title-dark-bg {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -1px;
    margin-top: 5px;
    margin-bottom: 0;
    color: #ffffff;
}

/* Τίτλοι σε ανοιχτό φόντο (π.χ. services) */
.title-light-bg {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -1px;
    margin-top: 5px;
    color: var(--my-primary-bg-color);
}

/* Υπότιτλοι σε σκούρο φόντο */
.subtitle-dark-bg {
    display: block;
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 5px;
}

/* Υπότιτλοι σε ανοιχτό φόντο */
.subtitle-light-bg {
    display: block;
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text-on-white-background);
    margin-bottom: 5px;
}

/* Επαναχρησιμοποιήσιμη εικόνα με έγχρωμο περίγραμμα */
.framed-image {
    width: 100%;
    max-width: 540px;
    height: auto;
    border-radius: 12px;
    border: 4px solid var(--my-primary-bg-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framed-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(36, 163, 138, 0.3);
}

/* ====================================
   HEADER
   ==================================== */
.site-header {
    width: 100%;
    background-color: var(--my-primary-bg-color);
}

.site-header {
    position: sticky;
    top: -125px; /* Κρύβει την πάνω μπάρα με το λογότυπο κατά την κύλιση, αφήνοντας μόνο το Μενού πλοήγησης. */
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Προσβασιμότητα: όσοι προτιμούν μειωμένη κίνηση βλέπουν τον Smart Header χωρίς animation. */
@media (prefers-reduced-motion: reduce) {
    .site-header {
        transition: none;
    }
}

/* --- Πάνω γραμμή: logo + τηλέφωνο --- */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 10px;
}

.header-top-inner {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    margin: 0 auto;
    padding: 5px 20px;
    border-bottom: 1px solid #ffffff30;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 100px;
    width: auto;
}

.header-phones {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    color: var(--text-on-colored-background);
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-phone svg {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.header-phone:hover {
    color: var(--nav-link-hover);
}

/* --- Κάτω γραμμή: menu + social --- */
.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 20px;
}

/* Μενού πλοήγησης */
.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nav-link);
    padding: 25px 14px 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-transform: uppercase;
    position: relative;
}

.main-nav li a:hover {
    background-color: #ffffff;
    color: var(--nav-link-hover);
}

.main-nav li a.active::before,
.main-nav li a:hover::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: #5ed4bc;
    border-radius: 50%;
}

/* Social εικονίδια */
.header-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--social-icon);
    transition: color 0.2s ease;
}

.header-social a:hover {
    color: var(--social-icon-hover);
}

/* ====================================
   BUTTONS
   ==================================== */
/* Button White */
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #10b3b0;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background-color: #f0fdfc;
    color: #098b89;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-white span {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Button Green */
.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--my-primary-bg-color);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(36, 163, 138, 0.2);
}

.btn-green:hover {
    background-color: #1f8e77;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 163, 138, 0.3);
}

.btn-green span {
    font-weight: 700;
    font-size: 1.1rem;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero-section {
    height: calc(100vh - 188px);
    min-height: 716px;
    position: relative;
    background-color: var(--my-primary-bg-color);
    overflow: hidden;
    color: #ffffff;
}

/* Κυματιστό διαχωριστικό κάτω από το Hero */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px; /* για να καλύψει τυχόν κενό 1px */
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
    z-index: 3;
    /* Χρώμα: Πρέπει να ταιριάζει ΑΚΡΙΒΩΣ με το background του επόμενου section */
    background-color: #ffffff; 
    -webkit-mask-image: url('../images/separators1.png');
    mask-image: url('../images/separators1.png');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* Left content column */
/* Το h1 του hero έχει μεγαλύτερο μέγεθος από τα υπόλοιπα h2 */
.hero-title {
    font-size: 5.5rem;
    margin-bottom: 25px;
}

.hero-description {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    margin-bottom: 35px;
}

/* Δεξιά στήλη πολυμέσων. */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob-wrapper {
    position: relative;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background δόντι του Hero.  */
.hero-blob {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.25;
}

/* Η φωτογραφία της γιατρού στο Hero */
.hero-img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
    display: block;
    transform: scale(1.05);
    animation: heroSlideIn 0.7s ease-out forwards;
}

@keyframes heroSlideIn {
    from {
        transform: scale(1.05) translateX(100px);
        opacity: 0;
    }
    to {
        transform: scale(1.05) translateX(0);
        opacity: 1;
    }
}

@keyframes heroSlideInUp {
    from {
        transform: scale(1.05) translateY(40px);
        opacity: 0;
    }
    to {
        transform: scale(1.05) translateY(0);
        opacity: 1;
    }
}

/* ====================================
   ΜΕΝΟΥ ΓΙΑ ΚΙΝΗΤΑ & TABLET (Mobile/Tablet Header & Fullscreen Navigation Overlay)
   ==================================== */

/* Ρυθμίσεις για την μπάρα του Mobile Header */
.mobile-header {
    background-color: var(--my-primary-bg-color);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px; /* Εγγυημένο κενό μεταξύ λογοτύπου και hamburger menu */
    height: 96px;
    padding-right: 35px; /* Κενό μετά το hamburger menu ώστε να μην κολλάει τέρμα δεξιά */
}

/* Το flex item του λογότυπου επιτρέπεται να συρρικνωθεί σε πολύ στενές οθόνες. */
.mobile-header .header-logo {
    min-width: 0;
}

.mobile-header .header-logo img {
    height: 96px; /* Μικρότερο μέγεθος λογοτύπου για κινητά */
    width: auto;
    max-width: 100%; /* Το λογότυπο δεν ξεπερνά ποτέ τον διαθέσιμο χώρο του */
    object-fit: contain; /* Όταν περιορίζεται, μικραίνει οπτικά χωρίς παραμόρφωση */
}

/* Κουμπί Hamburger */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    flex-shrink: 0; /* Το hamburger δεν μικραίνει ποτέ — η συμπίεση αναλαμβάνει το λογότυπο */
    z-index: 1100; /* Πάνω από το overlay μενού */
    position: relative;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Μετατροπή του hamburger σε "X" όταν είναι ενεργό */
.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Backdrop/Overlay (Ημιδιαφανές φόντο με θόλωμα) */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.40); /* Ημιδιαφανές σκούρο φόντο (backdrop) */
    backdrop-filter: blur(4px); /* Θόλωμα του περιεχομένου από πίσω */
    -webkit-backdrop-filter: blur(4px);
    z-index: 1050; /* Κάτω από το Hamburger, αλλά πάνω από όλα τα άλλα */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Δομή περιεχομένου μενού (Drawer που γλιστράει από αριστερά) */
.mobile-nav-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 290px;
    max-width: 85%;
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background-color: var(--my-primary-bg-color);
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Αριστερή στοίχιση / τέντωμα των συνδέσμων */
    justify-content: flex-start;
    padding: 90px 24px 30px; /* Μαζεμένα κενά */
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(-100%); /* Ξεκινάει κρυμμένο έξω αριστερά */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0); /* Γλιστράει μέσα στην οθόνη */
}

/* Σύνδεσμοι πλοήγησης */
.mobile-nav-menu {
    margin-top: 10px;
    margin-bottom: auto;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.mobile-nav-menu ul li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Γραμμές που χωρίζουν τα items */
}

.mobile-nav-menu ul li:last-child {
    border-bottom: none; /* Αφαίρεση γραμμής από το τελευταίο item */
}

.mobile-nav-menu ul li a {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 0;
    transition: opacity 0.2s ease, padding-left 0.2s ease;
    display: block;
    text-transform: uppercase;
}

.mobile-nav-menu ul li a:hover,
.mobile-nav-menu ul li a.active {
    opacity: 0.8;
    padding-left: 5px; /* Μικρό εφέ ολίσθησης κατά το hover */
}

/* Κάτω μέρος μενού: Τηλέφωνο και Social */
.mobile-nav-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Αριστερή στοίχιση στο κάτω μέρος */
    gap: 15px;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Διαχωριστική γραμμή για το footer */
}

.mobile-nav-phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.mobile-nav-phone svg {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.mobile-nav-phone:hover {
    opacity: 0.8;
    color: #ffffff;
}

.mobile-nav-social {
    display: flex;
    gap: 20px;
}

.mobile-nav-social a {
    color: #ffffff;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-social a:hover {
    opacity: 0.8;
}

/* ====================================
   ΕΝΟΤΗΤΑ ΥΠΗΡΕΣΙΩΝ
   ==================================== */
.services-section {
    position: relative;
    padding: 100px 0 160px;
    background-color: #ffffff;
    overflow: hidden;
}

.services-content {
    z-index: 2;
}

.services-section .services-title,
.practice-section .practice-title {
    font-family: var(--font-secondary);
    line-height: 1;
    margin-bottom: 25px;
}

.services-section .section-description {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5a6275;
    margin-bottom: 35px;
}

/* Λίστα Υπηρεσιών */
.services-teaser-list {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
}

.service-teaser-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.service-teaser-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
}

.service-teaser-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-teaser-item .service-teaser-title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-on-white-background);
    margin: 0;
}

/* Slider Section Container */
.services-slider-container {
    display: flex;
    align-items: center;
    z-index: 2;
}

/* Slider Πριν/Μετά */
.teeth-comparison-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin-left: -30px; /* Ευθυγράμμιση με την αριστερή πλευρά του hero-content */
}

.slider-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 8;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.label-before {
    left: 40px;
}

.label-after {
    right: 40px;
}

.teeth-comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    -webkit-mask-image: url('../images/maska_comparison_map.png');
    mask-image: url('../images/maska_comparison_map.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    --slider-pos: 50%;
}

.teeth-comparison-slider .slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Εικόνα Πριν (κιτρινωπά δόντια) από πάνω, με polygon clip */
.teeth-comparison-slider .image-before {
    z-index: 2;
    clip-path: polygon(0 0, var(--slider-pos, 50%) 0, var(--slider-pos, 50%) 100%, 0 100%);
}

/* Εικόνα Μετά (λευκά δόντια) από κάτω */
.teeth-comparison-slider .image-after {
    z-index: 1;
}

/* Διαχωριστική γραμμή και λαβή */
.teeth-comparison-slider .slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--slider-pos, 50%);
    width: 2px;
    background-color: #ffffff;
    z-index: 3;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.teeth-comparison-slider .slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: 3px solid var(--my-primary-bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    color: var(--my-primary-bg-color);
}

.teeth-comparison-slider .slider-handle svg {
    margin: 0 -2px;
}

/* Αόρατο Range Slider */
.teeth-slider-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 9;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

/* ====================================
   ΕΝΟΤΗΤΑ CTA
   ==================================== */
.cta-section {
    position: relative;
    margin-top: -50px;
    padding: 90px 0 85px;
    background-color: var(--my-primary-bg-color);
    color: #ffffff;
}

.cta-section .row {
    align-items: center;
}

.cta-content {
    z-index: 2;
}

.cta-phone-link {
    color: #88efda;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.cta-phone-link:hover {
    opacity: 0.85;
    color: #ffffff;
}

.cta-action {
    display: flex;
    justify-content: center;
    z-index: 2;
}

/* Κυματιστό διαχωριστικό ΠΑΝΩ από το CTA (προς το λευκό services). */
.cta-section::before {
    content: '';
    position: absolute;
    top: -49px; /* για να καλύψει τυχόν κενό 1px */
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
    z-index: 3;
    /* Χρώμα: Πρέπει να ταιριάζει ΑΚΡΙΒΩΣ με το background του cta */
    background-color: var(--my-primary-bg-color);
    -webkit-mask-image: url('../images/separators2.png');
    mask-image: url('../images/separators2.png');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
}

/* Κυματιστό διαχωριστικό ΚΑΤΩ από το CTA (προς το λευκό practice). */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -49px; /* για να καλύψει τυχόν κενό 1px */
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
    z-index: 3;
    /* Χρώμα: Πρέπει να ταιριάζει ΑΚΡΙΒΩΣ με το background του cta */
    background-color: var(--my-primary-bg-color); 
    -webkit-mask-image: url('../images/separators3.png');
    mask-image: url('../images/separators3.png');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
}

/* ====================================
   ΕΝΟΤΗΤΑ ΙΑΤΡΕΙΟ
   ==================================== */
.practice-section {
    position: relative;
    padding: 150px 0 150px;
    background-color: #ffffff;
    overflow: hidden;
}

.practice-content {
    z-index: 2;
}

.practice-description {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5a6275;
    margin-bottom: 35px;
}

.practice-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* ====================================
   FOOTER
   ==================================== */
.site-footer {
    position: relative;
    background-color: var(--my-primary-bg-color);
    color: #ffffff;
    padding: 50px 0 0;
}

/* Κυματιστό διαχωριστικό ΠΑΝΩ από το footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: -49px; /* για να καλύψει τυχόν κενό 1px */
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
    z-index: 3;
    /* Χρώμα: Πρέπει να ταιριάζει ΑΚΡΙΒΩΣ με το background του footer */
    background-color: var(--my-primary-bg-color); 
    -webkit-mask-image: url('../images/separators2.png');
    mask-image: url('../images/separators2.png');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
}

.footer-col {
    margin-bottom: 15px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 10px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.footer-contact-info a:hover {
    color: var(--social-icon-hover);
}

.footer-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-phone-link svg {
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--social-icon-hover);
}

/* Κάτω γραμμή: Copyright + Νομικά */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.footer-copyright {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* ====================================
   RESPONSIVE — Συγκεντρωμένα Media Queries
   ==================================== */

/* ------------------------------------
   Tablets & Μικρές οθόνες (≤ 991.98px)
   ------------------------------------ */
@media (max-width: 991.98px) {
    /* Header */
    .site-header {
        top: 0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Smart Header: ο header αποκρύπτεται στο scroll κάτω και επανέρχεται
       στο scroll πάνω, για να απελευθερώνεται χώρος περιεχομένου.
       Η class is-hidden διαχειρίζεται από το main.js. */
    .site-header.is-hidden {
        transform: translateY(-100%);
        box-shadow: none;
    }

    /* Hero */
    .hero-section {
        height: calc(100vh - 118px);
        min-height: 816px;
        padding: 60px 0 0;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-blob-wrapper {
        max-width: 400px;
    }

    .hero-img {
        animation-name: heroSlideInUp;
    }

    .subtitle-dark-bg {
        font-size: 1.8rem;
    }

    .subtitle-light-bg {
        font-size: 1.8rem;
    }

    .title-dark-bg {
        font-size: 3.5rem;
    }

    .title-light-bg {
        font-size: 3.5rem;
    }

    /* Το h1 του hero έχει μεγαλύτερο μέγεθος από τα υπόλοιπα h2 */
    .hero-title {
        font-size: 4rem;
    }

    /* Υπηρεσίες */
    .services-section {
        padding: 80px 0 120px;
    }

    .services-content {
        margin-bottom: 50px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services-slider-container {
        justify-content: center;
        padding-left: 40px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0 80px;
        text-align: center;
    }

    .cta-content {
        margin-bottom: 30px;
    }

    .cta-action {
        justify-content: center;
    }

    /* Ιατρείο */
    .practice-section {
        padding: 120px 0 120px;
    }

    .practice-content {
        margin-bottom: 50px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .practice-image-container {
        justify-content: center;
    }

    /* Footer */
    .footer-col {
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ------------------------------------
   Μεσαίες συσκευές (≤ 767.98px)
   ------------------------------------ */
@media (max-width: 767.98px) {
    .services-teaser-list {
        gap: 5px;
        align-items: center;
    }
    
    .service-teaser-item {
        width: 100%;
        max-width: 320px;
    }
}

/* ------------------------------------
   Κινητά (≤ 575.98px)
   ------------------------------------ */
@media (max-width: 575.98px) {
    /* Hero */
    .hero-section {
        padding: 50px 0 0;
    }

    .subtitle-dark-bg {
        font-size: 1.5rem;
    }

    .subtitle-light-bg {
        font-size: 1.5rem;
    }

    .title-dark-bg {
        font-size: 3rem;
    }

    .title-light-bg {
        font-size: 3rem;
    }
    
    /* Το h1 του hero έχει μεγαλύτερο μέγεθος από τα υπόλοιπα h2 */
    .hero-title {
        font-size: 3.5rem;
    }

    /* Υπηρεσίες */
    .services-section {
        padding: 60px 0 100px;
    }

    .slider-label {
        font-size: 1.1rem;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    }

    .label-before {
        left: 25px;
    }

    .label-after {
        right: 25px;
    }

    /* Ιατρείο */
    .practice-section {
        padding: 100px 0 100px;
    }

    .practice-content {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ====================================
   KOINO HERO ΕΣΩΤΕΡΙΚΩΝ ΣΕΛΙΔΩΝ (Page Hero)
   ==================================== */

.page-hero-section {
    position: relative;
    background-color: var(--my-primary-bg-color);
    padding: 70px 0 120px;
    overflow: hidden;
}

/* Κυματιστό διαχωριστικό κάτω από το Page Hero. */
.page-hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px; /* για να καλύψει τυχόν κενό 1px */
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
    z-index: 3;
    /* Χρώμα: Πρέπει να ταιριάζει ΑΚΡΙΒΩΣ με το background του επόμενου section */
    background-color: #ffffff; 
    -webkit-mask-image: url('../images/separators1.png');
    mask-image: url('../images/separators1.png');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
}

.page-hero-container {
    position: relative;
    z-index: 2;
}

.page-hero-bg-icon {
    position: absolute;
    top: 45%;
    left: 70%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    line-height: 0;
}

.page-hero-bg-icon img {
    width: 480px;
    max-width: 90vw;
    height: auto;
    opacity: 0.70;
}

@media (max-width: 767.98px) {
    .page-hero-section {
        padding: 50px 0 90px;
    }

    .page-hero-bg-icon img {
        opacity: 0.20;
    }
}

/* ====================================
   ΣΕΛΙΔΑ 404 (Page Not Found)
   ==================================== */

.not-found-section {
    min-height: 55vh;
    padding: 140px 0 200px;
    text-align: center;
    background-color: #ffffff;
}

.not-found-section p {
    max-width: 520px;
    margin: 25px auto 35px;
    font-size: 1.1rem;
}

/* ====================================
   ΣΕΛΙΔΑ ΒΙΟΓΡΑΦΙΚΟΥ (CV Page)
   ==================================== */

.cv-profile-section {
    position: relative;
    background-color: #ffffff;
    padding: 70px 0 20px;
}

.cv-details-section {
    position: relative;
    padding: 65px 0 155px;
    background-color: #f4faf8;
}

.cv-profile-header-row {
    margin-bottom: 50px;
}

.cv-profile-photo {
    max-width: 380px;
}

.cv-doctor-name {
    font-family: var(--font-secondary);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--my-primary-bg-color);
    line-height: 1.1;
    margin-bottom: 5px;
}

.cv-doctor-title {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-on-white-background);
    margin-bottom: 20px;
}

.cv-lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a5568;
    max-width: 720px;
}

.cv-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--my-primary-bg-color);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8f3f0;
}

.cv-section-heading:first-of-type {
    margin-top: 0;
}

.cv-heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--my-primary-bg-color);
    color: #ffffff;
    flex-shrink: 0;
}

.cv-details-section p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    .cv-profile-section {
        padding: 65px 0 10px;
    }

    .cv-details-section {
        padding: 50px 0 130px;
    }

    .cv-profile-header-row {
        margin-bottom: 25px;
    }

    .cv-doctor-name {
        font-size: 2.5rem;
    }

    .cv-doctor-title {
        font-size: 1.4rem;
    }

    .cv-photo-col {
        margin-bottom: 30px;
    }
}

/* ====================================
   ΣΕΛΙΔΑ ΥΠΗΡΕΣΙΩΝ (Services Page)
   ==================================== */

.services-page-main {
    position: relative;
    background-color: #ffffff;
    padding: 70px 0 110px;
}

.services-page-intro,
.services-faq-header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.services-page-title {
    margin-bottom: 20px;
    color: var(--my-primary-bg-color);
    font-family: var(--font-secondary);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.services-page-description,
.services-faq-description {
    margin: 0 auto;
    color: #4a5568;
    font-family: var(--font-primary);
    font-size: 1.18rem;
    line-height: 1.75;
}

.services-page-grid {
    margin-top: 55px;
}

.services-page-card {
    position: relative;
    height: 100%;
    padding: 32px 28px 30px;
    overflow: hidden;
    text-align: center;
}

.services-page-card-icon {
    display: block;
    width: 90px;
    height: 90px;
    margin: 0 auto 22px;
    object-fit: contain;
}

.services-page-card-title {
    margin-bottom: 14px;
    color: var(--my-primary-bg-color);
    font-family: var(--font-secondary);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.25;
}

.services-page-card-description {
    margin: 0;
    color: #5a6275;
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
}

.services-faq-section {
    position: relative;
    padding: 110px 0 155px;
    background-color: #f4faf8;
}

.services-faq-description {
    max-width: 680px;
}

.services-faq-accordion {
    max-width: 900px;
    margin: 45px auto 0;
}

.services-faq-item {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid #dcece8;
    border-radius: 14px !important;
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(31, 75, 67, 0.045);
}

.services-faq-button {
    gap: 20px;
    padding: 22px 24px;
    color: var(--text-on-white-background);
    background-color: #ffffff;
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
}

.services-faq-button:not(.collapsed) {
    color: #ffffff;
    background-color: var(--my-primary-bg-color);
    box-shadow: none;
}

.services-faq-button::after {
    display: none;
}

.services-faq-symbol {
    display: inline-flex;
    width: 32px;
    height: 32px;
    margin-left: auto;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #e8f5f2;
    color: var(--my-primary-bg-color);
}

.services-faq-symbol::before {
    content: "+";
    font-family: var(--font-primary);
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1;
}

.services-faq-button:not(.collapsed) .services-faq-symbol {
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.services-faq-button:not(.collapsed) .services-faq-symbol::before {
    content: "−";
}

.services-faq-button:focus {
    z-index: 3;
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(36, 163, 138, 0.24);
}

.services-faq-answer {
    padding: 24px;
    color: #5a6275;
    font-family: var(--font-primary);
    font-size: 1.03rem;
    line-height: 1.75;
}

@media (max-width: 767.98px) {
    .services-page-main {
        padding: 65px 0 85px;
    }

    .services-page-title {
        font-size: 2.5rem;
    }

    .services-page-description,
    .services-faq-description {
        font-size: 1.08rem;
    }

    .services-page-grid {
        margin-top: 40px;
    }

    .services-page-card {
        padding: 28px 22px 26px;
    }

    .services-page-card-icon {
        width: 80px;
        height: 80px;
    }

    .services-faq-section {
        padding: 100px 0 130px;
    }

    .services-faq-accordion {
        margin-top: 35px;
    }

    .services-faq-button {
        gap: 14px;
        padding: 19px 18px;
        font-size: 1.08rem;
    }

    .services-faq-symbol {
        width: 29px;
        height: 29px;
        flex-basis: 29px;
    }

    .services-faq-answer {
        padding: 18px;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-page-card {
        transition: none;
    }
}

/* ====================================
   ΣΕΛΙΔΑ ΙΑΤΡΕΙΟΥ (Practice Page)
   ==================================== */

.practice-page-main {
    position: relative;
    background-color: #ffffff;
    padding: 70px 0 140px;
}

.practice-page-intro,
.practice-features-header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.practice-page-title {
    margin-bottom: 20px;
    color: var(--my-primary-bg-color);
    font-family: var(--font-secondary);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.practice-page-description {
    margin: 0 auto;
    color: #4a5568;
    font-family: var(--font-primary);
    font-size: 1.18rem;
    line-height: 1.75;
}

/* --- Καρουζέλ Φωτογραφιών --- */
.practice-carousel {
    max-width: 990px;
    margin: 55px auto 0;
}

.practice-carousel .carousel-inner {
    overflow: hidden;
    border-radius: 16px;
    border: 4px solid var(--my-primary-bg-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.practice-carousel-image {
    width: 100%;
    height: 660px;
    object-fit: cover;
    display: block;
}

/* Μικρογραφίες (thumbnails) κάτω από το καρουζέλ */
.practice-carousel-thumbnails {
    position: static;
    margin: 18px 0 0;
    padding: 0;
    gap: 10px;
    align-items: center;
}

.practice-carousel-thumbnails [data-bs-target] {
    flex: 0 0 auto;
    box-sizing: content-box;
    width: 15%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 8px;
    background-color: #ffffff;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.practice-carousel-thumbnails [data-bs-target] img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.practice-carousel-thumbnails [data-bs-target]:hover {
    opacity: 0.85;
}

.practice-carousel-thumbnails .active {
    opacity: 1;
    border-color: var(--my-primary-bg-color);
    transform: translateY(-2px);
}

/* Βέλη (controls) */
.practice-carousel-control {
    top: 45%;
    bottom: auto;
    width: 52px;
    height: 52px;
    margin: 0 12px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: rgba(36, 163, 138, 0.6);
    opacity: 1;
    transition: background-color 0.2s ease;
}

.practice-carousel-control:hover {
    background-color: var(--my-primary-bg-color);
}

/* --- Χαρακτηριστικά --- */
.practice-features-section {
    position: relative;
    padding: 110px 0 130px;
    background-color: #f4faf8;
}

.practice-features-grid {
    margin-top: 45px;
}

.practice-feature-card {
    position: relative;
    height: 100%;
    padding: 34px 26px 30px;
    overflow: hidden;
    border-radius: 16px;
    background-color: #ffffff;
    text-align: center;
}

.practice-feature-card-icon {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.practice-feature-card-title {
    margin-bottom: 14px;
    color: var(--my-primary-bg-color);
    font-family: var(--font-secondary);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.25;
}

.practice-feature-card-description {
    margin: 0;
    color: #5a6275;
    font-family: var(--font-primary);
    font-size: 0.98rem;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .practice-carousel-image {
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .practice-page-main {
        padding: 65px 0 120px;
    }

    .practice-page-title {
        font-size: 2.5rem;
    }

    .practice-page-description {
        font-size: 1.08rem;
    }

    .practice-carousel {
        margin-top: 40px;
    }

    .practice-carousel-image {
        height: 300px;
    }

    .practice-carousel-control {
        width: 44px;
        height: 44px;
        margin: 0 6px;
    }

    .practice-carousel-thumbnails {
        gap: 6px;
    }

    .practice-features-section {
        padding: 100px 0 100px;
    }

    .practice-features-grid {
        margin-top: 35px;
    }

    .practice-feature-card {
        padding: 28px 22px 26px;
    }

    .practice-feature-card-icon {
        width: 70px;
        height: 70px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .practice-carousel .carousel-indicators [data-bs-target],
    .practice-carousel-control,
    .practice-feature-card {
        transition: none;
    }
}

/* ====================================
   ΣΕΛΙΔΑ ΕΠΙΚΟΙΝΩΝΙΑΣ (Contact Page) 
   ==================================== */

.contact-page-main {
    position: relative;
    background-color: #ffffff;
    padding: 70px 0 110px;
}

/* Κεντρικό εισαγωγικό κείμενο πάνω από τον χάρτη / τη φόρμα */
.contact-page-intro {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.contact-page-intro .contact-page-description {
    font-size: 1.15rem;
}

/* Χάρτης μέσα στη μάσκα (όπως το slider πριν/μετά της αρχικής) */
.contact-map-mask {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    -webkit-mask-image: url('../images/maska_comparison_map.png');
    mask-image: url('../images/maska_comparison_map.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.contact-map-mask iframe {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
}

/* Δεξιά στήλη — μικρό κείμενο */
.contact-page-title {
    margin-bottom: 18px;
    color: var(--my-primary-bg-color);
    font-family: var(--font-secondary);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
}

.contact-page-description {
    margin: 0;
    color: #4a5568;
    font-family: var(--font-primary);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Στοιχεία Επικοινωνίας — 3 γραμμές κάτω από το intro */
.contact-details-list {
    margin-top: 30px;
    padding: 6px 28px;
}

.contact-detail-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(31, 75, 67, 0.12);
}

.contact-detail-row:last-child {
    border-bottom: none;
}

.contact-detail-label {
    flex-shrink: 0;
    color: var(--my-primary-bg-color);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-detail-value {
    color: #2d3748;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
    text-decoration: none;
    word-break: break-word;
}

.contact-detail-value:hover {
    color: var(--my-primary-bg-color);
}

/* Φόρμα Επικοινωνίας — ελαφρύ κουτί στη δεξιά στήλη */
.contact-form-card {
    margin-top: 36px;
    padding: 30px 28px;
    background-color: #fafcfb;
    border-radius: 14px;
}

.contact-form-title {
    margin-bottom: 10px;
    color: var(--my-primary-bg-color);
    font-family: var(--font-secondary);
    font-size: 1.9rem;
    font-weight: 700;
}

.contact-form {
    text-align: left;
}

.contact-form .form-label {
    color: #2d3748;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-form-input {
    padding: 12px 16px;
    color: #2d3748;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 1px solid rgba(31, 75, 67, 0.25);
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-input:focus {
    background-color: #ffffff;
    border-color: var(--my-primary-bg-color);
    box-shadow: 0 0 0 0.2rem rgba(31, 75, 67, 0.15);
}

.contact-form-textarea {
    resize: vertical;
}

.contact-form-action {
    margin-top: 25px;
}

/* Responsive — Σελίδα Επικοινωνίας */
@media (max-width: 991.98px) {
    .contact-map-container {
        margin-bottom: 28px;
    }

    .contact-intro {
        text-align: center;
    }

    /* Τα στοιχεία και η φόρμα παραμένουν αριστερά στοιχισμένα */
    .contact-detail-row,
    .contact-form-card {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .contact-page-main {
        padding: 65px 0 75px;
    }

    .contact-page-title {
        font-size: 2.5rem;
    }

    .contact-page-intro {
        margin-bottom: 36px;
    }

    .contact-form-title {
        font-size: 1.8rem;
    }

    .contact-detail-value {
        font-size: 1.05rem;
    }

    .contact-form-card {
        padding: 26px 20px;
    }
}

@media (max-width: 575.98px) {
    .contact-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .contact-detail-value {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-form-input {
        transition: none;
    }
}

/* ====================================
   ΣΕΛΙΔΑ ΠΟΛΙΤΙΚΗ ΑΠΟΡΡΗΤΟΥ - COOKIES (Privacy Page)
   ==================================== */

.privacy-page-main {
    position: relative;
    background-color: #ffffff;
    padding: 70px 0 155px;
}

.privacy-content {
    max-width: 860px;
    margin: 0 auto;
}

.privacy-updated {
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-style: italic;
    color: #6b7280;
    margin-bottom: 18px;
}

.privacy-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.privacy-content h2 {
    display: block;
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--my-primary-bg-color);
    margin-top: 42px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8f3f0;
    line-height: 1.3;
}

.privacy-content h2:first-of-type {
    margin-top: 28px;
}

.privacy-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.32rem;
    font-weight: 700;
    color: var(--text-on-white-background);
    margin-top: 28px;
    margin-bottom: 12px;
    line-height: 1.35;
}

.privacy-content p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.privacy-content ul,
.privacy-content ol {
    margin: 0 0 22px 22px;
    padding: 0;
    color: #4a5568;
    font-size: 1.06rem;
    line-height: 1.75;
}

.privacy-content li {
    margin-bottom: 8px;
}

.privacy-content li strong {
    color: var(--text-on-white-background);
    font-weight: 700;
}

.privacy-content a {
    color: var(--my-primary-bg-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.privacy-content a:hover {
    color: #1f8e77;
}

@media (max-width: 767.98px) {
    .privacy-page-main {
        padding: 50px 0 130px;
    }

    .privacy-updated {
        font-size: 0.88rem;
    }

    .privacy-lead {
        font-size: 1.15rem;
        line-height: 1.65;
    }

    .privacy-content h2 {
        font-size: 1.45rem;
        margin-top: 34px;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
        margin-top: 24px;
    }

    .privacy-content p {
        font-size: 1.06rem;
        line-height: 1.75;
    }

    .privacy-content ul,
    .privacy-content ol {
        font-size: 1.02rem;
        margin-left: 18px;
    }
}

@media (max-width: 575.98px) {
    .privacy-content h2 {
        font-size: 1.35rem;
    }

    .privacy-content h3 {
        font-size: 1.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .privacy-content a {
        transition: none;
    }
}

/* ====================================
   COOKIE CONSENT BANNER
   ==================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background-color: #1c2624;
    color: #ffffff;
    padding: 16px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.is-closing {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
    color: #e2eae8;
}

.cookie-banner-link {
    color: var(--my-primary-bg-color);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 6px;
    transition: color 0.2s ease;
}

.cookie-banner-link:hover {
    color: #3fd1b4;
    text-decoration: none;
}

.cookie-banner-btn {
    flex-shrink: 0;
    padding: 9px 24px;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
}

@media (max-width: 767.98px) {
    .cookie-banner {
        padding: 14px 0;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        text-align: center;
    }

    .cookie-banner-text {
        font-size: 0.92rem;
    }

    .cookie-banner-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner {
        transition: none;
    }
}

