:root{
    --bg: #1f2749;
    --bg-deep: #182042;
    --surface: #ffffff;
    --header-bg: #ffffff;
--header-menu: #1f2749;
    --surface-soft: #f7f7fb;
    --text: #ffffff;
    --text-dark: #1f2749;
    --text-soft: #5b678f;
    --muted: rgba(255,255,255,0.86);
    --line: rgba(255,255,255,0.10);
    --line-soft: #d8deef;
    --accent: #f0a43a;
    --accent-soft: #ffd18f;
    --maxw: 1280px;
    --content-maxw: 1120px;
    --shadow-lg: 0 24px 60px rgba(0,0,0,0.25);
    --shadow-md: 0 18px 40px rgba(25, 36, 76, 0.14);
    --shadow-sm: 0 10px 25px rgba(25, 36, 76, 0.08);
    --radius-xl: 40px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

*{
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.site-wrap{
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: visible;
    padding-top: 86px;
}

.site-main{
    position: relative;
}

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

/* HEADER */
.site-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 0;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(31, 39, 73, 0.08);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    width: 100%;
}

body.admin-bar .site-header{
    top: 32px;
}

@media (max-width: 782px){
    body.admin-bar .site-header{
        top: 46px;
    }
}

.header-inner{
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    gap: 24px;
    min-height: 86px;
    position: relative;
}
.header-brand{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 auto;
    min-width: 0;
}

.header-brand-logo{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1;
}

.header-brand-logo img{
    display: block;
}

.header-brand-logo img{
    max-height: 42px;
    width: auto;
}

.desktop-nav{
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-desktop-spacer{
    display: block;
    width: 100%;
}

.mobile-menu-toggle{
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    padding: 0;
    margin-left: auto;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span{
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-dark);
    transition: transform .25s ease, opacity .25s ease;
}

.mobile-menu-overlay{
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 35, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 95;
}

.mobile-side-menu{
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg);
    color: var(--text);
    box-shadow: none;
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 110;
    padding: 20px 22px 28px;
    overflow-y: auto;
}

.mobile-side-menu-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-side-menu-logo img{
    max-height: 34px;
    width: auto;
}

.mobile-side-menu-close{
    width: 38px;
    height: 38px;
    border: 0;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.mobile-menu{
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu li{
    list-style: none;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.mobile-menu .sub-menu{
    margin: 0;
    padding: 0 0 8px 14px;
    list-style: none;
    display: none;
}

.mobile-menu .sub-menu li{
    border-bottom: 0;
}

.mobile-menu .sub-menu a{
    min-height: 38px;
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    color: rgba(255,255,255,0.9);
}

.mobile-menu li.menu-item-has-children{
    position: relative;
}

.mobile-submenu-toggle{
    position: absolute;
    top: 8px;
    right: 0;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu li.is-open > .sub-menu{
    display: block;
}

.mobile-menu li.is-open > .mobile-submenu-toggle{
    transform: rotate(45deg);
}

.mobile-menu li.menu-item-has-children > a{
    padding-right: 42px;
}

body.mobile-menu-open{
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-overlay{
    opacity: 1;
    visibility: visible;
}

body.mobile-menu-open .mobile-side-menu{
    transform: translateX(0);
}


.primary-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.primary-menu li{
    list-style: none;
}

.primary-menu > li{
    position: relative;
}

.primary-menu > li + li::before{
    content: "|";
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: color-mix(in srgb, var(--header-menu) 38%, transparent);
    font-size: 13px;
    font-weight: 400;
}
.primary-menu > li.menu-item-has-children > a::after{
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 1.5px solid var(--header-menu);
    border-bottom: 1.5px solid var(--header-menu);
    transform: rotate(45deg) translateY(-1px);
}

.primary-menu .sub-menu{
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 280px;
    max-width: 340px;
    max-height: min(70vh, 520px);
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 80;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.28) transparent;
}

.primary-menu .sub-menu::-webkit-scrollbar{
    width: 8px;
}

.primary-menu .sub-menu::-webkit-scrollbar-track{
    background: transparent;
}

.primary-menu .sub-menu::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,0.22);
    border-radius: 999px;
}

.primary-menu .sub-menu::-webkit-scrollbar-thumb:hover{
    background: rgba(255,255,255,0.34);
}

.primary-menu .sub-menu li{
    position: relative;
}

.primary-menu .sub-menu a{
    display: flex;
    align-items: flex-start;
    min-height: 42px;
    padding: 10px 16px;
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #fff;
    white-space: normal;
    word-break: break-word;
}

.primary-menu .sub-menu a:hover{
    background: rgba(255,255,255,0.06);
}

.primary-menu .sub-menu .sub-menu{
    top: -10px;
    left: calc(100% + 8px);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu a{
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--header-menu);
    transition: color .25s ease, opacity .25s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a{
    opacity: 1;
    color: var(--accent);
}

.floating-logo-wrap{
    position: absolute;
    left: 140px;
    top: 0;
    z-index: 30;
}

.floating-logo{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 70px;
    min-height: 120px;
}

.floating-logo img{
    width: 70px;
    height: auto;
}

.site-logo-placeholder{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 110px;
    border-radius: 0 0 22px 22px;
    background: linear-gradient(180deg, #5fa0d0 0%, #7ac2e0 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    padding: 10px;
}

.site-logo-placeholder.small{
    width: 90px;
    height: 42px;
    min-height: auto;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
}

/* HOME BANNER */
.home-banner-section{
    margin: 0;
    padding: 0 0 10px;
    background: var(--surface);
}

.home-banner-container{
    width: min(100% - 40px, 1280px);
    margin: 0 auto;
}

.home-banner-box{
    width: 100%;
    min-height: 470px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 18px 40px rgba(25, 36, 76, 0.10);
    overflow: hidden;
}

.home-banner-placeholder{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    background: #eef2fb;
    color: #5b678f;
    font-size: 18px;
    font-weight: 700;
}

/* PAGE BANNER */
.standard-page-banner-section{
    padding: 0 0 10px;
    background: var(--surface-soft);
}

.standard-page-banner-container{
    width: min(100% - 40px, 1280px);
    margin: 0 auto;
}

.standard-page-banner-box{
    width: 100%;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(25, 36, 76, 0.10);
    background: #eef2fb;
}

.standard-page-banner-image{
    width: 100%;
    height: auto;
    display: block;
}

.standard-page-banner-placeholder{
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b678f;
    font-size: 18px;
    font-weight: 700;
    background: #eef2fb;
}

/* HERO ALTI GÖRSEL ALANI */
.info-panel-section{
    position: relative;
    padding: 8px 0 72px;
    background: var(--surface);
}

.info-panel-inner{
    display: flex;
    justify-content: center;
}

.info-panel-image-wrap{
    width: 100%;
    max-width: 1120px;
}

.info-panel-image{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.info-panel-placeholder{
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.72);
    border-radius: 12px;
    font-size: 18px;
    text-align: center;
    padding: 24px;
}


/* UZUN TANITIM ALANI */
.treatment-showcase-section{
    position: relative;
    padding: 0 0 100px;
    background: var(--surface);
}

.treatment-showcase-section > .container{
    width: min(100% - 40px, var(--content-maxw));
    margin: 0 auto;
}

.treatment-showcase-card{
    background: var(--surface);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 22px 26px 42px;
}

.treatment-showcase-topnote{
    font-size: 11px;
    line-height: 1.55;
    color: #445072;
    text-align: center;
    margin-bottom: 18px;
}

.treatment-showcase-topnote p{
    margin: 0;
}

.treatment-showcase-top{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 28px;
}

.treatment-ba-column{
    min-width: 0;
}

.treatment-ba-image-wrap{
    width: 100%;
}

.treatment-ba-image{
    width: 100%;
    height: auto;
    display: block;
}

.treatment-ba-placeholder{
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fc;
    border: 1px dashed #cfd7e8;
    color: #5b678f;
}

.treatment-ba-slider{
    position: relative;
    overflow: hidden;
}

.treatment-ba-track{
    position: relative;
}

.treatment-ba-slide{
    display: none;
}

.treatment-ba-slide.is-active{
    display: block;
}

.treatment-ba-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(31,39,73,0.86);
    color: #fff;
    cursor: pointer;
    z-index: 3;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-ba-prev{
    left: 14px;
}

.treatment-ba-next{
    right: 14px;
}

.treatment-ba-dots{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.treatment-ba-dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: #cfd7e8;
    cursor: pointer;
    padding: 0;
}

.treatment-ba-dot.is-active{
    background: #f0a43a;
}

.service-card-link{
    text-decoration: none;
}

.treatment-result-column{
    min-width: 0;
    padding-top: 8px;
}

.treatment-result-title{
    margin: 0 0 10px;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.12;
    font-weight: 800;
    color: #1d2848;
}

.treatment-result-subtitle{
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 800;
    color: #f0a43a;
}

.treatment-result-subtitle p,
.treatment-result-text p{
    margin: 0 0 10px;
}

.treatment-result-text{
    font-size: 14px;
    line-height: 1.75;
    color: #4e597b;
    margin-bottom: 12px;
}

.treatment-result-list{
    margin: 0;
    padding-left: 20px;
    color: #42506f;
    font-size: 14px;
    line-height: 1.75;
}

.treatment-result-list li{
    margin-bottom: 4px;
}

.treatment-process-grid{
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 34px;
}

.treatment-process-media{
    min-width: 0;
}

.treatment-process-image-wrap{
    width: 100%;
    height: 100%;
}

.treatment-process-image{
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.treatment-process-placeholder{
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fc;
    border: 1px dashed #cfd7e8;
    color: #5b678f;
}

.treatment-process-content{
    min-width: 0;
}

.treatment-process-title{
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 800;
    color: #f0a43a;
}

.treatment-steps-box{
    border: 1px solid #d9deeb;
    background: #fbfbfe;
}

.treatment-steps-intro{
    padding: 12px 16px;
    font-size: 12px;
    line-height: 1.65;
    color: #7c87a6;
    border-bottom: 1px solid #d9deeb;
}

.treatment-step-item{
    border-top: 1px solid #d9deeb;
    background: #fff;
}

.treatment-step-item:first-of-type{
    border-top: 0;
}

.treatment-step-item summary{
    list-style: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 44px 14px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #28355b;
}

.treatment-step-item summary::-webkit-details-marker{
    display: none;
}

.treatment-step-item summary::after{
    content: "+";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #6f7ca5;
    font-weight: 700;
}

.treatment-step-item[open] summary::after{
    content: "−";
}

.treatment-step-number{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #eef2fb;
    color: #1f2749;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.treatment-step-summary-text{
    display: block;
}

.treatment-step-body{
    padding: 0 14px 14px 46px;
    font-size: 13px;
    line-height: 1.75;
    color: #56627f;
}

.treatment-step-body p{
    margin: 0;
}

.services-showcase-header{
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
    margin-bottom: 18px;
}

.services-showcase-small{
    font-size: 14px;
    font-weight: 700;
    color: #2d3d66;
    margin-bottom: 8px;
}

.services-showcase-title{
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.05;
    font-weight: 800;
    color: #1f2749;
}

.services-showcase-text{
    max-width: 760px;
    font-size: 14px;
    line-height: 1.8;
    color: #53607e;
}

.services-showcase-text p{
    margin: 0;
}

.services-showcase-header-right{
    align-self: start;
}

.services-showcase-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #eeb34d 0%, #ffc96f 100%);
    color: #1f2749;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 12px 25px rgba(240, 164, 58, 0.24);
}

.services-cards-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 22px;
    margin-bottom: 38px;
}

.service-card-item{
    min-width: 0;
}

.service-card-thumb-wrap{
    margin-bottom: 12px;
    overflow: hidden;
    background: #eff2f9;
}

.service-card-thumb{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-card-thumb-placeholder{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b678f;
}

.service-card-title{
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    color: #1f2749;
}

.service-card-text{
    font-size: 13px;
    line-height: 1.75;
    color: #56627f;
}

.service-card-text p{
    margin: 0 0 10px;
}

.service-card-link{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #f0a43a;
    font-size: 12px;
    font-weight: 700;
}

.service-card-link::before{
    content: "➜";
    font-size: 11px;
}

.treatment-bottom-cta{
    padding-top: 8px;
    text-align: center;
}

.treatment-bottom-cta-title{
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 900;
    color: #1f2749;
}

.treatment-bottom-cta-text{
    max-width: 920px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.9;
    color: #53607e;
}

.treatment-bottom-cta-text p{
    margin: 0 0 10px;
}


/* WORDPRESS İÇERİK ALANI */
.front-page-default-content{
    padding-top: 28px;
}

.front-page-default-content{
    padding-top: 28px;
    background: #f3f3f3;
}

.front-page-default-content .entry-content,
.front-page-default-content .page-content{
    color: #1f2749;
    background: transparent;
    padding: 32px;
    box-shadow: none;
}

.front-page-default-content .entry-content > *:first-child,
.front-page-default-content .page-content > *:first-child{
    margin-top: 0;
}

.front-page-default-content .entry-content > *:last-child,
.front-page-default-content .page-content > *:last-child{
    margin-bottom: 0;
}

/* FOOTER */
.site-footer{
    position: relative;
    padding: 72px 0 58px;
    background-color: var(--bg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    color: #fff;
    overflow: hidden;
}

.site-footer-inner{
    position: relative;
    z-index: 2;
}

.site-footer-top{
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.site-footer-logo{
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.site-footer-logo img{
    max-height: 52px;
    width: auto;
}

.site-footer-intro{
    max-width: 620px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.96);
}

.site-footer-intro p{
    margin: 0;
}

.site-footer-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
    align-items: start;
}

.site-footer-col{
    text-align: center;
}

.site-footer-title{
    margin: 0 0 28px;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.site-footer-whatsapp{
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #fff;
    color: #20284b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, opacity .25s ease;
}

.site-footer-whatsapp:hover{
    transform: translateY(-2px);
    opacity: .9;
}

.site-footer-whatsapp svg{
    width: 26px;
    height: 26px;
}

.site-footer-address-block{
    max-width: 420px;
    margin: 0 auto 42px;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 600;
    color: rgba(255,255,255,0.96);
}

.site-footer-address-block:last-of-type{
    margin-bottom: 34px;
}

.site-footer-policy-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.site-footer-policy-link{
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.site-footer-contact-line{
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    color: rgba(255,255,255,0.96);
}

.site-footer-contact-line:last-child{
    margin-bottom: 0;
}

/* CUSTOMIZER EDIT SHORTCUT GÖRÜNÜRLÜK */
.customize-partial-edit-shortcut button{
    box-shadow: 0 8px 18px rgba(0,0,0,0.20) !important;
}

/* RESPONSIVE */
@media (max-width: 1200px){
    .floating-logo-wrap{
        left: 30px;
    }

.hero-grid{
    min-height: 520px;
    max-width: 1100px;
}

.treatment-showcase-card{
    padding: 34px 28px 46px;
}

.services-cards-grid{
    gap: 22px 18px;
}
}

@media (max-width: 991px){
    .site-header{
        padding-top: 0;
    }

.site-wrap{
    padding-top: 78px;
}

.home-banner-box{
    min-height: 0;
    aspect-ratio: 1120 / 420;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #ffffff;
}

.standard-page-banner-placeholder{
    min-height: 220px;
}

    .header-inner{
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 78px;
        padding-left: 0;
        gap: 16px;
    }
    .desktop-nav{
        display: none;
    }

    .mobile-menu-toggle{
        display: inline-flex;
    }


.hero-section{
    margin-top: 0;
    padding: 22px 0 26px;
}

.hero-grid{
    min-height: 360px;
}

.hero-box{
    min-height: 360px;
}


    .info-panel-section{
        padding: 30px 0 72px;
    }

    .info-panel-image-wrap{
        max-width: 920px;
    }

    .info-panel-placeholder{
        min-height: 400px;
    }

    .treatment-showcase-section{
        padding-bottom: 78px;
    }


    .treatment-process-grid{
        grid-template-columns: 1fr;
    }

.treatment-process-image{
    min-height: 280px;
}

.treatment-showcase-top{
    grid-template-columns: 1fr;
    gap: 24px;
}

.services-showcase-header{
    grid-template-columns: 1fr;
    align-items: start;
}

.services-cards-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

    .site-footer{
        padding: 56px 0 44px;
        background-size: cover;
    }

    .site-footer-grid{
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-footer-top{
        margin-bottom: 42px;
    }
    .front-blog-posts-section{
        padding-bottom: 72px;
    }

    .front-blog-posts-head{
        margin-bottom: 28px;
    }
    .floating-logo-wrap{
        display: none !important;
    }


    .header-brand{
        flex: 1 1 auto;
        justify-content: flex-start;
    }

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

    .header-brand-logo img{
        max-height: 56px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
}

@media (max-width: 767px){
    .container{
        width: min(100% - 24px, var(--maxw));
    }

.site-wrap{
    padding-top: 56px;
}

.home-banner-section{
    padding: 0 0 8px;
}

.home-banner-container,
.standard-page-banner-container{
    width: min(100% - 24px, 1280px);
}

    .home-banner-box{
        min-height: 0;
        aspect-ratio: 1280 / 420;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        background-color: #ffffff;
    }

.home-banner-placeholder{
    min-height: 170px;
    font-size: 15px;
}

.standard-page-banner-placeholder{
    min-height: 170px;
    font-size: 15px;
}

    .header-inner{
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 74px;
        padding-left: 0;
        gap: 12px;
    }

    .mobile-menu-toggle{
        display: inline-flex;
        width: 42px;
        height: 42px;
    flex: 0 0 42px;
    margin-left: 10px;
    }

.mobile-side-menu{
    width: 100vw;
    padding: 18px 18px 24px;
}
.hero-section{
    padding: 1px 0 3px;
    background: #ffffff
}

.hero-grid{
    min-height: 0;
    height: 48vw;
    max-height: 280px;
}

.hero-box{
    height: 48vw;
    max-height: 280px;
    min-height: 180px;
    background-size: cover;
    background-position: center center;
}  
.info-panel-section{
    margin-top: -1px;
    padding: 0 0 52px;
}

    .info-panel-image-wrap{
        max-width: 100%;
    }

    .info-panel-image{
        border-radius: 10px;
    }

    .info-panel-placeholder{
        min-height: 240px;
        font-size: 15px;
        border-radius: 10px;
    }

    .treatment-showcase-section{
        padding-bottom: 58px;
    }

    .treatment-ba-label{
        font-size: 11px;
    }


    .treatment-process-title{
        font-size: 22px;
    }

.treatment-showcase-card{
    padding: 24px 18px 34px;
}

.treatment-showcase-topnote{
    font-size: 10px;
    margin-bottom: 12px;
}

.treatment-result-title{
    font-size: 24px;
}

.treatment-result-text,
.treatment-result-list{
    font-size: 13px;
}

.treatment-process-title{
    font-size: 22px;
}

.treatment-step-item summary{
    padding: 13px 42px 13px 14px;
    font-size: 13px;
}

.treatment-step-body{
    padding: 0 14px 14px 42px;
    font-size: 12px;
}

.services-showcase-title{
    font-size: 24px;
}

.services-showcase-text{
    font-size: 13px;
    line-height: 1.75;
}

.services-cards-grid{
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
}

.service-card-title{
    font-size: 17px;
    margin-bottom: 10px;
}

.service-card-text{
    font-size: 12px;
}

.treatment-bottom-cta-title{
    font-size: 30px;
}

.treatment-bottom-cta-text{
    font-size: 13px;
    line-height: 1.8;
}

    .front-page-default-content .entry-content,
    .front-page-default-content .page-content{
        padding: 22px 18px;
    }

    .site-footer{
        padding: 44px 0 36px;
        background-size: cover;
        background-position: left top;
    }

    .site-footer-title{
        margin-bottom: 20px;
        font-size: 22px;
    }

    .site-footer-intro{
        font-size: 15px;
    }

    .site-footer-address-block,
    .site-footer-contact-line{
        font-size: 15px;
    }

    .site-footer-policy-links{
        flex-direction: column;
        gap: 12px;
    }
    .front-blog-posts-section{
        padding-bottom: 54px;
    }

    .front-blog-posts-title{
        font-size: 26px;
    }

    .front-blog-posts-text{
        font-size: 14px;
        line-height: 1.75;
    }
    .floating-logo-wrap{
        display: none !important;
    }

    .site-header{
        padding-top: 0;
    }

    .header-inner{
        min-height: 56px;
        justify-content: space-between;
        gap: 12px;
    }

    .header-brand{
        justify-content: flex-start;
    }

    .header-brand-logo img{
        max-height: 52px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
}

/* FRONT PAGE BLOG POSTS */
.front-blog-posts-section{
    padding: 0 0 90px;
    background: var(--surface-soft);
}

.front-blog-posts-head{
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.front-blog-posts-title{
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    color: #1f2749;
}

.front-blog-posts-text{
    font-size: 16px;
    line-height: 1.8;
    color: #56627f;
}

.front-blog-posts-text p{
    margin: 0;
}

.front-blog-card-grid{
    margin-top: 0;
}

/* BLOG ARCHIVE */
.blog-archive-main{
    background: var(--surface-soft);
    color: var(--text-dark);
    padding-bottom: 72px;
}

.blog-archive-hero{
    background: #20284b;
    color: #fff;
    padding: 72px 0 48px;
}

.blog-archive-hero-inner{
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.blog-archive-title{
    margin: 0 0 14px;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.06;
    font-weight: 800;
    color: #fff;
}

.blog-archive-text{
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
}

.blog-archive-section{
    padding: 42px 0 0;
}

.blog-card-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-card-item{
    background: var(--surface);
    box-shadow: 0 18px 40px rgba(25, 36, 76, 0.08);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease;
}

.blog-card-item:hover{
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(25, 36, 76, 0.14);
}

.blog-card-thumb-link{
    display: block;
}

.blog-card-thumb-wrap{
    position: relative;
    background: #e9edf6;
    overflow: hidden;
}

.blog-card-thumb{
    width: 100%;
    aspect-ratio: 1.15 / 0.78;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.blog-card-date-badge{
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    min-height: 34px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 39, 73, 0.92);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.blog-card-category-badge{
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    min-height: 34px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 164, 58, 0.95);
    color: #1f2749;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.blog-card-item:hover .blog-card-thumb{
    transform: scale(1.04);
}

.blog-card-thumb-placeholder{
    width: 100%;
    aspect-ratio: 1.15 / 0.78;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b678f;
    font-size: 16px;
    font-weight: 700;
}

.blog-card-content{
    padding: 22px 22px 24px;
}

.blog-card-title{
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 800;
}

.blog-card-title a{
    color: var(--text-dark);
    transition: color .25s ease;
}

.blog-card-title a:hover{
    color: #2f66ff;
}

.blog-card-excerpt{
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-soft);
    margin-bottom: 16px;
}

.blog-card-link{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    transition: transform .25s ease, opacity .25s ease;
}

.blog-card-item:hover .blog-card-link{
    transform: translateX(4px);
}

.blog-card-link::before{
    content: "➜";
    font-size: 11px;
}

.blog-archive-pagination{
    margin-top: 36px;
}

.blog-archive-pagination .nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-archive-pagination .page-numbers{
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1f2749;
    box-shadow: 0 10px 24px rgba(25, 36, 76, 0.08);
    font-size: 14px;
    font-weight: 700;
}

.blog-archive-pagination .page-numbers.current{
    background: #20284b;
    color: #fff;
}

.blog-empty-state{
    padding: 48px 24px;
    text-align: center;
    background: #fff;
    color: #56627f;
    box-shadow: 0 18px 40px rgba(25, 36, 76, 0.08);
}

@media (max-width: 991px){
    .blog-card-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-archive-hero{
        padding: 58px 0 40px;
    }
}

@media (max-width: 767px){
    .blog-archive-main{
        padding-bottom: 48px;
    }

    .blog-archive-hero{
        padding: 44px 0 32px;
    }

    .blog-archive-text{
        font-size: 15px;
    }

    .blog-archive-section{
        padding-top: 24px;
    }

    .blog-card-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-content{
        padding: 18px 18px 20px;
    }

    .blog-card-title{
        font-size: 19px;
    }

    .blog-card-excerpt{
        font-size: 13px;
        line-height: 1.75;
    }
}

/* CLINIC ARCHIVE */
.clinic-archive-main{
    background: #f3f3f3;
    color: #1f2749;
    padding-bottom: 72px;
}

.clinic-archive-hero{
    background: #20284b;
    color: #fff;
    padding: 72px 0 48px;
}

.clinic-archive-hero-inner{
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.clinic-archive-title{
    margin: 0 0 14px;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.06;
    font-weight: 800;
    color: #fff;
}

.clinic-archive-text{
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
}

.clinic-archive-section{
    padding: 42px 0 0;
}

.clinic-card-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.clinic-card-item{
    background: #fff;
    box-shadow: 0 18px 40px rgba(25, 36, 76, 0.08);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease;
}

.clinic-card-item:hover{
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(25, 36, 76, 0.14);
}

.clinic-card-thumb-wrap{
    background: #e9edf6;
    overflow: hidden;
}

.clinic-card-thumb{
    width: 100%;
    aspect-ratio: 1.15 / 0.78;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.clinic-card-item:hover .clinic-card-thumb{
    transform: scale(1.04);
}

.clinic-card-thumb-placeholder{
    width: 100%;
    aspect-ratio: 1.15 / 0.78;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b678f;
    font-size: 16px;
    font-weight: 700;
}

.clinic-card-content{
    padding: 22px 22px 24px;
}

.clinic-card-title{
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 800;
}

.clinic-card-title a{
    color: #1f2749;
    transition: color .25s ease;
}

.clinic-card-title a:hover{
    color: #2f66ff;
}

.clinic-card-excerpt{
    font-size: 14px;
    line-height: 1.8;
    color: #56627f;
    margin-bottom: 16px;
}

.clinic-card-link{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f0a43a;
    font-size: 13px;
    font-weight: 700;
}

.clinic-card-link::before{
    content: "➜";
    font-size: 11px;
}

.clinic-archive-pagination{
    margin-top: 36px;
}

.clinic-archive-pagination .nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.clinic-archive-pagination .page-numbers{
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1f2749;
    box-shadow: 0 10px 24px rgba(25, 36, 76, 0.08);
    font-size: 14px;
    font-weight: 700;
}

.clinic-archive-pagination .page-numbers.current{
    background: #20284b;
    color: #fff;
}

.clinic-empty-state{
    padding: 48px 24px;
    text-align: center;
    background: #fff;
    color: #56627f;
    box-shadow: 0 18px 40px rgba(25, 36, 76, 0.08);
}

/* CLINIC SINGLE */
.clinic-single-main{
    background: #f3f3f3;
    color: #1f2749;
    padding-bottom: 72px;
}

.clinic-single-hero{
    background: #20284b;
    color: #fff;
    padding: 72px 0 54px;
}

.clinic-single-hero-inner{
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.clinic-single-breadcrumb{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.78);
}

.clinic-single-breadcrumb a{
    color: rgba(255,255,255,0.88);
}

.clinic-single-title{
    margin: 0 0 16px;
    font-size: clamp(32px, 4.4vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
}

.clinic-single-excerpt{
    max-width: 860px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
}

.clinic-single-excerpt p{
    margin: 0;
}

.clinic-single-content-section{
    padding: 42px 0 0;
}

.clinic-single-layout{
    max-width: 980px;
    margin: 0 auto;
}

.clinic-single-main-col{
    background: #fff;
    box-shadow: 0 18px 40px rgba(25, 36, 76, 0.08);
    overflow: hidden;
}

.clinic-single-featured-image img{
    width: 100%;
    height: auto;
    display: block;
}

.clinic-single-content{
    padding: 34px 38px 42px;
    color: #243152;
    font-size: 17px;
    line-height: 1.9;
}

.clinic-single-content > *:first-child{
    margin-top: 0;
}

.clinic-single-content > *:last-child{
    margin-bottom: 0;
}

.clinic-single-content h2,
.clinic-single-content h3,
.clinic-single-content h4{
    color: #1f2749;
    line-height: 1.2;
    margin-top: 32px;
    margin-bottom: 14px;
    font-weight: 800;
}

.clinic-single-content h2{
    font-size: 30px;
}

.clinic-single-content h3{
    font-size: 24px;
}

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

.clinic-single-content ul,
.clinic-single-content ol{
    margin: 0 0 20px 22px;
    padding: 0;
}

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

.clinic-single-content img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 26px auto;
}

.clinic-single-content a{
    color: #2f66ff;
    text-decoration: underline;
}

@media (max-width: 991px){
    .clinic-card-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .clinic-single-content{
        padding: 28px 24px 34px;
        font-size: 16px;
    }
}

@media (max-width: 767px){
    .clinic-archive-main,
    .clinic-single-main{
        padding-bottom: 48px;
    }

    .clinic-card-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .clinic-single-hero,
    .clinic-archive-hero{
        padding: 46px 0 34px;
    }

    .clinic-single-content-section,
    .clinic-archive-section{
        padding-top: 24px;
    }

    .clinic-single-content{
        padding: 22px 18px 28px;
        font-size: 15px;
        line-height: 1.8;
    }

    .clinic-single-content h2{
        font-size: 24px;
    }

    .clinic-single-content h3{
        font-size: 20px;
    }
}

/* SINGLE POST */
.single-post-main{
    background: var(--surface-soft);
    color: var(--text-dark);
    padding-bottom: 72px;
}

.single-post-hero{
    background: var(--bg);
    color: var(--text);
    padding: 72px 0 54px;
}

.single-post-hero-inner{
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.single-post-breadcrumb{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.78);
}

.single-post-breadcrumb a{
    color: rgba(255,255,255,0.88);
}

.single-post-title{
    margin: 0 0 16px;
    font-size: clamp(32px, 4.4vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
}

.single-post-meta{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255,255,255,0.82);
}

.single-post-content-section{
    padding: 42px 0 0;
}

.single-post-layout{
    max-width: 980px;
    margin: 0 auto;
}

.single-post-main-col{
       background: var(--surface);
    box-shadow: 0 18px 40px rgba(25, 36, 76, 0.08);
    overflow: hidden;
}

.single-post-featured-image img{
    width: 100%;
    height: auto;
    display: block;
}

.single-post-content{
    padding: 34px 38px 42px;
    color: #243152;
    font-size: 17px;
    line-height: 1.9;
}

.single-post-content > *:first-child{
    margin-top: 0;
}

.single-post-content > *:last-child{
    margin-bottom: 0;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4{
    color: #1f2749;
    line-height: 1.2;
    margin-top: 32px;
    margin-bottom: 14px;
    font-weight: 800;
}

.single-post-content h2{
    font-size: 30px;
}

.single-post-content h3{
    font-size: 24px;
}

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

.single-post-content ul,
.single-post-content ol{
    margin: 0 0 20px 22px;
    padding: 0;
}

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

.single-post-content img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 26px auto;
}

.single-post-content a{
    color: #2f66ff;
    text-decoration: underline;
}

.single-post-content blockquote{
    margin: 28px 0;
    padding: 18px 20px;
    border-left: 4px solid #f0a43a;
    background: #f8f8fc;
    color: #445072;
}

@media (max-width: 991px){
    .single-post-hero{
        padding: 60px 0 42px;
    }

    .single-post-content{
        padding: 28px 24px 34px;
        font-size: 16px;
    }
}

@media (max-width: 767px){
    .single-post-main{
        padding-bottom: 48px;
    }

    .single-post-hero{
        padding: 46px 0 34px;
    }

    .single-post-title{
        font-size: clamp(28px, 8vw, 40px);
    }

    .single-post-content-section{
        padding-top: 24px;
    }

    .single-post-content{
        padding: 22px 18px 28px;
        font-size: 15px;
        line-height: 1.8;
    }

    .single-post-content h2{
        font-size: 24px;
    }

    .single-post-content h3{
        font-size: 20px;
    }
}

/* CONTACT PAGE */
.contact-page-main{
    background: var(--surface-soft);
    color: var(--text-dark);
}

.contact-map-section{
    margin-top: 18px;
    height: 330px;
    overflow: hidden;
}
.contact-map-section iframe{
    width: 100%;
    height: 100%;
    display: block;
}

.contact-content-section{
    padding: 38px 0 72px;
}

.contact-head{
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.contact-title{
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    color: #1f2749;
}

.contact-text{
    font-size: 15px;
    line-height: 1.8;
    color: #55627f;
}

.contact-text p{
    margin: 0;
}

.contact-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    max-width: 980px;
    margin: 0 auto;
}

.contact-info-card,
.contact-form-card{
    background: transparent;
}

.contact-block-title{
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #bfc7d8;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #1f2749;
}

.contact-info-list{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-row{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 4px;
    border-bottom: 1px solid #cfd6e4;
}

.contact-info-row-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-info-icon{
    width: 34px;
    height: 34px;
    border: 1px solid #1f2749;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-value{
    font-size: 14px;
    line-height: 1.7;
    color: #1f2749;
}

.contact-whatsapp-wrap{
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.contact-whatsapp-btn{
    min-height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #20284b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    border: 1px solid #aeb8cc;
    background: transparent;
    color: #1f2749;
    padding: 12px 12px;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: #8b96af;
}

.contact-form button{
    min-height: 44px;
    border: 0;
    background: var(--bg);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.contact-form-alert{
    margin-bottom: 14px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
}

.contact-form-alert.success{
    background: #e8f7ea;
    color: #1d6b35;
}

.contact-form-alert.error{
    background: #fdeaea;
    color: #a02b2b;
}

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

    .contact-info-row-group{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px){
    .contact-map-section{
        margin-top: 14px;
        height: 260px;
    }

    .contact-content-section{
        padding: 28px 0 52px;
    }

    .contact-title{
        font-size: 28px;
    }

    .contact-block-title{
        font-size: 22px;
    }
}

/* ABOUT PAGE */
.about-page-main{
    background: #f3f3f3;
    color: #1f2749;
}

.about-hero-section{
    background: #20284b;
    color: #fff;
    padding: 56px 0 120px;
    text-align: center;
}

.about-hero-content{
    max-width: 1080px;
    margin: 0 auto;
}

.about-hero-title{
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.06;
    font-weight: 800;
    color: #fff;
}

.about-hero-text{
    max-width: 980px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.92);
}

.about-hero-text p{
    margin: 0;
}

.about-mvv-section{
    padding: 56px 0 72px;
    background: #f3f3f3;
}

.about-mvv-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-mvv-card{
    position: relative;
    min-height: 560px;
    background: #28345f;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about-mvv-overlay{
    position: absolute;
    inset: 0;
    background: rgba(32, 40, 75, 0.72);
}

.about-mvv-inner{
    position: relative;
    z-index: 2;
    padding: 32px 26px;
    color: #fff;
    text-align: center;
}

.about-mvv-title{
    margin: 0 0 22px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.about-mvv-text{
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.95);
}

.about-mvv-text p{
    margin: 0 0 16px;
}

.about-clinic-section{
    padding: 68px 0;
    background-color: #20284b;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    color: #fff;
}

.about-clinic-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 580px);
    gap: 48px;
    align-items: center;
}

.about-clinic-title{
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
}

.about-clinic-text{
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
}

.about-clinic-text p{
    margin: 0 0 22px;
}

.about-clinic-image{
    width: 100%;
    display: block;
}

.about-gallery-section{
    padding: 78px 0 54px;
    background: #f3f3f3;
}

.about-gallery-head{
    max-width: 980px;
    margin: 0 auto 34px;
    text-align: center;
}

.about-gallery-title{
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    color: #1f2749;
}

.about-gallery-text{
    font-size: 17px;
    line-height: 1.8;
    color: #4d5978;
}

.about-gallery-text p{
    margin: 0;
}

.about-gallery-slider{
    position: relative;
}

.about-gallery-track{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-gallery-slide{
    min-width: 0;
}

.about-gallery-image{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.about-gallery-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(31,39,73,0.86);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    z-index: 3;
}

.about-gallery-prev{
    left: -18px;
}

.about-gallery-next{
    right: -18px;
}

.about-cta-section{
    padding: 8px 0 56px;
    background: #f3f3f3;
}

.about-cta-box{
    text-align: center;
}

.about-cta-title{
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 800;
    color: #1f2749;
}

.about-cta-text{
    max-width: 900px;
    margin: 0 auto 24px;
    font-size: 17px;
    line-height: 1.8;
    color: #53607e;
}

.about-cta-text p{
    margin: 0;
}

.about-cta-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    background: #6cb4d6;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.about-form-section{
    padding: 0 0 90px;
    background: #f3f3f3;
}

.about-form-grid{
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    background: #fff;
    padding: 28px;
}

.about-form-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-form-title{
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    font-weight: 800;
    color: #1f2749;
}

.about-form-text{
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #55627f;
}

.about-form-text p{
    margin: 0;
}

@media (max-width: 991px){
    .about-mvv-grid{
        grid-template-columns: 1fr;
    }

    .about-mvv-card{
        min-height: 420px;
    }

    .about-clinic-grid{
        grid-template-columns: 1fr;
    }

    .about-gallery-track{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-form-grid{
        grid-template-columns: 1fr;
    }

    .about-gallery-prev{
        left: 8px;
    }

    .about-gallery-next{
        right: 8px;
    }
}

@media (max-width: 767px){
    .about-hero-section{
        padding: 42px 0 90px;
    }

    .about-hero-text{
        font-size: 15px;
    }

    .about-mvv-section{
        padding: 34px 0 46px;
    }

    .about-mvv-inner{
        padding: 24px 18px;
    }

    .about-mvv-text{
        font-size: 14px;
        line-height: 1.75;
    }

    .about-clinic-section{
        padding: 42px 0;
        background-size: cover;
    }

    .about-clinic-text{
        font-size: 15px;
    }

    .about-gallery-section{
        padding: 48px 0 36px;
    }

    .about-gallery-track{
        grid-template-columns: 1fr;
    }

    .about-cta-button{
        width: 100%;
    }

    .about-form-section{
        padding-bottom: 54px;
    }

    .about-form-grid{
        padding: 18px;
    }
}
/* SIMPLE FOOTER */
.site-footer-simple{
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    color: #5b678f;
}

.site-footer-simple-inner{
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 10px;
}

.site-footer-simple-left{
    font-size: 13px;
    line-height: 1.6;
    color: #5b678f;
}

.site-footer-simple-right{
    text-align: right;
}

.site-footer-simple-credit{
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    color: #0f1f48;
}

.site-footer-simple-credit:hover{
    opacity: .85;
}

@media (max-width: 767px){
    .site-footer-simple-inner{
        min-height: auto;
        padding: 16px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .site-footer-simple-right{
        text-align: left;
    }

    .site-footer-simple-left{
        font-size: 12px;
    }

    .site-footer-simple-credit{
        font-size: 13px;
    }
}
/* STANDARD PAGE */
.standard-page-main{
    background: var(--surface-soft);
    color: var(--text-dark);
    padding-bottom: 72px;
}

.standard-page-hero{
    position: relative;
    background-color: var(--bg);
    color: var(--text);
    padding: 0;
    overflow: hidden;
}

.standard-page-hero-visual{
    min-height: 0;
}

.standard-page-hero-image{
    width: 100%;
    height: auto;
    display: block;
}

.standard-page-content-section{
    padding: 42px 0 0;
}

.standard-page-layout{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.standard-page-main-col{
    min-width: 0;
}

.standard-page-content-card{
    background: var(--surface);
    box-shadow: 0 18px 40px rgba(25, 36, 76, 0.08);
    overflow: hidden;
}

.standard-page-featured-image img{
    width: 100%;
    height: auto;
    display: block;
}

.standard-page-content{
    padding: 34px 38px 42px;
    color: #243152;
    font-size: 17px;
    line-height: 1.9;
}

.standard-page-content > *:first-child{
    margin-top: 0;
}

.standard-page-content > *:last-child{
    margin-bottom: 0;
}

.standard-page-content h2,
.standard-page-content h3,
.standard-page-content h4{
    color: #1f2749;
    line-height: 1.2;
    margin-top: 32px;
    margin-bottom: 14px;
    font-weight: 800;
}

.standard-page-content h2{
    font-size: 30px;
}

.standard-page-content h3{
    font-size: 24px;
}

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

.standard-page-content ul,
.standard-page-content ol{
    margin: 0 0 20px 22px;
    padding: 0;
}

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

.standard-page-content img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 26px auto;
}

.standard-page-content a{
    color: #2f66ff;
    text-decoration: underline;
}

.standard-page-content blockquote{
    margin: 28px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--accent);
    background: #f8f8fc;
    color: #445072;
}

.standard-page-sidebar{
    min-width: 0;
}

.standard-page-sidebar-card{
    background: var(--surface);
    box-shadow: 0 18px 40px rgba(25, 36, 76, 0.08);
    padding: 24px;
    position: sticky;
    top: 24px;
}

.standard-page-sidebar-title{
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #1f2749;
}

.standard-page-sidebar-list-wrap{
    overflow: hidden;
    transition: max-height .3s ease;
}

.standard-page-sidebar-list-wrap.is-expanded{
    overflow: visible;
}

.standard-page-sidebar-more{
    margin-top: 14px;
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line-soft);
    background: #f8f9fd;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.standard-page-sidebar-more:hover{
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.standard-page-sidebar-menu{
    margin: 0;
    padding: 0;
    list-style: none;
}

.standard-page-sidebar-menu li{
    list-style: none;
    border-bottom: 1px solid #e7ebf5;
}

.standard-page-sidebar-menu li:last-child{
    border-bottom: 0;
}

.standard-page-sidebar-menu li a{
    display: block;
    padding: 12px 0;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;
    color: #334164;
    transition: color .25s ease, padding-left .25s ease;
}

.standard-page-sidebar-menu li a:hover{
    color: var(--accent);
    padding-left: 6px;
}

.standard-page-sidebar-menu li.is-active a{
    color: var(--accent);
}

.standard-page-sidebar-empty{
    font-size: 14px;
    line-height: 1.7;
    color: #5b678f;
}

@media (max-width: 991px){
    .standard-page-layout{
        grid-template-columns: 1fr;
    }

    .standard-page-sidebar-card{
        position: static;
        top: auto;
    }

    .standard-page-sidebar-list-wrap{
        max-height: 320px;
    }

    .standard-page-content{
        padding: 28px 24px 34px;
        font-size: 16px;
    }
}

@media (max-width: 767px){
    .standard-page-main{
        padding-bottom: 48px;
    }

    .standard-page-title{
        font-size: clamp(28px, 8vw, 40px);
    }

    .standard-page-content-section{
        padding-top: 24px;
    }

    .standard-page-content{
        padding: 22px 18px 28px;
        font-size: 15px;
        line-height: 1.8;
    }

    .standard-page-content h2{
        font-size: 24px;
    }

    .standard-page-content h3{
        font-size: 20px;
    }

    .standard-page-sidebar-card{
        padding: 18px;
    }

    .standard-page-sidebar-title{
        font-size: 20px;
    }
}
/* SHORTCODE İLETİŞİM ALANLARI */
.disyeri-shortcode-contact-section{
    padding: 36px 0 72px;
}

.disyeri-shortcode-block{
    background: #fff;
    box-shadow: 0 18px 40px rgba(25, 36, 76, 0.08);
    padding: 24px;
    height: 100%;
}

.disyeri-shortcode-map{
    margin: 0 0 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(25, 36, 76, 0.08);
    background: #fff;
}

.disyeri-shortcode-map iframe{
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.disyeri-shortcode-contact-section .container{
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
}

.disyeri-shortcode-contact-section .contact-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    max-width: 100%;
    margin: 0 auto;
}

.disyeri-shortcode-contact-section .contact-info-card,
.disyeri-shortcode-contact-section .contact-form-card{
    background: #fff;
}

.disyeri-shortcode-contact-section .contact-block-title{
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #d7ddeb;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #1f2749;
}

.disyeri-shortcode-contact-section .contact-info-list{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.disyeri-shortcode-contact-section .contact-info-row{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 4px;
    border-bottom: 1px solid #e4e8f2;
}

.disyeri-shortcode-contact-section .contact-info-row-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.disyeri-shortcode-contact-section .contact-info-icon{
    width: 38px;
    height: 38px;
    border: 1px solid #1f2749;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    color: #1f2749;
}

.disyeri-shortcode-contact-section .contact-info-value{
    font-size: 14px;
    line-height: 1.7;
    color: #1f2749;
}

.disyeri-shortcode-contact-section .contact-info-value a{
    color: #1f2749;
    text-decoration: none;
}

.disyeri-shortcode-contact-section .contact-info-value a:hover{
    color: var(--accent);
}

.disyeri-shortcode-contact-section .contact-whatsapp-wrap{
    display: flex;
    justify-content: center;
    padding-top: 18px;
}

.disyeri-shortcode-contact-section .contact-whatsapp-btn{
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #20284b;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    border-radius: 10px;
    transition: transform .22s ease, opacity .22s ease;
}

.disyeri-shortcode-contact-section .contact-whatsapp-btn:hover{
    transform: translateY(-1px);
    opacity: .92;
    color: #fff;
}

.disyeri-shortcode-contact-section .contact-text{
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.8;
    color: #55627f;
}

.disyeri-shortcode-contact-section .contact-text p{
    margin: 0;
}

.disyeri-shortcode-contact-section .contact-form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.disyeri-shortcode-contact-section .contact-form input,
.disyeri-shortcode-contact-section .contact-form textarea{
    width: 100%;
    border: 1px solid #c8d0e0;
    background: #fff;
    color: #1f2749;
    padding: 13px 14px;
    outline: none;
    transition: border-color .22s ease, box-shadow .22s ease;
}

.disyeri-shortcode-contact-section .contact-form input:focus,
.disyeri-shortcode-contact-section .contact-form textarea:focus{
    border-color: #8fa4d6;
    box-shadow: 0 0 0 3px rgba(143, 164, 214, 0.14);
}

.disyeri-shortcode-contact-section .contact-form input::placeholder,
.disyeri-shortcode-contact-section .contact-form textarea::placeholder{
    color: #8b96af;
}

.disyeri-shortcode-contact-section .contact-form button{
    min-height: 46px;
    border: 0;
    background: #20284b;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 10px;
    transition: transform .22s ease, opacity .22s ease;
}

.disyeri-shortcode-contact-section .contact-form button:hover{
    transform: translateY(-1px);
    opacity: .94;
}

.disyeri-shortcode-contact-section .contact-form-alert{
    margin-bottom: 14px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
}

.disyeri-shortcode-contact-section .contact-form-alert.success{
    background: #e8f7ea;
    color: #1d6b35;
}

.disyeri-shortcode-contact-section .contact-form-alert.error{
    background: #fdeaea;
    color: #a02b2b;
}

@media (max-width: 991px){
    .disyeri-shortcode-contact-section .contact-grid{
        grid-template-columns: 1fr;
    }

    .disyeri-shortcode-contact-section .contact-info-row-group{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px){
    .disyeri-shortcode-contact-section{
        padding: 24px 0 48px;
    }

    .disyeri-shortcode-block{
        padding: 18px;
    }

    .disyeri-shortcode-contact-section .contact-block-title{
        font-size: 22px;
    }

    .disyeri-shortcode-contact-section .contact-info-value,
    .disyeri-shortcode-contact-section .contact-text{
        font-size: 13px;
    }
}