/* =========================================================
   ARMAN.GR - CUSTOM CASSIOPEIA HEADER
   ========================================================= */


/* ---------------------------------------------------------
   1. CASSIOPEIA HEADER BACKGROUND
   --------------------------------------------------------- */

header.container-header,
.container-header,
.container-header.full-width,
.container-header .grid-child,
.container-header .container-topbar,
.container-header .container-below-top,
.container-below-top {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
    box-shadow: none !important;
}


/* ---------------------------------------------------------
   2. CUSTOM HEADER MODULE
   --------------------------------------------------------- */

.clinic-header-module {
    width: 100%;
}


/* Three columns:
   LOGO | CONTACT | BOOK NOW
*/

.clinic-top-header {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 0.75fr;
    align-items: center;
    gap: 40px;

    width: 100%;
    padding: 28px 0;

    background: #ffffff;
    color: #222222;
}


/* ---------------------------------------------------------
   3. LOGO - LEFT
   --------------------------------------------------------- */

.clinic-header-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.clinic-header-logo a {
    display: inline-block;
}

.clinic-header-logo img {
    display: block;

    width: 100%;
    max-width: 460px;
    height: auto;
}


/* ---------------------------------------------------------
   4. CONTACT DETAILS - CENTRE
   --------------------------------------------------------- */

.clinic-header-contact {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;

    color: #222222;
}


/* Location icon */

.clinic-contact-icon {
    font-size: 28px;
    line-height: 1;

    color: #33566d;

    margin-top: 2px;
}


/* ΧΟΛΑΡΓΟΣ */

.clinic-contact-title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;

    color: #33566d;

    margin-bottom: 8px;
}


/* Address + telephone */

.clinic-contact-details {
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;

    color: #222222;
}


/* ---------------------------------------------------------
   5. BOOK NOW - RIGHT
   --------------------------------------------------------- */

.clinic-header-book {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    border-left: 1px solid #33566d;

    padding-left: 38px;
}

.clinic-header-book a {
    display: inline-block;
}

.clinic-header-book img {
    display: block;

    width: 100%;
    max-width: 320px;
    height: auto;

    border-radius: 8px;
}


/* ---------------------------------------------------------
   6. REMOVE UNWANTED DEFAULT HEADER STYLING
   --------------------------------------------------------- */

.container-header {
    color: #222222 !important;
}

.container-header a:not(.metismenu-item a) {
    color: inherit;
}


/* ---------------------------------------------------------
   7. TABLET
   --------------------------------------------------------- */

@media (max-width: 1100px) {

    .clinic-top-header {
        grid-template-columns: 1fr 1fr 0.8fr;
        gap: 25px;
    }

    .clinic-header-logo img {
        max-width: 330px;
    }

    .clinic-header-book {
        padding-left: 25px;
    }

    .clinic-header-book img {
        max-width: 280px;
    }

    .clinic-contact-title {
        font-size: 20px;
    }

    .clinic-contact-details {
        font-size: 15px;
    }
}


/* ---------------------------------------------------------
   8. MOBILE
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .clinic-top-header {
        grid-template-columns: 1fr;

        gap: 24px;

        padding: 25px 20px;

        text-align: center;
    }

    .clinic-header-logo {
        justify-content: center;
    }

    .clinic-header-logo img {
        max-width: 380px;
        margin: 0 auto;
    }

    .clinic-header-contact {
        justify-content: center;
        text-align: left;
    }

    .clinic-header-book {
        justify-content: center;

        border-left: 0;
        padding-left: 0;
    }

    .clinic-header-book img {
        max-width: 320px;
        margin: 0 auto;
    }
}


/* ---------------------------------------------------------
   9. SMALL PHONES
   --------------------------------------------------------- */

@media (max-width: 500px) {

    .clinic-top-header {
        padding: 20px 15px;
    }

    .clinic-header-logo img {
        max-width: 320px;
    }

    .clinic-contact-icon {
        font-size: 28px;
    }

    .clinic-contact-title {
        font-size: 18px;
    }

    .clinic-contact-details {
        font-size: 14px;
    }

    .clinic-header-book img {
        max-width: 280px;
    }
}

/* =========================================================
   ARMAN.GR - MAIN HORIZONTAL MENU
   ========================================================= */

.clinic-main-menu {
    width: 100%;
}

/* Menu list */
.clinic-main-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 0;

    width: 100%;
    margin: 0;
    padding: 0;

    list-style: none;
}

/* Individual menu items */
.clinic-main-menu li {
    margin: 0;
    padding: 0;
}

/* Menu links */
.clinic-main-menu li > a {
    display: block;

    padding: 18px 28px;

    color: #33566d !important;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;

    text-decoration: none !important;

    transition: color 0.2s ease,
                background-color 0.2s ease;
}

/* Hover */
.clinic-main-menu li > a:hover {
    color: #df7d70 !important;
    background: transparent;
}

/* Active page */
.clinic-main-menu li.active > a,
.clinic-main-menu li.current > a {
    color: #df7d70 !important;
}

/* Mobile */
@media (max-width: 900px) {

    .clinic-main-menu ul {
        flex-direction: column;
        align-items: stretch;
    }

    .clinic-main-menu li > a {
        padding: 12px 20px;
        text-align: center;
    }
}

/* ===== FORCE MAIN MENU STYLING ===== */

ul.mod-menu.clinic-main-menu,
ul.clinic-main-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;

    background: #f5f5f5;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #dddddd;
}


/* menu items */

ul.mod-menu.clinic-main-menu > li,
ul.clinic-main-menu > li {
    display: block !important;
    margin: 0 !important;
}


/* links */

ul.mod-menu.clinic-main-menu > li > a,
ul.clinic-main-menu > li > a {
    display: block !important;

    padding: 18px 30px !important;

    color: #33566d !important;

    font-size: 16px !important;
    font-weight: 600 !important;

    text-decoration: none !important;

    background: transparent !important;
}


/* hover */

ul.mod-menu.clinic-main-menu > li > a:hover,
ul.clinic-main-menu > li > a:hover {
    color: #df7d70 !important;
}


/* active/current page */

ul.mod-menu.clinic-main-menu > li.active > a,
ul.mod-menu.clinic-main-menu > li.current > a,
ul.clinic-main-menu > li.active > a,
ul.clinic-main-menu > li.current > a {
    color: #df7d70 !important;
}


/* mobile */

@media (max-width: 900px) {

    ul.mod-menu.clinic-main-menu,
    ul.clinic-main-menu {
        flex-direction: column !important;
    }

    ul.mod-menu.clinic-main-menu > li,
    ul.clinic-main-menu > li {
        width: 100% !important;
    }

    ul.mod-menu.clinic-main-menu > li > a,
    ul.clinic-main-menu > li > a {
        text-align: center !important;
        padding: 12px 20px !important;
    }
}

/* ===== MENU FINE TUNING ===== */

.container-header .container-nav {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

ul.mod-menu.clinic-main-menu,
ul.clinic-main-menu {
    width: 100% !important;
    max-width: none !important;

    min-height: 58px;

    justify-content: center !important;

    background: #f7f7f7 !important;

    border-top: 1px solid #eeeeee !important;
    border-bottom: 1px solid #dddddd !important;
}

ul.mod-menu.clinic-main-menu > li > a,
ul.clinic-main-menu > li > a {
    padding: 19px 34px !important;

    font-size: 16px !important;
    font-weight: 600 !important;

    color: #33566d !important;
}

ul.mod-menu.clinic-main-menu > li.active > a,
ul.mod-menu.clinic-main-menu > li.current > a,
ul.clinic-main-menu > li.active > a,
ul.clinic-main-menu > li.current > a {
    color: #df7d70 !important;
}

/* Optional active underline */
ul.mod-menu.clinic-main-menu > li.active > a,
ul.clinic-main-menu > li.active > a {
    border-bottom: 2px solid #df7d70 !important;
}

/* =========================================================
   HOMEPAGE HERO
   ========================================================= */

.home-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;

    width: 100%;
    min-height: 520px;

    margin: 0;
    overflow: hidden;

    background: #f7f3f1;
}


/* LEFT SIDE */

.home-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 70px 70px 80px;
}


.home-hero-eyebrow {
    display: block;

    margin-bottom: 20px;

    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.home-hero h1 {
    margin: 0 0 25px;

    color: #33566d;

    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.08;
    font-weight: 600;
}


.home-hero p {
    max-width: 600px;

    margin: 0 0 32px;

    color: #444;

    font-size: 18px;
    line-height: 1.7;
}


/* BUTTONS */

.home-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


.home-btn-primary,
.home-btn-secondary {
    display: inline-block;

    padding: 14px 26px;

    border-radius: 4px;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.2s ease;
}


.home-btn-primary {
    background: #df7d70;

    color: #ffffff !important;

    border: 1px solid #df7d70;
}


.home-btn-primary:hover {
    background: #c96d62;

    border-color: #c96d62;

    color: #ffffff !important;
}


.home-btn-secondary {
    background: transparent;

    color: #33566d !important;

    border: 1px solid #33566d;
}


.home-btn-secondary:hover {
    background: #33566d;

    color: #ffffff !important;
}


/* RIGHT IMAGE */

.home-hero-image {
    min-height: 520px;
}


.home-hero-image img {
    width: 100%;
    height: 100%;

    min-height: 520px;

    object-fit: cover;

    display: block;
}


/* TABLET / MOBILE */

@media (max-width: 900px) {

    .home-hero {
        grid-template-columns: 1fr;
    }

    .home-hero-text {
        padding: 55px 35px;
    }

    .home-hero-image,
    .home-hero-image img {
        min-height: 400px;
    }

}


@media (max-width: 500px) {

    .home-hero-text {
        padding: 45px 22px;
    }

    .home-hero h1 {
        font-size: 40px;
    }

    .home-hero p {
        font-size: 16px;
    }

    .home-hero-buttons {
        flex-direction: column;
    }

    .home-btn-primary,
    .home-btn-secondary {
        width: 100%;
        text-align: center;
    }

}

/* =========================================================
   HOMEPAGE SERVICES
   ========================================================= */

.home-services {
    padding: 85px 30px 95px;
    background: #ffffff;
}


/* Heading */

.home-services-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.home-services-heading > span {
    display: block;

    margin-bottom: 12px;

    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.home-services-heading h2 {
    margin: 0 0 18px;

    color: #33566d;

    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.15;
    font-weight: 600;
}

.home-services-heading p {
    margin: 0 auto;

    color: #555;

    font-size: 17px;
    line-height: 1.7;
}


/* Card grid */

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    max-width: 1180px;
    margin: 0 auto;
}


/* Card */

.home-service-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(51, 86, 109, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.home-service-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 16px 36px rgba(51, 86, 109, 0.13);
}


/* Card image */

.home-service-card img {
    display: block;

    width: 100%;
    aspect-ratio: 3 / 2;

    object-fit: cover;
}


/* Card content */

.home-service-card-content {
    padding: 28px 28px 30px;
}

.home-service-card-content h3 {
    margin: 0 0 14px;

    color: #33566d;

    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
}

.home-service-card-content p {
    margin: 0 0 22px;

    color: #555;

    font-size: 15px;
    line-height: 1.7;
}

.home-service-card-content a {
    color: #df7d70 !important;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none !important;
}

.home-service-card-content a:hover {
    color: #c96d62 !important;
}


/* Tablet */

@media (max-width: 1000px) {

    .home-services-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* Mobile */

@media (max-width: 700px) {

    .home-services {
        padding: 60px 20px 70px;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-services-heading {
        margin-bottom: 35px;
    }

}

/* =========================================================
   HOMEPAGE - DOCTOR SECTION
   ========================================================= */

.home-doctor {
    padding: 70px 30px;
    background: #f8f4f1;
}

.home-doctor-inner {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;

    gap: 70px;
}


/* IMAGE */

.home-doctor-image {
    position: relative;
}

.home-doctor-image img {
    display: block;

    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius: 12px;
}


/* Small coral detail behind photograph */

.home-doctor-image::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    left: -18px;
    bottom: -18px;

    background: #df7d70;

    border-radius: 12px;

    z-index: 0;
}

.home-doctor-image img {
    position: relative;
    z-index: 1;
}


/* TEXT */

.home-doctor-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.home-doctor-content h2 {
    margin: 0 0 7px;

    color: #33566d;

    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.1;
    font-weight: 600;
}

.home-doctor-credentials {
    margin-bottom: 20px;

    color: #df7d70;

    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px;
}

.home-doctor-content h3 {
    margin: 0 0 24px;

    color: #33566d;

    font-size: 20px;
    line-height: 1.45;
    font-weight: 500;
}

.home-doctor-content p {
    margin: 0 0 17px;

    color: #4f4f4f;

    font-size: 16px;
    line-height: 1.75;
}


/* QUALIFICATIONS */

.home-doctor-highlights {
    margin: 30px 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}

.home-doctor-highlights > div {
    padding: 17px;

    background: rgba(255,255,255,.72);

    border-radius: 8px;
}

.home-doctor-highlights strong {
    display: block;

    margin-bottom: 6px;

    color: #33566d;

    font-size: 15px;
}

.home-doctor-highlights span {
    display: block;

    color: #666;

    font-size: 12px;
    line-height: 1.45;
}


/* BUTTON */

.home-doctor-button {
    display: inline-block;

    padding: 13px 22px;

    background: #33566d;
    color: #ffffff !important;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        background .2s ease,
        transform .2s ease;
}

.home-doctor-button:hover {
    background: #29485d;

    color: #ffffff !important;

    transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 950px) {

    .home-doctor-inner {
        grid-template-columns: 1fr 1.2fr;
        gap: 45px;
    }

    .home-doctor-highlights {
        grid-template-columns: 1fr;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .home-doctor {
        padding: 65px 22px;
    }

    .home-doctor-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .home-doctor-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .home-doctor-content h2 {
        font-size: 34px;
    }

    .home-doctor-highlights {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   HOMEPAGE - VALUES / WHY CHOOSE US
   ========================================================= */

.home-values {
    padding: 85px 30px 95px;
    background: #ffffff;
}

.home-values-heading {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.home-values-heading > span {
    display: block;
    margin-bottom: 12px;

    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.home-values-heading h2 {
    margin: 0 0 18px;

    color: #33566d;

    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.18;
    font-weight: 600;
}

.home-values-heading p {
    margin: 0 auto;

    max-width: 720px;

    color: #555;

    font-size: 16px;
    line-height: 1.7;
}

.home-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

    max-width: 1180px;
    margin: 0 auto;
}

.home-value-card {
    padding: 30px 24px;

    background: #f8f4f1;

    border: 1px solid #eee7e2;
    border-radius: 12px;

    text-align: center;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.home-value-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 28px rgba(51, 86, 109, .09);
}

.home-value-icon {
    width: 52px;
    height: 52px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #33566d;
    color: #df7d70;

    font-size: 24px;
    font-weight: 700;
}

.home-value-card h3 {
    margin: 0 0 14px;

    color: #33566d;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
}

.home-value-card p {
    margin: 0;

    color: #555;

    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 1000px) {

    .home-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 650px) {

    .home-values {
        padding: 60px 20px 70px;
    }

    .home-values-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   HOMEPAGE - APPOINTMENT CTA
   ========================================================= */

.home-cta {
    padding: 70px 30px;
    background: #33566d;
}

.home-cta-inner {
    max-width: 1180px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.home-cta-text {
    max-width: 700px;
}

.home-cta-text > span {
    display: block;

    margin-bottom: 10px;

    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.home-cta-text h2 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
    font-weight: 600;
}

.home-cta-text p {
    margin: 0;

    color: rgba(255,255,255,.85);

    font-size: 16px;
    line-height: 1.7;
}

.home-cta-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.home-cta-primary,
.home-cta-secondary {
    display: inline-block;

    padding: 14px 24px;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.home-cta-primary {
    background: #df7d70;
    border: 1px solid #df7d70;

    color: #ffffff !important;
}

.home-cta-primary:hover {
    background: #c96d62;
    border-color: #c96d62;

    color: #ffffff !important;

    transform: translateY(-2px);
}

.home-cta-secondary {
    background: transparent;

    border: 1px solid rgba(255,255,255,.65);

    color: #ffffff !important;
}

.home-cta-secondary:hover {
    background: #ffffff;

    color: #33566d !important;

    transform: translateY(-2px);
}

@media (max-width: 800px) {

    .home-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 500px) {

    .home-cta {
        padding: 55px 22px;
    }

    .home-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .home-cta-primary,
    .home-cta-secondary {
        width: 100%;
        text-align: center;
    }

}

/* CTA small heading */
.home-cta .home-cta-text span {
    display: block;
    color: #df7d70 !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

/* Force CTA eyebrow colour */
.home-cta .home-cta-inner .home-cta-text > span {
    color: #df7d70 !important;
}

/* =========================================================
   MAIN FOOTER
   ========================================================= */

.clinic-footer {
    background: #2d4f64;
    color: rgba(255,255,255,.82);

    padding: 65px 30px 0;
}


/* THREE COLUMNS */

.clinic-footer-grid {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.3fr 1fr .8fr;

    gap: 70px;
}


/* LOGO / BRAND */

.clinic-footer-brand img {
    width: 100%;
    max-width: 340px;
    height: auto;

    display: block;

    margin-bottom: 24px;
}

.clinic-footer-brand p {
    max-width: 480px;

    margin: 0;

    font-size: 14px;
    line-height: 1.75;

    color: rgba(255,255,255,.75);
}


/* TITLES */

.clinic-footer h3 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
}


/* CONTACT */

.clinic-footer-contact p {
    margin: 0 0 16px;

    font-size: 14px;
    line-height: 1.7;
}

.clinic-footer a {
    color: rgba(255,255,255,.82) !important;
    text-decoration: none !important;
}

.clinic-footer a:hover {
    color: #df7d70 !important;
}


/* BOOKING BUTTON */

.clinic-footer-book {
    display: inline-block;

    margin-top: 8px;
    padding: 11px 18px;

    background: #df7d70;

    border-radius: 4px;

    color: #ffffff !important;

    font-size: 13px;
    font-weight: 600;
}

.clinic-footer-book:hover {
    background: #c96d62;

    color: #ffffff !important;
}


/* LINKS */

.clinic-footer-links ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

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

.clinic-footer-links a {
    font-size: 14px;
}


/* BOTTOM STRIP */

.clinic-footer-bottom {
    max-width: 1180px;

    margin: 50px auto 0;
    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,.15);

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    color: rgba(255,255,255,.55);

    font-size: 12px;
}

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

.clinic-footer-legal a {
    color: rgba(255,255,255,.55) !important;
}

.clinic-footer-legal a:hover {
    color: #df7d70 !important;
}


/* TABLET */

@media (max-width: 900px) {

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

    .clinic-footer-brand {
        grid-column: 1 / -1;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .clinic-footer {
        padding: 50px 22px 0;
    }

    .clinic-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .clinic-footer-brand {
        grid-column: auto;
    }

    .clinic-footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        margin-top: 40px;
    }

}
/* ==================================================
   FOOTER
   ================================================== */




/* ==================================================
   CASSIOPEIA FOOTER BACKGROUND
   ================================================== */

.container-footer {
    background: #294f63 !important;
    background-color: #294f63 !important;
    background-image: none !important;
}

/* =========================================
   FOOTER FINAL TUNING
   ========================================= */

/* Footer logo */
.clinic-footer-brand img {
    width: 360px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 28px;
}

/* Footer spacing refinement */
.clinic-footer {
    padding-top: 55px;
    padding-bottom: 22px;
}

.clinic-footer-grid {
    margin-bottom: 35px;
}

.clinic-footer-bottom {
    padding-top: 18px;
}

/* =========================================================
   MOBILE FINAL TUNING
   ========================================================= */

@media (max-width: 700px) {

    /* HERO */
    .home-hero-text {
        padding: 42px 28px;
    }

    .home-hero h1 {
        font-size: 43px;
        line-height: 1.08;
    }

    .home-hero p {
        font-size: 17px;
        line-height: 1.65;
    }

    .home-hero-image,
    .home-hero-image img {
        min-height: 430px;
    }

    /* SERVICES */
    .home-services {
        padding: 60px 18px 70px;
    }

    .home-services-heading h2 {
        font-size: 36px;
    }

    .home-service-card-content {
        padding: 25px;
    }

    /* DOCTOR */
    .home-doctor {
        padding: 60px 20px;
    }

    .home-doctor-content h2 {
        font-size: 38px;
    }

    /* PHILOSOPHY */
    .home-values {
        padding: 60px 18px 70px;
    }

    .home-values-heading h2 {
        font-size: 36px;
    }

    .home-value-card {
        padding: 30px 24px;
    }

    /* CTA */
    .home-cta {
        padding: 55px 28px;
    }

    .home-cta-text h2 {
        font-size: 38px;
    }

    .home-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .home-cta-primary,
    .home-cta-secondary {
        width: 100%;
        text-align: center;
    }

    /* FOOTER */
    .clinic-footer {
        padding: 50px 28px 25px;
    }

    .clinic-footer-grid {
        gap: 42px;
    }

    .clinic-footer-brand img {
        width: 100%;
        max-width: 420px;
    }

    .clinic-footer-bottom {
        gap: 20px;
    }
}

/* =========================================================
   MOBILE HEADER
   ========================================================= */

@media (max-width: 700px) {

    .clinic-top-header {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo logo"
            "contact book";
        gap: 18px 14px;

        padding: 22px 20px 20px;
        align-items: center;
    }

    .clinic-header-logo {
        grid-area: logo;
        text-align: center;
    }

    .clinic-header-logo img {
        width: 100%;
        max-width: 470px;
        height: auto;
    }

    .clinic-header-contact {
        grid-area: contact;

        display: flex;
        align-items: flex-start;
        gap: 10px;

        min-width: 0;
    }

    .clinic-contact-icon {
        font-size: 24px;
        line-height: 1;
        flex: 0 0 auto;
    }

    .clinic-contact-title {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .clinic-contact-details {
        font-size: 14px;
        line-height: 1.45;
    }

    .clinic-header-book {
        grid-area: book;
        text-align: right;
    }

    .clinic-header-book img {
        width: 210px;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

}

/* =========================================================
   DESKTOP HOMEPAGE FULL-WIDTH SECTIONS
   ========================================================= */

@media (min-width: 1100px) {

    /* Let the homepage article span the full browser width */
    body.home .site-grid,
    body.home main,
    body.home .com-content-article,
    body.home .item-page {
        max-width: none !important;
        width: 100% !important;
    }

    /* Remove side constraints around homepage content */
    body.home .com-content-article__body {
        max-width: none !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* HERO full width */
    .home-hero {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    /* SERVICES full width background */
    .home-services {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    /* DOCTOR full width background */
    .home-doctor {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    /* PHILOSOPHY full width background */
    .home-values {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    /* CTA full width */
    .home-cta {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */

.services-page-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);

    padding: 90px 30px;

    background: #f8f4f1;
}

.services-page-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-page-hero-inner > span {
    display: block;
    margin-bottom: 12px;

    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.services-page-hero h1 {
    margin: 0 0 20px;

    color: #33566d;

    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.1;
    font-weight: 600;
}

.services-page-hero p {
    max-width: 720px;
    margin: 0 auto;

    color: #555;

    font-size: 17px;
    line-height: 1.7;
}


/* MAIN GRID */

.services-page-grid {
    max-width: 1180px;
    margin: 0 auto;

    padding: 65px 30px 75px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
}


/* CATEGORY CARDS */

.services-category-card {
    padding: 34px;

    background: #ffffff;

    border: 1px solid #ece8e5;
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(51, 86, 109, 0.06);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.services-category-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 15px 34px rgba(51, 86, 109, 0.1);
}

.services-category-card h2 {
    margin: 0 0 15px;

    color: #33566d;

    font-size: 26px;
    font-weight: 600;
}

.services-category-card p {
    margin: 0 0 22px;

    color: #555;

    font-size: 15px;
    line-height: 1.7;
}

.services-category-card a {
    color: #df7d70 !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;
}

.services-category-card a:hover {
    color: #c96d62 !important;
}


@media (max-width: 750px) {

    .services-page-hero {
        padding: 65px 22px;
    }

    .services-page-grid {
        grid-template-columns: 1fr;

        padding: 60px 20px;
    }

}

/* =========================================================
   SERVICE DETAIL PAGE
   ========================================================= */

.service-detail-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);

    padding: 95px 30px;

    background: #f8f4f1;
}

.service-detail-hero-inner {
    max-width: 900px;
    margin: 0 auto;

    text-align: center;
}

.service-detail-hero-inner > span {
    display: block;

    margin-bottom: 12px;

    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.service-detail-hero h1 {
    margin: 0 0 20px;

    color: #33566d;

    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.1;
}

.service-detail-hero p {
    max-width: 760px;
    margin: 0 auto;

    color: #555;

    font-size: 17px;
    line-height: 1.7;
}


/* MAIN SECTION */

.service-detail-section {
    max-width: 1180px;

    margin: 0 auto;
    padding: 80px 30px;
}

.service-detail-intro {
    max-width: 800px;

    margin: 0 auto 50px;

    text-align: center;
}

.service-detail-intro h2 {
    margin: 0 0 14px;

    color: #33566d;

    font-size: 34px;
}

.service-detail-intro p {
    margin: 0;

    color: #555;

    font-size: 16px;
    line-height: 1.7;
}


/* GRID */

.service-detail-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.service-detail-card {
    padding: 30px;

    background: #ffffff;

    border: 1px solid #ece8e5;
    border-radius: 12px;

    box-shadow: 0 8px 26px rgba(51, 86, 109, 0.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.service-detail-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(51, 86, 109, 0.09);
}

.service-detail-card h3 {
    margin: 0 0 12px;

    color: #33566d;

    font-size: 22px;
    line-height: 1.3;
}

.service-detail-card p {
    margin: 0 0 18px;

    color: #555;

    font-size: 15px;
    line-height: 1.65;
}

.service-detail-card a {
    color: #df7d70 !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;
}


/* CTA */

.service-detail-cta {
    width: 100vw;

    margin-left: calc(50% - 50vw);

    padding: 65px 30px;

    background: #315a70;
}

.service-detail-cta-inner {
    max-width: 1180px;

    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 50px;
}

.service-detail-cta span {
    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.service-detail-cta h2 {
    margin: 8px 0 10px;

    color: #ffffff;

    font-size: 38px;
}

.service-detail-cta p {
    margin: 0;

    color: rgba(255,255,255,.8);

    font-size: 16px;
    line-height: 1.6;
}

.service-detail-cta a {
    flex: 0 0 auto;

    display: inline-block;

    padding: 14px 24px;

    background: #df7d70;

    border-radius: 5px;

    color: #ffffff !important;

    font-weight: 600;

    text-decoration: none !important;
}


/* MOBILE */

@media (max-width: 750px) {

    .service-detail-hero {
        padding: 65px 22px;
    }

    .service-detail-section {
        padding: 60px 20px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-cta {
        padding: 55px 24px;
    }

    .service-detail-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-detail-cta a {
        width: 100%;

        text-align: center;
    }
}

/* =========================================================
   GYNAECOLOGY PAGE - CARD REFINEMENT
   ========================================================= */

.service-detail-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
}

.service-detail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #df7d70;
    opacity: 0;
    transition: opacity .2s ease;
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-card h3 {
    padding-right: 20px;
}

.service-detail-card a {
    display: inline-block;
    margin-top: 5px;
}




/* Slightly softer alternating feel */
.service-detail-card:nth-child(4n+1),
.service-detail-card:nth-child(4n+4) {
    background: #fbf8f6;
}


/* Desktop */
@media (min-width: 900px) {

    .service-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }

}


/* Mobile */
@media (max-width: 750px) {

    .service-detail-card {
        min-height: auto;
        padding: 26px 24px;
    }

    .service-detail-card h3 {
        font-size: 21px;
    }
}

/* =========================================================
   INDIVIDUAL TOPIC PAGE
   ========================================================= */

.topic-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);

    padding: 90px 30px;

    background: #f8f4f1;
}

.topic-hero-inner {
    max-width: 900px;
    margin: 0 auto;

    text-align: center;
}

.topic-hero-inner > span {
    display: block;

    margin-bottom: 12px;

    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.topic-hero h1 {
    margin: 0 0 20px;

    color: #33566d;

    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.1;
}

.topic-hero p {
    max-width: 760px;
    margin: 0 auto;

    color: #555;

    font-size: 17px;
    line-height: 1.7;
}


/* CONTENT */

.topic-content {
    max-width: 1180px;

    margin: 0 auto;
    padding: 80px 30px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;

    gap: 55px;
}

.topic-content-main h2 {
    margin: 0 0 18px;

    color: #33566d;

    font-size: 30px;
}

.topic-content-main p {
    margin: 0 0 34px;

    color: #555;

    font-size: 16px;
    line-height: 1.75;
}


/* CHECKLIST */

.topic-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 50px;
}

.topic-check-item {
    padding: 24px;

    background: #fbf8f6;

    border: 1px solid #ece8e5;
    border-radius: 10px;
}

.topic-check-item strong {
    display: block;

    margin-bottom: 8px;

    color: #33566d;

    font-size: 17px;
}

.topic-check-item span {
    color: #555;

    font-size: 14px;
    line-height: 1.6;
}


/* NOTE */

.topic-note {
    padding: 22px 24px;

    background: #f8f4f1;

    border-left: 4px solid #df7d70;

    color: #555;

    font-size: 15px;
    line-height: 1.65;
}


/* SIDEBAR */

.topic-sidebar {
    display: flex;
    flex-direction: column;

    gap: 24px;
}

.topic-sidebar-card {
    padding: 26px;

    background: #ffffff;

    border: 1px solid #ece8e5;
    border-radius: 12px;

    box-shadow: 0 8px 26px rgba(51, 86, 109, 0.05);
}

.topic-sidebar-card h3 {
    margin: 0 0 14px;

    color: #33566d;

    font-size: 21px;
}

.topic-sidebar-card p {
    margin: 0 0 20px;

    color: #555;

    font-size: 14px;
    line-height: 1.6;
}

.topic-sidebar-card > a {
    display: inline-block;

    padding: 12px 18px;

    background: #df7d70;

    border-radius: 5px;

    color: #ffffff !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;
}

.topic-sidebar-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.topic-sidebar-card li {
    margin-bottom: 10px;
}

.topic-sidebar-card li:last-child {
    margin-bottom: 0;
}

.topic-sidebar-card li a {
    color: #33566d !important;
    text-decoration: none !important;
}

.topic-sidebar-card li a:hover {
    color: #df7d70 !important;
}


/* MOBILE */

@media (max-width: 800px) {

    .topic-hero {
        padding: 65px 22px;
    }

    .topic-content {
        grid-template-columns: 1fr;

        padding: 60px 20px;
    }

    .topic-checklist {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   FIX TOPIC PAGE COLUMN LAYOUT
   ========================================================= */

.topic-content {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 320px !important;
    gap: 55px !important;

    max-width: 1180px !important;
    width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;
}

.topic-content-main {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.topic-sidebar {
    grid-column: 2 !important;
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width: 800px) {

    .topic-content {
        grid-template-columns: 1fr !important;
    }

    .topic-content-main,
    .topic-sidebar {
        grid-column: 1 !important;
    }
}

/* =========================================================
   TOPIC PAGE - FIX CHECKLIST CARDS
   ========================================================= */

.topic-content-main {
    text-align: left !important;
}

.topic-content-main p {
    text-align: left !important;
    width: 100% !important;
    max-width: none !important;
}

/* Force the information cards into 2 proper columns */
.topic-checklist {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    width: 100% !important;
    max-width: none !important;

    gap: 20px !important;

    margin: 30px 0 50px !important;
    padding: 0 !important;

    align-items: stretch !important;
}

/* Each card fills its grid column */
.topic-check-item {
    width: auto !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 24px !important;

    text-align: left !important;

    box-sizing: border-box !important;
}

/* Card text */
.topic-check-item strong {
    display: block !important;
    margin-bottom: 8px !important;
    text-align: left !important;
}

.topic-check-item span {
    display: block !important;
    text-align: left !important;
    line-height: 1.6 !important;
}


/* MOBILE */
@media (max-width: 800px) {

    .topic-checklist {
        grid-template-columns: 1fr !important;
    }

}

/* =========================================================
   DESKTOP DROPDOWN MENU
   ========================================================= */

@media (min-width: 901px) {

    /* Parent menu item */
    ul.mod-menu.clinic-main-menu > li,
    ul.clinic-main-menu > li {
        position: relative !important;
    }

    /* Hide submenu by default */
    ul.mod-menu.clinic-main-menu > li > ul,
    ul.clinic-main-menu > li > ul {
        display: none !important;

        position: absolute !important;
        top: 100% !important;
        left: 0 !important;

        min-width: 360px !important;
        width: max-content !important;
        max-width: 430px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;

        border: 1px solid #e8e8e8 !important;

        box-shadow: 0 12px 28px rgba(0,0,0,.10) !important;

        z-index: 9999 !important;

        list-style: none !important;
    }

    /* Show dropdown on hover */
    ul.mod-menu.clinic-main-menu > li:hover > ul,
    ul.clinic-main-menu > li:hover > ul {
        display: block !important;
    }

    /* Submenu items */
    ul.mod-menu.clinic-main-menu > li > ul > li,
    ul.clinic-main-menu > li > ul > li {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        border-bottom: 1px solid #eeeeee !important;
    }

    ul.mod-menu.clinic-main-menu > li > ul > li:last-child,
    ul.clinic-main-menu > li > ul > li:last-child {
        border-bottom: 0 !important;
    }

    /* Submenu links */
    ul.mod-menu.clinic-main-menu > li > ul > li > a,
    ul.clinic-main-menu > li > ul > li > a {
        display: block !important;

        width: 100% !important;

        padding: 15px 18px !important;

        background: #ffffff !important;

        color: #333333 !important;

        font-size: 15px !important;
        font-weight: 400 !important;

        line-height: 1.35 !important;

        text-align: left !important;

        white-space: normal !important;

        text-decoration: none !important;

        box-sizing: border-box !important;
    }

    /* Hover */
    ul.mod-menu.clinic-main-menu > li > ul > li > a:hover,
    ul.clinic-main-menu > li > ul > li > a:hover {
        background: #f8f4f1 !important;

        color: #df7d70 !important;
    }

}

/* =========================================================
   CASSIOPEIA / METISMENU - DESKTOP HOVER DROPDOWN
   ========================================================= */

@media (min-width: 901px) {

    /* Parent menu item */
    .metismenu.mod-menu > .metismenu-item {
        position: relative !important;
    }


    /* Parent item containing submenu */
    .metismenu.mod-menu > .metismenu-item.parent {
        position: relative !important;
    }


    /* ΓΥΝΑΙΚΟΛΟΓΙΑ parent button/link */
    .metismenu.mod-menu > .metismenu-item.parent > button,
    .metismenu.mod-menu > .metismenu-item.parent > a {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;

        padding: 19px 34px !important;

        background: transparent !important;
        border: 0 !important;

        color: #33566d !important;

        font-family: inherit !important;
        font-size: 16px !important;
        font-weight: 600 !important;

        cursor: pointer !important;
    }


    /* The dropdown itself */
    .metismenu.mod-menu
    > .metismenu-item.parent
    > ul.mm-collapse {

        position: absolute !important;

        top: 100% !important;
        left: 0 !important;

        width: 370px !important;
        min-width: 370px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;

        border: 1px solid #e8e8e8 !important;

        box-shadow:
            0 14px 35px rgba(0, 0, 0, 0.12) !important;

        z-index: 99999 !important;


        /* Override MetisMenu collapsed state */
        display: block !important;
        height: auto !important;

        opacity: 0 !important;
        visibility: hidden !important;

        transform: translateY(8px);

        pointer-events: none !important;

        transition:
            opacity .18s ease,
            transform .18s ease,
            visibility .18s ease !important;
    }


    /* OPEN ON HOVER */
    .metismenu.mod-menu
    > .metismenu-item.parent:hover
    > ul.mm-collapse {

        opacity: 1 !important;
        visibility: visible !important;

        transform: translateY(0);

        pointer-events: auto !important;
    }


    /* Child items */
    .metismenu.mod-menu
    > .metismenu-item.parent
    > ul.mm-collapse
    > li {

        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;

        border-bottom: 1px solid #eeeeee !important;
    }


    .metismenu.mod-menu
    > .metismenu-item.parent
    > ul.mm-collapse
    > li:last-child {

        border-bottom: 0 !important;
    }


    /* Child links */
    .metismenu.mod-menu
    > .metismenu-item.parent
    > ul.mm-collapse
    > li
    > a {

        display: block !important;

        width: 100% !important;

        padding: 15px 20px !important;

        background: #ffffff !important;

        color: #333333 !important;

        font-size: 15px !important;
        font-weight: 400 !important;
        line-height: 1.4 !important;

        text-align: left !important;
        text-decoration: none !important;

        white-space: normal !important;

        box-sizing: border-box !important;
    }


    /* Child hover */
    .metismenu.mod-menu
    > .metismenu-item.parent
    > ul.mm-collapse
    > li
    > a:hover {

        background: #f8f4f1 !important;

        color: #df7d70 !important;
    }

}

/* =========================================================
   MENU ARROW CLEANUP
   ========================================================= */

@media (min-width: 901px) {

    /* Remove Cassiopeia / MetisMenu dropdown arrow under parent */
    .metismenu.mod-menu
    > .metismenu-item.parent
    > button::after,
    .metismenu.mod-menu
    > .metismenu-item.parent
    > a::after {
        display: none !important;
        content: none !important;
    }

    /* Hide any separate toggle arrow button */
    .metismenu.mod-menu
    > .metismenu-item.parent
    > button.mm-toggler {
        display: none !important;
    }


    /* Submenu item that has ANOTHER submenu */
    .metismenu.mod-menu
    ul.mm-collapse
    > li.parent
    > a {
        position: relative !important;
        padding-right: 42px !important;
    }

    /* Right arrow */
    .metismenu.mod-menu
    ul.mm-collapse
    > li.parent
    > a::after {
        content: "›" !important;

        display: block !important;

        position: absolute !important;
        right: 18px !important;
        top: 50% !important;

        transform: translateY(-50%) !important;

        color: #33566d !important;

        font-size: 24px !important;
        line-height: 1 !important;
        font-weight: 400 !important;
    }

    .metismenu.mod-menu
    ul.mm-collapse
    > li.parent
    > a:hover::after {
        color: #df7d70 !important;
    }

}

/* =========================================================
   FINAL DESKTOP MENU ARROWS
   ========================================================= */

@media (min-width: 901px) {

    /* REMOVE the separate down-arrow button under ΓυνΑΙΚΟΛΟΓΙΑ */
    .metismenu.mod-menu > li.metismenu-item.parent > button,
    .metismenu.mod-menu > li.metismenu-item.parent > .mm-toggler,
    .metismenu.mod-menu > li.metismenu-item.parent > button.mm-toggler,
    .metismenu.mod-menu > li.metismenu-item.parent > button[class*="toggler"] {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
    }


    /* Keep parent title properly aligned */
    .metismenu.mod-menu > li.metismenu-item.parent > a {
        display: block !important;
        padding: 19px 34px !important;
    }


    /* SECOND-LEVEL ITEMS THAT HAVE CHILDREN */
    .metismenu.mod-menu ul.mm-collapse > li.parent {
        position: relative !important;
    }

    .metismenu.mod-menu ul.mm-collapse > li.parent > a {
        position: relative !important;
        padding-right: 45px !important;
    }


    /* RIGHT ARROW › */
    .metismenu.mod-menu ul.mm-collapse > li.parent > a::after {
        content: "›" !important;
        display: block !important;

        position: absolute !important;
        right: 18px !important;
        top: 50% !important;

        transform: translateY(-50%) !important;

        font-size: 24px !important;
        font-weight: 400 !important;
        line-height: 1 !important;

        color: #33566d !important;
    }

    .metismenu.mod-menu ul.mm-collapse > li.parent > a:hover::after {
        color: #df7d70 !important;
    }

}

/* =========================================================
   METISMENU - TOP LEVEL + NESTED DROPDOWNS
   ========================================================= */

@media (min-width: 901px) {

    /* -----------------------------------------------------
       REMOVE ONLY THE TOP-LEVEL DOWN ARROW
       ----------------------------------------------------- */

   /* Hide toggle buttons ONLY on the FIRST menu level */
.metismenu.mod-menu > li > button,
.clinic-main-menu > li > button {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}

    /* -----------------------------------------------------
       SECOND LEVEL PARENT
       e.g. Τεστ Παπανικολάου & HPV
       ----------------------------------------------------- */

    .metismenu.mod-menu
    > li.parent
    > ul.mm-collapse
    > li.parent {
        position: relative !important;
    }


    /* Keep its title usable */
    .metismenu.mod-menu
    > li.parent
    > ul.mm-collapse
    > li.parent
    > a {
        position: relative !important;

        display: block !important;

        padding-right: 48px !important;
    }


    /* RIGHT ARROW */
    .metismenu.mod-menu
    > li.parent
    > ul.mm-collapse
    > li.parent
    > a::after {

        content: "›" !important;

        display: block !important;

        position: absolute !important;

        right: 18px !important;
        top: 50% !important;

        transform: translateY(-50%) !important;

        color: #33566d !important;

        font-size: 25px !important;
        font-weight: 400 !important;
        line-height: 1 !important;
    }


    /* -----------------------------------------------------
       THIRD LEVEL FLY-OUT
       ----------------------------------------------------- */

    .metismenu.mod-menu
    > li.parent
    > ul.mm-collapse
    > li.parent
    > ul.mm-collapse {

        display: block !important;

        position: absolute !important;

        top: 0 !important;
        left: 100% !important;

        width: 320px !important;
        min-width: 320px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;

        border: 1px solid #e8e8e8 !important;

        box-shadow:
            0 12px 30px rgba(0,0,0,.12) !important;

        opacity: 0 !important;
        visibility: hidden !important;

        transform: translateX(8px);

        pointer-events: none !important;

        z-index: 100000 !important;

        transition:
            opacity .18s ease,
            transform .18s ease,
            visibility .18s ease !important;
    }


    /* SHOW THIRD LEVEL ON HOVER */

    .metismenu.mod-menu
    > li.parent
    > ul.mm-collapse
    > li.parent:hover
    > ul.mm-collapse {

        opacity: 1 !important;
        visibility: visible !important;

        transform: translateX(0);

        pointer-events: auto !important;
    }


    /* THIRD LEVEL ITEMS */

    .metismenu.mod-menu
    > li.parent
    > ul.mm-collapse
    > li.parent
    > ul.mm-collapse
    > li {

        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        border-bottom: 1px solid #eeeeee !important;

        background: #ffffff !important;
    }


    .metismenu.mod-menu
    > li.parent
    > ul.mm-collapse
    > li.parent
    > ul.mm-collapse
    > li
    > a {

        display: block !important;

        width: 100% !important;

        padding: 15px 20px !important;

        color: #333333 !important;
        background: #ffffff !important;

        font-size: 15px !important;
        font-weight: 400 !important;

        text-align: left !important;
        text-decoration: none !important;
    }


    .metismenu.mod-menu
    > li.parent
    > ul.mm-collapse
    > li.parent
    > ul.mm-collapse
    > li
    > a:hover {

        background: #f8f4f1 !important;

        color: #df7d70 !important;
    }

}

/* =========================================================
   SECOND-LEVEL MENU: RIGHT ARROW + FLYOUT
   ========================================================= */

@media (min-width: 901px) {

    /* A second-level item that really contains another submenu */
    .metismenu.mod-menu
    > li
    > ul.mm-collapse
    > li:has(> ul.mm-collapse) {
        position: relative !important;
    }

    /* Its link */
    .metismenu.mod-menu
    > li
    > ul.mm-collapse
    > li:has(> ul.mm-collapse)
    > a {
        position: relative !important;
        display: block !important;
        padding-right: 48px !important;
    }

    /* RIGHT ARROW */
    .metismenu.mod-menu
    > li
    > ul.mm-collapse
    > li:has(> ul.mm-collapse)
    > a::after {
        content: "›" !important;

        display: block !important;
        position: absolute !important;

        right: 18px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;

        color: #33566d !important;

        font-size: 25px !important;
        font-weight: 400 !important;
        line-height: 1 !important;
    }

    /* THIRD LEVEL - hidden normally */
    .metismenu.mod-menu
    > li
    > ul.mm-collapse
    > li:has(> ul.mm-collapse)
    > ul.mm-collapse {
        display: block !important;

        position: absolute !important;

        top: 0 !important;
        left: 100% !important;

        width: 300px !important;
        min-width: 300px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;

        border: 1px solid #e8e8e8 !important;
        box-shadow: 0 12px 30px rgba(0,0,0,.12) !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;

        transform: translateX(6px);

        z-index: 100000 !important;
    }

    /* Show third level when hovering */
    .metismenu.mod-menu
    > li
    > ul.mm-collapse
    > li:has(> ul.mm-collapse):hover
    > ul.mm-collapse {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;

        transform: translateX(0);
    }

}

/* RIGHT ARROW FOR ITEMS THAT HAVE A SECOND-LEVEL SUBMENU */
.clinic-main-menu > li > ul > li.deeper.parent > a {
    position: relative !important;
    padding-right: 45px !important;
}

.clinic-main-menu > li > ul > li.deeper.parent > a::after {
    content: "›" !important;
    position: absolute !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    font-size: 26px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    color: #355b70 !important;

    display: block !important;
}

/* =========================================================
   THIRD LEVEL SUBMENU - FLY OUT RIGHT
   ========================================================= */

@media (min-width: 901px) {

    .clinic-main-menu > li > ul > li.deeper.parent {
        position: relative !important;
    }

    .clinic-main-menu > li > ul > li.deeper.parent > ul {
        display: block !important;

        position: absolute !important;
        top: 0 !important;
        left: 100% !important;

        width: 300px !important;
        min-width: 300px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;
        border: 1px solid #e8e8e8 !important;

        box-shadow: 0 12px 30px rgba(0,0,0,.12) !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;

        transform: translateX(6px);

        z-index: 100000 !important;

        transition:
            opacity .18s ease,
            transform .18s ease,
            visibility .18s ease !important;
    }

    .clinic-main-menu > li > ul > li.deeper.parent:hover > ul {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;

        transform: translateX(0);
    }

    .clinic-main-menu > li > ul > li.deeper.parent > ul > li {
        display: block !important;
        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        border-bottom: 1px solid #eeeeee !important;
        background: #ffffff !important;
    }

    .clinic-main-menu > li > ul > li.deeper.parent > ul > li > a {
        display: block !important;
        width: 100% !important;

        padding: 15px 20px !important;

        color: #333333 !important;
        background: #ffffff !important;

        font-size: 15px !important;
        font-weight: 400 !important;

        text-align: left !important;
        text-decoration: none !important;
    }

    .clinic-main-menu > li > ul > li.deeper.parent > ul > li > a:hover {
        background: #f8f4f1 !important;
        color: #df7d70 !important;
    }

}

/* =========================================================
   TOPIC PAGE – CONTENT SPACING / TYPOGRAPHY FINE TUNING
   ========================================================= */

/* Main text readability */
.topic-content-main p {
    line-height: 1.75;
    margin-top: 0;
    margin-bottom: 22px;
}


/* Main section headings */
.topic-content-main h2 {
    margin-top: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
}


/* First heading should not have huge space above */
.topic-content-main > h2:first-child {
    margin-top: 0;
}


/* More space AFTER checklist/card groups */
.topic-content-main .topic-checklist {
    margin-top: 28px;
    margin-bottom: 48px;
}


/* Individual cards */
.topic-check-item {
    padding: 24px 26px;
    line-height: 1.55;
}


/* Heading inside cards */
.topic-check-item strong {
    display: block;
    margin-bottom: 8px;
}


/* Notes / important boxes */
.topic-content-main .topic-note {
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 22px 26px;
    line-height: 1.65;
}


/* Prevent heading immediately after note/card
   from looking attached to previous section */
.topic-note + h2,
.topic-checklist + h2 {
    margin-top: 52px;
}


/* Slightly narrower paragraphs for better reading */
.topic-content-main > p {
    max-width: 850px;
}


/* Mobile */
@media (max-width: 768px) {

    .topic-content-main h2 {
        margin-top: 40px;
        margin-bottom: 16px;
    }

    .topic-content-main p {
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .topic-content-main .topic-checklist {
        margin-top: 22px;
        margin-bottom: 38px;
    }

    .topic-content-main .topic-note {
        margin-top: 24px;
        margin-bottom: 40px;
        padding: 20px;
    }

}

/* =========================================
   UNIFIED SERVICE LANDING PAGE CARDS
   Γυναικολογία - Μαιευτική - Γονιμότητα - Εμμηνόπαυση
   ========================================= */

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}


/* BASIC CARD */
.services-page-grid .services-category-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(52, 80, 97, 0.12);
    border-radius: 12px;
    padding: 28px 30px;
    overflow: hidden;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease;
}


/* ALTERNATING WARM BACKGROUNDS
   creates the same pattern as Γυναικολογία */
.services-page-grid .services-category-card:nth-child(4n+1),
.services-page-grid .services-category-card:nth-child(4n+4) {
    background: #fbf7f5;
}


/* TITLE */
.services-page-grid .services-category-card h2 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #345061;
}


/* TEXT */
.services-page-grid .services-category-card p {
    margin-bottom: 20px;
}


/* "ΠΕΡΙΣΣΟΤΕΡΑ" LINK */
.services-page-grid .services-category-card > a {
    display: inline-block;
    color: #df7d70;
    font-weight: 600;
    text-decoration: none;

    transition:
        color 0.22s ease,
        transform 0.22s ease;
}


/* SALMON LINE ON LEFT - hidden normally */
.services-page-grid .services-category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: #df7d70;

    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}


/* CARD HOVER */
.services-page-grid .services-category-card:hover {
    transform: translateY(-2px);
    border-color: rgba(223, 125, 112, 0.28);
    box-shadow: 0 10px 28px rgba(45, 65, 78, 0.10);
}


/* SHOW LEFT SALMON LINE */
.services-page-grid .services-category-card:hover::before {
    transform: scaleY(1);
}


/* MOVE "ΠΕΡΙΣΣΟΤΕΡΑ" SLIGHTLY */
.services-page-grid .services-category-card:hover > a {
    transform: translateX(3px);
}


/* MOBILE */
@media (max-width: 767px) {

    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .services-page-grid .services-category-card {
        padding: 24px;
    }

}

/* =========================================
   FINAL CASSIOPEIA MOBILE DRAWER MENU
   ========================================= */

@media (max-width: 991.98px) {

    /* Navigation area */
    .container-header .container-nav {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 60px !important;
        background: #fff !important;
    }


    /* Hamburger */
    .container-header .navbar-toggler {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        position: relative !important;
        z-index: 3001 !important;

        width: 46px !important;
        height: 42px !important;

        margin-left: auto !important;
        margin-right: 16px !important;

        background: #fff !important;
        color: #345061 !important;

        border: 1px solid rgba(52, 80, 97, 0.18) !important;
        border-radius: 8px !important;
    }


    /* RIGHT DRAWER */
    .container-header .navbar-collapse {
        position: fixed !important;

        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;

        width: 82vw !important;
        max-width: 360px !important;
        height: 100dvh !important;

        margin: 0 !important;
        padding: 85px 0 30px !important;

        background: #ffffff !important;

        border: 0 !important;
        border-left: 1px solid rgba(52, 80, 97, 0.10) !important;

        box-shadow: -10px 0 30px rgba(45, 65, 78, 0.18) !important;

        overflow-y: auto !important;
        overflow-x: hidden !important;

        z-index: 3000 !important;


        /* THIS IS THE IMPORTANT FIX */
        display: block !important;
        align-items: initial !important;
        justify-content: initial !important;
    }


    /* Menu itself MUST START AT TOP */
    .container-header .navbar-collapse .mod-menu,
    .container-header .navbar-collapse ul.mod-menu {
        display: block !important;

        position: static !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: none !important;
    }


    /* Top-level item */
    .container-header ul.mod-menu > li {
        display: block !important;
        position: relative !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        border-bottom: 1px solid rgba(52, 80, 97, 0.08) !important;
    }


    /* Top-level links */
    .container-header ul.mod-menu > li > a {
        display: block !important;

        width: 100% !important;

        padding: 17px 58px 17px 24px !important;

        margin: 0 !important;

        color: #345061 !important;
        background: transparent !important;

        text-align: left !important;

        font-weight: 600 !important;
        text-decoration: none !important;
    }


    /* Arrow button */
    .container-header ul.mod-menu > li > button.mm-toggler {
        position: absolute !important;

        top: 7px !important;
        right: 10px !important;
        left: auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 44px !important;
        height: 44px !important;

        margin: 0 !important;
        padding: 0 !important;

        border: 0 !important;
        background: transparent !important;

        color: #345061 !important;
    }


    /* Current page */
    .container-header ul.mod-menu > li.current > a,
    .container-header ul.mod-menu > li.active > a {
        color: #df7d70 !important;
        background: #fbf7f5 !important;

        border-left: 4px solid #df7d70 !important;
        padding-left: 20px !important;
    }


    /* Submenu */
    .container-header ul.mod-menu ul.mod-menu__sub {
        position: static !important;

        display: block;

        width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 4px 0 8px !important;

        background: #fbf7f5 !important;

        border: 0 !important;
        box-shadow: none !important;
    }


    /* Submenu links */
    .container-header ul.mod-menu ul.mod-menu__sub a {
        display: block !important;

        width: 100% !important;

        padding: 12px 22px 12px 38px !important;

        color: #345061 !important;

        font-size: 0.94rem !important;
        font-weight: 400 !important;

        line-height: 1.4 !important;

        text-align: left !important;
        white-space: normal !important;

        text-decoration: none !important;
    }


    /* Remove desktop underline effect */
    .container-header .mod-menu > li > a::after {
        display: none !important;
    }

}

/* =========================================
   FIX MOBILE DRAWER OPEN / CLOSED STATE
   ========================================= */

@media (max-width: 991.98px) {

    /* CLOSED */
    .container-header .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }

    /* OPEN */
    .container-header .navbar-collapse.collapse.show {
        display: block !important;
    }

    /* While Bootstrap is opening/closing it */
    .container-header .navbar-collapse.collapsing {
        display: block !important;
    }

}

/* =========================================
   FINAL MOBILE DRAWER POLISH
   ========================================= */

@media (max-width: 991.98px) {

    .container-header .navbar-collapse {
        width: 76vw !important;
        max-width: 340px !important;
        padding-top: 78px !important;
        background: #ffffff !important;
    }

    /* Keep hamburger/close button clearly visible */
    .container-header .navbar-toggler {
        position: fixed !important;
        top: 18px !important;
        right: 16px !important;

        margin: 0 !important;

        background: #ffffff !important;
        z-index: 3100 !important;
    }

    /* Softer spacing */
    .container-header ul.mod-menu > li > a {
        min-height: 54px !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    /* Active item */
    .container-header ul.mod-menu > li.current > a,
    .container-header ul.mod-menu > li.active > a {
        background: #fbf7f5 !important;
        border-left: 4px solid #df7d70 !important;
    }

}

/* =========================================
   DESKTOP MAIN MENU - CENTERED
   ========================================= */

@media (min-width: 992px) {

    /* Navigation area full width */
    .container-header .container-nav {
        width: 100% !important;
        max-width: none !important;
        display: flex !important;
        justify-content: center !important;
    }

    /* Menu module */
    .container-header .container-nav .navbar-collapse {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    /* Actual menu */
    .container-header .mod-menu {
        width: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;

        display: flex !important;
        justify-content: center !important;
        align-items: center !important;

        gap: 55px;
    }

    /* Individual items */
    .container-header .mod-menu > li {
        width: auto !important;
        flex: 0 0 auto !important;
    }

}

/* =========================================
   DESKTOP NAVIGATION — FULL WIDTH + CENTERED
   ========================================= */

@media (min-width: 992px) {

    /* Full-width grey navigation strip */
    .container-header .container-nav {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;

        background: #f5f5f5 !important;

        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Navigation collapse area */
    .container-header .navbar-collapse {
        width: auto !important;
        flex: 0 1 auto !important;

        display: flex !important;
        justify-content: center !important;
        align-items: center !important;

        margin: 0 auto !important;
    }

    /* Main menu */
    .container-header .mod-menu {
        width: auto !important;

        display: flex !important;
        justify-content: center !important;
        align-items: center !important;

        margin: 0 auto !important;
        padding: 0 !important;

        gap: 0 !important;
    }

    /* Each main navigation item */
    .container-header .mod-menu > li {
        position: relative !important;
        flex: 0 0 auto !important;

        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Main navigation links */
    .container-header .mod-menu > li > a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        min-height: 68px !important;

        padding-left: 42px !important;
        padding-right: 42px !important;

        white-space: nowrap !important;
    }

}

/* =========================================
   MEET THE DOCTOR PAGE
   ========================================= */

.doctor-hero,
.doctor-philosophy,
.doctor-career,
.doctor-speciality,
.doctor-clinical,
.doctor-personal,
.doctor-cta {
    width: 100%;
}

.doctor-hero {
    background: #fbf7f5;
    padding: 80px 30px;
}

.doctor-hero-inner,
.doctor-speciality-inner,
.doctor-section {
    max-width: 1180px;
    margin: 0 auto;
}

.doctor-hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.doctor-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #df7d70;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.doctor-hero h1 {
    margin: 0 0 8px;
    color: #345061;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.08;
}

.doctor-credentials {
    margin-bottom: 18px;
    color: #df7d70;
    font-size: 1.15rem;
    font-weight: 600;
}

.doctor-hero h2 {
    margin-bottom: 25px;
    color: #345061;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
}

.doctor-hero p,
.doctor-speciality p,
.doctor-personal p {
    color: #4c5c65;
    font-size: 1.04rem;
    line-height: 1.8;
}

.doctor-hero-photo {
    min-height: 530px;
    border-radius: 18px;
    background: #f0ece9;
    overflow: hidden;
}

.doctor-hero-photo img,
.doctor-speciality-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-button {
    display: inline-block;
    margin-top: 15px;
    padding: 13px 22px;
    border: 1px solid #df7d70;
    border-radius: 7px;
    color: #df7d70;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.doctor-button:hover {
    background: #df7d70;
    color: #ffffff;
    text-decoration: none;
}


/* PHILOSOPHY */

.doctor-philosophy {
    padding: 90px 30px;
    background: #ffffff;
}

.doctor-section-narrow {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.doctor-section-narrow h2,
.doctor-section-heading h2,
.doctor-speciality h2,
.doctor-cta h2 {
    color: #345061;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.doctor-section-narrow > p {
    color: #4c5c65;
    font-size: 1.06rem;
    line-height: 1.8;
}

.doctor-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.doctor-value {
    padding: 25px 15px;
    border-top: 3px solid #df7d70;
}

.doctor-value strong {
    display: block;
    margin-bottom: 8px;
    color: #345061;
    font-size: 1.05rem;
}

.doctor-value span {
    color: #69777e;
    font-size: 0.9rem;
    line-height: 1.5;
}


/* CAREER */

.doctor-career {
    padding: 90px 30px;
    background: #fbf7f5;
}

.doctor-section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.doctor-section-heading p {
    color: #4c5c65;
    font-size: 1.05rem;
    line-height: 1.8;
}

.doctor-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 30px;
}

.doctor-timeline::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 3%;
    right: 3%;
    height: 2px;
    background: #df7d70;
    opacity: 0.4;
}

.doctor-timeline-item {
    position: relative;
    padding-top: 55px;
}

.doctor-timeline-number {
    position: absolute;
    top: 4px;
    left: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;
    background: #df7d70;
    color: #ffffff;
    font-weight: 700;
}

.doctor-timeline-item h3 {
    color: #345061;
    font-size: 1.25rem;
}

.doctor-timeline-item strong {
    display: block;
    min-height: 48px;
    margin-bottom: 10px;
    color: #df7d70;
}

.doctor-timeline-item p {
    color: #5c6a71;
    line-height: 1.65;
}


/* SPECIALITY */

.doctor-speciality {
    padding: 90px 30px;
    background: #ffffff;
}

.doctor-speciality-inner {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.doctor-speciality-photo {
    min-height: 500px;
    border-radius: 16px;
    background: #f0ece9;
    overflow: hidden;
}

.doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.doctor-tags span {
    padding: 8px 14px;
    border-radius: 30px;
    background: #fbf7f5;
    color: #345061;
    font-size: 0.9rem;
}


/* CLINICAL CARE */

.doctor-clinical {
    padding: 90px 30px;
    background: #fbf7f5;
}

.doctor-clinical-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.doctor-clinical-item {
    position: relative;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(52, 80, 97, 0.10);
    border-radius: 12px;
    overflow: hidden;
}

.doctor-clinical-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #df7d70;
}

.doctor-clinical-item h3 {
    color: #345061;
}

.doctor-clinical-item p {
    color: #5c6a71;
    line-height: 1.65;
}


/* PERSONAL PHILOSOPHY */

.doctor-personal {
    padding: 100px 30px;
    background: #ffffff;
}

.doctor-personal-lead {
    color: #345061 !important;
    font-size: 1.35rem !important;
    font-weight: 500;
}


/* CTA */

.doctor-cta {
    padding: 85px 30px;
    background: #345061;
    text-align: center;
}

.doctor-cta-inner {
    max-width: 750px;
    margin: 0 auto;
}

.doctor-cta h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

.doctor-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.7;
}

.doctor-cta .doctor-button {
    margin-top: 20px;
    background: #df7d70;
    border-color: #df7d70;
    color: #ffffff;
}

.doctor-cta .doctor-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #345061;
}


/* MOBILE */

@media (max-width: 991.98px) {

    .doctor-hero {
        padding: 55px 22px;
    }

    .doctor-hero-inner,
    .doctor-speciality-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .doctor-hero-photo {
        min-height: 450px;
    }

    .doctor-values,
    .doctor-timeline,
    .doctor-clinical-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doctor-timeline::before {
        display: none;
    }

}


@media (max-width: 600px) {

    .doctor-hero,
    .doctor-philosophy,
    .doctor-career,
    .doctor-speciality,
    .doctor-clinical,
    .doctor-personal,
    .doctor-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .doctor-values,
    .doctor-timeline,
    .doctor-clinical-grid {
        grid-template-columns: 1fr;
    }

    .doctor-hero-photo,
    .doctor-speciality-photo {
        min-height: 360px;
    }

    .doctor-section-narrow {
        text-align: left;
    }

}

/* Meet the Doctor - Surgery specialty tags */

.doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.doctor-tags span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #e6a098;
    border-radius: 20px;
    color: #3d5d70;
    background: #faf6f3;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

/* ==================================================
   MEET THE DOCTOR - ENDOSCOPIC SURGERY TAGS
   ================================================== */

.doctor-speciality .doctor-tags {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.doctor-speciality .doctor-tags span {
    display: inline-block !important;
    padding: 8px 14px;
    background: #faf6f3;
    border: 1px solid #e59a91;
    border-radius: 20px;
    color: #3d5d70;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.doctor-speciality .doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.doctor-speciality .doctor-tags a {
    display: inline-block;
    padding: 8px 14px;
    background: #faf6f3;
    border: 1px solid #e59a91;
    border-radius: 20px;
    color: #3d5d70;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    pointer-events: none;
}

/* =========================================
   MEET THE DOCTOR - SURGERY TAGS
   ========================================= */

.doctor-speciality .doctor-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 28px !important;
}

.doctor-speciality .doctor-tags a {
    display: inline-block !important;
    padding: 8px 14px !important;

    background: #faf6f3 !important;
    border: 1px solid #e59a91 !important;
    border-radius: 20px !important;

    color: #3d5d70 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;

    text-decoration: none !important;
    pointer-events: none !important;
    cursor: default !important;
}

/* =========================================
   MEET THE DOCTOR - CLINICAL CARE CARDS
   ========================================= */

.doctor-clinical-grid .doctor-clinical-item {
    display: block;
    position: relative;

    padding: 30px 30px 28px;

    background: #ffffff;
    border: 1px solid rgba(52, 80, 97, 0.10);
    border-radius: 12px;

    color: inherit;
    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease;
}

.doctor-clinical-grid .doctor-clinical-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: #df7d70;
}

.doctor-clinical-grid .doctor-clinical-item h3 {
    margin-top: 0;
    color: #345061;
}

.doctor-clinical-grid .doctor-clinical-item p {
    color: #5c6a71;
    line-height: 1.65;
}

.doctor-card-link {
    display: inline-block;
    margin-top: 8px;

    color: #df7d70;
    font-weight: 600;
    font-size: 0.92rem;

    transition: transform 0.22s ease;
}

.doctor-clinical-grid .doctor-clinical-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(45, 65, 78, 0.10);
    border-color: rgba(223, 125, 112, 0.25);
    background: #fdfaf8;
}

.doctor-clinical-grid .doctor-clinical-item:hover .doctor-card-link {
    transform: translateX(3px);
}

/* =========================================
   MEET THE DOCTOR - PHILOSOPHY QUOTE
   ========================================= */

.doctor-personal-quote {
    max-width: 760px;
    margin: 34px auto;
    padding: 24px 30px;

    background: #fbf7f5;
    border-left: 4px solid #df7d70;
    border-radius: 8px;

    color: #345061;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.65;

    text-align: left;
}

/* =========================================
   MEET THE DOCTOR - FINAL POLISH
   ========================================= */

.doctor-personal {
    padding-bottom: 135px !important;
}

.doctor-cta {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
}

.doctor-cta p {
    margin-bottom: 10px;
}

.doctor-cta .doctor-button {
    padding: 14px 28px !important;
    margin-top: 22px !important;
}

/* =========================================
   MOBILE SPACING POLISH
   ========================================= */

@media (max-width: 767px) {

    /* General sections */
    .doctor-section,
    .doctor-speciality,
    .doctor-clinical,
    .doctor-personal {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    /* Doctor introduction */
    .doctor-hero {
        padding-top: 60px !important;
        padding-bottom: 70px !important;
    }

    /* Education section */
    .doctor-timeline {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    /* Clinical care */
    .doctor-clinical {
        padding-bottom: 70px !important;
    }

    /* Philosophy */
    .doctor-personal {
        padding-top: 75px !important;
        padding-bottom: 85px !important;
    }

    /* Final CTA */
    .doctor-cta {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }
}

/* =========================================
   TEAM PAGE
   ========================================= */

.team-hero,
.team-members,
.team-support,
.team-values-section,
.team-philosophy,
.team-cta {
    width: 100%;
}

.team-section,
.team-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.team-eyebrow,
.team-role {
    display: block;
    margin-bottom: 14px;

    color: #df7d70;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}


/* HERO */

.team-hero {
    padding: 95px 30px;
    background: #fbf7f5;
    text-align: center;
}

.team-hero-inner {
    max-width: 900px;
}

.team-hero h1 {
    margin: 0 0 25px;

    color: #345061;

    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: 1.1;
}

.team-hero p {
    max-width: 800px;
    margin: 0 auto;

    color: #53646d;

    font-size: 1.1rem;
    line-height: 1.8;
}


/* SECTION HEADINGS */

.team-section-heading {
    max-width: 780px;
    margin-bottom: 65px;
}

.team-section-heading h2,
.team-support h2,
.team-philosophy h2,
.team-cta h2 {
    color: #345061;

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.team-section-heading p,
.team-support p,
.team-philosophy p {
    color: #53646d;
    font-size: 1.04rem;
    line-height: 1.8;
}

.team-section-heading-centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* TEAM MEMBERS */

.team-members {
    padding: 100px 30px;
    background: #ffffff;
}

.team-profile {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: 70px;
    align-items: center;

    margin-bottom: 110px;
}

.team-profile:last-child {
    margin-bottom: 0;
}

.team-profile-reverse .team-profile-photo {
    order: 2;
}

.team-profile-reverse .team-profile-content {
    order: 1;
}

.team-profile-photo {
    min-height: 500px;

    background: #f0ece9;

    border-radius: 18px;

    overflow: hidden;
}

.team-profile-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.team-profile-content h2 {
    margin-bottom: 8px;

    color: #345061;

    font-size: clamp(2rem, 3vw, 2.8rem);
}

.team-credentials {
    margin-bottom: 22px;

    color: #df7d70;

    font-size: 1.05rem;
    font-weight: 600;
}

.team-profile-content p {
    color: #53646d;

    font-size: 1.03rem;
    line-height: 1.8;
}

.team-button {
    display: inline-block;

    margin-top: 15px;

    padding: 12px 20px;

    border: 1px solid #df7d70;
    border-radius: 7px;

    color: #df7d70;

    font-weight: 600;
    text-decoration: none;

    transition: 0.2s ease;
}

.team-button:hover {
    background: #df7d70;
    color: #ffffff;

    text-decoration: none;
}


/* MIDWIFE TAGS */

.team-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 26px;
}

.team-tags a {
    display: inline-block;

    padding: 8px 14px;

    background: #faf6f3;

    border: 1px solid #e59a91;
    border-radius: 20px;

    color: #3d5d70;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;

    text-decoration: none;

    pointer-events: none;
}


/* SECRETARIAL SUPPORT */

.team-support {
    padding: 90px 30px;

    background: #fbf7f5;
}

.team-support-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    gap: 70px;
    align-items: center;
}

.team-support-card {
    padding: 38px;

    background: #ffffff;

    border: 1px solid rgba(52, 80, 97, 0.10);
    border-radius: 14px;

    box-shadow: 0 12px 30px rgba(45, 65, 78, 0.07);
}

.team-support-card h3 {
    color: #345061;

    font-size: 1.4rem;
}


/* HOW WE WORK */

.team-values-section {
    padding: 100px 30px;

    background: #ffffff;
}

.team-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.team-value-card {
    position: relative;

    padding: 30px 28px;

    background: #fbf7f5;

    border: 1px solid rgba(52, 80, 97, 0.09);
    border-radius: 12px;

    overflow: hidden;
}

.team-value-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: #df7d70;
}

.team-value-card h3 {
    color: #345061;
}

.team-value-card p {
    margin-bottom: 0;

    color: #5c6a71;

    line-height: 1.65;
}


/* PHILOSOPHY */

.team-philosophy {
    padding: 105px 30px;

    background: #fbf7f5;
}

.team-philosophy-inner {
    max-width: 850px;
    margin: 0 auto;

    text-align: center;
}

.team-philosophy-lead {
    margin: 30px auto !important;

    color: #345061 !important;

    font-size: 1.3rem !important;
    font-weight: 600;
}


/* CTA */

.team-cta {
    padding: 95px 30px;

    background: #345061;

    text-align: center;
}

.team-cta-inner {
    max-width: 760px;
    margin: 0 auto;
}

.team-cta h2 {
    color: #ffffff;

    margin-bottom: 20px;
}

.team-cta p {
    color: rgba(255,255,255,0.85);

    font-size: 1.05rem;
    line-height: 1.75;
}

.team-cta-button {
    display: inline-block;

    margin-top: 22px;

    padding: 14px 28px;

    background: #df7d70;

    border: 1px solid #df7d70;
    border-radius: 7px;

    color: #ffffff;

    font-weight: 600;

    text-decoration: none;

    transition: 0.2s ease;
}

.team-cta-button:hover {
    background: #ffffff;
    border-color: #ffffff;

    color: #345061;

    text-decoration: none;
}


/* TABLET */

@media (max-width: 991.98px) {

    .team-profile,
    .team-support-inner {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .team-profile-reverse .team-profile-photo,
    .team-profile-reverse .team-profile-content {
        order: initial;
    }

    .team-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .team-hero,
    .team-members,
    .team-support,
    .team-values-section,
    .team-philosophy,
    .team-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .team-hero {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .team-members {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .team-profile {
        margin-bottom: 80px;
    }

    .team-profile-photo {
        min-height: 390px;
    }

    .team-values-grid {
        grid-template-columns: 1fr;
    }

    .team-support,
    .team-values-section,
    .team-philosophy {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .team-cta {
        padding-top: 75px;
        padding-bottom: 75px;
    }

}

/* =========================================
   Ο ΧΩΡΟΣ ΜΑΣ
   ========================================= */

.clinic-section,
.clinic-hero-inner,
.clinic-feature-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.clinic-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #df7d70;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}


/* HERO */

.clinic-hero {
    padding: 95px 30px;
    background: #fbf7f5;
    text-align: center;
}

.clinic-hero-inner {
    max-width: 900px;
}

.clinic-hero h1 {
    margin: 0 0 24px;
    color: #345061;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.clinic-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #53646d;
    font-size: 1.1rem;
    line-height: 1.8;
}


/* INTRO */

.clinic-intro {
    padding: 95px 30px;
    background: #ffffff;
}

.clinic-section-narrow {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.clinic-section-narrow h2,
.clinic-section-heading h2,
.clinic-feature-text h2,
.clinic-location h2,
.clinic-cta h2 {
    color: #345061;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.clinic-section-narrow p,
.clinic-section-heading p,
.clinic-feature-text p,
.clinic-location p {
    color: #53646d;
    font-size: 1.04rem;
    line-height: 1.8;
}


/* ========================================
   FEATURE SECTIONS
   ======================================== */

.clinic-feature {
    padding: 90px 30px;
    background: #fbf7f5;
}

.clinic-feature-alt {
    background: #ffffff;
}

.clinic-feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Photo container */
.clinic-feature-photo {
    overflow: hidden;
    border-radius: 18px;
}

/* When there is a real image */
.clinic-feature-photo:has(img) {
    min-height: 0;
    height: auto;
}

/* When the photo container is still empty */
.clinic-feature-photo:empty {
    min-height: 420px;
    background: #f3efec;
    border-radius: 18px;
}

/* Actual image */
.clinic-feature-photo img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

/* Mobile */
@media (max-width: 768px) {

    .clinic-feature {
        padding: 60px 20px;
    }

    .clinic-feature-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .clinic-feature-photo:empty {
        min-height: 280px;
    }
}

/* EQUIPMENT */

.clinic-equipment {
    padding: 95px 30px;
    background: #fbf7f5;
}

.clinic-section-heading {
    max-width: 780px;
    margin-bottom: 55px;
}

.clinic-section-heading-centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.clinic-equipment-grid,
.clinic-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.clinic-equipment-card,
.clinic-value-card {
    position: relative;
    padding: 30px 28px;
    background: #ffffff;
    border: 1px solid rgba(52,80,97,0.10);
    border-radius: 12px;
    overflow: hidden;
}

.clinic-equipment-card::before,
.clinic-value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #df7d70;
}

.clinic-equipment-card h3,
.clinic-value-card h3 {
    color: #345061;
}

.clinic-equipment-card p,
.clinic-value-card p {
    color: #5c6a71;
    line-height: 1.65;
}


/* SAFETY */

.clinic-safety {
    padding: 95px 30px;
    background: #ffffff;
}


/* GALLERY */

.clinic-gallery-section {
    padding: 95px 30px;
    background: #fbf7f5;
}

.clinic-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.clinic-gallery-item {
    aspect-ratio: 4 / 3;
    background: #eee9e6;
    border-radius: 12px;
    overflow: hidden;
}

.clinic-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* LOCATION */

.clinic-location {
    padding: 95px 30px;
    background: #ffffff;
}

.clinic-location-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.clinic-location-card {
    padding: 38px;
    background: #fbf7f5;
    border: 1px solid rgba(52,80,97,0.10);
    border-radius: 14px;
}

.clinic-location-card h3 {
    color: #345061;
}

.clinic-button {
    display: inline-block;
    margin-top: 15px;
    padding: 13px 22px;
    border: 1px solid #df7d70;
    border-radius: 7px;
    color: #df7d70;
    font-weight: 600;
    text-decoration: none;
}

.clinic-button:hover {
    background: #df7d70;
    color: #ffffff;
}


/* CTA */

.clinic-cta {
    padding: 95px 30px;
    background: #345061;
    text-align: center;
}

.clinic-cta-inner {
    max-width: 760px;
    margin: 0 auto;
}

.clinic-cta h2 {
    color: #ffffff;
}

.clinic-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.75;
}

.clinic-cta-button {
    display: inline-block;
    margin-top: 22px;
    padding: 14px 28px;
    background: #df7d70;
    border-radius: 7px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}


/* TABLET */

@media (max-width: 991.98px) {

    .clinic-feature-inner,
    .clinic-location-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .clinic-equipment-grid,
    .clinic-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clinic-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .clinic-hero,
    .clinic-intro,
    .clinic-feature,
    .clinic-equipment,
    .clinic-safety,
    .clinic-gallery-section,
    .clinic-location,
    .clinic-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .clinic-hero {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .clinic-intro,
    .clinic-feature,
    .clinic-equipment,
    .clinic-safety,
    .clinic-gallery-section,
    .clinic-location {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .clinic-equipment-grid,
    .clinic-values-grid,
    .clinic-gallery {
        grid-template-columns: 1fr;
    }

    .clinic-feature-photo {
        min-height: 360px;
    }

    .clinic-cta {
        padding-top: 75px;
        padding-bottom: 75px;
    }
}

/* =========================================
   BLOG HERO
   ========================================= */

.blog-hero {
    width: 100%;
    padding: 85px 30px 75px;
    background: #fbf7f5;
    text-align: center;
}

.blog-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.blog-eyebrow {
    display: block;
    margin-bottom: 14px;

    color: #df7d70;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.blog-hero h1 {
    max-width: 850px;
    margin: 0 auto 22px;

    color: #345061;

    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.12;
}

.blog-hero p {
    max-width: 720px;
    margin: 0 auto;

    color: #53646d;

    font-size: 1.07rem;
    line-height: 1.8;
}


/* CATEGORY BUTTONS */

.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

.blog-categories a {
    display: inline-block;

    padding: 10px 18px;

    border: 1px solid #df7d70;
    border-radius: 24px;

    background: #ffffff;

    color: #345061;

    font-size: 0.92rem;
    font-weight: 600;

    text-decoration: none;

    transition: 0.2s ease;
}

.blog-categories a:hover {
    background: #df7d70;
    color: #ffffff;
}


/* MOBILE */

@media (max-width: 600px) {

    .blog-hero {
        padding: 60px 20px;
    }

    .blog-categories {
        justify-content: flex-start;
    }

    .blog-categories a {
        padding: 9px 14px;
    }

}

/* =========================================================
   ARTICLES & INFORMATION - JOOMLA BLOG CARDS
   ========================================================= */


/* Joomla may put medical-blog on the blog element itself */
.blog.medical-blog,
.medical-blog.blog,
.medical-blog .blog {
    max-width: 1160px;
    margin: 55px auto 90px;
}


/* GRID */
.blog.medical-blog .blog-items,
.medical-blog.blog .blog-items,
.medical-blog .blog-items {
    gap: 28px;
}


/* INDIVIDUAL ARTICLE CARD */
.blog.medical-blog .blog-item,
.medical-blog.blog .blog-item,
.medical-blog .blog-item {
    height: 100%;

    background: #ffffff;
    border: 1px solid #eee7e3;
    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 6px 22px rgba(52, 80, 97, 0.06);
}


/* ARTICLE INNER CONTENT */
.blog.medical-blog .blog-item .item-content,
.medical-blog.blog .blog-item .item-content,
.medical-blog .blog-item .item-content {
    height: 100%;
    padding: 0 26px 28px;
}


/* IMAGE */
.blog.medical-blog .item-image,
.medical-blog.blog .item-image,
.medical-blog .item-image {
    margin: 0 0 24px !important;
}

.blog.medical-blog .item-image img,
.medical-blog.blog .item-image img,
.medical-blog .item-image img {
    display: block;

    width: 100%;
    height: 240px;

    object-fit: cover;

    border-radius: 0;
}


/* TITLE */
.blog.medical-blog .item-title,
.blog.medical-blog .item-title a,
.medical-blog.blog .item-title,
.medical-blog.blog .item-title a,
.medical-blog .item-title,
.medical-blog .item-title a {
    color: #345061 !important;
    text-decoration: none !important;
}

.blog.medical-blog .item-title,
.medical-blog.blog .item-title,
.medical-blog .item-title {
    margin: 0 0 14px;

    font-size: 1.45rem;
    line-height: 1.3;
    font-weight: 700;
}

.blog.medical-blog .item-title a:hover,
.medical-blog.blog .item-title a:hover,
.medical-blog .item-title a:hover {
    color: #df7d70 !important;
}


/* CATEGORY + DATE */
.blog.medical-blog .article-info,
.medical-blog.blog .article-info,
.medical-blog .article-info {
    margin: 0 0 18px;
    padding: 0;

    color: #7c898f;

    font-size: 0.82rem;
    line-height: 1.5;
}

.blog.medical-blog .article-info a,
.medical-blog.blog .article-info a,
.medical-blog .article-info a {
    color: #df7d70 !important;
    text-decoration: none !important;
}


/* INTRO TEXT */
.blog.medical-blog .blog-item p,
.medical-blog.blog .blog-item p,
.medical-blog .blog-item p {
    color: #53646d;

    font-size: 0.96rem;
    line-height: 1.7;
}


/* READ MORE */
.blog.medical-blog .readmore,
.medical-blog.blog .readmore,
.medical-blog .readmore {
    margin-top: 22px;
}

.blog.medical-blog .readmore a,
.medical-blog.blog .readmore a,
.medical-blog .readmore a {
    padding: 0 !important;

    border: 0 !important;
    background: transparent !important;

    color: #df7d70 !important;

    font-weight: 700;

    text-decoration: none !important;
    box-shadow: none !important;
}

.blog.medical-blog .readmore a:hover,
.medical-blog.blog .readmore a:hover,
.medical-blog .readmore a:hover {
    color: #345061 !important;
}


/* MOBILE */
@media (max-width: 767px) {

    .blog.medical-blog,
    .medical-blog.blog,
    .medical-blog .blog {
        margin-top: 35px;
    }

    .blog.medical-blog .item-image img,
    .medical-blog.blog .item-image img,
    .medical-blog .item-image img {
        height: 220px;
    }

    .blog.medical-blog .blog-item .item-content,
    .medical-blog.blog .blog-item .item-content,
    .medical-blog .blog-item .item-content {
        padding-left: 22px;
        padding-right: 22px;
        padding-bottom: 25px;
    }

    .blog.medical-blog .item-title,
    .medical-blog.blog .item-title,
    .medical-blog .item-title {
        font-size: 1.3rem;
    }

}

/* BLOG CARD FINAL POLISH */

.medical-blog .item-title a,
.blog.medical-blog .item-title a {
    color: #345061 !important;
    text-decoration: none !important;
}

.medical-blog .item-title a:hover,
.blog.medical-blog .item-title a:hover {
    color: #df7d70 !important;
}

.medical-blog .article-info,
.blog.medical-blog .article-info {
    color: #7b878d !important;
    font-size: 0.82rem !important;
}

.medical-blog .article-info a,
.blog.medical-blog .article-info a {
    color: #df7d70 !important;
}

.medical-blog .readmore a,
.blog.medical-blog .readmore a {
    color: #df7d70 !important;
    font-weight: 700 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* BLOG ARTICLE TITLE - FORCE SITE COLOUR */

.medical-blog h2.item-title,
.medical-blog h2.item-title a,
.blog.medical-blog h2.item-title,
.blog.medical-blog h2.item-title a {
    color: #345061 !important;
    text-decoration: none !important;
}

.medical-blog h2.item-title a:hover,
.blog.medical-blog h2.item-title a:hover {
    color: #df7d70 !important;
}

/* =========================================
   BLOG CARD FINAL POLISH
   Equal heights + bottom Read More + hover
   ========================================= */

.medical-blog .blog-item,
.blog.medical-blog .blog-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.medical-blog .blog-item:hover,
.blog.medical-blog .blog-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(52, 80, 97, 0.10);
}

/* Make the text area fill the remaining card height */
.medical-blog .blog-item .item-content,
.blog.medical-blog .blog-item .item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Push "Περισσότερα..." to the bottom */
.medical-blog .readmore,
.blog.medical-blog .readmore {
    margin-top: auto !important;
    padding-top: 18px;
}

/* =========================================
   FULL WIDTH - TEAM + DOCTOR + CLINIC
   ========================================= */

.team-page .container,
.doctor-page .container,
.clinic-page .container {
    width: 100% !important;
    max-width: 100% !important;
}

.team-page .item-page,
.doctor-page .item-page,
.clinic-page .item-page {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.team-page #sp-main-body,
.doctor-page #sp-main-body,
.clinic-page #sp-main-body {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* FULL-BLEED DOCTOR HERO */
.doctor-hero {
    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* FULL-BLEED TEAM HERO */
.team-hero {
    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* FULL-BLEED CLINIC HERO */
.clinic-hero {
    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* Hide the unwanted Helix3 mobile submenu toggler on desktop */
@media (min-width: 992px) {
    .mod-menu .mm-toggler {
        display: none !important;
    }
}

/* ========================================
   PREGNANCY INFECTIONS LANDING PAGE
   ======================================== */

.preg-infections-page {
    width: 100%;
    color: #405f72;
}

.preg-infections-inner {
    max-width: 1200px;
    margin: 0 auto;
}


/* HERO */

.preg-infections-hero {
    background: #fbf7f5;
    padding: 110px 30px;
    text-align: center;
}

.preg-infections-hero .preg-infections-inner {
    max-width: 900px;
}

.preg-infections-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: #d9867d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.preg-infections-hero h1 {
    margin: 0 0 25px;
    color: #405f72;
    font-size: 58px;
    line-height: 1.08;
    font-weight: 700;
}

.preg-infections-hero p {
    max-width: 820px;
    margin: 0 auto;
    color: #626262;
    font-size: 18px;
    line-height: 1.8;
}


/* INTRO */

.preg-infections-intro {
    padding: 95px 30px 110px;
    background: #ffffff;
    text-align: center;
}

.preg-infections-intro h2 {
    margin: 0 0 20px;
    color: #405f72;
    font-size: 38px;
    line-height: 1.2;
}

.preg-infections-intro > .preg-infections-inner > p {
    max-width: 800px;
    margin: 0 auto 55px;
    color: #626262;
    font-size: 17px;
    line-height: 1.75;
}


/* CARDS */

.preg-infections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
}

.preg-infection-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 38px 34px;
    border: 1px solid #eadfda;
    border-radius: 18px;
    background: #fbf7f5;
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.preg-infection-card:hover {
    transform: translateY(-5px);
    border-color: #d9867d;
    box-shadow: 0 15px 35px rgba(64, 95, 114, 0.10);
    text-decoration: none;
}

.preg-infection-number {
    display: block;
    margin-bottom: 30px;
    color: #d9867d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.preg-infection-card h3 {
    margin: 0 0 8px;
    color: #405f72;
    font-size: 30px;
    line-height: 1.15;
}

.preg-infection-subtitle {
    display: block;
    margin-bottom: 15px;
    color: #d9867d;
    font-size: 14px;
    font-weight: 600;
}

.preg-infection-card p {
    margin: 12px 0 28px;
    color: #626262;
    font-size: 16px;
    line-height: 1.7;
}

.preg-infection-link {
    margin-top: auto;
    color: #d9867d;
    font-size: 15px;
    font-weight: 700;
}


/* BOTTOM NOTE */

.preg-infections-note {
    padding: 0 30px 110px;
    background: #ffffff;
}

.preg-infections-note-box {
    padding: 65px 70px;
    border-radius: 18px;
    background: #fbf7f5;
    text-align: center;
}

.preg-infections-note-box h2 {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #405f72;
    font-size: 36px;
    line-height: 1.25;
}

.preg-infections-note-box p {
    max-width: 800px;
    margin: 0 auto;
    color: #626262;
    font-size: 17px;
    line-height: 1.75;
}


/* TABLET */

@media (max-width: 992px) {

    .preg-infections-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }

    .preg-infection-card {
        min-height: auto;
    }
}


/* MOBILE */

@media (max-width: 768px) {

    .preg-infections-hero {
        padding: 75px 20px;
    }

    .preg-infections-hero h1 {
        font-size: 40px;
    }

    .preg-infections-hero p {
        font-size: 16px;
    }

    .preg-infections-intro {
        padding: 70px 20px 80px;
    }

    .preg-infections-intro h2 {
        font-size: 31px;
    }

    .preg-infections-note {
        padding: 0 20px 80px;
    }

    .preg-infections-note-box {
        padding: 45px 25px;
    }

    .preg-infections-note-box h2 {
        font-size: 29px;
    }
}

/* ========================================
   PREGNANCY INFECTIONS - FULL WIDTH FIX
   ======================================== */

/* Break the page sections out of Joomla's content container */
.preg-infections-page {
    width: 100vw;
    max-width: none;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Keep the actual content neatly centred */
.preg-infections-inner {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Remove numbering */
.preg-infection-number {
    display: none !important;
}

/* Adjust card spacing now that numbers are gone */
.preg-infection-card {
    padding-top: 38px;
}


/* ========================================
   MEDICAL ARTICLE LAYOUT
   ======================================== */

.medical-article-layout {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 30px 100px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 55px;
    align-items: start;
}

.medical-article-main {
    min-width: 0;
}

.medical-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #d9867d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.medical-article-intro h1 {
    margin: 0 0 22px;
    color: #405f72;
    font-size: 46px;
    line-height: 1.12;
}

.medical-lead {
    font-size: 18px;
    line-height: 1.75;
    color: #626262;
}

.medical-content-section {
    margin-top: 58px;
}

.medical-content-section h2 {
    margin: 0 0 18px;
    color: #405f72;
    font-size: 30px;
    line-height: 1.2;
}

.medical-content-section p {
    color: #626262;
    font-size: 16px;
    line-height: 1.8;
}

.medical-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.medical-info-card {
    padding: 26px;
    background: #fbf7f5;
    border: 1px solid #eadfda;
    border-radius: 12px;
}

.medical-info-card h3 {
    margin: 0 0 10px;
    color: #405f72;
    font-size: 18px;
}

.medical-info-card p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.65;
}

.medical-callout {
    margin-top: 28px;
    padding: 24px 26px;
    border-left: 4px solid #d9867d;
    background: #fbf7f5;
    color: #555;
    line-height: 1.7;
}


/* SIDEBAR */

.medical-article-sidebar {
    position: sticky;
    top: 120px;
}

.medical-sidebar-box {
    margin-bottom: 22px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid #e5e0dd;
    border-radius: 12px;
}

.medical-sidebar-box h3 {
    margin: 0 0 15px;
    color: #405f72;
    font-size: 20px;
}

.medical-sidebar-box p {
    color: #626262;
    font-size: 14px;
    line-height: 1.6;
}

.medical-sidebar-button {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 18px;
    background: #e88175;
    color: #ffffff !important;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none !important;
}

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

.medical-sidebar-links li {
    margin-bottom: 10px;
}

.medical-sidebar-links a {
    color: #405f72;
    text-decoration: none;
}

.medical-sidebar-links a:hover {
    color: #d9867d;
}


/* TABLET / MOBILE */

@media (max-width: 991px) {

    .medical-article-layout {
        grid-template-columns: 1fr;
    }

    .medical-article-sidebar {
        position: static;
    }
}

@media (max-width: 700px) {

    .medical-article-layout {
        padding: 40px 20px 70px;
    }

    .medical-article-intro h1 {
        font-size: 36px;
    }

    .medical-card-grid {
        grid-template-columns: 1fr;
    }

    .medical-content-section h2 {
        font-size: 27px;
    }
}

/* ========================================
   GYNAECOLOGICAL SURGERY LANDING PAGE
   ======================================== */

.surgery-page {
    width: 100%;
    color: #405f72;
}


/* FULL WIDTH HERO */

.surgery-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    background: #fbf7f5;
    padding: 115px 30px;
    text-align: center;
}

.surgery-hero-inner {
    max-width: 950px;
    margin: 0 auto;
}

.surgery-eyebrow {
    display: block;
    margin-bottom: 17px;
    color: #d9867d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.surgery-hero h1 {
    margin: 0 0 25px;
    color: #405f72;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 700;
}

.surgery-hero p {
    max-width: 850px;
    margin: 0 auto;
    color: #626262;
    font-size: 18px;
    line-height: 1.8;
}


/* GENERAL */

.surgery-section {
    padding: 90px 30px;
    background: #ffffff;
}

.surgery-section-alt {
    background: #fbf7f5;
}

.surgery-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.surgery-intro {
    max-width: 900px;
}

.surgery-intro h2,
.surgery-heading-centered h2,
.surgery-feature h2,
.surgery-safety h2 {
    margin: 0 0 22px;
    color: #405f72;
    font-size: 38px;
    line-height: 1.22;
}

.surgery-intro p,
.surgery-heading-centered p,
.surgery-feature p,
.surgery-safety p {
    color: #626262;
    font-size: 17px;
    line-height: 1.8;
}


/* MAIN CARDS */

.surgery-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.surgery-large-card {
    display: block;
    padding: 48px 42px;
    background: #ffffff;
    border: 1px solid #eadfda;
    border-radius: 18px;
    color: inherit;
    text-decoration: none !important;
}

.surgery-large-card h2 {
    margin: 0 0 18px;
    color: #405f72;
    font-size: 31px;
    line-height: 1.2;
}

.surgery-large-card p {
    color: #626262;
    font-size: 16px;
    line-height: 1.75;
}

.surgery-card-link {
    display: block;
    margin-top: 25px;
    color: #d9867d;
    font-weight: 700;
}


/* PROCEDURE GRID */

.surgery-heading-centered {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.surgery-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.surgery-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 30px;
    background: #fbf7f5;
    border: 1px solid #eadfda;
    border-radius: 15px;
    text-decoration: none !important;
    color: inherit;
}

.surgery-card h3 {
    margin: 0 0 13px;
    color: #405f72;
    font-size: 21px;
}

.surgery-card p {
    margin: 0 0 20px;
    color: #626262;
    font-size: 15px;
    line-height: 1.7;
}

.surgery-card span {
    margin-top: auto;
    color: #d9867d;
    font-weight: 700;
}

.surgery-card:hover,
.surgery-large-card:hover {
    border-color: #d9867d;
}


/* MINIMAL ACCESS FEATURE */

.surgery-feature {
    padding: 100px 30px;
    background: #fbf7f5;
}

.surgery-feature-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 75px;
    align-items: center;
}

.surgery-feature-points {
    display: grid;
    gap: 18px;
}

.surgery-point {
    padding: 26px 28px;
    background: #ffffff;
    border: 1px solid #eadfda;
    border-radius: 14px;
}

.surgery-point h3 {
    margin: 0 0 9px;
    color: #405f72;
    font-size: 19px;
}

.surgery-point p {
    margin: 0;
    font-size: 15px;
}

.surgery-outline-button {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 20px;
    border: 1px solid #d9867d;
    border-radius: 7px;
    color: #d9867d !important;
    font-weight: 700;
    text-decoration: none !important;
}


/* SAFETY */

.surgery-safety {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


/* TABLET */

@media (max-width: 992px) {

    .surgery-main-grid,
    .surgery-feature-inner {
        grid-template-columns: 1fr;
    }

    .surgery-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* MOBILE */

@media (max-width: 700px) {

    .surgery-hero {
        padding: 75px 20px;
    }

    .surgery-hero h1 {
        font-size: 40px;
    }

    .surgery-hero p {
        font-size: 16px;
    }

    .surgery-section,
    .surgery-feature {
        padding: 65px 20px;
    }

    .surgery-card-grid {
        grid-template-columns: 1fr;
    }

    .surgery-main-grid {
        grid-template-columns: 1fr;
    }

    .surgery-large-card {
        padding: 35px 25px;
    }

    .surgery-card {
        min-height: auto;
    }

    .surgery-intro h2,
    .surgery-heading-centered h2,
    .surgery-feature h2,
    .surgery-safety h2 {
        font-size: 30px;
    }
}

/* ========================================
   MINIMALLY INVASIVE SURGERY PAGE
   ======================================== */

.mas-page {
    width: 100%;
    color: #405f72;
}


/* FULL WIDTH HERO */

.mas-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;

    padding: 115px 30px;

    background: #fbf7f5;
    text-align: center;
}

.mas-hero-inner {
    max-width: 950px;
    margin: 0 auto;
}

.mas-eyebrow {
    display: block;

    margin-bottom: 17px;

    color: #d9867d;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.mas-hero h1 {
    margin: 0 0 25px;

    color: #405f72;

    font-size: 60px;
    line-height: 1.08;
}

.mas-hero p {
    max-width: 850px;

    margin: 0 auto;

    color: #626262;

    font-size: 18px;
    line-height: 1.8;
}


/* GENERAL */

.mas-section {
    padding: 90px 30px;

    background: #ffffff;
}

.mas-section-alt {
    background: #fbf7f5;
}

.mas-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.mas-intro {
    max-width: 900px;
}

.mas-intro h2,
.mas-heading-centered h2,
.mas-feature h2,
.mas-cta h2 {
    margin: 0 0 22px;

    color: #405f72;

    font-size: 38px;
    line-height: 1.22;
}

.mas-intro p,
.mas-heading-centered p,
.mas-feature p {
    color: #626262;

    font-size: 17px;
    line-height: 1.8;
}


/* TWO MAIN CARDS */

.mas-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 28px;
}

.mas-large-card {
    display: block;

    padding: 48px 42px;

    background: #ffffff;

    border: 1px solid #eadfda;
    border-radius: 18px;

    color: inherit;

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.mas-large-card:hover {
    transform: translateY(-3px);

    border-color: #d9867d;

    box-shadow: 0 10px 28px rgba(64, 95, 114, 0.08);
}

.mas-large-card h2 {
    margin: 0 0 18px;

    color: #405f72;

    font-size: 31px;
    line-height: 1.2;
}

.mas-large-card p {
    color: #626262;

    font-size: 16px;
    line-height: 1.75;
}

.mas-card-link {
    display: block;

    margin-top: 24px;

    color: #d9867d;

    font-weight: 700;
}


/* HEADINGS */

.mas-heading-centered {
    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;
}


/* CARD GRID */

.mas-card-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.mas-card {
    display: flex;
    flex-direction: column;

    min-height: 245px;

    padding: 30px;

    background: #fbf7f5;

    border: 1px solid #eadfda;
    border-radius: 15px;

    color: inherit;

    text-decoration: none !important;
}

.mas-card h3 {
    margin: 0 0 13px;

    color: #405f72;

    font-size: 20px;
}

.mas-card p {
    margin: 0 0 20px;

    color: #626262;

    font-size: 15px;
    line-height: 1.7;
}

.mas-card span {
    margin-top: auto;

    color: #d9867d;

    font-weight: 700;
}

a.mas-card:hover {
    border-color: #d9867d;
}


/* PHILOSOPHY FEATURE */

.mas-feature {
    padding: 100px 30px;

    background: #fbf7f5;
}

.mas-feature-inner {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 75px;

    align-items: center;
}

.mas-feature-points {
    display: grid;

    gap: 18px;
}

.mas-point {
    padding: 27px 28px;

    background: #ffffff;

    border: 1px solid #eadfda;
    border-radius: 14px;
}

.mas-point h3 {
    margin: 0 0 9px;

    color: #405f72;

    font-size: 19px;
}

.mas-point p {
    margin: 0;

    font-size: 15px;
}


/* FINAL CTA */

.mas-cta {
    width: 100vw;

    position: relative;
    left: 50%;

    margin-left: -50vw;

    padding: 95px 30px;

    background: #405f72;

    text-align: center;
}

.mas-cta-inner {
    max-width: 780px;

    margin: 0 auto;
}

.mas-cta .mas-eyebrow {
    color: #ef9b91;
}

.mas-cta h2 {
    color: #ffffff;
}

.mas-cta p {
    color: rgba(255,255,255,0.86);

    font-size: 17px;
    line-height: 1.75;
}

.mas-cta-button {
    display: inline-block;

    margin-top: 22px;

    padding: 14px 28px;

    background: #d9867d;

    border-radius: 7px;

    color: #ffffff !important;

    font-weight: 700;

    text-decoration: none !important;
}


/* TABLET */

@media (max-width: 992px) {

    .mas-main-grid,
    .mas-feature-inner {
        grid-template-columns: 1fr;
    }

    .mas-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* MOBILE */

@media (max-width: 700px) {

    .mas-hero {
        padding: 75px 20px;
    }

    .mas-hero h1 {
        font-size: 40px;
    }

    .mas-hero p {
        font-size: 16px;
    }

    .mas-section,
    .mas-feature {
        padding: 65px 20px;
    }

    .mas-main-grid,
    .mas-card-grid {
        grid-template-columns: 1fr;
    }

    .mas-large-card {
        padding: 35px 25px;
    }

    .mas-card {
        min-height: auto;
    }

    .mas-intro h2,
    .mas-heading-centered h2,
    .mas-feature h2,
    .mas-cta h2 {
        font-size: 30px;
    }

    .mas-cta {
        padding: 75px 20px;
    }
}

/* ==================================================
   SURGERY THIRD-LEVEL MENU
   Open third level to the LEFT
   ================================================== */

/* Χειρουργική is near the right side of the navbar.
   Its level-3 submenu must therefore open left. */

.clinic-main-menu > .metismenu-item:nth-last-child(2)
.metismenu-item.deeper.parent > ul.mm-collapse {
    left: auto !important;
    right: 100% !important;
    top: 0 !important;
}

/* Make sure it is visible above the page */
.clinic-main-menu ul.mm-collapse {
    overflow: visible !important;
}

.clinic-main-menu .metismenu-item {
    overflow: visible !important;
}

/* =========================================================
   MEDICAL TOOLS LANDING PAGE
   /iatrika-ergaleia
   ========================================================= */

.medtools-page {
    --navy: #36556b;
    --coral: #df7d71;
    --cream: #fbf7f5;
    --border: #eadfda;
    --text: #555f66;

    max-width: 1120px;
    margin: 0 auto;
    padding: 45px 20px 70px;
    font-family: inherit;
}

/* Hero */

.medtools-hero {
    max-width: 820px;
    margin: 0 auto 45px;
    text-align: center;
}

.medtools-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--coral);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.medtools-hero h1 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 700;
}

.medtools-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text);
    font-size: 18px;
    line-height: 1.7;
}


/* Cards grid */

.medtools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}


/* Individual card */

.medtool-card {
    position: relative;
    display: flex;
    flex-direction: column;

    min-height: 290px;
    padding: 32px;

    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 20px;

    color: inherit !important;
    text-decoration: none !important;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.medtool-card:hover {
    transform: translateY(-5px);
    border-color: #decac4;
    box-shadow: 0 16px 38px rgba(54, 85, 107, 0.11);
    text-decoration: none !important;
}


/* Full width final card */

.medtool-card-wide {
    grid-column: 1 / -1;
    min-height: 235px;
}


/* Number badge */

.medtool-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;
    margin-bottom: 24px;

    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--coral);
    font-size: 14px;
    font-weight: 700;
}


/* Category */

.medtool-category {
    margin-bottom: 9px;

    color: var(--coral);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}


/* Card title */

.medtool-card h2 {
    margin: 0 0 14px;

    color: var(--navy) !important;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;

    text-decoration: none !important;
}


/* Card description */

.medtool-card p {
    margin: 0 0 26px;

    color: var(--text) !important;
    font-size: 16px;
    line-height: 1.65;

    text-decoration: none !important;
}


/* CTA */

.medtool-link {
    margin-top: auto;

    color: var(--coral) !important;
    font-size: 15px;
    font-weight: 700;

    text-decoration: none !important;
}

.medtool-link::after {
    content: " →";
    display: inline-block;
    margin-left: 3px;

    transition: transform 0.2s ease;
}

.medtool-card:hover .medtool-link::after {
    transform: translateX(4px);
}


/* Disclaimer */

.medtools-footer-note {
    max-width: 850px;

    margin: 42px auto 0;
    padding-top: 24px;

    border-top: 1px solid var(--border);

    color: #777f84;
    text-align: center;
    font-size: 13px;
    line-height: 1.65;
}


/* Remove default article-link styling inside cards */

.medtools-page a,
.medtools-page a:hover,
.medtools-page a:focus {
    text-decoration: none !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .medtools-page {
        padding: 35px 18px 60px;
    }

    .medtool-card {
        padding: 28px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .medtools-page {
        padding: 25px 15px 50px;
    }

    .medtools-hero {
        margin-bottom: 30px;
    }

    .medtools-eyebrow {
        font-size: 11px;
    }

    .medtools-hero h1 {
        font-size: 36px;
    }

    .medtools-hero p {
        font-size: 16px;
    }

    .medtools-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .medtool-card-wide {
        grid-column: 1;
    }

    .medtool-card {
        min-height: auto;
        padding: 25px;
        border-radius: 16px;
    }

    .medtool-number {
        width: 44px;
        height: 44px;
        margin-bottom: 19px;
    }

    .medtool-card h2 {
        font-size: 23px;
    }

    .medtool-card p {
        font-size: 15px;
    }

}

/* =========================================================
   MEDICAL TOOLS - ICONS
   ========================================================= */

.medtool-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    overflow: hidden;

    background: transparent;
}

.medtool-icon img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    border-radius: 50%;
}

.medtool-card:hover .medtool-icon {
    transform: scale(1.04);
    transition: transform 0.2s ease;
}

@media (max-width: 700px) {

    .medtool-icon {
        width: 78px;
        height: 78px;
        margin-bottom: 18px;
    }

}

/* =========================================================
   MEDICAL ARTICLES - WIDE EDUCATIONAL IMAGE
   Reusable for Pap / HPV and future medical articles
   ========================================================= */

.article-image-wide {
    width: 100%;
    max-width: 1050px;
    margin: 42px auto 34px;
    text-align: center;
}

.article-image-wide img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.article-image-wide figcaption {
    max-width: 900px;
    margin: 14px auto 0;
    padding: 0 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7075;
    text-align: center;
}

.article-image-wide figcaption strong {
    color: #36566b;
}

@media (max-width: 700px) {

    .article-image-wide {
        margin: 30px auto 26px;
    }

    .article-image-wide img {
        border-radius: 12px;
    }

    .article-image-wide figcaption {
        padding: 0 8px;
        font-size: 13px;
    }
}

/* =========================================================
   ARMAN.GR - CLINIC HEADER
   FINAL CONSOLIDATED DESKTOP LAYOUT
   Replaces the older desktop header experiments.
   Mobile/tablet rules above remain unchanged.
   ========================================================= */

@media (min-width: 992px) {

    /* Allow the custom header module to use the browser width rather than
       being squeezed by Cassiopeia's inner grid width. */
    .container-header .container-below-top,
    .container-header .container-below-top > .grid-child,
    .container-header .container-below-top .grid-child,
    .clinic-header-module {
        width: 100% !important;
        max-width: none !important;
    }

    /* One centered desktop geometry for all normal desktop widths. */
    .clinic-top-header {
        position: static !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;

        width: calc(100vw - 96px) !important;
        max-width: 1580px !important;

        margin: 0 auto !important;
        padding: 30px 0 !important;

        display: grid !important;
        grid-template-columns: minmax(0, 44fr) minmax(0, 34fr) minmax(0, 22fr) !important;
        column-gap: 36px !important;
        align-items: center !important;

        box-sizing: border-box !important;
        overflow: visible !important;
    }

    /* LEFT - logo / doctor name */
    .clinic-header-logo {
        position: static !important;
        left: auto !important;
        right: auto !important;

        width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        justify-self: stretch !important;
    }

    .clinic-header-logo a {
        display: block !important;
        width: 100% !important;
        max-width: 600px !important;
    }

    .clinic-header-logo img {
        display: block !important;
        width: 100% !important;
        max-width: 600px !important;
        height: auto !important;

        margin: 0 !important;

        object-fit: contain !important;
        object-position: left center !important;
    }

    /* MIDDLE - contact details */
    .clinic-header-contact {
        position: static !important;

        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 14px !important;

        justify-self: stretch !important;
    }

    .clinic-contact-icon {
        flex: 0 0 auto !important;
        margin: 0 !important;
    }

    .clinic-contact-text {
        min-width: 0 !important;
    }

    .clinic-contact-title {
        white-space: nowrap !important;
    }

    .clinic-contact-details {
        white-space: nowrap !important;
    }

    /* RIGHT - booking image */
    .clinic-header-book {
        position: static !important;

        width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 0 0 30px !important;

        border-left: 1px solid #33566d !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        justify-self: stretch !important;
        box-sizing: border-box !important;
    }

    .clinic-header-book a {
        display: block !important;
        width: 100% !important;
        max-width: 260px !important;
        margin: 0 auto !important;
    }

    .clinic-header-book img {
        display: block !important;
        width: 100% !important;
        max-width: 260px !important;
        height: auto !important;

        margin: 0 auto !important;
        object-fit: contain !important;
    }
}

/* Compact desktop range: preserve the same three-column structure without
   allowing the middle text or booking image to push outside the viewport. */
@media (min-width: 992px) and (max-width: 1240px) {

    .clinic-top-header {
        width: calc(100vw - 48px) !important;
        grid-template-columns: minmax(0, 42fr) minmax(0, 36fr) minmax(0, 22fr) !important;
        column-gap: 24px !important;
        padding-top: 26px !important;
        padding-bottom: 26px !important;
    }

    .clinic-header-logo a,
    .clinic-header-logo img {
        max-width: 500px !important;
    }

    .clinic-contact-title {
        font-size: 17px !important;
    }

    .clinic-contact-details {
        font-size: 13px !important;
    }

    .clinic-header-book {
        padding-left: 22px !important;
    }

    .clinic-header-book a,
    .clinic-header-book img {
        max-width: 230px !important;
    }
}


/* =========================================================
   PATIENT REVIEWS PAGE
   ========================================================= */


/* HERO */

.reviews-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);

    padding: 95px 30px 85px;

    background: #fbf7f5;
}

.reviews-hero-inner {
    max-width: 900px;
    margin: 0 auto;

    text-align: center;
}

.reviews-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.reviews-hero h1 {
    margin: 0 0 24px;

    color: #345061;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 600;
}

.reviews-hero p {
    max-width: 760px;

    margin: 0 auto;

    color: #53646d;

    font-size: 17px;
    line-height: 1.75;
}


/* INTRO */

.reviews-intro {
    padding: 55px 30px;

    background: #ffffff;

    border-bottom: 1px solid #eee7e2;
}

.reviews-intro-inner {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.reviews-intro-stat {
    text-align: center;

    padding: 15px 25px;
}

.reviews-intro-icon {
    display: block;

    min-height: 28px;
    margin-bottom: 10px;

    color: #df7d70;

    font-size: 20px;
    letter-spacing: 2px;
}

.reviews-intro-stat strong {
    display: block;

    margin-bottom: 8px;

    color: #345061;

    font-size: 17px;
}

.reviews-intro-stat p {
    margin: 0;

    color: #65737a;

    font-size: 14px;
    line-height: 1.6;
}


/* REVIEWS */

.reviews-section {
    padding: 85px 30px 100px;

    background: #ffffff;
}

.reviews-section-heading {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}

.reviews-section-heading > span {
    display: block;

    margin-bottom: 10px;

    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.reviews-section-heading h2 {
    margin: 0 0 16px;

    color: #345061;

    font-size: clamp(32px, 4vw, 45px);
    line-height: 1.2;
}

.reviews-section-heading p {
    margin: 0;

    color: #65737a;

    font-size: 16px;
}


/* GRID */

.reviews-grid {
    max-width: 1180px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}


/* CARD */

.review-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 30px;

    background: #fbf7f5;

    border: 1px solid #eee5e0;
    border-radius: 14px;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.review-card::before {
    content: "“";

    position: absolute;
    right: 24px;
    top: 12px;

    color: rgba(223,125,112,.14);

    font-family: Georgia, serif;
    font-size: 82px;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-4px);

    border-color: rgba(223,125,112,.35);

    box-shadow:
        0 15px 35px rgba(45,65,78,.09);
}


/* =========================================================
   REVIEW CARD TOP ROW
   Stars + platform pill kept safely on the left
   ========================================================= */

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding-right: 65px; /* keeps clear of decorative arrows */
}

.review-platform {
    display: inline-flex;
    align-items: center;
    width: auto;
    margin-left: 10px;
    margin-right: auto;
}


/* REVIEW TEXT */

.review-card blockquote {
    position: relative;
    z-index: 2;

    flex-grow: 1;

    margin: 0 0 28px;
    padding: 0;

    border: 0;

    color: #465a65;

    font-size: 15px;
    line-height: 1.75;

    font-style: normal;
}


/* AUTHOR */

.review-author {
    position: relative;
    z-index: 2;

    padding-top: 18px;

    border-top: 1px solid rgba(52,80,97,.10);
}

.review-author strong {
    display: block;

    margin-bottom: 3px;

    color: #345061;

    font-size: 14px;
}

.review-author span {
    color: #7b858a;

    font-size: 12px;
}


/* FEATURED CARD */

.review-card-featured {
    background: #f7f0ec;

    border-color: rgba(223,125,112,.25);
}


/* NOTE */

.reviews-note {
    padding: 45px 30px;

    background: #fbf7f5;
}

.reviews-note-inner {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

.reviews-note-inner > span {
    display: block;

    margin-bottom: 10px;

    color: #df7d70;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.reviews-note p {
    margin: 0;

    color: #69777e;

    font-size: 13px;
    line-height: 1.7;
}


/* CTA */

.reviews-cta {
    width: 100vw;

    margin-left: calc(50% - 50vw);

    padding: 70px 30px;

    background: #345061;
}

.reviews-cta-inner {
    max-width: 1180px;

    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 60px;
}

.reviews-cta-inner > div {
    max-width: 720px;
}

.reviews-cta span {
    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.reviews-cta h2 {
    margin: 8px 0 12px;

    color: #ffffff;

    font-size: 38px;
}

.reviews-cta p {
    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 16px;
    line-height: 1.7;
}

.reviews-cta a {
    flex: 0 0 auto;

    display: inline-block;

    padding: 14px 24px;

    background: #df7d70;

    border-radius: 5px;

    color: #ffffff !important;

    font-weight: 600;

    text-decoration: none !important;

    transition:
        background .2s ease,
        transform .2s ease;
}

.reviews-cta a:hover {
    background: #c96d62;

    transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 950px) {

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .reviews-hero {
        padding: 70px 22px 65px;
    }

    .reviews-hero h1 {
        font-size: 40px;
    }

    .reviews-intro {
        padding: 45px 20px;
    }

    .reviews-intro-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reviews-section {
        padding: 65px 20px 75px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-card {
        padding: 26px 24px;
    }

    .reviews-cta {
        padding: 60px 22px;
    }

    .reviews-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .reviews-cta a {
        width: 100%;
        text-align: center;
    }

}

/* =========================================================
   REVIEWS – SOURCE LINKS
   ========================================================= */

.reviews-source-links {
    padding: 0 30px 75px;
    background: #ffffff;
}

.reviews-source-links-inner {
    max-width: 900px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.reviews-source-button {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 22px 24px;

    border: 1px solid #e8e1dd;
    border-radius: 14px;

    text-decoration: none !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.reviews-source-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(45,65,78,.08);
}

.reviews-source-stars {
    flex: 0 0 auto;

    color: #c8a451;
    font-size: 17px;
    letter-spacing: 1px;
}

.reviews-source-button strong {
    display: block;

    margin-bottom: 3px;

    color: #345061;
    font-size: 15px;
}

.reviews-source-button small {
    display: block;

    color: #687981;
    font-size: 13px;
}

.reviews-source-google {
    background: #f6f8f9;
}

.reviews-source-simplybook {
    background: #fff6f3;
}

.reviews-source-google:hover {
    border-color: #cfdce2;
}

.reviews-source-simplybook:hover {
    border-color: #efd2ca;
}

@media (max-width: 700px) {

    .reviews-source-links {
        padding: 0 20px 60px;
    }

    .reviews-source-links-inner {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   REVIEWS – PLATFORM LINKS
   Google + SimplyBook.me
   ========================================================= */

.reviews-source-links {
    padding: 10px 24px 42px;
    background: #fff;
}

.reviews-source-links-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.reviews-source-button {
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 300px;
    padding: 15px 22px;

    background: #fffaf8;
    border: 1px solid #ead8d3;
    border-radius: 12px;

    color: #3e5968 !important;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.reviews-source-button:hover {
    transform: translateY(-2px);
    border-color: #dfbcb3;
    box-shadow: 0 8px 22px rgba(50, 65, 75, 0.08);
    text-decoration: none !important;
}

.reviews-source-stars {
    color: #d4a84f;
    font-size: 16px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.reviews-source-button > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.reviews-source-button strong {
    color: #3e5968;
    font-size: 15px;
    font-weight: 700;
}

.reviews-source-button small {
    margin-top: 3px;
    color: #687780;
    font-size: 12px;
    font-weight: 400;
}


/* MOBILE */

@media (max-width: 767px) {

    .reviews-source-links {
        padding: 5px 18px 30px;
    }

    .reviews-source-links-inner {
        flex-direction: column;
        gap: 10px;
    }

    .reviews-source-button {
        width: 100%;
        min-width: 0;
        padding: 14px 16px;
    }
}

/* =========================================================
   HOMEPAGE REVIEWS
   ========================================================= */

.home-reviews {
    padding: 85px 30px 90px;
    background: #fbf7f5;
}

.home-reviews-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.home-reviews-heading > span {
    display: block;
    margin-bottom: 10px;

    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.home-reviews-heading h2 {
    margin: 0 0 14px;

    color: #345061;

    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.2;
}

.home-reviews-heading p {
    margin: 0;

    color: #65737a;

    font-size: 16px;
}

.home-reviews-grid {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-review-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 300px;
    padding: 28px;

    background: #ffffff;

    border: 1px solid #eadfd9;
    border-radius: 15px;

    box-shadow: 0 8px 26px rgba(45,65,78,.05);
}

.home-review-card::after {
    content: "“";

    position: absolute;
    top: 12px;
    right: 22px;

    color: rgba(223,125,112,.13);

    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 1;
}

.home-review-card-featured {
    background: #fffaf8;
    border-color: #efcfc7;
}

.home-review-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 12px;

    padding-right: 55px;
    margin-bottom: 18px;
}

.home-review-stars {
    color: #c8a451;

    font-size: 16px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.home-review-platform {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;

    white-space: nowrap;
}

.home-review-platform-google {
    background: #f3f6f7;
    color: #405f70;
    border: 1px solid #d9e2e6;
}

.home-review-platform-simplybook {
    background: #fff3f0;
    color: #d8786c;
    border: 1px solid #f0d4ce;
}

.home-review-card blockquote {
    position: relative;
    z-index: 2;

    flex-grow: 1;

    margin: 0 0 24px;
    padding: 0;

    border: 0;

    color: #4f626c;

    font-size: 15px;
    line-height: 1.7;

    font-style: normal;
}

.home-review-author {
    padding-top: 16px;

    border-top: 1px solid rgba(52,80,97,.10);
}

.home-review-author strong {
    display: block;

    margin-bottom: 3px;

    color: #345061;

    font-size: 14px;
}

.home-review-author span {
    color: #808b90;
    font-size: 12px;
}

.home-reviews-more {
    margin-top: 38px;
    text-align: center;
}

.home-reviews-more a {
    display: inline-block;

    padding: 13px 23px;

    background: #df7d70;
    border-radius: 5px;

    color: #ffffff !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        background .2s ease,
        transform .2s ease;
}

.home-reviews-more a:hover {
    background: #c96d62;
    transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 950px) {

    .home-reviews-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .home-review-card {
        min-height: 0;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .home-reviews {
        padding: 65px 20px 70px;
    }

    .home-reviews-heading {
        margin-bottom: 32px;
    }

    .home-review-card {
        padding: 24px 22px;
    }

    .home-reviews-more {
        margin-top: 28px;
    }

    .home-reviews-more a {
        width: 100%;
        max-width: 360px;
    }

}

/* =========================================================
   HOMEPAGE REVIEWS - FINAL
   ========================================================= */

.home-reviews {
    display: block !important;
    width: 100% !important;
    padding: 75px 30px 80px !important;
    background: #fbf7f5 !important;
    box-sizing: border-box !important;
}

.home-reviews-heading {
    max-width: 760px !important;
    margin: 0 auto 40px !important;
    text-align: center !important;
}

.home-reviews-heading > span {
    display: block !important;
    margin-bottom: 8px !important;
    color: #df7d70 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.4px !important;
}

.home-reviews-heading h2 {
    margin: 0 0 12px !important;
    color: #345061 !important;
    font-size: 38px !important;
    line-height: 1.2 !important;
}

.home-reviews-heading p {
    margin: 0 !important;
    color: #65737a !important;
    font-size: 16px !important;
}


/* GRID */

.home-reviews .home-reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;

    width: 100% !important;
    max-width: 1180px !important;

    margin: 0 auto !important;
}


/* CARDS */

.home-reviews .home-review-card {
    position: relative !important;

    display: flex !important;
    flex-direction: column !important;

    min-width: 0 !important;
    min-height: 300px !important;

    margin: 0 !important;
    padding: 28px !important;

    background: #ffffff !important;

    border: 1px solid #eadfd9 !important;
    border-radius: 15px !important;

    box-shadow: 0 8px 26px rgba(45, 65, 78, 0.05) !important;

    box-sizing: border-box !important;
}

.home-reviews .home-review-card-featured {
    background: #fffaf8 !important;
    border-color: #efcfc7 !important;
}


/* QUOTATION MARK */

.home-reviews .home-review-card::after {
    content: "“" !important;

    position: absolute !important;
    top: 10px !important;
    right: 20px !important;

    color: rgba(223, 125, 112, 0.14) !important;

    font-family: Georgia, serif !important;
    font-size: 70px !important;
    line-height: 1 !important;
}


/* TOP */

.home-reviews .home-review-top {
    position: relative !important;
    z-index: 2 !important;

    display: flex !important;
    align-items: center !important;
    gap: 12px !important;

    margin: 0 0 18px !important;
    padding: 0 50px 0 0 !important;
}


/* STARS */

.home-reviews .home-review-stars {
    color: #c8a451 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}


/* PLATFORM PILLS */

.home-reviews .home-review-platform {
    display: inline-block !important;

    padding: 5px 10px !important;

    border-radius: 20px !important;

    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;

    white-space: nowrap !important;
}

.home-reviews .home-review-platform-google {
    color: #405f70 !important;
    background: #f3f6f7 !important;
    border: 1px solid #d9e2e6 !important;
}

.home-reviews .home-review-platform-simplybook {
    color: #d8786c !important;
    background: #fff3f0 !important;
    border: 1px solid #f0d4ce !important;
}


/* REVIEW TEXT */

.home-reviews .home-review-card blockquote {
    position: relative !important;
    z-index: 2 !important;

    display: block !important;
    flex: 1 1 auto !important;

    margin: 0 0 24px !important;
    padding: 0 !important;

    border: 0 !important;
    background: transparent !important;

    color: #4f626c !important;

    font-size: 15px !important;
    line-height: 1.7 !important;
    font-style: normal !important;
}


/* AUTHOR */

.home-reviews .home-review-author {
    display: block !important;

    margin-top: auto !important;
    padding-top: 16px !important;

    border-top: 1px solid rgba(52, 80, 97, 0.10) !important;
}

.home-reviews .home-review-author strong {
    display: block !important;

    margin-bottom: 3px !important;

    color: #345061 !important;

    font-size: 14px !important;
    font-weight: 700 !important;
}

.home-reviews .home-review-author span {
    display: block !important;

    color: #808b90 !important;

    font-size: 12px !important;
}


/* MORE REVIEWS BUTTON */

.home-reviews .home-reviews-more {
    display: block !important;

    margin: 38px auto 0 !important;

    text-align: center !important;
}

.home-reviews .home-reviews-more a {
    display: inline-block !important;

    padding: 13px 24px !important;

    color: #ffffff !important;
    background: #df7d70 !important;

    border-radius: 5px !important;

    font-size: 14px !important;
    font-weight: 600 !important;

    text-decoration: none !important;
}

.home-reviews .home-reviews-more a:hover {
    color: #ffffff !important;
    background: #c96d62 !important;
    text-decoration: none !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .home-reviews .home-reviews-grid {
        grid-template-columns: 1fr !important;
        max-width: 680px !important;
    }

    .home-reviews .home-review-card {
        min-height: 0 !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .home-reviews {
        padding: 55px 18px 60px !important;
    }

    .home-reviews-heading {
        margin-bottom: 30px !important;
    }

    .home-reviews-heading h2 {
        font-size: 30px !important;
    }

    .home-reviews .home-review-card {
        padding: 23px !important;
    }

    .home-reviews .home-reviews-more a {
        width: 100% !important;
        max-width: 350px !important;
        box-sizing: border-box !important;
    }

}

/* =========================================================
   HOMEPAGE MEDICAL TOOLS
   ========================================================= */

.home-tools {
    padding: 85px 30px 90px;
    background: #ffffff;
}

.home-tools-heading {
    max-width: 780px;
    margin: 0 auto 45px;
    text-align: center;
}

.home-tools-heading > span {
    display: block;
    margin-bottom: 10px;

    color: #df7d70;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.home-tools-heading h2 {
    margin: 0 0 14px;

    color: #345061;

    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.2;
}

.home-tools-heading p {
    margin: 0;

    color: #65737a;

    font-size: 16px;
    line-height: 1.7;
}


/* GRID */

.home-tools-grid {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* CARD */

.home-tool-card {
    display: flex;
    flex-direction: column;

    min-height: 370px;

    padding: 30px;

    background: #fbf7f5;

    border: 1px solid #eadfd9;
    border-radius: 15px;

    box-shadow: 0 8px 26px rgba(45,65,78,.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.home-tool-card:hover {
    transform: translateY(-4px);

    border-color: rgba(223,125,112,.35);

    box-shadow: 0 14px 34px rgba(45,65,78,.09);
}

.home-tool-card-featured {
    background: #fffaf8;
    border-color: #efcfc7;
}


/* ICON */

.home-tool-icon {
    width: 72px;
    height: 72px;

    margin-bottom: 22px;
}

.home-tool-icon img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* CATEGORY */

.home-tool-category {
    display: block;

    margin-bottom: 9px;

    color: #df7d70;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
}


/* TITLE */

.home-tool-card h3 {
    margin: 0 0 14px;

    color: #345061;

    font-size: 23px;
    line-height: 1.3;
}


/* DESCRIPTION */

.home-tool-card p {
    flex-grow: 1;

    margin: 0 0 24px;

    color: #566971;

    font-size: 15px;
    line-height: 1.7;
}


/* CARD LINK */

.home-tool-card > a {
    display: inline-block;

    margin-top: auto;

    color: #df7d70 !important;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;
}

.home-tool-card > a:hover {
    color: #c96d62 !important;
}


/* MORE BUTTON */

.home-tools-more {
    margin-top: 38px;

    text-align: center;
}

.home-tools-more a {
    display: inline-block;

    padding: 13px 24px;

    background: #345061;

    border-radius: 5px;

    color: #ffffff !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        background .2s ease,
        transform .2s ease;
}

.home-tools-more a:hover {
    background: #263f4e;

    transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 950px) {

    .home-tools-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .home-tool-card {
        min-height: 0;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .home-tools {
        padding: 65px 20px 70px;
    }

    .home-tools-heading {
        margin-bottom: 32px;
    }

    .home-tool-card {
        padding: 25px 23px;
    }

    .home-tool-icon {
        width: 64px;
        height: 64px;
    }

    .home-tools-more {
        margin-top: 28px;
    }

    .home-tools-more a {
        width: 100%;
        max-width: 360px;

        box-sizing: border-box;
    }

}

/* =========================================================
   HOMEPAGE HERO SLIDESHOW
   Full-background version
   ========================================================= */

.home-hero-slider {
    position: relative;

    width: 100vw;
    height: clamp(520px, 38vw, 700px);

    margin-left: calc(50% - 50vw);

    overflow: hidden;

    background: #f6eee9;
}


/* =========================================================
   SLIDES
   ========================================================= */

.home-hero-slides {
    position: relative;

    width: 100%;
    height: 100%;
}

.home-hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 1.1s ease,
        visibility 1.1s ease;

    overflow: hidden;
}

.home-hero-slide.is-active {
    opacity: 1;
    visibility: visible;

    z-index: 2;
}


/* BACKGROUND IMAGE */

.home-hero-slide > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;
}


/* Very subtle readability layer */

.home-hero-slide-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(250, 245, 241, 0.20) 0%,
            rgba(250, 245, 241, 0.08) 42%,
            rgba(250, 245, 241, 0) 70%
        );

    pointer-events: none;
}


/* =========================================================
   CONTENT
   ========================================================= */

.home-hero-slide-inner {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;

    max-width: 1580px;

    margin: 0 auto;
    padding: 0 70px;

    box-sizing: border-box;
}

.home-hero-slide-content {
    width: min(720px, 46%);

    transform: translateY(12px);
    opacity: 0;

    transition:
        transform .9s ease .25s,
        opacity .9s ease .25s;
}

.home-hero-slide.is-active .home-hero-slide-content {
    transform: translateY(0);
    opacity: 1;
}


/* EYEBROW */

.home-hero-slide-eyebrow {
    display: block;

    margin-bottom: 24px;

    color: #df7d70;

    font-size: clamp(14px, 1.2vw, 20px);
    font-weight: 700;

    letter-spacing: .16em;
}


/* HEADINGS */

.home-hero-slide h1,
.home-hero-slide h2 {
    margin: 0 0 24px;

    max-width: 760px;

    color: #31586d;

    font-size: clamp(46px, 4.8vw, 78px);
    line-height: 1.08;

    font-weight: 700;
    letter-spacing: -0.025em;
}


/* DESCRIPTION */

.home-hero-slide-content p {
    max-width: 610px;

    margin: 0 0 30px;

    color: #4e6069;

    font-size: clamp(16px, 1.15vw, 19px);
    line-height: 1.7;
}


/* BUTTON */

.home-hero-slide-button {
    display: inline-block;

    padding: 13px 23px;

    background: #df7d70;

    border-radius: 5px;

    color: #ffffff !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        background .2s ease,
        transform .2s ease;
}

.home-hero-slide-button:hover {
    background: #c96d62;

    color: #ffffff !important;

    transform: translateY(-2px);

    text-decoration: none !important;
}


/* =========================================================
   ARROWS
   ========================================================= */

.home-hero-arrow {
    position: absolute;
    z-index: 10;

    top: 50%;

    width: 48px;
    height: 48px;

    padding: 0;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(49, 88, 109, .17);
    border-radius: 50%;

    background: rgba(255,255,255,.76);

    color: #31586d;

    font-family: Arial, sans-serif;
    font-size: 35px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    transition:
        background .2s ease,
        transform .2s ease,
        opacity .2s ease;
}

.home-hero-prev {
    left: 28px;
}

.home-hero-next {
    right: 28px;
}

.home-hero-arrow:hover {
    background: rgba(255,255,255,.95);

    transform:
        translateY(-50%)
        scale(1.05);
}


/* =========================================================
   DOT NAVIGATION
   ========================================================= */

.home-hero-dots {
    position: absolute;

    left: 50%;
    bottom: 24px;

    z-index: 10;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 9px;
}

.home-hero-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(49,88,109,.30);

    cursor: pointer;

    transition:
        width .25s ease,
        border-radius .25s ease,
        background .25s ease;
}

.home-hero-dot.is-active {
    width: 27px;

    border-radius: 8px;

    background: #df7d70;
}


/* =========================================================
   DESKTOP — slightly smaller screens
   ========================================================= */

@media (max-width: 1300px) {

    .home-hero-slide-inner {
        padding-left: 65px;
        padding-right: 65px;
    }

    .home-hero-slide-content {
        width: 48%;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .home-hero-slider {
        height: 600px;
    }

    .home-hero-slide > img {
        object-position: 62% center;
    }

    .home-hero-slide-inner {
        align-items: flex-end;

        padding:
            0 45px
            70px;
    }

    .home-hero-slide-content {
        width: 65%;
    }

    .home-hero-slide h1,
    .home-hero-slide h2 {
        font-size: 48px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .home-hero-slider {
        height: 570px;
    }

    .home-hero-slide > img {
        object-position: 68% center;
    }

    /*
     * Stronger pale layer on mobile because the text
     * occupies more of the photograph.
     */

    .home-hero-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(250,245,241,.96) 0%,
                rgba(250,245,241,.87) 48%,
                rgba(250,245,241,.32) 100%
            );
    }

    .home-hero-slide-inner {
        align-items: center;

        padding:
            30px 32px
            55px;
    }

    .home-hero-slide-content {
        width: 80%;
    }

    .home-hero-slide-eyebrow {
        margin-bottom: 15px;

        font-size: 12px;
        line-height: 1.5;
    }

    .home-hero-slide h1,
    .home-hero-slide h2 {
        margin-bottom: 18px;

        font-size: clamp(36px, 10vw, 44px);
    }

    .home-hero-slide-content p {
        margin-bottom: 23px;

        font-size: 15px;
        line-height: 1.6;
    }

    .home-hero-arrow {
        width: 38px;
        height: 38px;

        font-size: 28px;
    }

    .home-hero-prev {
        left: 10px;
    }

    .home-hero-next {
        right: 10px;
    }

    .home-hero-dots {
        bottom: 17px;
    }

}


/* =========================================================
   ACCESSIBILITY — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-hero-slide,
    .home-hero-slide-content,
    .home-hero-arrow,
    .home-hero-dot {
        transition: none !important;
    }

}

/* =========================================================
   DROPDOWN MENU — COMPACT VERTICAL SPACING
   ========================================================= */

.container-header .metismenu > li .metismenu.mod-menu .metismenu-item {
    padding-top: 6px;
    padding-bottom: 6px;
}

/* =========================================================
   MOBILE HEADER — SIMPLIFIED CONTACT INFORMATION
   ========================================================= */

@media (max-width: 768px) {

    /* Hide street address */
    .clinic-header-contact .clinic-address {
        display: none;
    }

    /* Hide mobile phone number */
    .clinic-header-contact .clinic-mobile-phone {
        display: none;
    }

    /* Slightly tighten remaining information */
    .clinic-header-contact .clinic-phone,
    .clinic-header-contact .clinic-hours {
        line-height: 1.5;
    }
}

/* =========================================================
   MEDICAL ARTICLE — CONTENT IMAGES / INFOGRAPHICS
   ========================================================= */

.medical-article-image {
    margin: 40px 0;
}

.medical-article-image img {
    display: block;
    width: 100%;
    height: auto;
}

.medical-article-image figcaption {
    margin-top: 10px;
}

/* =========================================================
   MEDICAL ARTICLE — CLICKABLE INFOGRAPHICS / LIGHTBOX
   ========================================================= */

.medical-image-lightbox {
    display: block;
    cursor: zoom-in;
}

.medical-image-lightbox img {
    transition: opacity 0.2s ease;
}

.medical-image-lightbox:hover img {
    opacity: 0.92;
}


/* Full-screen overlay */

.medical-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.88);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.medical-lightbox-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.medical-lightbox-full {
    display: block;

    max-width: 95vw;
    max-height: 92vh;

    width: auto;
    height: auto;

    object-fit: contain;
}

.medical-lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;

    z-index: 100000;

    width: 46px;
    height: 46px;

    padding: 0;
    border: 0;

    background: transparent;
    color: #fff;

    font-size: 42px;
    line-height: 1;

    cursor: pointer;
}

body.medical-lightbox-open {
    overflow: hidden;
}

/* =========================================================
   MEDICAL SERVICES OVERVIEW GRID
   ========================================================= */

.medical-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    margin: 1.8rem 0 2.5rem;
}

.medical-service-card {
    display: block;
    padding: 1.35rem 1.45rem;
    border: 1px solid rgba(25, 73, 105, 0.12);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(20, 55, 80, 0.06);
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.medical-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(20, 55, 80, 0.11);
    border-color: rgba(25, 73, 105, 0.22);
    text-decoration: none;
}

.medical-service-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.12rem;
    line-height: 1.3;
}

.medical-service-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.82;
}

.medical-article-main section[id] {
    scroll-margin-top: 110px;
}

@media (max-width: 767px) {
    .medical-services-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SERVICES PAGE - INTERNAL ANCHOR SCROLLING
   ========================================================= */

html {
    scroll-behavior: smooth;
}

.medical-article-main section[id] {
    scroll-margin-top: 120px;
}

/* =========================================================
   SERVICES PAGE
   FULL DETAILS MATCH EXACT WIDTH OF SERVICE CARDS
   ========================================================= */

.service-detail-page .service-detail-full-content {
    width: 100%;
    max-width: none;
    margin: 5rem 0 0;
    padding: 0;
}

.service-detail-page .service-detail-full-content .medical-article-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}


/* Detail sections */

.service-detail-page .service-detail-full-content section {
    width: 100%;
    padding: 2.4rem 0 2.6rem;
    margin: 0;
    border-bottom: 1px solid rgba(22, 58, 92, 0.10);
}

.service-detail-page .service-detail-full-content section:first-child {
    padding-top: 0;
}

.service-detail-page .service-detail-full-content section:last-of-type {
    border-bottom: 0;
}


/* Do NOT artificially restrict paragraphs/lists */

.service-detail-page .service-detail-full-content section p,
.service-detail-page .service-detail-full-content section ul {
    max-width: none;
}


/* Heading spacing */

.service-detail-page .service-detail-full-content section h2 {
    margin-top: 0.35rem;
    margin-bottom: 0.8rem;
}


/* Smooth scrolling from cards */

html {
    scroll-behavior: smooth;
}

.service-detail-page .service-detail-full-content section[id] {
    scroll-margin-top: 120px;
}


/* Mobile */

@media (max-width: 767px) {

    .service-detail-page .service-detail-full-content {
        margin-top: 3rem;
    }

    .service-detail-page .service-detail-full-content section {
        padding: 2rem 0;
    }

}