/* ===========================================================
   Tahkim Hukuk - Modern Theme
   Scope: body.th-modern
   Mevcut style.css ile birlikte yüklenir (override eder).
   =========================================================== */

:root {
    --th-primary: #56c1dd;
    --th-primary-dark: #2e9bba;
    --th-navy: #1b223e;
    --th-navy-soft: #2a3454;
    --th-ink: #0f1424;
    --th-mute: #6b7280;
    --th-line: rgba(15, 20, 36, .08);
    --th-bg-soft: #f5f8fb;
    --th-gradient: linear-gradient(135deg, #1b223e 0%, #2a3454 55%, #2e9bba 100%);
    --th-shadow-sm: 0 6px 20px rgba(15, 20, 36, .06);
    --th-shadow-md: 0 18px 40px rgba(15, 20, 36, .10);
    --th-shadow-lg: 0 30px 70px rgba(15, 20, 36, .18);
    --th-radius: 18px;
}

body.th-modern {
    font-family: 'Inter', 'Montserrat', sans-serif;
    color: #1f2333;
    background: #fff;
    overflow-x: hidden;
}

body.th-modern h1,
body.th-modern h2,
body.th-modern h3 {
    font-family: 'DM Serif Display', 'Inter', serif;
    font-weight: 400 !important;
    letter-spacing: -.5px;
    color: var(--th-navy);
}

body.th-modern .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--th-primary-dark);
    margin-bottom: 18px;
}
body.th-modern .eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--th-primary);
}

/* ============ HEADER (glassmorphism) ============ */
body.th-modern .th-header-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--th-line);
}
body.th-modern .th-topbar {
    background: var(--th-navy);
    color: #cdd5e6;
    font-size: 13px;
}
body.th-modern .th-topbar a { color: #cdd5e6; }
body.th-modern .th-topbar a:hover { color: var(--th-primary); text-decoration: none; }
body.th-modern .th-topbar .th-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    flex-wrap: wrap;
}
body.th-modern .th-top-info { display: flex; gap: 22px; flex-wrap: wrap; }
body.th-modern .th-top-info i { color: var(--th-primary); margin-right: 6px; }
body.th-modern .th-top-social a {
    display: inline-flex;
    width: 28px; height: 28px;
    align-items: center; justify-content: center;
    border: 1px solid rgba(205, 213, 230, .25);
    border-radius: 50%;
    margin-left: 6px;
    transition: .25s;
}
body.th-modern .th-top-social a:hover {
    background: var(--th-primary);
    border-color: var(--th-primary);
    color: #fff;
}

body.th-modern .th-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}
body.th-modern .th-brand img {
    height: 54px;
    width: auto;
    object-fit: contain;
}
body.th-modern .th-menu {
    display: flex;
    gap: 4px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.th-modern .th-menu a {
    position: relative;
    display: inline-block;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #2a3454;
    border-radius: 10px;
    transition: .25s;
    text-decoration: none;
}
body.th-modern .th-menu a::after {
    content: "";
    position: absolute;
    left: 16px; right: 16px; bottom: 6px;
    height: 2px;
    background: var(--th-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}
body.th-modern .th-menu a:hover,
body.th-modern .th-menu a.active { color: var(--th-navy); }
body.th-modern .th-menu a:hover::after,
body.th-modern .th-menu a.active::after { transform: scaleX(1); }

body.th-modern .th-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--th-navy);
    color: #fff !important;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: .3s;
    border: none;
    cursor: pointer;
}
body.th-modern .th-cta:hover {
    background: var(--th-primary);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(86, 193, 221, .35);
}
body.th-modern .th-cta.outline {
    background: transparent;
    color: var(--th-navy) !important;
    border: 1.5px solid var(--th-navy);
}
body.th-modern .th-cta.outline:hover {
    background: var(--th-navy);
    color: #fff !important;
}
body.th-modern .th-cta.lg { padding: 16px 30px; font-size: 15px; }

body.th-modern .th-burger {
    display: none;
    width: 44px; height: 44px;
    border-radius: 10px;
    border: 1px solid var(--th-line);
    background: #fff;
    align-items: center; justify-content: center;
    color: var(--th-navy);
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 991.98px) {
    body.th-modern .th-burger { display: inline-flex; }
    body.th-modern .th-nav { position: relative; }
    body.th-modern .th-menu-wrap {
        display: none;
        position: absolute;
        left: 16px; right: 16px;
        top: calc(100% + 8px);
        background: #fff;
        border: 1px solid var(--th-line);
        border-radius: 16px;
        padding: 16px;
        box-shadow: var(--th-shadow-md);
        flex-direction: column;
    }
    body.th-modern .th-menu-wrap.open { display: flex; }
    body.th-modern .th-menu {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-bottom: 12px;
    }
    body.th-modern .th-menu a { padding: 12px 14px; border-radius: 10px; }
    body.th-modern .th-menu a:hover { background: var(--th-bg-soft); }
    body.th-modern .th-menu a::after { display: none; }
    body.th-modern .th-cta { justify-content: center; }
}
@media (max-width: 575.98px) {
    body.th-modern .th-topbar .th-top-inner {
        justify-content: center;
        text-align: center;
    }
}

/* ============ HERO ============ */
body.th-modern .th-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}
body.th-modern .th-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url('../img/carousel-1.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    animation: th-zoom 22s ease-in-out infinite alternate;
}
body.th-modern .th-hero::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(15, 20, 36, .92) 0%, rgba(27, 34, 62, .82) 45%, rgba(27, 34, 62, .35) 100%);
    z-index: -1;
}
@keyframes th-zoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.18); }
}

body.th-modern .th-hero-inner {
    padding: 110px 0 130px;
    max-width: 820px;
}
body.th-modern .th-hero .eyebrow { color: var(--th-primary); }
body.th-modern .th-hero .eyebrow::before { background: var(--th-primary); }
body.th-modern .th-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 22px;
    font-weight: 400 !important;
}
body.th-modern .th-hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #7dd6ee, #56c1dd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
body.th-modern .th-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 36px;
}

body.th-modern .th-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
body.th-modern .th-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255,255,255,.92);
    backdrop-filter: blur(6px);
}
body.th-modern .th-chip i { color: var(--th-primary); }

body.th-modern .th-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
body.th-modern .th-hero-actions .th-cta { background: var(--th-primary); }
body.th-modern .th-hero-actions .th-cta:hover {
    background: #fff;
    color: var(--th-navy) !important;
}
body.th-modern .th-hero-actions .th-cta.outline {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255,255,255,.4);
}
body.th-modern .th-hero-actions .th-cta.outline:hover {
    background: #fff;
    color: var(--th-navy) !important;
    border-color: #fff;
}

body.th-modern .th-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 620px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.18);
}
body.th-modern .th-hero-stats .num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    color: var(--th-primary);
    line-height: 1;
    margin-bottom: 6px;
}
body.th-modern .th-hero-stats .lbl {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
}
@media (max-width: 575.98px) {
    body.th-modern .th-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    body.th-modern .th-hero-stats .num { font-size: 1.6rem; }
    body.th-modern .th-hero-stats .lbl { font-size: 10px; letter-spacing: .5px; }
}

/* ============ SECTION BASE ============ */
body.th-modern section.th-sec { padding: 110px 0; }
body.th-modern .th-sec-head { max-width: 720px; margin-bottom: 56px; }
body.th-modern .th-sec-head.center { margin-inline: auto; text-align: center; }
body.th-modern .th-sec-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 14px;
    font-weight: 400 !important;
}
body.th-modern .th-sec-head p {
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    font-size: 16px;
    line-height: 1.75;
}

/* ============ ABOUT ============ */
body.th-modern .th-about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
}
@media (max-width: 991.98px) {
    body.th-modern .th-about-grid { grid-template-columns: 1fr; gap: 40px; }
}
body.th-modern .th-about-img {
    position: relative;
    border-radius: var(--th-radius);
    overflow: hidden;
    box-shadow: var(--th-shadow-lg);
}
body.th-modern .th-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
body.th-modern .th-about-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: var(--th-shadow-md);
}
body.th-modern .th-about-badge .ic {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--th-gradient);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
body.th-modern .th-about-badge strong { color: var(--th-navy); font-size: 15px; }
body.th-modern .th-about-badge span { display: block; font-size: 12px; color: var(--th-mute); }

body.th-modern .th-pillars {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
body.th-modern .th-pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--th-line);
    border-radius: 12px;
    background: #fff;
    transition: .25s;
}
body.th-modern .th-pillar:hover {
    border-color: var(--th-primary);
    transform: translateY(-2px);
}
body.th-modern .th-pillar i {
    color: var(--th-primary);
    font-size: 18px;
    margin-top: 2px;
}
body.th-modern .th-pillar strong {
    font-size: 14px;
    color: var(--th-navy);
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
body.th-modern .th-pillar small { font-size: 12px; color: var(--th-mute); }

/* ============ SERVICES ============ */
body.th-modern .th-services-wrap {
    background: var(--th-bg-soft);
    position: relative;
}
body.th-modern .th-services-wrap::before {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(27,34,62,.08) 1px, transparent 0);
    background-size: 22px 22px;
    opacity: .5;
    pointer-events: none;
}
body.th-modern .th-services-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
body.th-modern .th-service {
    position: relative;
    background: #fff;
    border-radius: var(--th-radius);
    padding: 34px 28px 30px;
    border: 1px solid var(--th-line);
    transition: .35s cubic-bezier(.2,.7,.2,1);
    overflow: hidden;
    cursor: pointer;
}
body.th-modern .th-service::before {
    content: "";
    position: absolute;
    inset: auto -20% -60% -20%;
    height: 70%;
    background: var(--th-gradient);
    border-radius: 50%;
    opacity: 0;
    transition: .5s;
    z-index: 0;
}
body.th-modern .th-service:hover {
    transform: translateY(-8px);
    box-shadow: var(--th-shadow-lg);
    border-color: transparent;
}
body.th-modern .th-service:hover::before { opacity: .12; }
body.th-modern .th-service .ic {
    position: relative;
    z-index: 1;
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(86,193,221,.15), rgba(27,34,62,.08));
    color: var(--th-navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: .3s;
}
body.th-modern .th-service:hover .ic {
    background: var(--th-navy);
    color: var(--th-primary);
    transform: rotate(-6deg);
}
body.th-modern .th-service h3 {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    font-size: 18px;
    color: var(--th-navy);
    margin-bottom: 10px;
}
body.th-modern .th-service p {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: var(--th-mute);
    margin-bottom: 18px;
}
body.th-modern .th-service .more {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--th-primary-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .25s;
}
body.th-modern .th-service:hover .more {
    gap: 12px;
    color: var(--th-navy);
}

/* ============ PROCESS ============ */
body.th-modern .th-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 991.98px) {
    body.th-modern .th-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    body.th-modern .th-process-grid { grid-template-columns: 1fr; }
}
body.th-modern .th-step {
    position: relative;
    padding: 30px 26px;
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: var(--th-radius);
    transition: .3s;
}
body.th-modern .th-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--th-shadow-md);
    border-color: var(--th-primary);
}
body.th-modern .th-step .step-no {
    position: absolute;
    top: -16px; left: 26px;
    background: var(--th-navy);
    color: var(--th-primary);
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 18px rgba(27,34,62,.25);
}
body.th-modern .th-step .ic {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(86,193,221,.15), rgba(27,34,62,.06));
    color: var(--th-navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin: 16px 0 18px;
}
body.th-modern .th-step h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    font-size: 17px;
    color: var(--th-navy);
    margin-bottom: 8px;
}
body.th-modern .th-step p {
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ============ COMPENSATION MATRIX ============ */
body.th-modern .th-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 991.98px) {
    body.th-modern .th-matrix { grid-template-columns: 1fr; }
}
body.th-modern .th-matrix-card {
    border: 1px solid var(--th-line);
    border-radius: 16px;
    padding: 28px;
    background: #fff;
    transition: .3s;
}
body.th-modern .th-matrix-card:hover {
    border-color: var(--th-primary);
    box-shadow: var(--th-shadow-sm);
}
body.th-modern .th-matrix-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    color: var(--th-navy);
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.th-modern .th-matrix-card h4 i { color: var(--th-primary); }
body.th-modern .th-matrix-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
body.th-modern .th-matrix-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px dashed var(--th-line);
}
body.th-modern .th-matrix-card li:last-child { border-bottom: 0; }
body.th-modern .th-matrix-card li i {
    color: var(--th-primary);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============ STATS BAND ============ */
body.th-modern .th-stats-band {
    background: var(--th-gradient);
    color: #fff;
    border-radius: 24px;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
body.th-modern .th-stats-band::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(86,193,221,.25), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(86,193,221,.15), transparent 40%);
    z-index: -1;
}
@media (max-width: 991.98px) {
    body.th-modern .th-stats-band { grid-template-columns: repeat(2, 1fr); padding: 40px 30px; }
}
@media (max-width: 575.98px) {
    body.th-modern .th-stats-band { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 36px 24px; }
}
body.th-modern .th-stat .num {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: #fff;
    margin-bottom: 8px;
}
body.th-modern .th-stat .num span { color: var(--th-primary); }
body.th-modern .th-stat .lbl {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
}

/* ============ APPOINTMENT ============ */
body.th-modern .th-appointment {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    isolation: isolate;
}
body.th-modern .th-appointment::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url('../img/carousel-1.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(.55);
    z-index: -2;
}
body.th-modern .th-appointment::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(15,20,36,.85), rgba(27,34,62,.55));
    z-index: -1;
}
body.th-modern .th-appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px;
    align-items: center;
}
@media (max-width: 991.98px) {
    body.th-modern .th-appointment-grid {
        grid-template-columns: 1fr;
        padding: 40px 26px;
        gap: 30px;
    }
}
body.th-modern .th-appointment .left h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}
body.th-modern .th-appointment .left p {
    color: rgba(255,255,255,.8);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}
body.th-modern .th-appointment .left .contact-li {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}
body.th-modern .th-appointment .left .contact-li li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}
body.th-modern .th-appointment .left .contact-li i {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(86,193,221,.15);
    color: var(--th-primary);
    display: flex; align-items: center; justify-content: center;
}
body.th-modern .th-appointment .left .contact-li a { color: #fff; text-decoration: none; }
body.th-modern .th-appointment .left .contact-li a:hover { color: var(--th-primary); }

body.th-modern .th-form {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 36px;
}
body.th-modern .th-form h3 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    font-size: 20px;
    margin-bottom: 22px;
}
body.th-modern .th-form .form-control,
body.th-modern .th-form .custom-select {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    border-radius: 12px;
    height: 50px;
    padding: 0 18px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: .25s;
}
body.th-modern .th-form .form-control:focus,
body.th-modern .th-form .custom-select:focus {
    background: rgba(255,255,255,.14);
    border-color: var(--th-primary);
    box-shadow: 0 0 0 3px rgba(86,193,221,.15);
    color: #fff;
}
body.th-modern .th-form .form-control::placeholder { color: rgba(255,255,255,.55); }
body.th-modern .th-form .form-row { margin: 0 -6px; }
body.th-modern .th-form .form-row > [class*="col-"] { padding: 0 6px; }
body.th-modern .th-form .submit-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 12px;
    background: var(--th-primary);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: .3s;
    cursor: pointer;
}
body.th-modern .th-form .submit-btn:hover {
    background: #fff;
    color: var(--th-navy);
    transform: translateY(-2px);
}

/* ============ FEATURES ============ */
body.th-modern .th-features-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}
@media (max-width: 991.98px) {
    body.th-modern .th-features-grid { grid-template-columns: 1fr; gap: 40px; }
}
body.th-modern .th-feature-img {
    position: relative;
    border-radius: var(--th-radius);
    overflow: hidden;
    min-height: 460px;
    box-shadow: var(--th-shadow-lg);
}
body.th-modern .th-feature-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
body.th-modern .th-feature-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,20,36,.6));
}
body.th-modern .th-feature-quote {
    position: absolute;
    left: 28px; right: 28px; bottom: 26px;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    line-height: 1.4;
    z-index: 1;
}
body.th-modern .th-feature-quote::before {
    content: "“";
    font-size: 3rem;
    color: var(--th-primary);
    line-height: 0;
    display: block;
    margin-bottom: 18px;
}
body.th-modern .th-feature-item {
    display: flex;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid var(--th-line);
}
body.th-modern .th-feature-item:last-child { border-bottom: 0; }
body.th-modern .th-feature-num {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--th-primary), var(--th-primary-dark));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    box-shadow: 0 10px 24px rgba(86,193,221,.35);
}
body.th-modern .th-feature-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    font-size: 17px;
    color: var(--th-navy);
    margin-bottom: 6px;
}
body.th-modern .th-feature-item p {
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
}

/* ============ FAQ ============ */
body.th-modern .th-faq-wrap { background: var(--th-bg-soft); }
body.th-modern .th-faq { max-width: 860px; margin: 0 auto; }
body.th-modern .th-faq-item {
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: .3s;
}
body.th-modern .th-faq-item.open {
    border-color: var(--th-primary);
    box-shadow: var(--th-shadow-md);
}
body.th-modern .th-faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--th-navy);
    cursor: pointer;
}
body.th-modern .th-faq-q .plus {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--th-bg-soft);
    color: var(--th-navy);
    display: flex; align-items: center; justify-content: center;
    transition: .3s;
}
body.th-modern .th-faq-item.open .plus {
    background: var(--th-primary);
    color: #fff;
    transform: rotate(45deg);
}
body.th-modern .th-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
body.th-modern .th-faq-a-inner {
    padding: 0 26px 24px;
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    line-height: 1.75;
    font-size: 15px;
}
body.th-modern .th-faq-a-inner a {
    color: var(--th-primary-dark);
    font-weight: 600;
}

/* ============ TESTIMONIALS ============ */
body.th-modern .th-tst-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 991.98px) {
    body.th-modern .th-tst-grid { grid-template-columns: 1fr; }
}
body.th-modern .th-tst {
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: var(--th-radius);
    padding: 30px 28px;
    position: relative;
    transition: .3s;
}
body.th-modern .th-tst:hover {
    transform: translateY(-6px);
    box-shadow: var(--th-shadow-md);
}
body.th-modern .th-tst .stars {
    color: #f5b301;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
body.th-modern .th-tst .quote {
    font-family: 'Inter', sans-serif;
    color: #374151;
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 22px;
}
body.th-modern .th-tst .who {
    display: flex;
    align-items: center;
    gap: 14px;
}
body.th-modern .th-tst .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--th-gradient);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
}
body.th-modern .th-tst .who strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--th-navy);
}
body.th-modern .th-tst .who span {
    font-size: 12px;
    color: var(--th-mute);
}

/* ============ BLOG / MAKALE ============ */
body.th-modern .th-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 991.98px) {
    body.th-modern .th-blog-grid { grid-template-columns: 1fr; }
}
body.th-modern .th-blog-card {
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: var(--th-radius);
    overflow: hidden;
    transition: .3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
body.th-modern .th-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--th-shadow-lg);
    border-color: transparent;
    text-decoration: none;
    color: inherit;
}
body.th-modern .th-blog-thumb {
    height: 200px;
    background: var(--th-gradient);
    position: relative;
    overflow: hidden;
}
body.th-modern .th-blog-thumb::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,20,36,.6));
}
body.th-modern .th-blog-thumb i {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: rgba(255,255,255,.85);
    z-index: 0;
}
body.th-modern .th-blog-thumb img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform .5s;
}
body.th-modern .th-blog-card:hover .th-blog-thumb img { transform: scale(1.06); }
body.th-modern .th-blog-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(255,255,255,.95);
    color: var(--th-navy);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}
body.th-modern .th-blog-body {
    padding: 24px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
body.th-modern .th-blog-body h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    font-size: 18px;
    line-height: 1.4;
    color: var(--th-navy);
    margin-bottom: 10px;
}
body.th-modern .th-blog-body p {
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}
body.th-modern .th-blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    padding-top: 14px;
    border-top: 1px solid var(--th-line);
}
body.th-modern .th-blog-meta .date { color: var(--th-mute); }
body.th-modern .th-blog-meta .more {
    color: var(--th-primary-dark);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .25s;
}
body.th-modern .th-blog-card:hover .more {
    gap: 12px;
    color: var(--th-navy);
}

/* ============ CONTACT + MAP ============ */
body.th-modern .th-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    border-radius: var(--th-radius);
    overflow: hidden;
    box-shadow: var(--th-shadow-md);
    background: #fff;
}
@media (max-width: 991.98px) {
    body.th-modern .th-contact-grid { grid-template-columns: 1fr; }
}
body.th-modern .th-contact-info {
    background: var(--th-navy);
    color: #fff;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
}
body.th-modern .th-contact-info::before {
    content: "";
    position: absolute;
    right: -100px; top: -100px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86,193,221,.25), transparent 70%);
}
body.th-modern .th-contact-info h3 {
    color: #fff;
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    margin-bottom: 16px;
    position: relative;
}
body.th-modern .th-contact-info p {
    color: rgba(255,255,255,.75);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
}
body.th-modern .th-contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
body.th-modern .th-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
}
body.th-modern .th-contact-info li:last-child { border-bottom: 0; }
body.th-modern .th-contact-info li i {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(86,193,221,.15);
    color: var(--th-primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
body.th-modern .th-contact-info li a { color: #fff; text-decoration: none; }
body.th-modern .th-contact-info li a:hover { color: var(--th-primary); }
body.th-modern .th-contact-info li strong {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 2px;
}
body.th-modern .th-map iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    display: block;
}

/* ============ CTA BANNER ============ */
body.th-modern .th-cta-banner {
    position: relative;
    border-radius: 24px;
    padding: 60px;
    background: var(--th-gradient);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
body.th-modern .th-cta-banner::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 80% 20%, rgba(86,193,221,.35), transparent 50%);
    z-index: -1;
}
body.th-modern .th-cta-banner h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 12px;
    max-width: 720px;
}
body.th-modern .th-cta-banner p {
    color: rgba(255,255,255,.8);
    font-family: 'Inter', sans-serif;
    margin-bottom: 26px;
    max-width: 600px;
    line-height: 1.7;
}
body.th-modern .th-cta-banner .actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
body.th-modern .th-cta-banner .th-cta {
    background: #fff;
    color: var(--th-navy) !important;
}
body.th-modern .th-cta-banner .th-cta:hover {
    background: var(--th-primary);
    color: #fff !important;
}
body.th-modern .th-cta-banner .th-cta.outline {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255,255,255,.5);
}
body.th-modern .th-cta-banner .th-cta.outline:hover {
    background: #fff;
    color: var(--th-navy) !important;
}
@media (max-width: 575.98px) {
    body.th-modern .th-cta-banner { padding: 40px 28px; }
}

/* ============ FOOTER (modernize) ============ */
body.th-modern footer.container-fluid {
    margin-top: 0 !important;
    background: var(--th-ink) !important;
}

/* ============ REVEAL ANIM ============ */
body.th-modern .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s, transform .8s;
}
body.th-modern .reveal.in {
    opacity: 1;
    transform: none;
}

/* ============ Eski carousel/about/services padding sıfırlama (eski style.css override) ============ */
body.th-modern .container-fluid.py-5 { padding-top: 0 !important; padding-bottom: 0 !important; }

/* ============ PAGE HERO (alt sayfalar) ============ */
body.th-modern .th-page-hero {
    position: relative;
    padding: 100px 0 110px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
body.th-modern .th-page-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url('../img/carousel-1.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
}
body.th-modern .th-page-hero::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,20,36,.94), rgba(27,34,62,.78) 50%, rgba(46,155,186,.55));
    z-index: -1;
}
body.th-modern .th-page-hero .eyebrow { color: var(--th-primary); justify-content: center; }
body.th-modern .th-page-hero .eyebrow::before { background: var(--th-primary); }
body.th-modern .th-page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 14px;
    font-weight: 400 !important;
}
body.th-modern .th-page-hero p {
    color: rgba(255,255,255,.82);
    font-family: 'Inter', sans-serif;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
    font-size: 15.5px;
}
body.th-modern .th-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 8px 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,.75);
    backdrop-filter: blur(6px);
}
body.th-modern .th-breadcrumb a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: .25s;
}
body.th-modern .th-breadcrumb a:hover { color: var(--th-primary); }
body.th-modern .th-breadcrumb .sep { opacity: .5; font-size: 11px; }
body.th-modern .th-breadcrumb .current { color: var(--th-primary); font-weight: 600; }

/* ============ PROFILE CARD ============ */
body.th-modern .th-profile {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 50px;
    align-items: flex-start;
    background: #fff;
    border-radius: var(--th-radius);
    padding: 50px;
    box-shadow: var(--th-shadow-md);
    border: 1px solid var(--th-line);
}
@media (max-width: 991.98px) {
    body.th-modern .th-profile { grid-template-columns: 1fr; padding: 30px; gap: 30px; }
}
body.th-modern .th-profile-photo {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    box-shadow: var(--th-shadow-lg);
}
body.th-modern .th-profile-photo img {
    width: 100%; height: 100%; object-fit: cover;
}
body.th-modern .th-profile-photo::after {
    content: "";
    position: absolute; inset: auto 0 0 0; height: 35%;
    background: linear-gradient(transparent, rgba(15,20,36,.55));
}
body.th-modern .th-profile-tag {
    position: absolute;
    bottom: 16px; left: 16px; z-index: 1;
    background: var(--th-primary);
    color: #fff;
    padding: 7px 14px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
}
body.th-modern .th-profile-info h3 {
    font-size: 1.9rem;
    color: var(--th-navy);
    margin-bottom: 4px;
    font-family: 'DM Serif Display', serif;
    font-weight: 400 !important;
}
body.th-modern .th-profile-info .role {
    display: block;
    color: var(--th-primary-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 22px;
    font-size: 12.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
body.th-modern .th-profile-info p {
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 15px;
}
body.th-modern .th-profile-areas {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin: 24px 0 4px;
}
body.th-modern .th-profile-areas span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--th-bg-soft);
    color: var(--th-navy);
    padding: 7px 14px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
}
body.th-modern .th-profile-areas i { color: var(--th-primary); font-size: 11px; }
body.th-modern .th-profile-social {
    display: flex; gap: 10px;
    margin-top: 28px;
}
body.th-modern .th-profile-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--th-bg-soft);
    color: var(--th-navy);
    display: flex; align-items: center; justify-content: center;
    transition: .25s;
    text-decoration: none;
    font-size: 14px;
}
body.th-modern .th-profile-social a:hover {
    background: var(--th-navy);
    color: var(--th-primary);
    transform: translateY(-2px);
}

/* ============ VISION / MISSION ============ */
body.th-modern .th-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 767.98px) {
    body.th-modern .th-vm-grid { grid-template-columns: 1fr; }
}
body.th-modern .th-vm-card {
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: var(--th-radius);
    padding: 40px 36px;
    transition: .3s;
    position: relative;
    overflow: hidden;
}
body.th-modern .th-vm-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0; width: 120px; height: 120px;
    background: var(--th-gradient);
    border-bottom-left-radius: 100%;
    opacity: .08;
    transition: .3s;
}
body.th-modern .th-vm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--th-shadow-md);
    border-color: var(--th-primary);
}
body.th-modern .th-vm-card:hover::before { opacity: .18; }
body.th-modern .th-vm-card .ic {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--th-gradient);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
body.th-modern .th-vm-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    font-size: 20px;
    color: var(--th-navy);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
body.th-modern .th-vm-card p {
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

/* ============ VALUES GRID ============ */
body.th-modern .th-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 991.98px) {
    body.th-modern .th-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    body.th-modern .th-values-grid { grid-template-columns: 1fr; }
}
body.th-modern .th-value {
    padding: 30px 26px;
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: var(--th-radius);
    transition: .3s;
    text-align: left;
}
body.th-modern .th-value:hover {
    transform: translateY(-4px);
    border-color: var(--th-primary);
    box-shadow: var(--th-shadow-sm);
}
body.th-modern .th-value .ic {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(86,193,221,.15), rgba(27,34,62,.06));
    color: var(--th-navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    transition: .3s;
}
body.th-modern .th-value:hover .ic {
    background: var(--th-navy);
    color: var(--th-primary);
}
body.th-modern .th-value h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    font-size: 16px;
    color: var(--th-navy);
    margin-bottom: 8px;
}
body.th-modern .th-value p {
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0;
}

/* ============ SERVICE DETAIL (yatay genişletilmiş kart) ============ */
body.th-modern .th-service-detail {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: var(--th-radius);
    padding: 36px;
    transition: .35s cubic-bezier(.2,.7,.2,1);
    align-items: flex-start;
    margin-bottom: 22px;
}
@media (max-width: 767.98px) {
    body.th-modern .th-service-detail {
        grid-template-columns: 1fr;
        padding: 26px;
        gap: 22px;
    }
}
body.th-modern .th-service-detail:hover {
    box-shadow: var(--th-shadow-md);
    transform: translateY(-4px);
    border-color: var(--th-primary);
}
body.th-modern .th-service-detail .side {
    text-align: center;
    padding: 28px 22px;
    background: linear-gradient(135deg, rgba(86,193,221,.08), rgba(27,34,62,.05));
    border-radius: 14px;
    border: 1px solid var(--th-line);
}
body.th-modern .th-service-detail .side .ic {
    width: 78px; height: 78px;
    border-radius: 20px;
    background: var(--th-navy);
    color: var(--th-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    margin: 0 auto 18px;
    transition: .3s;
}
body.th-modern .th-service-detail:hover .side .ic {
    transform: rotate(-6deg) scale(1.05);
}
body.th-modern .th-service-detail .side h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    color: var(--th-navy);
    font-size: 17px;
    margin-bottom: 10px;
}
body.th-modern .th-service-detail .side .tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(86,193,221,.15);
    color: var(--th-primary-dark);
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
body.th-modern .th-service-detail .body h4 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400 !important;
    color: var(--th-navy);
    font-size: 1.4rem;
    margin-bottom: 14px;
    letter-spacing: -.3px;
}
body.th-modern .th-service-detail .body p {
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}
body.th-modern .th-service-detail .body ul {
    list-style: none;
    padding: 0; margin: 0 0 22px;
}
body.th-modern .th-service-detail .body li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 7px 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #374151;
}
body.th-modern .th-service-detail .body li i {
    color: var(--th-primary);
    font-size: 12px;
    margin-top: 5px;
    flex-shrink: 0;
}
body.th-modern .th-service-detail .body .more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--th-primary-dark);
    text-decoration: none;
    transition: .25s;
}
body.th-modern .th-service-detail:hover .body .more { gap: 12px; color: var(--th-navy); }

/* ============ CASE CARD (anonimleştirilmiş başarı dosyası) ============ */
body.th-modern .th-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 991.98px) { body.th-modern .th-case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { body.th-modern .th-case-grid { grid-template-columns: 1fr; } }
body.th-modern .th-case-card {
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: var(--th-radius);
    padding: 28px;
    transition: .35s cubic-bezier(.2,.7,.2,1);
    position: relative;
    overflow: hidden;
}
body.th-modern .th-case-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; height: 4px; width: 100%;
    background: var(--th-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s;
}
body.th-modern .th-case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--th-shadow-md);
    border-color: transparent;
}
body.th-modern .th-case-card:hover::before { transform: scaleX(1); }
body.th-modern .th-case-card .case-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(86,193,221,.12);
    color: var(--th-primary-dark);
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
body.th-modern .th-case-card .case-amount {
    font-family: 'DM Serif Display', serif;
    font-size: 2.1rem;
    color: var(--th-navy);
    line-height: 1;
    margin-bottom: 6px;
}
body.th-modern .th-case-card .case-amount small {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--th-primary-dark);
    margin-left: 4px;
}
body.th-modern .th-case-card .case-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--th-navy);
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.5;
}
body.th-modern .th-case-card .case-desc {
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 18px;
}
body.th-modern .th-case-card .case-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px dashed var(--th-line);
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: var(--th-mute);
    flex-wrap: wrap;
    gap: 8px;
}
body.th-modern .th-case-card .case-meta strong {
    color: var(--th-navy);
    font-weight: 600;
}
body.th-modern .th-case-card .case-meta .ok {
    color: #1f9d55;
    font-weight: 600;
}
body.th-modern .th-case-card .case-meta .ok i { margin-right: 4px; }

/* ============ NOTICE (mahremiyet/info kutusu) ============ */
body.th-modern .th-notice {
    background: linear-gradient(135deg, rgba(86,193,221,.08), rgba(27,34,62,.04));
    border: 1px solid var(--th-line);
    border-left: 4px solid var(--th-primary);
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
}
@media (max-width: 575.98px) {
    body.th-modern .th-notice { flex-direction: column; padding: 22px; }
}
body.th-modern .th-notice .ic {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--th-navy);
    color: var(--th-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
body.th-modern .th-notice h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    color: var(--th-navy);
    font-size: 17px;
    margin-bottom: 8px;
}
body.th-modern .th-notice p {
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    line-height: 1.75;
    margin: 0;
    font-size: 14.5px;
}

/* ============ SIGORTA SIRKET CHIPS (karşı taraf logoları yerine) ============ */
body.th-modern .th-insurers {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
body.th-modern .th-insurer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--th-navy);
    transition: .25s;
}
body.th-modern .th-insurer:hover {
    border-color: var(--th-primary);
    transform: translateY(-2px);
    box-shadow: var(--th-shadow-sm);
}
body.th-modern .th-insurer i {
    color: var(--th-primary);
    font-size: 12px;
}

/* ============ LOGO GRID (çözüm ortakları) ============ */
body.th-modern .th-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: center;
}
@media (max-width: 991.98px) { body.th-modern .th-logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575.98px) { body.th-modern .th-logos { grid-template-columns: repeat(2, 1fr); } }
body.th-modern .th-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: var(--th-radius);
    padding: 22px;
    transition: .3s;
}
body.th-modern .th-logo:hover {
    border-color: var(--th-primary);
    transform: translateY(-4px);
    box-shadow: var(--th-shadow-sm);
}
body.th-modern .th-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(.6);
    transition: filter .3s;
}
body.th-modern .th-logo:hover img {
    filter: none;
}
body.th-modern .th-logo.compact img {
    transform: scale(1.5);
    transform-origin: center;
}

/* ============ ARTICLE HERO (makale detay başlık) ============ */
body.th-modern .th-article-hero {
    position: relative;
    padding: 80px 0 80px;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
body.th-modern .th-article-hero::before {
    content: "";
    position: absolute; inset: 0;
    background: var(--th-gradient);
    z-index: -2;
}
body.th-modern .th-article-hero::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(86,193,221,.28), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(86,193,221,.16), transparent 50%);
    z-index: -1;
}
body.th-modern .th-article-hero .inner { max-width: 880px; }
body.th-modern .th-article-hero .th-breadcrumb {
    margin: 0 0 24px;
    background: rgba(255,255,255,.10);
}
body.th-modern .th-article-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.15;
    margin: 0 0 18px;
    font-weight: 400 !important;
}
body.th-modern .th-article-hero .article-lead {
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 720px;
}
body.th-modern .th-article-hero .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,.75);
}
body.th-modern .th-article-hero .article-meta span {
    display: inline-flex; align-items: center; gap: 6px;
}
body.th-modern .th-article-hero .article-meta i { color: var(--th-primary); }
body.th-modern .th-article-hero .category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--th-primary);
    color: var(--th-navy);
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ============ ARTICLE GRID + SIDE ============ */
body.th-modern .th-article-wrap { padding-top: 50px; padding-bottom: 80px; }
body.th-modern .th-article-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: flex-start;
}
@media (max-width: 991.98px) {
    body.th-modern .th-article-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Article body */
body.th-modern .th-article-body {
    background: #fff;
    border-radius: var(--th-radius);
    padding: 50px;
    box-shadow: var(--th-shadow-md);
    border: 1px solid var(--th-line);
}
@media (max-width: 575.98px) {
    body.th-modern .th-article-body { padding: 30px 24px; }
}
body.th-modern .th-article-body p,
body.th-modern .th-article-body li {
    font-family: 'Inter', sans-serif;
    color: #374151;
    line-height: 1.85;
    font-size: 16px;
    margin-bottom: 18px;
}
body.th-modern .th-article-body .lead {
    font-size: 1.15rem;
    color: var(--th-navy);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--th-line);
}
body.th-modern .th-article-body h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--th-navy);
    margin: 40px 0 16px;
    font-weight: 400 !important;
    padding-left: 18px;
    border-left: 4px solid var(--th-primary);
    line-height: 1.3;
    letter-spacing: -.3px;
}
body.th-modern .th-article-body > h2:first-child,
body.th-modern .th-article-body > h2:first-of-type {
    margin-top: 0;
}
body.th-modern .th-article-body h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    font-size: 1.15rem;
    color: var(--th-navy);
    margin: 26px 0 12px;
}
body.th-modern .th-article-body strong { color: var(--th-navy); }
body.th-modern .th-article-body a {
    color: var(--th-primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}
body.th-modern .th-article-body a:hover { color: var(--th-navy); }
body.th-modern .th-article-body ul,
body.th-modern .th-article-body ol {
    padding-left: 22px;
    margin-bottom: 22px;
}
body.th-modern .th-article-body li::marker { color: var(--th-primary); }
body.th-modern .th-article-body .alert {
    background: linear-gradient(135deg, rgba(86,193,221,.10), rgba(27,34,62,.04));
    border: 1px solid var(--th-line);
    border-left: 4px solid var(--th-primary);
    color: var(--th-navy);
    padding: 22px 26px;
    border-radius: 12px;
    margin: 32px 0;
    font-size: 14.5px;
    line-height: 1.7;
}
body.th-modern .th-article-body .alert strong { color: var(--th-navy); }

/* Side */
body.th-modern .th-article-side { position: sticky; top: 100px; }
@media (max-width: 991.98px) {
    body.th-modern .th-article-side { position: static; }
}
body.th-modern .th-side-card {
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: var(--th-radius);
    padding: 26px;
    margin-bottom: 22px;
}
body.th-modern .th-side-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    color: var(--th-navy);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

/* TOC */
body.th-modern .th-toc ul { list-style: none; padding: 0; margin: 0; }
body.th-modern .th-toc li { border-bottom: 1px solid var(--th-line); }
body.th-modern .th-toc li:last-child { border-bottom: 0; }
body.th-modern .th-toc a {
    display: block;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--th-mute);
    text-decoration: none;
    transition: .25s;
}
body.th-modern .th-toc a:hover { color: var(--th-primary-dark); padding-left: 6px; }
body.th-modern .th-toc a::before {
    content: "—";
    color: var(--th-primary);
    margin-right: 8px;
}

/* Paylaşım */
body.th-modern .th-share { display: flex; flex-wrap: wrap; gap: 8px; }
body.th-modern .th-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--th-bg-soft);
    color: var(--th-navy);
    transition: .25s;
    text-decoration: none;
}
body.th-modern .th-share a:hover {
    background: var(--th-navy);
    color: var(--th-primary);
    transform: translateY(-2px);
}

/* Yazar kartı */
body.th-modern .th-author { text-align: center; }
body.th-modern .th-author .avatar {
    width: 70px; height: 70px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--th-gradient);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
}
body.th-modern .th-author strong {
    display: block;
    font-family: 'Inter', sans-serif;
    color: var(--th-navy);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}
body.th-modern .th-author span {
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    font-size: 12px;
    display: block;
    margin-bottom: 14px;
}
body.th-modern .th-author .a-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--th-primary-dark);
    text-decoration: none;
}
body.th-modern .th-author .a-cta:hover { color: var(--th-navy); gap: 10px; }

/* ============ FILTER BAR (kategori) ============ */
body.th-modern .th-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 46px;
}
body.th-modern .th-filter button {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--th-navy);
    cursor: pointer;
    transition: .25s;
}
body.th-modern .th-filter button:hover {
    border-color: var(--th-primary);
    color: var(--th-primary-dark);
    transform: translateY(-2px);
}
body.th-modern .th-filter button.active {
    background: var(--th-navy);
    color: var(--th-primary);
    border-color: var(--th-navy);
    box-shadow: 0 10px 22px rgba(27,34,62,.25);
}
body.th-modern .th-blog-card.hidden { display: none; }

/* ============ FEATURED ARTICLE ============ */
body.th-modern .th-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--th-radius);
    overflow: hidden;
    border: 1px solid var(--th-line);
    box-shadow: var(--th-shadow-md);
    margin-bottom: 50px;
    transition: .35s;
    text-decoration: none;
    color: inherit;
}
@media (max-width: 991.98px) {
    body.th-modern .th-featured { grid-template-columns: 1fr; }
}
body.th-modern .th-featured:hover {
    box-shadow: var(--th-shadow-lg);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}
body.th-modern .th-featured-img {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    background: var(--th-gradient);
}
body.th-modern .th-featured-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
body.th-modern .th-featured-img > i {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5.5rem;
    color: rgba(255,255,255,.9);
    z-index: 0;
    transition: transform .5s;
}
body.th-modern .th-featured:hover .th-featured-img > i {
    transform: translate(-50%, -50%) scale(1.08) rotate(-4deg);
}
body.th-modern .th-featured-img::before {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 30% 20%, rgba(86,193,221,.25), transparent 50%);
    z-index: 0;
}
body.th-modern .th-featured:hover .th-featured-img img { transform: scale(1.05); }
body.th-modern .th-featured-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(45deg, rgba(15,20,36,.45), transparent 60%);
}
body.th-modern .th-featured-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--th-primary);
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 1;
}
body.th-modern .th-featured-body {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 575.98px) {
    body.th-modern .th-featured-body { padding: 32px 26px; }
}
body.th-modern .th-featured-body .meta {
    display: flex;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: var(--th-mute);
    margin-bottom: 16px;
    flex-wrap: wrap;
}
body.th-modern .th-featured-body .meta strong {
    color: var(--th-navy);
    font-weight: 600;
}
body.th-modern .th-featured-body .meta i {
    color: var(--th-primary);
    margin-right: 4px;
}
body.th-modern .th-featured-body h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: var(--th-navy);
    margin-bottom: 14px;
    line-height: 1.2;
}
body.th-modern .th-featured-body p {
    font-family: 'Inter', sans-serif;
    color: var(--th-mute);
    line-height: 1.75;
    margin-bottom: 26px;
    font-size: 15px;
}
body.th-modern .th-featured-body .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--th-primary-dark);
    font-size: 14px;
    text-decoration: none;
    transition: .25s;
}
body.th-modern .th-featured:hover .read-more { gap: 14px; color: var(--th-navy); }
