/* DentCare — Ενοποιημένη χρωματική παλέτα */
/* ==========================
   FONT OVERRIDES (PageSpeed Fix)
========================== */
@font-face {
    font-family: "bootstrap-icons";
    font-display: swap;
    src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff2") format("woff2"),
         url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff") format("woff");
}

/* DentCare — Base, shared components and accessibility */

:root {
    --primary-color: #009AB3;
    --primary-rgb: 0, 154, 179;
    --primary-hover: #087F96;

    --secondary-color: #69C6D4;
    --secondary-rgb: 105, 198, 212;

    --heading-color: #2F2F2F;
    --text-color: #555555;
    --muted-color: #6B7280;

    --white: #FFFFFF;
    --light-bg: #F4F9FA;
    --section-bg: #F8FCFD;
    --dark-bg: #0F172A;

    --border-color: #D7E1E5;
    --danger-color: #9F1D1D;
    --danger-bg: #FFF1F1;
    --star-color: #FFC107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text-color);
    line-height: 1.7;
    scroll-behavior: smooth;
}

.btn-main {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-3px);
    background: var(--primary-hover);
}

.circle-text {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 13px rgba(var(--primary-rgb), 0.3);
    transition: 0.3s;
}

.circle-text:hover {
    transform: translateY(-3px);
    background: var(--primary-hover);
}

section {
    padding: 80px 8%;
    scroll-margin-top: 90px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* Ομοιομορφία σε όλους τους κεντρικούς τίτλους */
.section-title h2,
.about-doc-text h2,
.dentcare-philosophy__content h2,
.appointment-card .section-title h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.1;
    font-weight: 750;
}

.section-title span {
    display: block;
    width: 95px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 30px;
    margin: 22px auto 18px;
}

.section-title p {
    font-size: 22px;
    color: var(--text-color);
}

.leaf-divider {
    height: 100px;
    background-image: url("../images/filla.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideTitle {
    to { opacity: 1; transform: translateX(0); }
}

/* Εφέ όταν ο χρήστης κάνει κλικ για να γράψει */
input:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
    transition: all 0.3s ease;
}

input, textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* =========================================
   GLOBAL QUALITY & PERFORMANCE IMPROVEMENTS
========================================= */

img,
svg {
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

a,
button,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(var(--primary-rgb), 0.32);
    outline-offset: 3px;
}

/* =========================================
   HEADER – NAVIGATION
========================================= */

header {
    width: 100%;
    height: 90px;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: 100%;
    height: 100%;
    padding: 0 40px;
    position: relative;
}

.navbar {
    width: min(100%, 1050px);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }
.nav-logo { display: flex; align-items: center; justify-content: center; }
.nav-logo-img { width: auto; height: 65px; display: block; }

.navbar a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.navbar a:hover { color: var(--primary-color); }

.header-call-btn {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 22px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.25);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.header-call-btn,
.header-call-btn:visited { color: var(--white) !important; }
.header-call-btn i { color: var(--white) !important; }
.header-call-btn:hover { color: var(--white) !important; }
.header-call-btn:hover i { color: var(--white) !important; }

.menu-toggle, .menu-icon { display: none; }

/* =========================================
   HOME HERO
========================================= */

.hero {
    padding: 80px 5%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #fdfdfd;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 154, 179, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(225, 67, 130, 0.08) 0%, transparent 40%);
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 90px;
}

.hero-text {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.5);
}

.hero-text p { position: relative; top: -15px; }

.hero-text h1 {
    font-size: 2.45rem;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 15px;
    white-space: nowrap;
}
.hero-text h1::after {
    content: "";
    display: block;
    width: 120px;
    height: 5px;
    border-radius: 10px;
    background: var(--primary-color);
    margin-top: 20px;
}

.hero-text h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.circle-frame {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white);
    border: 8px solid white;
    box-shadow: 0 0 0 2px var(--primary-color), 0 20px 50px rgba(0,0,0,0.08);
}

.circle-frame::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    top: -5%;
    left: -5%;
}

.circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   DENTCARE – ΦΙΛΟΣΟΦΙΑ (ΚΑΘΑΡΙΣΜΕΝΟ & ΚΕΝΤΡΑΡΙΣΜΕΝΟ)
========================================= */

.dentcare-philosophy {
    position: relative;
    padding: 110px 5%;
    background:
        radial-gradient(circle at 8% 25%, rgba(var(--primary-rgb), 0.09), transparent 38%),
        radial-gradient(circle at 92% 78%, rgba(var(--secondary-rgb), 0.05), transparent 38%),
        var(--section-bg);
    overflow: hidden;
}

/* Κατάργηση στηλών και απόλυτο κεντράρισμα */
.dentcare-philosophy__container {
    width: min(900px, 100%);
    margin: 0 auto;
    display: block;
}

.dentcare-philosophy__content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Κεντράρει τα flex αντικείμενα (εικόνες, κουμπιά) */
    text-align: center; /* Κεντράρει τα κείμενα */
}

.dentcare-philosophy__eyebrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.section-logo {
    display: block;
    width: auto;
    height: 42px;
}

.dentcare-philosophy__small-line {
    display: block;
    width: 38px;
    height: 4px;
    margin: 0 auto 24px;
    background: var(--primary-color);
    border-radius: 20px;
}

.dentcare-philosophy__content h2 {
    max-width: 800px;
    margin: 0 auto;
}

.dentcare-philosophy__title-line {
    display: block;
    width: 80px;
    height: 5px;
    margin: 36px auto 48px;
    background: var(--primary-color);
    border-radius: 20px;
}

.dentcare-philosophy__content > h3 {
    margin: 0 0 22px;
    color: var(--heading-color);
    font-size: 25px;
    font-weight: 750;
    line-height: 1.3;
}

.dentcare-philosophy__content p {
    margin: 0 auto 25px;
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.9;
    max-width: 750px;
}

.dentcare-philosophy__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
    padding: 15px 31px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 750;
    box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.22);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.dentcare-philosophy__button:visited { color: var(--white); }
.dentcare-philosophy__button:hover {
    color: var(--white);
    background: #087f96;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(var(--primary-rgb), 0.3);
}
.dentcare-philosophy__button i { transition: transform 0.25s ease; }
.dentcare-philosophy__button:hover i { transform: translateX(4px); }


/* =========================================
   Η ΓΙΑΤΡΟΣ
========================================= */

.about-doctor-section{

    width:min(1400px,100%);
    margin:auto;

    padding:100px 5%;

    display:grid;

    grid-template-columns:
        minmax(0,.9fr)
        minmax(0,1.1fr);

    grid-template-areas:
        "title title"
        "image text";

    gap:70px;
}

.about-doc-image {
    min-width: 0;
    grid-area:image;

}

.about-doc-image img {
    width: 500px;
    height: 400px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.11);
}

.about-doc-text {
    min-width: 0;
    height: auto;
    overflow: visible;
    padding: 52px 55px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 252, 0.94));
    border: 1px solid rgba(var(--primary-rgb), 0.10);
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.07);
     grid-area:text;
}

.about-doc-text::-webkit-scrollbar { width: 8px; }
.about-doc-text::-webkit-scrollbar-track { background: var(--light-bg); border-radius: 20px; }
.about-doc-text::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 20px; }

.about-doc-title-line{

    width:90px;

    height:5px;

    margin:20px auto 0;

    background:var(--primary-color);

    border-radius:30px;
}

.about-doc-text p {
    margin-bottom: 22px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-doc-text .about-doc-signature {
    margin: 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 750;
    letter-spacing: 0.2px;
    text-align: center;
}

.about-doc-signature span {
    display: inline-block;
    margin: 0 7px;
    color: var(--secondary-color);
}

/* ==========================
   CLINIC SECTION (ΤΟ ΙΑΤΡΕΙΟ)
========================== */

.clinic-showcase { max-width: 1200px; }

.clinic-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}


.clinic-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.6s ease, transform 0.8s ease;
    will-change: transform, opacity;
}

.clinic-slide.active { opacity: 1; transform: scale(1); }

.clinic-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.clinic-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
}

.clinic-dot.active { width: 24px; border-radius: 20px; background: var(--primary-color); }


/* ==========================
   SPOTLIGHT SERVICES
========================== */
#services { background: linear-gradient(180deg, var(--white) 0%, var(--section-bg) 100%); padding: 90px 5%; }
.services-spotlight-section { padding: 100px 8%; background: var(--section-bg); }
.spotlight-grid { max-width: 1200px; margin: 70px auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; transition: .4s; }
.spotlight-card { width: calc((100% - 60px) / 3); background: var(--white); border-radius: 28px; padding: 45px 35px; text-decoration: none; color: var(--heading-color); box-shadow: 0 12px 35px rgba(0,0,0,.04); transition: .35s ease; border: 1px solid rgba(var(--primary-rgb), .08); }
.spotlight-card i { font-size: 48px; color: var(--primary-color); display: block; margin-bottom: 25px; transition: .4s; }
.spotlight-card h3 { margin-bottom: 15px; font-size: 1.35rem; font-weight: 700;  color: var(--secondary-color);}
.spotlight-card p { color: var(--muted-color); line-height: 1.7; }

.spotlight-grid:hover .spotlight-card:not(:hover) { opacity: .35; filter: blur(2px); transform: scale(.97); }
.spotlight-card:hover { transform: translateY(-10px); box-shadow: 0 25px 70px rgba(var(--primary-rgb), .15); border-color: var(--secondary-color); }
.spotlight-card:hover i { transform: scale(1.1); }


/* =========================================
   ΣΕΛΙΔΑ ΥΠΗΡΕΣΙΑΣ
========================================= */

.service-page-hero {
    position: relative;
    overflow: hidden;
    padding: 95px 6%;
    background:
        radial-gradient(circle at 18% 35%, rgba(var(--primary-rgb), 0.13) 0%, rgba(var(--primary-rgb), 0.07) 24%, transparent 52%),
        radial-gradient(circle at 80% 45%, rgba(var(--secondary-rgb), 0.14) 0%, rgba(var(--secondary-rgb), 0.06) 25%, transparent 55%),
        linear-gradient(135deg, var(--section-bg) 0%, var(--white) 60%, var(--section-bg) 100%);
}

.service-page-hero__container {
    width: min(1250px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 80px;
    align-items: center;
}

.service-page-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 35px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 650;
    transition: color 0.25s ease, gap 0.25s ease;
}
.service-page-back:hover { color: var(--primary-color); gap: 13px; }

.service-page-eyebrow {
    display: block;
    margin-bottom: 13px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-page-hero__content > p {
    max-width: 680px;
    margin: 0;
    color: var(--text-color);
    font-size: 21px;
    line-height: 1.75;
}

.service-page-hero__visual {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(var(--primary-rgb), 0.18);
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.09);
}
.service-page-hero__visual i { font-size: 82px; }

.service-page {
    padding: 95px 6%;
    background: var(--white);
}

.service-page__container {
    width: min(1250px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 80px;
    align-items: start;
}

.service-page__content { min-width: 0; }

.service-content-block {
    margin-top: 50px;
    padding: 0 0 45px;
    margin-bottom: 45px;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.14);
}
.service-content-block h2 { margin: 0 0 23px; color: var(--heading-color); font-size: clamp(27px, 3vw, 36px); line-height: 1.3; }
.service-content-block p { margin: 0 0 22px; color: var(--text-color); font-size: 18px; line-height: 1.95; }
.service-content-block p:last-child { margin-bottom: 0; }

.service-list { margin: 30px 0 0; padding: 0; list-style: none; }
.service-list li { position: relative; margin-bottom: 20px; padding-left: 34px; color: var(--text-color); font-size: 17px; line-height: 1.8; }
.service-list li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 11px;
    height: 11px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(var(--primary-rgb), 0.09);
}
.service-list strong { color: var(--heading-color); }

.service-page__sidebar { position: sticky; top: 125px; }
.service-sidebar-card {
    padding: 37px 32px;
    background: linear-gradient(145deg, var(--white), var(--light-bg));
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}
.service-sidebar-card__label { display: block; margin-bottom: 13px; color: var(--primary-color); font-size: 14px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.service-sidebar-card h2 { margin: 0 0 18px; color: var(--heading-color); font-size: 27px; line-height: 1.3; }
.service-sidebar-card p { margin: 0 0 28px; color: var(--muted-color); font-size: 16px; line-height: 1.75; }
.service-sidebar-card .btn-main { width: 100%; text-align: center; }
.service-sidebar-phone { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; color: var(--primary-color); text-decoration: none; font-size: 17px; font-weight: 750; }


/* ==========================
   FOOTER
========================== */
footer { background: var(--dark-bg); color: var(--white); padding: 60px 8% 30px; }
footer a { color: var(--white); text-decoration: none; transition: color 0.25s ease; }
footer a:hover, footer a:active { color: var(--primary-color); text-decoration: none; }
footer a:visited { color: var(--white); }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 70px; align-items: start; }
.footer-grid h4 { font-size: 22px; margin-bottom: 22px; color: var(--white); }
.footer-grid p { font-size: 17px; margin-bottom: 10px; color: rgba(255,255,255,0.9); }
.map { width: 100%; height: 250px; border: 0; border-radius: 18px; }
.closed { color: var(--danger-color); font-weight: 700; }
.privacy-link { color: rgba(255,255,255,0.85); text-decoration: underline; transition: 0.3s; }
.privacy-link:hover { color: var(--primary-color); }
.bottom { max-width: 1400px; margin: 45px auto 0; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.15); text-align: center; color: rgba(255,255,255,0.75); }

/* ==========================
   APPOINTMENT SECTION & FORMS
========================== */
.appointment-section { background: linear-gradient(135deg, var(--section-bg) 0%, var(--light-bg) 100%); padding: 80px 8%; }
.appointment-card { max-width: 620px; margin: 0 auto; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); padding: 35px; border-radius: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); border: 1px solid rgba(255,255,255,0.7); }
.appointment-card .section-title { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--secondary-color); }
.form-group input, .form-group textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--border-color); border-radius: 12px; font-size: 16px; outline: none; transition: 0.3s; background: var(--white); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.submit-btn { width: 100%; background: var(--primary-color); color: var(--white); border: none; padding: 13px 35px; border-radius: 16px; font-size: 18px; font-weight: 700; cursor: pointer; transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2); }
.submit-btn:hover { transform: translateY(-3px); background-color: var(--primary-hover); box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3); }

/* ==========================
   COOKIE BANNER
========================== */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--white); padding: 16px 20px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 15px; z-index: 9999; border: 1px solid var(--light-bg); }
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { margin: 0; font-size: 14px; }
.cookie-banner button { background: var(--primary-color); color: var(--white); border: none; padding: 8px 16px; border-radius: 8px; cursor: pointer; }
.cookie-banner button:hover { background: var(--primary-hover); }

/* =======================================================
   ΠΡΟΣΑΡΜΟΓΕΣ: ΜΕΙΩΣΗ ΚΕΝΟΥ & ΤΙΤΛΟΣ ΣΕ ΜΙΑ ΓΡΑΜΜΗ (ΣΕΛΙΔΑ ΥΠΗΡΕΣΙΩΝ)
======================================================= */
.service-page-hero h1 { font-size: clamp(28px, 4vw, 48px) !important; white-space: nowrap !important; }
@media (max-width: 768px) { .service-page-hero h1 { white-space: normal !important; font-size: clamp(28px, 6vw, 36px) !important; } }
.service-page-hero { padding-bottom: 30px !important; }
.service-page { padding-top: 40px !important; }
.service-content-block:first-child { margin-top: 0 !important; }

/* ======================================================
   RESPONSIVE SYSTEM
====================================================== */

@media (max-width: 1024px) {
    header { height: 86px; padding: 0; }
    .header-container { height: 100%; padding: 0 18px; }
    .navbar { width: 100%; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
    .nav-logo { margin: 0; justify-content: flex-start; }
    .nav-logo-img { height: 55px; max-width: min(245px, 48vw); object-fit: contain; }
    .nav-left, .nav-right { display: none; }
    .menu-icon { position: relative; z-index: 1002; display: block; flex: 0 0 auto; margin-left: auto; color: var(--primary-color); font-size: 34px; line-height: 1; cursor: pointer; }
    .header-call-btn { top: 50%; right: 72px; z-index: 1001; padding: 10px 18px; font-size: 15px; }
    .language-switch { display: none; }
    .menu-toggle:checked ~ .navbar .nav-left, .menu-toggle:checked ~ .navbar .nav-right { position: absolute; left: 0; z-index: 999; width: 100%; display: flex; flex-direction: column; gap: 0; background: var(--white); }
    .menu-toggle:checked ~ .navbar .nav-left { top: 86px; padding-top: 10px; }
    .menu-toggle:checked ~ .navbar .nav-right { top: 141px; padding-bottom: 15px; box-shadow: 0 12px 24px rgba(0, 0, 0, 0.09); }
    .nav-left li, .nav-right li { width: 100%; text-align: center; }
    .nav-left a, .nav-right a { display: block; padding: 8px 16px; }

    .about-doctor-section, .service-page-hero__container, .service-page__container { grid-template-columns: 1fr; }
    .about-doctor-section { gap: 45px; padding: 80px 5%; }
    .about-doc-image img { width: 100%; height: 400px; object-position: 68% center; border-radius: 24px; }
    .about-doc-text { padding: 45px 42px; }
    .service-page-hero__container { gap: 45px; }
    .service-page-hero__visual { display: none; }
    .service-page__container { gap: 55px; }
    .service-page__sidebar { position: static; }

    .hero { min-height: auto; padding: 60px 30px; }
    .hero-container { width: min(100%, 920px); gap: 38px; }
    .hero-image-wrapper { flex: 0 1 42%; min-width: 0; }
    .circle-frame { width: clamp(290px, 38vw, 350px); height: clamp(290px, 38vw, 350px); }
    .hero-text { flex: 1 1 52%; min-width: 0; padding: 34px 30px; }
    .hero-text h1 { font-size: clamp(2.15rem, 4.3vw, 2.75rem); }
    .hero-text h3 { font-size: 1.3rem; }

    .spotlight-grid { gap: 24px; }
    .spotlight-card { width: calc((100% - 24px) / 2); }
    .clinic-showcase { grid-template-columns: 0.9fr 1.1fr; }
    .clinic-carousel, .clinic-image img { height: 420px; }
    .clinic-text { height: auto; overflow: visible; padding: 32px; }
    .about-doctor-section {
    grid-template-columns: 1fr;
    grid-template-areas:
        "title"
        "image"
        "text";
}
}

@media (max-width: 900px) {
    footer { padding: 45px 18px 25px; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; text-align: center; }
    .footer-grid h4 { font-size: 20px; margin-bottom: 14px; }
    .footer-grid p { font-size: 15px; line-height: 1.6; word-break: break-word; }
    .map { height: 220px; border-radius: 14px; }
    .bottom { margin-top: 30px; padding-top: 18px; font-size: 13px; line-height: 1.7; }
    .form-row { grid-template-columns: 1fr; }
    .appointment-section { padding: 50px 16px; }
    .appointment-card { padding: 24px 18px; border-radius: 22px; }
    .cookie-banner { width: calc(100% - 30px); flex-direction: column; text-align: center; bottom: 15px; }
    .cookie-banner p { font-size: 13px; }
}

@media (max-width: 768px) {
    section { padding-inline: 20px; scroll-margin-top: 86px; }
    .hero { min-height: auto; padding: 40px 20px; background: var(--section-bg); }
    .hero-container { flex-direction: column; gap: 30px; text-align: center; }
    .hero-image-wrapper, .hero-text { flex: none; width: 100%; }
    .hero-image-wrapper { order: 1; }
    .hero-text { order: 2; width: 100%; padding: 25px 18px; border-radius: 22px; background: rgba(255, 255, 255, 0.85); backdrop-filter: none; }
    .hero-text h1 { padding-right: 0; font-size: 32px; }
    .hero-text h1::after { margin-inline: auto; }
    .hero-text h3 { font-size: 20px; }
    .circle-frame { width: 260px; height: 260px; }

    .clinic-showcase { grid-template-columns: 1fr; padding: 20px; }
    .clinic-image img { height: 300px; }

    .spotlight-grid { gap: 20px; margin-top: 40px; }
    .spotlight-card { padding: 32px 26px; width: 100%; }

    .dentcare-philosophy { padding: 70px 22px; }
    .dentcare-philosophy__content h2 { font-size: 35px; line-height: 1.3; letter-spacing: -0.5px; }
    .dentcare-philosophy__title-line { margin: 27px auto 35px; }
    .dentcare-philosophy__content > h3 { font-size: 23px; }
    .dentcare-philosophy__content p { font-size: 16px; line-height: 1.8; }

    .about-doctor-section { gap: 32px; padding: 65px 20px; }
    .about-doc-image img { height: 400px; }
    .about-doc-text { height: auto; overflow: visible; padding: 34px 24px; border-radius: 24px; }

    .about-doc-text .about-doc-lead { font-size: 17px; line-height: 1.8; }

    .service-page-hero { padding: 70px 22px; }
    .service-page-hero__content > p { font-size: 18px; }
    .service-page { padding: 65px 22px; }
    .service-content-block { margin-bottom: 35px; padding-bottom: 35px; }
    .service-content-block h2 { font-size: 27px; }
    .service-content-block p { font-size: 16.5px; line-height: 1.85; }
    .service-list li { padding-left: 28px; font-size: 16px; }
    .service-sidebar-card { padding: 30px 24px; }
}

@media (max-width: 480px) {
    .header-container { padding-inline: 14px; }
    .nav-logo-img { max-width: 52vw; height: 48px; }
    .header-call-btn { right: 62px; width: 44px; height: 44px; padding: 0; border-radius: 50%; font-size: 0; }
    .header-call-btn i { font-size: 18px; }
    .menu-icon { font-size: 31px; }
    .hero-text h1 { font-size: 27px; }
    .section-title h2 { font-size: 30px; }
    .circle-frame { width: 220px; height: 220px; }
    .bottom { font-size: 12px; }

    .dentcare-philosophy { padding: 60px 18px; }
    .dentcare-philosophy__content h2 { font-size: 30px; }
    .dentcare-philosophy__button { width: 100%; }

    .about-doc-image img { height: 340px; }

}

@media (hover: none) {
    .spotlight-card:hover, .btn-main:hover, .circle-text:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
/* =======================================================
   ΣΤΟΙΧΙΣΗ ΛΟΓΟΤΥΠΟΥ ΣΤΙΣ ΣΕΛΙΔΕΣ ΥΠΗΡΕΣΙΩΝ
======================================================= */
.service-page-hero__content .dentcare-philosophy__eyebrow {
    justify-content: flex-start !important; /* Το φέρνει στα αριστερά για να στοιχηθεί με τον τίτλο */
    margin-bottom: 15px !important; /* Ρυθμίζει το κενό ανάμεσα στο logo και τον τίτλο */
}
/* =======================================================
   ΔΙΟΡΘΩΣΗ: ΜΗΝΥΜΑ ΕΠΙΤΥΧΙΑΣ ΦΟΡΜΑΣ
======================================================= */

/* Κρύβει τη φόρμα τελείως όταν στάλθηκε το μήνυμα */
#contact-form[hidden] {
    display: none !important;
}

/* Στυλ για την κάρτα επιτυχίας */
.form-success {
    display: none;
    padding: 40px 20px;
    text-align: center;
    background: var(--white);
    border-radius: 20px;
}

/* Όταν ενεργοποιείται, γίνεται ορατό με ομαλή εμφάνιση */
.form-success.is-visible {
    display: block !important;
    animation: successFadeIn 0.45s ease forwards;
}

/* Το κυκλικό εικονίδιο με το τσεκ */
.form-success__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.25);
}

/* Τίτλος επιτυχίας */
.form-success h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 750;
}

/* Κείμενο επιτυχίας */
.form-success p {
    margin: 0 auto 24px;
    color: var(--muted-color);
    font-size: 16px;
    line-height: 1.7;
}

/* Κουμπί "Νέο μήνυμα" */
.form-success button#new-message-btn {
    padding: 12px 28px;
    color: var(--white);
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.form-success button#new-message-btn:hover {
    transform: translateY(-2px);
    background: var(--primary-hover);
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =======================================================
   ΔΙΟΡΘΩΣΗ: SERVICE CLOSING BOX (ΚΟΥΤΙ ΤΕΛΙΚΟΥ ΜΗΝΥΜΑΤΟΣ)
======================================================= */
.service-closing-box {
    padding: 35px 38px !important;
    background: var(--light-bg) !important;
    border-left: 5px solid var(--primary-color) !important;
    border-radius: 0 22px 22px 0 !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.05) !important;
}

.service-closing-box p {
    margin: 0 !important;
    color: var(--text-color) !important;
    font-size: 19px !important;
    font-weight: 600 !important;
    line-height: 1.85 !important;
}

/* =======================================================
   ΔΙΟΡΘΩΣΗ: TREATMENT OPTIONS CARDS (ΘΕΡΑΠΕΥΤΙΚΗ ΟΔΟΝΤΙΑΤΡΙΚΗ)
======================================================= */
.treatment-options {
    padding: 70px 6% 30px !important;
    background: linear-gradient(180deg, var(--section-bg) 0%, var(--white) 100%) !important;
}

.treatment-options__container {
    width: min(1180px, 100%) !important;
    margin: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 34px !important;
}

.treatment-option-card {
    position: relative !important;
    padding: 46px !important;
    border-radius: 30px !important;
    background: var(--white) !important;
    border: 1px solid rgba(var(--primary-rgb), .12) !important;
    overflow: hidden !important;
    box-shadow: 0 20px 45px rgba(18, 61, 78, .08) !important;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease !important;
}

.treatment-option-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(var(--primary-rgb), .30) !important;
    box-shadow: 0 28px 60px rgba(18, 61, 78, .13) !important;
}

.treatment-option-card__number {
    position: absolute !important;
    right: 30px !important;
    top: 25px !important;
    font-size: 56px !important;
    font-weight: 800 !important;
    color: rgba(var(--primary-rgb), .08) !important;
    line-height: 1 !important;
}

.treatment-option-card h2 {
    margin-bottom: 16px !important;
    color: var(--heading-color) !important;
    font-size: 29px !important;
    line-height: 1.25 !important;
}

.treatment-option-card p {
    margin-bottom: 28px !important;
    color: var(--muted-color) !important;
    line-height: 1.8 !important;
    font-size: 17px !important;
}

.treatment-option-card__link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.treatment-option-card__link i {
    transition: transform .25s ease !important;
}

.treatment-option-card__link:hover i {
    transform: translateY(4px) !important;
}

#restorative,
#endodontic {
    scroll-margin-top: 120px !important;
}

/* Responsive για τις κάρτες σε κινητά */
@media (max-width: 768px) {
    .treatment-options__container {
        grid-template-columns: 1fr !important;
    }
    .treatment-option-card {
        padding: 34px 28px 32px !important;
    }
}

.spotlight-card::before{
    content:"";
    display:block;
    width:70px;
    height:4px;
    border-radius:10px;
    background:var(--primary-color);
    margin-bottom:28px;
}

@media (max-width: 1000px) {

    .hero {
        min-height: auto;
        padding: 60px 4%;
    }

    .hero-container {
        width: 100%;
        max-width: 820px;
        gap: 40px;
    }

    .circle-frame {
        width: 330px;
        height: 330px;
    }

    .hero-text {
        min-width: 0;
        padding: 35px 30px;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        white-space: normal;
    }
}

.about-doctor-header {
    grid-area: title;
    text-align: center;
    margin-bottom: 10px;
}

.philosophy-title{
    margin-bottom:30px;
}


.dentcare-philosophy__content h3{

    max-width:820px;

    margin:0 auto 35px;

    text-align:center;

    color:var(--heading-color);

    font-size:clamp(30px,3vw,38px);

    line-height:1.35;

    font-weight:700;
}

/* =======================================================
   ΕΝΟΠΟΙΗΣΗ ΚΕΙΜΕΝΩΝ (ΙΑΤΡΟΣ & ΙΑΤΡΕΙΟ)
======================================================= */

/* 1. Ενιαίο ύψος γραμμής και μέγιστο πλάτος για να δείχνουν ίδια ακριβώς */
.about-doc-text p,
.clinic-text p {
    font-size: 1.05rem !important;
    line-height: 1.85 !important; /* Σταθερό, ιδανικό ύψος για ξεκούραστη ανάγνωση */
    color: var(--text-color) !important;
    margin-bottom: 22px !important;
}

/* 2. Απελευθέρωση του ύψους στο Ιατρείο ώστε να μην είναι "μαζεμένο" με scrollbar */
.clinic-text {
    height: auto !important;
    max-height: none !important;
    overflow-y: visible !important;
    padding: 10px 0 !important;
}

/* 3. Απόλυτη ισορροπία σταContainers για να έχουν τον ίδιο "αέρα" */
.about-doc-text,
.clinic-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =========================================
   ΤΟ ΙΑΤΡΕΙΟ – ΔΥΟ ΞΕΧΩΡΙΣΤΑ ΠΛΑΙΣΙΑ
========================================= */

.clinic-section {
    background: var(--white);
    padding: 100px 5%;
}

.clinic-showcase {
    width: min(1400px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 70px;
    align-items: start;

    /* Αφαιρούνται τα χαρακτηριστικά του κοινού κουτιού */
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

/* Ξεχωριστό πλαίσιο εικόνας */
.clinic-carousel {
    position: relative;
    width: 500px;
    height: 400px;
    overflow: hidden;

    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.11);
}

/* Ξεχωριστό πλαίσιο κειμένου */
.clinic-text {
    min-width: 0;
    height: auto;
    max-height: none;
    overflow: visible;

    padding: 52px 55px !important;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(247, 251, 252, 0.94)
        );

    border: 1px solid rgba(var(--primary-rgb), 0.10);
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.07);
}

.clinic-text p:last-child {
    margin-bottom: 0 !important;
}
@media (max-width: 1024px) {

    .clinic-showcase {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .clinic-carousel {
        height: 420px;
        border-radius: 24px;
    }

    .clinic-text {
        padding: 45px 42px !important;
        border-radius: 24px;
    }
}
@media (max-width: 768px) {

    .clinic-section {
        padding: 65px 20px;
    }

    .clinic-showcase {
        padding: 0;
        gap: 32px;
    }

    .clinic-carousel {
        height: 320px;
        border-radius: 24px;
    }

    .clinic-text {
        padding: 34px 24px !important;
        border-radius: 24px;
    }
}

@media (max-width: 768px) {

    .about-doc-image,
    .clinic-carousel {
        width: 100%;
    }

    .about-doc-image img,
    .clinic-carousel {
        height: 400px;
        border-radius: 24px;
    }

    .about-doc-image img {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .clinic-slide {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}