:root {
    --primary: #153b4c;
    --primary-dark: #0f2f3d;
    --secondary: #b79a68;

    --background: #f7f6f2;
    --surface: #ffffff;

    --text: #1d2a31;
    --text-soft: #647078;

    --border: #e1e4e3;

    --container: 1180px;
}


/* RESET */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--background);

    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 86px;

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

    gap: 40px;
}

.brand {
    display: flex;
    flex-direction: column;

    line-height: 1.2;
}

.brand-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.brand-subtitle {
    margin-top: 5px;

    font-size: 12px;
    color: var(--text-soft);
}

.main-nav {
    display: flex;
    align-items: center;

    gap: 28px;

    font-size: 14px;
    font-weight: 500;
}

.main-nav > a:not(.appointment-button) {
    position: relative;
}

.main-nav > a:not(.appointment-button)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--secondary);

    transition: width 0.25s ease;
}

.main-nav > a:not(.appointment-button):hover::after {
    width: 100%;
}

.appointment-button {
    padding: 12px 20px;

    background: var(--primary);
    color: white;

    border-radius: 3px;
}

.hero-slide.leaving {
    opacity: 1;
    visibility: visible;
    transform: translateX(-100%);
}


/* HERO */

.hero-section {
    min-height: 690px;

    display: flex;
    align-items: center;

    padding: 70px 0;

    background:
        linear-gradient(
            90deg,
            #f5f3ed 0%,
            #f5f3ed 55%,
            #edf1f0 55%,
            #edf1f0 100%
        );
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: 80px;
}

.hero-eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    color: var(--secondary);

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

    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 {
    margin: 0;

    color: var(--primary);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(54px, 6vw, 82px);
    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--primary-dark);
}

.hero-description {
    max-width: 590px;

    margin: 30px 0 25px;

    color: var(--text-soft);

    font-size: 18px;
}

.hero-specialties {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 34px;
}

.hero-specialties span {
    padding: 7px 12px;

    background: rgba(21, 59, 76, 0.06);

    color: var(--primary);

    border: 1px solid rgba(21, 59, 76, 0.12);

    font-size: 13px;
}

.hero-actions {
    display: flex;
    gap: 14px;
}

.button {
    display: inline-flex;

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

    min-width: 150px;

    padding: 14px 24px;

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

    border-radius: 3px;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--primary);
    color: white;
}

.button-primary:hover {
    background: var(--primary-dark);
}

.button-secondary {
    background: transparent;

    color: var(--primary);

    border: 1px solid var(--primary);
}


/* HERO IMAGE */

.hero-image-wrapper {
    position: relative;

    display: flex;
    justify-content: center;
}

.hero-image-wrapper::before {
    content: "";

    position: absolute;

    width: 390px;
    height: 520px;

    top: -25px;
    right: 20px;

    border: 1px solid rgba(183, 154, 104, 0.65);
}

.hero-image {
    position: relative;
    z-index: 2;

    width: 420px;
    height: 560px;

    overflow: hidden;

    background: #dce3e2;

    box-shadow:
        0 25px 60px rgba(15, 47, 61, 0.12);
}

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

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* SPECIALTIES */

.specialties-section {
    padding: 85px 0 100px;

    background: white;
}

.section-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.section-heading > span {
    color: var(--secondary);

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

    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 12px 0 16px;

    color: var(--primary);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 44px;
    font-weight: 400;

    line-height: 1.15;
}

.section-heading p {
    margin: 0;

    color: var(--text-soft);

    font-size: 17px;
}

.specialty-grid {
    display: grid;

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

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.specialty-card {
    min-height: 320px;

    display: flex;
    flex-direction: column;

    padding: 34px 30px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.specialty-card:hover {
    background: var(--primary);

    color: white;

    transform: translateY(-4px);
}

.card-number {
    color: var(--secondary);

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

.specialty-card h3 {
    margin: 60px 0 15px;

    color: var(--primary);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
    font-weight: 400;

    line-height: 1.2;
}

.specialty-card:hover h3 {
    color: white;
}

.specialty-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 14px;
}

.specialty-card:hover p {
    color: rgba(255, 255, 255, 0.75);
}

.card-link {
    margin-top: auto;

    padding-top: 30px;

    color: var(--secondary);

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

/* ==================================================
   VIDEO SHOWCASE
================================================== */

.videos-section {
    padding: 110px 0;
    background: #f4f1ea;
}


.video-showcase {
    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(300px, 0.85fr);

    gap: 32px;

    align-items: stretch;
}


/* ==================================================
   MAIN VIDEO
================================================== */

.video-main-player {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #102f3d;
}


.main-video-cover {
    position: relative;

    width: 100%;
    height: 100%;

    padding: 0;

    border: 0;

    display: block;

    background: transparent;

    cursor: pointer;
}


.main-video-cover img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.main-video-cover::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03) 35%,
            rgba(7, 28, 36, 0.82) 100%
        );
}


.video-play-button {
    position: absolute;

    z-index: 5;

    top: 50%;
    left: 50%;

    width: 72px;
    height: 72px;

    display: flex;

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

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.94);

    color: var(--primary);

    font-size: 23px;

    box-shadow:
        0 14px 36px
        rgba(0, 0, 0, 0.2);
}


.video-overlay {
    position: absolute;

    z-index: 6;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 30px;

    text-align: left;

    color: white;
}


.video-overlay span {
    display: block;

    margin-bottom: 6px;

    color: #e0bd7b;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


.video-overlay strong {
    display: block;

    max-width: 600px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;

    font-weight: 400;

    line-height: 1.25;
}


.video-main-player iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* ==================================================
   SIDE VIDEO LIST
================================================== */

.video-side {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.side-video-card {
    width: 100%;

    min-height: 105px;

    display: grid;

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

    gap: 16px;

    align-items: center;

    padding: 10px;

    border: 1px solid #d9d5cb;

    background:
        rgba(255, 255, 255, 0.45);

    text-align: left;

    cursor: pointer;

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


.side-video-card:hover {
    background: white;

    border-color:
        rgba(21, 59, 76, 0.35);

    transform:
        translateX(-3px);
}


.side-video-card.active {
    background: white;

    border-color:
        var(--secondary);
}


.side-video-card img {
    width: 145px;

    aspect-ratio: 16 / 9;

    display: block;

    object-fit: cover;
}


.side-video-content {
    min-width: 0;
}


.side-video-content span {
    display: block;

    margin-bottom: 7px;

    color: var(--secondary);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;
}


.side-video-content strong {
    display: block;

    color: var(--primary);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.25;
}


/* ==================================================
   VIDEO PAGINATION
================================================== */

.video-pagination {
    margin-top: 24px;

    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 15px;
}


.video-pagination button {
    width: 42px;
    height: 42px;

    display: flex;

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

    border:
        1px solid
        rgba(21, 59, 76, 0.25);

    border-radius: 50%;

    background: transparent;

    color: var(--primary);

    cursor: pointer;
}


.video-pagination button:hover {
    background: var(--primary);

    color: white;
}


#video-group-number {
    min-width: 40px;

    text-align: center;

    color: var(--text-soft);

    font-size: 12px;
}


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

@media (max-width: 950px) {

    .video-showcase {
        grid-template-columns: 1fr;
    }

    .video-side {
        display: grid;

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

}


@media (max-width: 650px) {

    .videos-section {
        padding: 75px 0;
    }

    .video-overlay {
        padding: 18px;
    }

    .video-overlay strong {
        font-size: 20px;
    }

    .video-play-button {
        width: 58px;
        height: 58px;

        font-size: 19px;
    }

    .video-side {
        grid-template-columns: 1fr;
    }

    .side-video-card {
        grid-template-columns:
            120px
            minmax(0, 1fr);
    }

    .side-video-card img {
        width: 120px;
    }

}

/* FOOTER */

.site-footer {
    background: var(--primary-dark);

    color: white;
}

.footer-inner {
    min-height: 180px;

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

    gap: 40px;
}

.footer-inner p {
    margin: 6px 0 0;

    color: rgba(255, 255, 255, 0.6);

    font-size: 13px;
}

.footer-links {
    display: flex;

    gap: 26px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;
}

.footer-bottom {
    padding: 18px 24px;

    text-align: center;

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

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .main-nav > a:not(.appointment-button) {
        display: none;
    }

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

        gap: 60px;
    }

    .hero-section {
        background: #f5f3ed;
    }

    .hero-image-wrapper {
        justify-content: flex-start;
    }

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


@media (max-width: 650px) {

    .container {
        width: min(
            var(--container),
            calc(100% - 30px)
        );
    }

    .header-inner {
        min-height: 72px;
    }

    .brand-title {
        font-size: 16px;
    }

    .brand-subtitle {
        display: none;
    }

    .appointment-button {
        padding: 10px 14px;
    }

    .hero-section {
        min-height: auto;

        padding: 70px 0;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-image {
        width: 100%;
        height: 470px;
    }

    .hero-image-wrapper::before {
        display: none;
    }

    .specialties-section {
        padding: 75px 0;
    }

    .section-heading h2 {
        font-size: 35px;
    }

    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .specialty-card {
        min-height: 270px;
    }

    .footer-inner {
        padding: 45px 0;

        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;

        gap: 12px;
    }
}

/* =========================
   ABOUT PAGE
========================= */

.about-hero {
    padding: 90px 0 70px;
    background: #f7f6f2;
}

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

.about-hero-content h1 {
    margin: 12px 0 18px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
    color: #183846;
}

.about-lead {
    font-size: 22px;
    font-weight: 600;
    color: #284f5f;
    margin-bottom: 22px;
}

.about-hero-content p {
    max-width: 650px;
    font-size: 17px;
    line-height: 1.8;
    color: #56636a;
}

.about-hero-image {
    display: flex;
    justify-content: flex-end;
}

.about-hero-image img {
    width: 100%;
    max-width: 460px;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
}


.about-section {
    padding: 95px 0 110px;
    background: #ffffff;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 80px;
    align-items: start;
}

.about-main {
    max-width: 780px;
}

.about-main h2 {
    margin: 10px 0 25px;
    font-size: 36px;
    color: #183846;
}

.about-main > p {
    font-size: 17px;
    line-height: 1.85;
    color: #59666d;
    margin-bottom: 18px;
}

.about-divider {
    height: 1px;
    background: #dfe4e5;
    margin: 55px 0;
}


.experience-list {
    margin-top: 35px;
}

.experience-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 18px;
    padding-bottom: 30px;
    position: relative;
}

.experience-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 14px;
    bottom: 0;
    width: 1px;
    background: #d7dee0;
}

.experience-marker {
    width: 11px;
    height: 11px;
    margin-top: 7px;
    border-radius: 50%;
    background: #204c5c;
    position: relative;
    z-index: 2;
}

.experience-item h3 {
    margin: 0 0 8px;
    font-size: 19px;
    color: #183846;
}

.experience-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #667279;
}


.about-info-card {
    position: sticky;
    top: 110px;
    padding: 34px;
    background: #f5f7f6;
    border: 1px solid #e2e7e8;
}

.about-info-card h3 {
    margin: 12px 0 24px;
    font-size: 26px;
    color: #183846;
}

.about-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.about-info-card li {
    padding: 13px 0;
    border-bottom: 1px solid #dce3e4;
    font-size: 15px;
    color: #3e515a;
}

.about-info-card .btn {
    width: 100%;
    text-align: center;
}


@media (max-width: 900px) {

    .about-hero-grid,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-hero-grid {
        gap: 40px;
    }

    .about-hero-content h1 {
        font-size: 44px;
    }

    .about-hero-image {
        justify-content: flex-start;
    }

    .about-hero-image img {
        max-width: 100%;
        height: auto;
    }

    .about-layout {
        gap: 45px;
    }

    .about-info-card {
        position: static;
    }
}

/* =========================
   EXPERTISE PAGE
========================= */

.expertise-hero {
    padding: 85px 0 75px;
    background: #f7f6f2;
}

.expertise-hero h1 {
    margin: 12px 0 20px;
    max-width: 700px;
    font-size: 52px;
    line-height: 1.1;
    color: #183846;
}

.expertise-hero p {
    max-width: 720px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #5b686e;
}


.expertise-page {
    padding: 90px 0 105px;
    background: #fff;
}

.expertise-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.expertise-detail-card {
    position: relative;
    padding: 42px;
    border: 1px solid #dde4e5;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.expertise-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(24, 56, 70, 0.08);
}

.expertise-number {
    display: block;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #78909a;
}

.expertise-detail-card h2 {
    margin: 0 0 18px;
    font-size: 28px;
    color: #183846;
}

.expertise-detail-card p {
    min-height: 82px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.75;
    color: #5c696f;
}

.expertise-detail-card ul {
    margin: 0 0 30px;
    padding: 20px 0 20px 20px;
    border-top: 1px solid #edf0f1;
    border-bottom: 1px solid #edf0f1;
}

.expertise-detail-card li {
    margin: 8px 0;
    color: #3f525a;
    font-size: 15px;
}

.expertise-link {
    display: inline-block;
    color: #183846;
    font-weight: 700;
    text-decoration: none;
}

.expertise-link:hover {
    text-decoration: underline;
}


/* CTA */

.expertise-cta {
    padding: 70px 0;
    background: #f3f6f5;
}

.expertise-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.expertise-cta h2 {
    margin: 10px 0 0;
    font-size: 32px;
    line-height: 1.25;
    color: #183846;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .expertise-hero h1 {
        font-size: 42px;
    }

    .expertise-page-grid {
        grid-template-columns: 1fr;
    }

    .expertise-detail-card p {
        min-height: auto;
    }

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

/* =========================
   PATIENT INFORMATION PAGE
========================= */

.patient-info-hero {
    padding: 85px 0 75px;
    background: #f7f6f2;
}

.patient-info-hero h1 {
    margin: 12px 0 20px;
    max-width: 720px;
    font-size: 52px;
    line-height: 1.1;
    color: #183846;
}

.patient-info-hero p {
    max-width: 760px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #5b686e;
}


/* CONTENT */

.patient-info-page {
    padding: 90px 0 110px;
    background: #ffffff;
}

.patient-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.patient-info-card {
    min-height: 270px;
    padding: 34px;
    border: 1px solid #dde4e5;
    background: #ffffff;

    display: flex;
    flex-direction: column;

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

.patient-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(24, 56, 70, 0.08);
}

.patient-info-category {
    display: block;
    margin-bottom: 22px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;

    color: #6d8791;
}

.patient-info-card h2 {
    margin: 0 0 18px;

    font-size: 23px;
    line-height: 1.3;

    color: #183846;
}

.patient-info-card p {
    margin: 0 0 28px;

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

    color: #5c696f;
}

.patient-info-card a {
    margin-top: auto;

    padding-top: 20px;
    border-top: 1px solid #edf0f1;

    color: #183846;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.patient-info-card a:hover {
    text-decoration: underline;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

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

@media (max-width: 650px) {

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

    .patient-info-grid {
        grid-template-columns: 1fr;
    }

    .patient-info-card {
        min-height: auto;
    }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
    padding: 85px 0 75px;
    background: #f7f6f2;
}

.contact-hero h1 {
    margin: 12px 0 20px;
    font-size: 52px;
    line-height: 1.1;
    color: #183846;
}

.contact-hero p {
    max-width: 720px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #5b686e;
}

.contact-page {
    padding: 90px 0 110px;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: stretch;
}

.contact-details {
    display: grid;
    gap: 24px;
}

.contact-item {
    padding: 30px;
    border: 1px solid #dde4e5;
    background: #ffffff;
}

.contact-label {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #6d8791;
}

.contact-item h2 {
    margin: 0 0 14px;
    font-size: 24px;
    color: #183846;
}

.contact-item p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #5c696f;
}

.contact-text-link {
    color: #183846;
    font-weight: 700;
    text-decoration: none;
}

.contact-text-link:hover {
    text-decoration: underline;
}

.contact-map {
    min-height: 600px;
    border: 1px solid #dde4e5;
    overflow: hidden;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 420px;
    }

    .contact-hero h1 {
        font-size: 42px;
    }
}

/* =========================
   ARTICLE / PATIENT INFO DETAIL
========================= */

.article-hero {
    padding: 85px 0 75px;
    background: #f7f6f2;
}

.article-hero h1 {
    margin: 12px 0 20px;
    max-width: 760px;
    font-size: 52px;
    line-height: 1.1;
    color: #183846;
}

.article-hero p {
    max-width: 780px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #5b686e;
}

.article-page {
    padding: 90px 0 110px;
    background: #fff;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 720px) 300px;
    gap: 80px;
    align-items: start;
}

.article-content h2 {
    margin: 48px 0 16px;
    font-size: 28px;
    line-height: 1.3;
    color: #183846;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content p,
.article-content li {
    font-size: 16px;
    line-height: 1.85;
    color: #4f5f66;
}

.article-content p {
    margin: 0 0 20px;
}

.article-content ul {
    margin: 10px 0 28px;
    padding-left: 24px;
}

.article-note {
    margin-top: 55px;
    padding: 28px 30px;
    background: #f7f6f2;
    border-left: 3px solid #183846;
}

.article-note strong {
    display: block;
    margin-bottom: 10px;
    color: #183846;
}

.article-note p {
    margin: 0;
}

.article-sidebar {
    position: sticky;
    top: 110px;
}

.article-side-card {
    padding: 30px;
    border: 1px solid #dde4e5;
}

.article-side-card h3 {
    margin: 10px 0 15px;
    font-size: 22px;
    line-height: 1.35;
    color: #183846;
}

.article-side-card p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.7;
    color: #5c696f;
}

.article-back-link {
    display: block;
    margin-top: 25px;
    color: #183846;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 900px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .article-sidebar {
        position: static;
    }

    .article-hero h1 {
        font-size: 42px;
    }
}

/* HERO BUTTONS */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    padding: 14px 24px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none;
    border: 1px solid #183846;
    cursor: pointer;

    transition: all 0.2s ease;
}

.hero-actions .btn-primary {
    background: #183846;
    color: #ffffff;
}

.hero-actions .btn-primary:hover {
    background: #102d38;
    color: #ffffff;
}

.hero-actions .btn-secondary {
    background: transparent;
    color: #183846;
}

.hero-actions .btn-secondary:hover {
    background: #183846;
    color: #ffffff;
}

/* =========================
   HEADER DROPDOWN MENU
========================= */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    cursor: pointer;
    white-space: nowrap;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    min-width: 230px;
    padding: 10px 0;

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

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

    z-index: 1000;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown-menu a {
    display: block;
    padding: 11px 18px;

    color: #173b4b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: #f5f2eb;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-header .container {
    max-width: 1180px;
}

.main-nav {
    gap: 18px;
}

.main-nav > a,
.nav-dropdown-toggle {
    font-size: 13px;
}

.appointment-button {
    padding: 12px 16px;
    white-space: nowrap;
}

.brand {
    min-width: 205px;
}

.nav-arrow {
    display: inline-block;
    margin-left: 4px;
    font-size: 14px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav > a,
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 13px;
    line-height: 1.25;

    text-decoration: none;
    color: #173b4b;
    white-space: nowrap;
}

.nav-dropdown-toggle {
    position: relative;
    padding-right: 14px;
}

.nav-dropdown-toggle::after {
    content: "";
    width: 6px;
    height: 6px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform: rotate(45deg);
    margin-top: -3px;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
    transform: rotate(225deg);
    margin-top: 3px;
}

.site-header .container {
    min-height: 82px;
}

.nav-dropdown {
    height: 82px;
    display: flex;
    align-items: center;
}

.main-nav > .appointment-button {
    color: #ffffff;
}

/* HEADER WIDTH FIX */

.site-header .container {
    width: min(1480px, calc(100% - 48px));
    max-width: none;
}

.header-inner {
    gap: 24px;
}

.main-nav {
    gap: 16px;
}

.brand {
    flex: 0 0 auto;
}

/* ==================================================
   PREMIUM HOME HERO - TEST
   Doctor photo file is NOT modified
================================================== */

.hero-section {
    min-height: 680px;
    padding: 70px 0;
    background:
        linear-gradient(
            90deg,
            #f6f3ec 0%,
            #f6f3ec 59%,
            #edf2f1 59%,
            #edf2f1 100%
        );
}

.hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
    gap: 90px;
}

.hero-eyebrow {
    margin-bottom: 24px;
    color: #b58d4f;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.3px;
}

.hero-content h1 {
    max-width: 650px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(62px, 6vw, 88px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -2.5px;
    color: #143846;
}

.hero-description {
    max-width: 590px;
    margin: 34px 0 24px;
    font-size: 17px;
    line-height: 1.75;
    color: #607078;
}

.hero-specialties {
    margin-bottom: 34px;
}

.hero-specialties span {
    padding: 8px 13px;
    background: rgba(20, 56, 70, 0.035);
    border: 1px solid rgba(20, 56, 70, 0.15);
    color: #143846;
}

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

.hero-image-wrapper::before {
    width: 390px;
    height: 520px;
    top: -25px;
    right: 10px;
    border: 1px solid rgba(181, 141, 79, .62);
}

.hero-image {
    width: 420px;
    height: 560px;
    background: #dfe5e4;
    box-shadow: 0 28px 65px rgba(20, 56, 70, .13);
}

/* IMPORTANT:
   Do not alter the image itself */
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ==================================================
   PREMIUM HERO - STRONGER VERSION
================================================== */

.hero-section {
    min-height: 720px;
    padding: 90px 0 80px;
    background:
        linear-gradient(
            90deg,
            #f7f3eb 0%,
            #f7f3eb 61%,
            #eef2f1 61%,
            #eef2f1 100%
        );
}

.hero-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(420px, 0.78fr);
    gap: 110px;
}

.hero-content {
    padding-left: 10px;
}

.hero-eyebrow {
    margin-bottom: 28px;
    font-size: 13px;
    letter-spacing: 2.6px;
    color: #bd9558;
}

.hero-content h1 {
    max-width: 610px;
    font-size: clamp(68px, 6.5vw, 94px);
    line-height: 0.88;
    letter-spacing: -3px;
}

.hero-description {
    max-width: 610px;
    margin-top: 38px;
    font-size: 18px;
    line-height: 1.8;
}

.hero-specialties {
    gap: 9px;
    margin-top: 26px;
    margin-bottom: 36px;
}

.hero-specialties span {
    padding: 8px 14px;
    background: transparent;
    border: 1px solid #cfd6d6;
}

.hero-actions {
    gap: 12px;
}

.button {
    min-width: 165px;
    padding: 15px 28px;
    border-radius: 0;
}

.button-primary {
    background: #143846;
}

.button-secondary {
    background: #f7f3eb;
}

.hero-image-wrapper {
    justify-content: flex-start;
}

.hero-image-wrapper::before {
    width: 390px;
    height: 520px;
    top: -32px;
    right: -5px;
    border-color: rgba(189, 149, 88, .7);
}

.hero-image {
    width: 420px;
    height: 560px;
    box-shadow: 0 22px 55px rgba(20, 56, 70, .11);
}

/* ==========================================================
   EDITORIAL HOME HERO
   Independent from old hero styles
========================================================== */

.editorial-hero {
    width: 100%;
    min-height: 690px;

    display: grid;
    grid-template-columns: 59% 41%;

    background: #f6f3ec;
}


/* LEFT SIDE */

.editorial-hero__left {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 75px 85px 75px 40px;
}

.editorial-hero__content {
    width: 100%;
    max-width: 650px;
}

.editorial-hero__eyebrow {
    display: block;

    margin-bottom: 26px;

    color: #b88e50;

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

    letter-spacing: 2.4px;
}

.editorial-hero__content h1 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(66px, 6vw, 92px);
    font-weight: 400;

    line-height: .89;
    letter-spacing: -3px;

    color: #133847;
}

.editorial-hero__content h1 span {
    display: block;
}

.editorial-hero__description {
    max-width: 610px;

    margin: 38px 0 24px;

    color: #5f6f76;

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


/* TAGS */

.editorial-hero__tags {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 34px;
}

.editorial-hero__tags a {
    padding: 8px 13px;

    border: 1px solid #ccd3d3;

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

    color: #153b4c;

    font-size: 12px;

    transition:
        background .2s ease,
        border-color .2s ease;
}

.editorial-hero__tags a:hover {
    background: #ffffff;
    border-color: #153b4c;
}


/* ACTION BUTTONS */

.editorial-hero__actions {
    display: flex;
    gap: 12px;
}

.editorial-btn {
    min-width: 155px;

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

    padding: 14px 24px;

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

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

.editorial-btn:hover {
    transform: translateY(-2px);
}

.editorial-btn--primary {
    background: #153b4c;
    border: 1px solid #153b4c;

    color: #ffffff;
}

.editorial-btn--primary:hover {
    background: #0f2f3d;
}

.editorial-btn--outline {
    background: transparent;

    border: 1px solid #153b4c;

    color: #153b4c;
}

.editorial-btn--outline:hover {
    background: #153b4c;
    color: #ffffff;
}


/* RIGHT SIDE */

.editorial-hero__right {
    min-width: 0;

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

    padding: 65px 40px;

    background: #edf2f1;
}

.editorial-photo-frame {
    position: relative;

    width: min(420px, 100%);
    height: 560px;
}

.editorial-photo-frame__line {
    position: absolute;

    top: -26px;
    right: -28px;

    width: 94%;
    height: 94%;

    border: 1px solid rgba(184, 142, 80, .72);
}

.editorial-photo-frame img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    box-shadow: 0 25px 55px rgba(15, 47, 61, .12);
}


/* TABLET */

@media (max-width: 1000px) {

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

    .editorial-hero__left {
        justify-content: center;
        padding: 70px 40px;
    }

    .editorial-hero__right {
        justify-content: center;
        padding: 70px 40px;
    }
}


/* MOBILE */

@media (max-width: 650px) {

    .editorial-hero__left {
        padding: 55px 22px;
    }

    .editorial-hero__content h1 {
        font-size: 58px;
    }

    .editorial-hero__description {
        font-size: 16px;
    }

    .editorial-hero__actions {
        flex-direction: column;
    }

    .editorial-btn {
        width: 100%;
    }

    .editorial-hero__right {
        padding: 55px 22px;
    }

    .editorial-photo-frame {
        width: 100%;
        height: auto;
    }

    .editorial-photo-frame img {
        height: auto;
    }

    .editorial-photo-frame__line {
        display: none;
    }
}

/* ==========================================================
   HOME - PREMIUM SPECIALTIES
   Visual only. Existing links/functions remain untouched.
========================================================== */

.specialties-section {
    padding: 105px 0 115px;
    background: #fffdf9;
}

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

.specialties-section .section-heading > span {
    color: #b58d4f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.specialties-section .section-heading h2 {
    margin: 12px 0 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.08;

    color: #143846;
}

.specialties-section .section-heading p {
    max-width: 650px;
    color: #66747a;
    font-size: 16px;
    line-height: 1.8;
}


/* GRID */

.specialties-section .specialty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    border: 0;
}


/* CARDS */

.specialties-section .specialty-card {
    position: relative;

    min-height: 330px;

    padding: 34px 30px;

    background: #ffffff;

    border: 1px solid #e2dfd7;

    box-shadow:
        0 12px 35px rgba(20, 56, 70, 0.035);

    overflow: hidden;

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

.specialties-section .specialty-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background: #b58d4f;

    transition: height .3s ease;
}

.specialties-section .specialty-card:hover {
    transform: translateY(-7px);

    background: #153b4c;

    border-color: #153b4c;

    box-shadow:
        0 25px 55px rgba(20, 56, 70, .15);
}

.specialties-section .specialty-card:hover::before {
    height: 100%;
}


/* NUMBER */

.specialties-section .card-number {
    color: #b58d4f;

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


/* TITLE */

.specialties-section .specialty-card h3 {
    margin: 58px 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
    font-weight: 400;
    line-height: 1.15;

    color: #153b4c;

    transition: color .25s ease;
}

.specialties-section .specialty-card:hover h3 {
    color: #ffffff;
}


/* DESCRIPTION */

.specialties-section .specialty-card p {
    margin: 0;

    color: #68767c;

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

    transition: color .25s ease;
}

.specialties-section .specialty-card:hover p {
    color: rgba(255, 255, 255, .72);
}


/* LINK */

.specialties-section .card-link {
    margin-top: auto;
    padding-top: 28px;

    color: #b58d4f;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .2px;
}


/* TABLET */

@media (max-width: 1000px) {

    .specialties-section .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* MOBILE */

@media (max-width: 650px) {

    .specialties-section {
        padding: 75px 0;
    }

    .specialties-section .section-heading h2 {
        font-size: 38px;
    }

    .specialties-section .specialty-grid {
        grid-template-columns: 1fr;
    }

    .specialties-section .specialty-card {
        min-height: 285px;
    }
}

/* ==========================================================
   SPECIALTIES - EDITORIAL 2x2 REDESIGN
========================================================== */

.specialties-section {
    padding: 110px 0 125px !important;
    background: #f2eee5 !important;
}

.specialties-section .section-heading {
    max-width: 760px !important;
    margin-bottom: 60px !important;
}

.specialties-section .section-heading > span {
    color: #b58d4f !important;
    font-size: 12px !important;
    letter-spacing: 2.5px !important;
}

.specialties-section .section-heading h2 {
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 52px !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
    color: #153b4c !important;
}


/* BARİZ ŞEKİLDE 2 x 2 */

.specialties-section .specialty-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;

    border: none !important;
}


/* LARGE EDITORIAL CARD */

.specialties-section .specialty-card {
    position: relative !important;

    min-height: 285px !important;
    padding: 38px 42px !important;

    border: none !important;
    background: #fffdf9 !important;

    box-shadow:
        0 15px 45px rgba(21, 59, 76, .07) !important;

    overflow: hidden !important;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease !important;
}


/* LARGE NUMBER */

.specialties-section .card-number {
    display: block !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 54px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    color: rgba(181, 141, 79, .35) !important;
}


/* CARD TITLE */

.specialties-section .specialty-card h3 {
    margin: 25px 0 15px !important;

    font-family: Georgia, "Times New Roman", serif !important;

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

    color: #153b4c !important;
}


/* DESCRIPTION */

.specialties-section .specialty-card p {
    max-width: 470px !important;

    font-size: 15px !important;
    line-height: 1.75 !important;

    color: #66747a !important;
}


/* LINK */

.specialties-section .card-link {
    margin-top: auto !important;
    padding-top: 24px !important;

    color: #a77e40 !important;

    font-size: 13px !important;
    font-weight: 700 !important;
}


/* HOVER */

.specialties-section .specialty-card:hover {
    transform: translateY(-7px) !important;

    background: #153b4c !important;

    box-shadow:
        0 28px 60px rgba(21, 59, 76, .18) !important;
}

.specialties-section .specialty-card:hover h3 {
    color: #ffffff !important;
}

.specialties-section .specialty-card:hover p {
    color: rgba(255, 255, 255, .72) !important;
}

.specialties-section .specialty-card:hover .card-number {
    color: rgba(213, 180, 124, .65) !important;
}

.specialties-section .specialty-card:hover .card-link {
    color: #d5b47c !important;
}


/* MOBILE */

@media (max-width: 750px) {

    .specialties-section .specialty-grid {
        grid-template-columns: 1fr !important;
    }

    .specialties-section .section-heading h2 {
        font-size: 39px !important;
    }
}

/* ==========================================================
   MEDICAL HERO - REFERENCE DESIGN
========================================================== */

.medical-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(241,248,253,.98) 0%,
            rgba(241,248,253,.94) 48%,
            rgba(236,246,252,.72) 68%,
            rgba(236,246,252,.30) 100%
        );
}

.medical-hero__inner {
    width: min(1380px, calc(100% - 80px));
    min-height: 610px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 55% 45%;
    align-items: stretch;
}


/* LEFT */

.medical-hero__content {
    position: relative;
    z-index: 3;

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

    padding: 70px 45px 90px 0;
}

.medical-hero__eyebrow {
    margin-bottom: 20px;

    color: #5388b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.medical-hero__content h1 {
    max-width: 720px;
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 5vw, 76px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -2px;

    color: #123f6d;
}

.medical-hero__content h1 span {
    display: block;
    color: #1670c8;
}

.medical-hero__content p {
    max-width: 650px;

    margin: 25px 0 30px;

    color: #577086;
    font-size: 16px;
    line-height: 1.75;
}


/* BUTTONS */

.medical-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.medical-btn {
    min-width: 190px;

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

    padding: 15px 25px;

    border-radius: 30px;

    color: #fff;
    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 8px 22px rgba(23, 78, 120, .14);

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

.medical-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(23, 78, 120, .20);
}

.medical-btn--blue {
    background: #176ec2;
}

.medical-btn--whatsapp {
    background: #20bd69;
}


/* RIGHT / REAL PHOTO */

.medical-hero__visual {
    position: relative;
    min-width: 0;

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

.medical-hero__photo {
    position: relative;

    width: 100%;
    height: 610px;
}

.medical-hero__photo::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            #f1f8fd 0%,
            rgba(241,248,253,.68) 8%,
            rgba(241,248,253,0) 28%
        );
}

.medical-hero__photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* TABLET */

@media (max-width: 1000px) {

    .medical-hero__inner {
        width: min(920px, calc(100% - 40px));
        grid-template-columns: 1fr;
    }

    .medical-hero__content {
        padding: 65px 0 40px;
    }

    .medical-hero__photo {
        height: 560px;
    }
}


/* MOBILE */

@media (max-width: 650px) {

    .medical-hero__inner {
        width: calc(100% - 30px);
    }

    .medical-hero__content h1 {
        font-size: 46px;
    }

    .medical-hero__actions {
        flex-direction: column;
    }

    .medical-btn {
        width: 100%;
    }

    .medical-hero__photo {
        height: 470px;
    }
}

/* ==========================================================
   HOME LOWER SECTIONS - MATCH MEDICAL HERO
========================================================== */

/* =========================
   SPECIALTIES
========================= */

.specialties-section {
    padding: 95px 0 105px !important;
    background: #f4f9fd !important;
}

.specialties-section .section-heading {
    max-width: 760px !important;
    margin-bottom: 50px !important;
}

.specialties-section .section-heading > span {
    color: #4f8dc5 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2.3px !important;
}

.specialties-section .section-heading h2 {
    margin: 12px 0 16px !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 46px !important;
    font-weight: 400 !important;
    line-height: 1.08 !important;

    color: #123f6d !important;
}

.specialties-section .section-heading p {
    color: #60788c !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
}


/* 2 x 2 CARDS */

.specialties-section .specialty-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;

    border: none !important;
}

.specialties-section .specialty-card {
    min-height: 240px !important;

    padding: 34px 36px !important;

    background: #ffffff !important;

    border: 1px solid #dceaf5 !important;

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

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease !important;
}

.specialties-section .specialty-card:hover {
    transform: translateY(-5px) !important;

    background: #ffffff !important;

    border-color: #8dbde3 !important;

    box-shadow:
        0 20px 45px rgba(37, 93, 137, .12) !important;
}


/* remove old gold side effect */

.specialties-section .specialty-card::before {
    display: none !important;
}

.specialties-section .card-number {
    display: none !important;
}

.specialties-section .specialty-card h3 {
    margin: 8px 0 14px !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 27px !important;
    font-weight: 400 !important;

    color: #123f6d !important;
}

.specialties-section .specialty-card:hover h3 {
    color: #176ec2 !important;
}

.specialties-section .specialty-card p {
    color: #667f91 !important;

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

.specialties-section .specialty-card:hover p {
    color: #667f91 !important;
}

.specialties-section .card-link {
    margin-top: auto !important;
    padding-top: 22px !important;

    color: #176ec2 !important;

    font-size: 13px !important;
    font-weight: 700 !important;
}


/* =========================
   VIDEOS
========================= */

.videos-section {
    padding: 95px 0 110px !important;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f3f9fd 100%
        ) !important;
}

.videos-section .section-heading > span {
    color: #4f8dc5 !important;
}

.videos-section .section-heading h2 {
    color: #123f6d !important;
}

.videos-section .section-heading p {
    color: #60788c !important;
}


/* MAIN VIDEO */

.video-main-player {
    border-radius: 18px !important;

    overflow: hidden !important;

    box-shadow:
        0 20px 45px rgba(31, 89, 132, .13) !important;
}

.main-video-cover::after {
    background:
        linear-gradient(
            180deg,
            rgba(8, 43, 72, .02) 35%,
            rgba(8, 43, 72, .82) 100%
        ) !important;
}

.video-play-button {
    background: #ffffff !important;

    color: #176ec2 !important;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .18) !important;
}


/* VIDEO TEXT */

.video-overlay span {
    color: #8fc8f3 !important;
}

.video-overlay strong {
    color: #ffffff !important;
}


/* RIGHT SIDE VIDEO CARDS */

.side-video-card {
    background: #ffffff !important;

    border: 1px solid #dceaf5 !important;

    border-radius: 12px !important;

    overflow: hidden !important;

    box-shadow:
        0 8px 22px rgba(37, 93, 137, .06) !important;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease !important;
}

.side-video-card:hover {
    transform: translateY(-3px) !important;

    border-color: #8dbde3 !important;

    box-shadow:
        0 14px 30px rgba(37, 93, 137, .12) !important;
}


/* pagination */

.video-pagination button {
    border-color: #9fc8e7 !important;
    color: #176ec2 !important;
}

.video-pagination button:hover {
    background: #176ec2 !important;
    color: #ffffff !important;
}


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

@media (max-width: 750px) {

    .specialties-section .specialty-grid {
        grid-template-columns: 1fr !important;
    }

    .specialties-section .section-heading h2 {
        font-size: 38px !important;
    }
}

/* ==========================================================
   COMPACT SERVICE STRIP
========================================================== */

.service-strip-section {
    position: relative;
    z-index: 10;

    margin-top: -42px;
    padding-bottom: 38px;

    background: transparent;
}

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

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

    border: 1px solid #dceaf5;
    border-radius: 24px;

    box-shadow:
        0 18px 45px rgba(31, 89, 132, .13);

    overflow: hidden;
}


/* ITEM */

.service-strip__item {
    min-height: 118px;

    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;

    gap: 18px;

    padding: 24px 28px;

    position: relative;

    background: transparent;

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

.service-strip__item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 24px;
    right: 0;
    bottom: 24px;

    width: 1px;

    background: #e1edf6;
}

.service-strip__item:hover {
    background: #f5faff;
}


/* ICON */

.service-strip__icon {
    width: 48px;
    height: 48px;

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

.service-strip__icon svg {
    width: 42px;
    height: 42px;

    fill: none;
    stroke: #176ec2;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* TEXT */

.service-strip__content h3 {
    margin: 0 0 5px;

    color: #123f6d;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.service-strip__content p {
    margin: 0;

    color: #6a8295;

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


/* TABLET */

@media (max-width: 1000px) {

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

    .service-strip__item:nth-child(2)::after {
        display: none;
    }

    .service-strip__item:nth-child(-n+2) {
        border-bottom: 1px solid #e1edf6;
    }
}


/* MOBILE */

@media (max-width: 650px) {

    .service-strip-section {
        margin-top: 0;
        padding: 20px 0 35px;
    }

    .service-strip {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .service-strip__item {
        min-height: 100px;
    }

    .service-strip__item::after {
        display: none !important;
    }

    .service-strip__item:not(:last-child) {
        border-bottom: 1px solid #e1edf6;
    }
}

/* HEADER DOCTOR NAME */

.brand-title,
.brand-name,
.site-brand strong {
    font-family: "Times New Roman", Times, serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.2px !important;
}

.service-strip__icon i {
    font-size: 34px;
    color: #1976d2;
    line-height: 1;
}

/* ==========================================================
   ABOUT PAGE - MATCH HOME MEDICAL THEME
========================================================== */

.about-hero {
    padding: 85px 0 75px !important;

    background:
        linear-gradient(
            180deg,
            #f4f9fd 0%,
            #eef6fb 100%
        ) !important;
}

.about-hero-content h1 {
    color: #123f6d !important;
}

.about-lead {
    color: #176ec2 !important;
}

.about-hero-content p {
    color: #5f7487 !important;
}

.about-hero-image img {
    border-radius: 18px !important;

    box-shadow:
        0 20px 45px rgba(31, 89, 132, .12) !important;
}


/* MAIN CONTENT */

.about-section {
    padding: 90px 0 110px !important;
    background: #ffffff !important;
}

.about-main h2 {
    color: #123f6d !important;
}

.about-main > p {
    color: #5f7487 !important;
}

.about-divider {
    background: #dceaf5 !important;
}


/* EXPERIENCE / TIMELINE */

.experience-marker {
    background: #176ec2 !important;
}

.experience-item:not(:last-child)::before {
    background: #dceaf5 !important;
}

.experience-item h3 {
    color: #123f6d !important;
}

.experience-item p {
    color: #647b8d !important;
}


/* RIGHT INFO CARD */

.about-info-card {
    background: #f4f9fd !important;

    border: 1px solid #dceaf5 !important;

    border-radius: 16px !important;

    box-shadow:
        0 12px 30px rgba(31, 89, 132, .06) !important;
}

.about-info-card h3 {
    color: #123f6d !important;
}

.about-info-card li {
    color: #49677d !important;
    border-bottom: 1px solid #dceaf5 !important;
}

.about-info-card .btn {
    background: #176ec2 !important;
    border-color: #176ec2 !important;
    color: #ffffff !important;

    border-radius: 28px !important;
}

.about-info-card .btn:hover {
    background: #125da5 !important;
    border-color: #125da5 !important;
}


/* SMALL LABELS / EYEBROWS */

.about-hero .section-label,
.about-section .section-label,
.about-hero .eyebrow,
.about-section .eyebrow {
    color: #4f8dc5 !important;
}


/* MOBILE */

@media (max-width: 900px) {

    .about-info-card {
        border-radius: 14px !important;
    }

    .about-hero-content h1 {
        font-size: 44px !important;
    }
}

/* ABOUT PAGE - CONTINUOUS BLUE TONE */

.about-section {
    background: #dcecf8 !important;
}

.about-main,
.about-layout {
    background: transparent !important;
}

.about-info-card {
    background: #f6fbff !important;
}

.about-divider {
    background: #cfe2f1 !important;
}

/* ==========================================================
   GLOBAL HEADER - MATCH INNER PAGE BLUE THEME
========================================================== */

.site-header {
    background: #dcecf8 !important;
    border-bottom: 1px solid #c7ddeb !important;
}


/* DOCTOR NAME */

.brand-title {
    color: #123f6d !important;
}


/* SUBTITLE */

.brand-subtitle {
    color: #5f7487 !important;
}


/* NAVIGATION */

.main-nav,
.main-nav a,
.nav-dropdown-toggle {
    color: #123f6d !important;
}


/* NAV HOVER / ACTIVE */

.main-nav > a:not(.appointment-button)::after {
    background: #176ec2 !important;
}

.nav-dropdown-toggle:hover,
.main-nav > a:not(.appointment-button):hover {
    color: #176ec2 !important;
}


/* APPOINTMENT BUTTON */

.appointment-button {
    background: #123f6d !important;
    color: #ffffff !important;
    border-radius: 4px !important;
}

.appointment-button:hover {
    background: #176ec2 !important;
    color: #ffffff !important;
}


/* DROPDOWN MENUS */

.nav-dropdown-menu {
    background: #f6fbff !important;
    border: 1px solid #cfe2f1 !important;
}

.nav-dropdown-menu a {
    color: #123f6d !important;
}

.nav-dropdown-menu a:hover {
    background: #e7f2fa !important;
    color: #176ec2 !important;
}

/* HEADER RENDEVU BUTONU - WHITE TEXT */

.site-header .appointment-button,
.site-header .appointment-button:link,
.site-header .appointment-button:visited,
.site-header .appointment-button:hover,
.site-header .appointment-button:active {
    color: #ffffff !important;
}

/* ==========================================================
   GLOBAL INNER PAGE THEME
   Match homepage medical blue system
========================================================== */

:root {
    --inner-hero-bg: #f4f9fd;
    --inner-content-bg: #dcecf8;
    --inner-surface: #ffffff;

    --inner-primary: #123f6d;
    --inner-accent: #176ec2;

    --inner-text: #5f7487;
    --inner-border: #cfe2f1;
}


/* ==========================================================
   INNER PAGE HERO AREAS
========================================================== */

.about-hero,
.expertise-hero,
.patient-info-hero,
.contact-hero,
.article-hero {
    background: var(--inner-hero-bg) !important;
}


/* HERO HEADINGS */

.about-hero h1,
.expertise-hero h1,
.patient-info-hero h1,
.contact-hero h1,
.article-hero h1 {
    color: var(--inner-primary) !important;
}


/* HERO TEXT */

.about-hero p,
.expertise-hero p,
.patient-info-hero p,
.contact-hero p,
.article-hero p {
    color: var(--inner-text) !important;
}


/* SMALL LABELS */

.about-hero .section-label,
.expertise-hero .section-label,
.patient-info-hero .section-label,
.contact-hero .section-label,
.article-hero .section-label,
.about-hero .eyebrow,
.expertise-hero .eyebrow,
.patient-info-hero .eyebrow,
.contact-hero .eyebrow,
.article-hero .eyebrow {
    color: var(--inner-accent) !important;
}


/* ==========================================================
   MAIN CONTENT BACKGROUNDS
========================================================== */

.about-section,
.expertise-page,
.patient-info-page,
.contact-page,
.article-page {
    background: var(--inner-content-bg) !important;
}


/* ==========================================================
   MAIN HEADINGS
========================================================== */

.about-main h2,
.expertise-page h2,
.patient-info-page h2,
.contact-page h2,
.article-content h2,
.article-side-card h3,
.expertise-cta h2 {
    color: var(--inner-primary) !important;
}


/* ==========================================================
   BODY TEXT
========================================================== */

.about-main p,
.expertise-page p,
.patient-info-page p,
.contact-page p,
.article-content p,
.article-content li,
.article-side-card p {
    color: var(--inner-text) !important;
}


/* ==========================================================
   CARDS / PANELS
========================================================== */

.about-info-card,
.expertise-detail-card,
.patient-info-card,
.contact-item,
.article-side-card,
.article-note {
    background: var(--inner-surface) !important;

    border: 1px solid var(--inner-border) !important;

    border-radius: 14px !important;

    box-shadow:
        0 10px 28px rgba(31, 89, 132, .06) !important;
}


/* ==========================================================
   CARD TITLES
========================================================== */

.about-info-card h3,
.expertise-detail-card h2,
.patient-info-card h2,
.contact-item h2,
.article-side-card h3 {
    color: var(--inner-primary) !important;
}


/* ==========================================================
   DIVIDERS / BORDERS
========================================================== */

.about-divider,
.expertise-detail-card ul,
.patient-info-card a,
.about-info-card li,
.contact-item,
.article-note {
    border-color: var(--inner-border) !important;
}


/* ==========================================================
   LINKS / ACCENTS
========================================================== */

.expertise-link,
.patient-info-card a,
.contact-text-link,
.article-back-link,
.card-link {
    color: var(--inner-accent) !important;
}


/* ==========================================================
   CTA AREAS
========================================================== */

.expertise-cta {
    background: #e7f2fa !important;
}


/* ==========================================================
   BUTTONS
========================================================== */

.about-info-card .btn,
.expertise-page .btn,
.contact-page .btn,
.article-page .btn {
    background: var(--inner-accent) !important;
    border-color: var(--inner-accent) !important;
    color: #ffffff !important;

    border-radius: 26px !important;
}

.about-info-card .btn:hover,
.expertise-page .btn:hover,
.contact-page .btn:hover,
.article-page .btn:hover {
    background: #125da5 !important;
    border-color: #125da5 !important;
    color: #ffffff !important;
}


/* ==========================================================
   TIMELINE
========================================================== */

.experience-marker {
    background: var(--inner-accent) !important;
}

.experience-item:not(:last-child)::before {
    background: var(--inner-border) !important;
}


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

@media (max-width: 900px) {

    .about-info-card,
    .expertise-detail-card,
    .patient-info-card,
    .contact-item,
    .article-side-card {
        border-radius: 12px !important;
    }
}

/* ==========================================================
   HEADER EK LOGO
========================================================== */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title,
.brand-subtitle {
    display: block;
}

/* HEADER BRAND - LOGO + TEXT SIDE BY SIDE */

.site-header .brand {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
}

.site-header .brand-logo {
    width: 58px !important;
    height: 58px !important;
    object-fit: contain;
    flex: 0 0 58px;
}

.site-header .brand-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
    align-items: flex-start;
}

.site-header .brand-title {
    display: block;
    white-space: nowrap;
}

.site-header .brand-subtitle {
    display: block;
    white-space: nowrap;
}

/* ==========================================================
   HERO SLIDER
========================================================== */

.hero-slider {
    position: relative;
    min-height: 330px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 1;
    visibility: hidden;

    transform: translateX(100%);

    transition: transform 1.0s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 18px;
}

.hero-dot {
    width: 10px;
    height: 10px;

    border: none;
    border-radius: 50%;

    background: #b9cfe0;

    cursor: pointer;
    padding: 0;

    transition:
        width .25s ease,
        background .25s ease;
}

.hero-dot.active {
    width: 28px;
    border-radius: 999px;
    background: #176ec2;
}

/* HERO SLIDER - DOT / BUTTON SPACING */

.hero-slider-dots {
    margin-bottom: 24px !important;
}