/* =========================================================
   EKC ENDÜSTRİYEL ELEKTRONİK — ANA SAYFA (ÜST BÖLÜM)
   ========================================================= */

:root {
    --primary: #0874ba;
    --primary-dark: #075c9d;
    --navy: #172b49;
    --dark: #101d30;
    --white: #ffffff;
    --text: #4f5968;
    --green: #009300;
    --green-dark: #007a00;
    --cyan: #22d3ee;

    --topbar-h: 46px;
    --header-h: 128px;
    --header-h-mobile: 76px;

    --container-max: 1400px;
    --radius: 8px;

    --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------------------------------------------------------
   RESET
--------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

h1, h2, p {
    margin: 0;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    z-index: 10000;
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
}

.skip-link:focus {
    left: 16px;
    top: 16px;
}

:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius);
    padding: 0 26px;
    height: 56px;
    white-space: nowrap;
    transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
    border: none;
}

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

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(7, 92, 157, .3);
}

.btn--whatsapp {
    background: var(--green);
    color: var(--white);
    height: 48px;
    padding: 0 22px;
    border-radius: 24px;
    font-size: 14px;
}

.btn--whatsapp svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn--whatsapp:hover {
    background: var(--green-dark);
}

.btn--block {
    width: 100%;
}

/* ---------------------------------------------------------
   1. TOP BAR
--------------------------------------------------------- */
.topbar {
    background: var(--navy);
    color: #cbd4e1;
    min-height: var(--topbar-h);
    display: flex;
    align-items: center;
    font-size: 13.5px;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 8px;
    padding-bottom: 8px;
}

.topbar__info {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd4e1;
    transition: color .2s ease;
}

.topbar__item:hover {
    color: var(--white);
}

.topbar__icon {
    width: 15px;
    height: 15px;
    fill: var(--primary);
    flex-shrink: 0;
}

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

.topbar__lang a {
    color: #cbd4e1;
    transition: color .2s ease;
}

.topbar__lang a:hover {
    color: var(--white);
}

/* ---------------------------------------------------------
   2. HEADER
--------------------------------------------------------- */
.site-header {
    background: var(--white);
    height: var(--header-h);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 14px rgba(16, 29, 48, .06);
    position: sticky;
    top: 0;
    z-index: 500;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 100%;
}

.logo {
    flex-shrink: 0;
    display: inline-flex;
}

.logo img {
    width: 200px;
    height: auto;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* ---------------------------------------------------------
   3. ANA MENÜ (Desktop)
--------------------------------------------------------- */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-menu__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-menu__list > li {
    position: relative;
}

.main-menu__list > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    border-radius: var(--radius);
    transition: color .2s ease, background-color .2s ease;
}

.main-menu__list > li > a:hover {
    color: var(--primary);
    background: rgba(8, 116, 186, .06);
}

.main-menu__list > li.active > a {
    color: var(--primary-dark);
    font-weight: 800;
    background: rgba(8, 116, 186, .06);
}

.main-menu__list .caret {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform .2s ease;
}

.main-menu__list .dropdown:hover .caret {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(16, 29, 48, .14);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.dropdown:hover .dropdown__menu,
.dropdown:focus-within .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__menu li a {
    display: block;
    padding: 12px 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    border-radius: 6px;
    transition: color .18s ease, background-color .18s ease;
}

.dropdown__menu li a:hover {
    color: var(--primary);
    background: rgba(8, 116, 186, .08);
}

/* ---------------------------------------------------------
   HAMBURGER
--------------------------------------------------------- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid #e1e6ec;
    border-radius: 6px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------------------------------------------------------
   4. MOBİL MENÜ
--------------------------------------------------------- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 29, 48, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 900;
}

.mobile-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(340px, 86vw);
    background: var(--white);
    z-index: 950;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 28px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
}

.mobile-menu.is-active {
    transform: translateX(0);
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid #edf0f3;
}

.mobile-menu__head img {
    width: 130px;
    height: auto;
}

.mobile-menu__close {
    width: 38px;
    height: 38px;
    border: 1px solid #e1e6ec;
    background: transparent;
    border-radius: 6px;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__close svg {
    width: 18px;
    height: 18px;
}

.mobile-menu__list {
    flex: 1;
}

.mobile-menu__list > li {
    border-bottom: 1px solid #f1f3f6;
}

.mobile-menu__list > li > a {
    display: block;
    padding: 15px 4px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy);
}

.mobile-menu__list > li.active > a {
    color: var(--primary);
}

.mobile-accordion__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    padding: 15px 4px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy);
}

.mobile-accordion__toggle .caret {
    width: 16px;
    height: 16px;
    fill: var(--navy);
    transition: transform .2s ease;
}

.mobile-accordion__toggle[aria-expanded="true"] .caret {
    transform: rotate(180deg);
}

.mobile-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.mobile-accordion__panel li a {
    display: block;
    padding: 11px 4px 11px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    border-left: 2px solid #e1e6ec;
}

.mobile-accordion__panel li a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
}

.mobile-menu__lang {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 16px 4px 4px;
    margin-top: 4px;
    border-top: 1px solid #edf0f3;
}

.mobile-menu__lang a {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    transition: color .2s ease;
}

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

.mobile-menu .btn--whatsapp {
    margin-top: 18px;
}

body.no-scroll {
    overflow: hidden;
}

/* ---------------------------------------------------------
   5–12. HERO SLIDER
--------------------------------------------------------- */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--topbar-h) - var(--header-h));
    min-height: 620px;
    max-height: 850px;
    overflow: hidden;
    background: var(--navy);
}

.hero-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide--1 .hero-slide__img { object-position: center 40%; }
.slide--2 .hero-slide__img { object-position: center center; }
.slide--3 .hero-slide__img { object-position: center 55%; }
.slide--4 .hero-slide__img { object-position: center center; }

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(12, 29, 52, .88) 0%,
        rgba(12, 29, 52, .67) 43%,
        rgba(12, 29, 52, .30) 70%,
        rgba(12, 29, 52, .20) 100%
    );
}

.hero-slide__container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide__content {
    max-width: 720px;
    color: var(--white);
}

.hero-slide__title {
    font-size: clamp(50px, 4.6vw, 82px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .6s ease .15s, transform .6s ease .15s;
}

.hero-slide__desc {
    margin-top: 26px;
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.5;
    color: #dbe2ea;
    font-weight: 500;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .6s ease .3s, transform .6s ease .3s;
}

.hero-slide__cta {
    margin-top: 38px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .6s ease .45s, transform .6s ease .45s;
}

.hero-slide.is-active .hero-slide__title,
.hero-slide.is-active .hero-slide__desc,
.hero-slide.is-active .hero-slide__cta {
    opacity: 1;
    transform: translateY(0);
}

/* Arrows */
.hero-slider__nav {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 10;
}

.hero-slider__arrow {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.hero-slider__arrow svg {
    width: 22px;
    height: 22px;
}

.hero-slider__arrow:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-dark);
}

/* Dots */
.hero-slider__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 26px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none;
    padding: 0;
    transition: background-color .2s ease, transform .2s ease;
}

.hero-slider__dot.is-active {
    background: var(--white);
    transform: scale(1.2);
}

/* ---------------------------------------------------------
   13. FEATURES STRIP (Slider altı, üzerine binen 3'lü şerit)
--------------------------------------------------------- */
.features-strip {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    padding-bottom: 60px;
}

.features-strip__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border-radius: 14px;
    padding: 28px 26px;
    box-shadow: 0 20px 45px rgba(16, 29, 48, .12);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.feature-card:hover {
    background: var(--primary);
    box-shadow: 0 20px 45px rgba(8, 116, 186, .35);
    transform: translateY(-2px);
}

.feature-card__icon {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #eaf3fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease;
}

.feature-card:hover .feature-card__icon {
    background: rgba(255, 255, 255, .18);
}

.feature-card__icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
    transition: fill .25s ease;
}

.feature-card:hover .feature-card__icon svg {
    fill: var(--white);
}

.feature-card__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-card__eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9aa4b2;
    transition: color .25s ease;
}

.feature-card:hover .feature-card__eyebrow {
    color: rgba(255, 255, 255, .8);
}

.feature-card__title {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
    transition: color .25s ease;
}

.feature-card:hover .feature-card__title {
    color: var(--white);
}

/* ---------------------------------------------------------
   14. HAKKIMIZDA (ÖZET)
--------------------------------------------------------- */
.about {
    padding: 90px 0 100px;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- Görsel kompozisyonu --- */
.about__media {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding-bottom: 70px;
    padding-left: 40px;
}

.about__img-main-wrap {
    width: 100%;
    aspect-ratio: 6 / 5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(16, 29, 48, .14);
    position: relative;
}

.about__img-main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img-sub-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 20px 40px rgba(16, 29, 48, .2);
}

.about__img-sub {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__badge {
    position: absolute;
    right: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 12px 12px 12px 0;
    box-shadow: 0 18px 34px rgba(7, 92, 157, .35);
    z-index: 5;
}

.about__badge strong {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.about__badge span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

/* --- İçerik --- */
.about__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.about__eyebrow svg {
    width: 12px;
    height: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.about__eyebrow-flip {
    transform: rotate(180deg);
}

.about__title {
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 24px;
}

.about__lead {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 480px;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 26px;
}

.about__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy);
}

.about__list svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--primary);
}

.about__text {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 34px;
}

.about__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.about__phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.about__phone-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #dde4ec;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s ease, background-color .2s ease;
}

.about__phone-icon svg {
    width: 19px;
    height: 19px;
    fill: var(--primary);
}

.about__phone:hover .about__phone-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.about__phone:hover .about__phone-icon svg {
    fill: var(--white);
}

.about__phone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about__phone-text strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
}

.about__phone-text span {
    font-size: 13px;
    color: var(--text);
}

/* ---------------------------------------------------------
   15. HİZMETLERİMİZ
--------------------------------------------------------- */
.services {
    padding: 30px 0 100px;
}

.services__inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.services__intro {
    flex: 0 0 260px;
}

.services__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.services__eyebrow svg {
    width: 12px;
    height: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.services__eyebrow-flip {
    transform: rotate(180deg);
}

.services__title {
    position: relative;
    display: inline-block;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
}

.services__dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    opacity: .35;
    margin-top: 14px;
}

.services__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3 / 3.5;
    box-shadow: 0 16px 34px rgba(16, 29, 48, .12);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 29, 48, 0) 42%, rgba(12, 22, 38, .9) 100%);
}

.service-card__title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 22px 24px;
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    z-index: 2;
    transition: transform .3s ease;
}

.service-card:hover img {
    transform: scale(1.06);
}

.service-card:hover .service-card__title {
    transform: translateY(-4px);
}

/* --- Alt CTA kutusu --- */
.services__cta {
    margin-top: 40px;
    max-width: 640px;
    background: #eef2f8;
    border-radius: 14px;
    padding: 42px 44px;
}

.services__cta-eyebrow {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #98a2b0;
    margin-bottom: 16px;
}

.services__cta-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.45;
    max-width: 480px;
    margin-bottom: 28px;
}

.services__cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn--soft {
    background: #7ea3dc;
    color: var(--white);
}

.btn--soft:hover {
    background: #6690cf;
}

/* ---------------------------------------------------------
   16. ARA CTA — TELEFON / WHATSAPP ÇAĞRISI
--------------------------------------------------------- */
.call-banner {
    padding: 10px 0 100px;
}

.call-banner__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--navy);
    border: 2px solid var(--cyan);
    border-radius: 18px;
    padding: 40px 56px;
    box-shadow: 0 25px 60px rgba(16, 29, 48, .2);
}

.call-banner__title {
    flex: 1 1 260px;
    color: var(--white);
    font-size: clamp(24px, 2.2vw, 29px);
    font-weight: 800;
    margin: 0;
}

.call-banner__phone {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.call-banner__phone-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease;
}

.call-banner__phone-icon svg {
    width: 19px;
    height: 19px;
    fill: var(--cyan);
    transition: fill .2s ease;
}

.call-banner__phone:hover .call-banner__phone-icon {
    background: var(--cyan);
}

.call-banner__phone:hover .call-banner__phone-icon svg {
    fill: var(--navy);
}

.call-banner__phone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.call-banner__phone-text strong {
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
}

.call-banner__phone-text span {
    color: #93a1b5;
    font-size: 13px;
}

.call-banner__cta {
    flex-shrink: 0;
}

/* ---------------------------------------------------------
   16b. HARİTA + WHATSAPP BANNER (İletişim sayfası — footer üstü)
--------------------------------------------------------- */
.map-section {
    padding: 0;
}

.map-section__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 460px;
}

.map-section__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

.map-section__overlay .call-banner__box {
    pointer-events: auto;
    max-width: 1100px;
    margin: 0 auto;
    transform: translateY(-50%);
}

@media (max-width: 992px) {
    .map-section__frame {
        aspect-ratio: 4 / 3;
        min-height: 360px;
    }
}

@media (max-width: 576px) {
    .map-section__frame {
        aspect-ratio: 1 / 1;
        min-height: 320px;
    }
}


/* ---------------------------------------------------------
   17. BLOG
--------------------------------------------------------- */
.blog {
    padding: 0 0 110px;
}

.blog__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.blog__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.blog__eyebrow svg {
    width: 12px;
    height: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.blog__eyebrow-flip {
    transform: rotate(180deg);
}

.blog__title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
}

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

.blog-card {
    display: block;
    background: var(--white);
    border: 1px solid #edf0f4;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.blog-card:hover {
    box-shadow: 0 20px 42px rgba(16, 29, 48, .12);
    border-color: transparent;
    transform: translateY(-4px);
}

.blog-card__img-wrap {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.blog-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.blog-card:hover .blog-card__img-wrap img {
    transform: scale(1.06);
}

.blog-card__body {
    display: block;
    padding: 26px 28px 30px;
}

.blog-card__date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.blog-card__date svg {
    width: 15px;
    height: 15px;
    fill: var(--primary);
    flex-shrink: 0;
}

.blog-card__title {
    display: block;
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 20px;
}

.blog-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eef2f8;
    color: var(--navy);
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.blog-card__arrow svg {
    width: 17px;
    height: 17px;
}

.blog-card:hover .blog-card__arrow {
    background: var(--primary);
    color: var(--white);
    transform: translateX(3px);
}

/* ---------------------------------------------------------
   18. SAYFA BAŞINA DÖN
--------------------------------------------------------- */
.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(7, 92, 157, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background-color .2s ease;
    z-index: 400;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* ---------------------------------------------------------
   19. FOOTER
--------------------------------------------------------- */
.site-footer {
    background: var(--navy);
    padding-top: 76px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 56px;
}

.footer__col {
    min-width: 0;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer__logo img {
    width: 180px;
    height: auto;
}

.footer__about {
    color: #aab4c4;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 26px;
}

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

.footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color .2s ease, border-color .2s ease;
}

.footer__social svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.footer__social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer__heading {
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 24px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__contact a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #c3cbd9;
    font-size: 14.5px;
    line-height: 1.5;
    transition: color .2s ease;
}

.footer__contact a:hover {
    color: var(--white);
}

.footer__contact svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__links a {
    color: #c3cbd9;
    font-size: 14.5px;
    font-weight: 500;
    transition: color .2s ease;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__hours {
    display: flex;
    flex-direction: column;
    margin-bottom: 26px;
}

.footer__hours li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 14px;
}

.footer__hours li:first-child {
    padding-top: 0;
}

.footer__hours span {
    color: #aab4c4;
}

.footer__hours strong {
    color: var(--white);
    font-weight: 700;
}

.footer__phone {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer__phone-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease;
}

.footer__phone-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--cyan);
    transition: fill .2s ease;
}

.footer__phone:hover .footer__phone-icon {
    background: var(--cyan);
}

.footer__phone:hover .footer__phone-icon svg {
    fill: var(--navy);
}

.footer__phone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer__phone-text strong {
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
}

.footer__phone-text span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 600;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.footer__bottom-inner p {
    color: #93a1b5;
    font-size: 13.5px;
}

.footer__bottom-inner a {
    color: #93a1b5;
    transition: color .2s ease;
}

.footer__bottom-inner a:hover {
    color: var(--white);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide__title,
    .hero-slide__desc,
    .hero-slide__cta,
    .btn,
    .hero-slider__arrow,
    .hero-slider__dot,
    .dropdown__menu,
    .mobile-menu,
    .mobile-overlay,
    .service-card img,
    .service-card__title,
    .blog-card,
    .blog-card__img-wrap img,
    .blog-card__arrow,
    .scroll-top {
        transition-duration: .01ms !important;
    }
}

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

/* ---- 1200px ---- */
@media (max-width: 1200px) {
    :root {
        --header-h: 108px;
    }

    .main-menu__list > li > a {
        padding: 12px 12px;
        font-size: 14.5px;
    }

    .logo img {
        width: 175px;
    }

    .hero-slider__nav {
        right: 24px;
    }
}

/* ---- 992px : switch to mobile menu ---- */
@media (max-width: 992px) {
    :root {
        --header-h: var(--header-h-mobile);
        --topbar-h: 0px;
    }

    .topbar {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .site-header__actions .btn--whatsapp span {
        display: none;
    }

    .site-header__actions .btn--whatsapp {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
    }

    .site-header__actions .btn--whatsapp svg {
        width: 20px;
        height: 20px;
    }

    .hamburger {
        display: flex;
    }

    .logo img {
        width: 150px;
    }

    .topbar__item span {
        display: none;
    }

    .topbar__info {
        gap: 16px;
    }

    .hero-slider {
        min-height: 580px;
    }

    .hero-slider__nav {
        right: 18px;
        gap: 10px;
    }

    .hero-slider__arrow {
        width: 46px;
        height: 46px;
    }

    .hero-slider__arrow svg {
        width: 18px;
        height: 18px;
    }

    .features-strip {
        margin-top: -56px;
    }

    .features-strip__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about {
        padding: 70px 0 76px;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about__media {
        max-width: 460px;
    }

    .services {
        padding: 10px 0 80px;
    }

    .services__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .services__intro {
        flex: 0 0 auto;
    }

    .services__grid {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .services__cta {
        max-width: 100%;
    }

    .call-banner__box {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 32px 36px;
    }

    .call-banner__title {
        flex: 1 1 100%;
        text-align: center;
    }

    .blog {
        padding: 0 0 80px;
    }

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

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 44px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
    .topbar {
        font-size: 12.5px;
    }

    .topbar__item .topbar__icon {
        width: 14px;
        height: 14px;
    }

    .topbar__lang {
        gap: 12px;
    }

    .hero-slider {
        min-height: 560px;
    }

    .hero-slide__desc br {
        display: none;
    }

    .features-strip {
        margin-top: -40px;
        padding-bottom: 44px;
    }

    .feature-card {
        padding: 22px 20px;
        gap: 16px;
    }

    .feature-card__icon {
        width: 56px;
        height: 56px;
    }

    .feature-card__icon svg {
        width: 25px;
        height: 25px;
    }

    .feature-card__title {
        font-size: 17px;
    }

    .about {
        padding: 60px 0 64px;
    }

    .about__title {
        font-size: 27px;
    }

    .about__lead {
        font-size: 16.5px;
    }

    .services__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .service-card:nth-child(3) {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 8;
    }

    .services__cta {
        padding: 32px 28px;
    }

    .services__cta-title {
        font-size: 19px;
    }

    .call-banner {
        padding: 0 0 76px;
    }

    .call-banner__box {
        padding: 28px 26px;
        gap: 22px;
        border-radius: 14px;
    }

    .call-banner__title {
        font-size: 22px;
    }

    .blog {
        padding: 0 0 64px;
    }

    .blog__head {
        margin-bottom: 34px;
    }

    .blog-card__body {
        padding: 22px 24px 26px;
    }

    .site-footer {
        padding-top: 60px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__about {
        max-width: 100%;
    }

    .footer__bottom-inner {
        gap: 6px;
    }
}

/* ---- 576px ---- */
@media (max-width: 576px) {
    .container {
        padding: 0 18px;
    }

    .topbar__info {
        gap: 12px;
    }

    .topbar__lang li:nth-child(3),
    .topbar__lang li:nth-child(4) {
        display: none;
    }

    .logo img {
        width: 128px;
    }

    .hero-slider {
        min-height: 540px;
    }

    .hero-slide__title {
        font-size: 38px;
    }

    .hero-slide__title br {
        display: none;
    }

    .hero-slide__desc {
        margin-top: 16px;
        font-size: 15px;
    }

    .hero-slide__cta {
        margin-top: 26px;
        height: 52px;
        padding: 0 22px;
        font-size: 14px;
    }

    .hero-slider__nav {
        top: auto;
        bottom: 20px;
        right: 18px;
        transform: none;
        flex-direction: row;
    }

    .hero-slider__dots {
        bottom: 88px;
    }

    .about__media {
        max-width: 340px;
        padding-left: 30px;
        padding-bottom: 56px;
    }

    .about__badge {
        padding: 11px 15px;
        bottom: 14px;
    }

    .about__badge strong {
        font-size: 21px;
    }

    .about__badge span {
        font-size: 12px;
    }

    .about__actions {
        gap: 18px;
    }

    .about__phone-icon {
        width: 46px;
        height: 46px;
    }

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

    .service-card,
    .service-card:nth-child(3) {
        aspect-ratio: 4 / 3;
    }

    .service-card__title {
        font-size: 16.5px;
        padding: 18px;
    }

    .services__cta {
        padding: 26px 22px;
        border-radius: 12px;
    }

    .services__cta-title {
        font-size: 17.5px;
        margin-bottom: 22px;
    }

    .services__cta-actions {
        gap: 12px;
    }

    .services__cta-actions .btn {
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
    }

    .call-banner__box {
        padding: 26px 20px;
    }

    .call-banner__title {
        font-size: 20px;
    }

    .call-banner__cta {
        width: 100%;
        text-align: center;
    }

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

    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }

    .scroll-top svg {
        width: 17px;
        height: 17px;
    }
}

/* ---- 400px ---- */
@media (max-width: 400px) {
    .hero-slide__title {
        font-size: 32px;
    }

    .topbar__lang li:nth-child(2) {
        display: none;
    }
}

/* ---------------------------------------------------------
   SAYFA BANNER (İç sayfa üst başlık — breadcrumb)
--------------------------------------------------------- */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, #f4f6f9 0%, #f4f6f9 22%, rgba(244, 246, 249, .85) 40%, rgba(244, 246, 249, 0) 65%);
}

.page-hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.breadcrumb {
    margin-bottom: 14px;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #8b95a3;
}

.breadcrumb__item a {
    color: #8b95a3;
    transition: color .2s ease;
}

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

.breadcrumb__sep {
    color: #c2c9d2;
}

.breadcrumb__item--current {
    color: var(--primary);
}

.page-hero__title {
    max-width: 640px;
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
}

/* ---------------------------------------------------------
   HİZMETLERİMİZ — KART LİSTESİ (iç sayfa)
--------------------------------------------------------- */
.hizmet-list {
    padding: 70px 0 100px;
}

.hizmet-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hizmet-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(16, 29, 48, .1);
    transition: box-shadow .3s ease, transform .3s ease;
}

.hizmet-card:hover {
    box-shadow: 0 24px 48px rgba(16, 29, 48, .16);
    transform: translateY(-5px);
}

.hizmet-card__img-wrap {
    display: block;
    aspect-ratio: 650 / 440;
    overflow: hidden;
}

.hizmet-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.hizmet-card:hover .hizmet-card__img-wrap img {
    transform: scale(1.06);
}

.hizmet-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 26px 24px;
    border-top: 3px solid var(--primary);
}

.hizmet-card__title {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 10px;
    transition: color .2s ease;
}

.hizmet-card__title a {
    color: inherit;
}

.hizmet-card:hover .hizmet-card__title {
    color: var(--primary);
}

.hizmet-card__desc {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
}

.hizmet-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    padding-top: 16px;
    border-top: 1px solid #eef1f5;
}

.hizmet-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform .25s ease;
}

.hizmet-card:hover .hizmet-card__link svg {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .hizmet-list {
        padding: 50px 0 80px;
    }

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

@media (max-width: 768px) {
    .page-hero {
        min-height: 200px;
    }

    .page-hero__overlay {
        background: linear-gradient(90deg, #f4f6f9 0%, #f4f6f9 10%, rgba(244, 246, 249, .9) 55%, rgba(244, 246, 249, .55) 100%);
    }

    .hizmet-list__grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   HİZMET DETAY — GİRİŞ (Resim + Metin)
--------------------------------------------------------- */
.service-intro {
    background: var(--white);
    padding: 60px 0 20px;
}

.service-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-intro__eyebrow svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.service-intro__eyebrow-flip {
    transform: rotate(180deg);
}

.service-intro__title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 36px;
}

.service-intro__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-intro__text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-intro__text p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

.service-intro__text strong {
    color: var(--navy);
    font-weight: 800;
}

.service-intro__text ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 4px 0 0;
}

.service-intro__text li {
    position: relative;
    padding-left: 24px;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--text);
}

.service-intro__text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.service-intro__media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(16, 29, 48, .14);
}

.service-intro__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* WordPress editöründen "Açıklama" alanı doldurularak eklenen görseller
   otomatik olarak .wp-caption ile sarmalanır ve sabit piksel genişliği
   (inline style) alır. Bu, grid'in genişlemesini engelliyordu — burada
   inline stili eziyoruz ve altındaki açıklama yazısını gizliyoruz. */
.service-intro__media .wp-caption {
    width: 100% !important;
    margin: 0;
}

.service-intro__media .wp-caption-text {
    display: none;
}

/* Klasik editör bazı sürümlerde captiona <figure>/<figcaption> da üretebilir */
.service-intro__media figure {
    width: 100% !important;
    margin: 0;
}

.service-intro__media figcaption {
    display: none;
}

/* ---------------------------------------------------------
   HİZMET DETAY — UZMANLARIMIZLA GÖRÜŞÜN + ÖZELLİKLER
--------------------------------------------------------- */
.service-cta {
    background: #f4f6f9;
    padding: 70px 0 100px;
}

.service-cta__top {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
    gap: 48px;
    margin-bottom: 56px;
}

.service-cta__visual {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-cta__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid #dbe3ee;
}

.service-cta__ring--outer {
    width: 220px;
    height: 220px;
}

.service-cta__ring--inner {
    width: 150px;
    height: 150px;
}

.service-cta__pill {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    padding: 8px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(8, 116, 186, .3);
    z-index: 3;
}

.service-cta__circle {
    position: relative;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(16, 29, 48, .14);
    z-index: 3;
}

.service-cta__circle::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: rgba(34, 211, 238, .18);
    animation: serviceCtaPulse 2.4s ease-out infinite;
    z-index: -1;
}

.service-cta__circle svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    transition: transform .25s ease;
}

.service-cta__circle:hover svg {
    transform: scale(1.1);
}

@keyframes serviceCtaPulse {
    0% { transform: scale(.85); opacity: .9; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

.service-cta__title {
    font-size: clamp(24px, 2.4vw, 30px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

.service-cta__desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text);
    max-width: 620px;
    margin-bottom: 24px;
}

.service-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-feature-card {
    background: var(--white);
    border-radius: 14px;
    padding: 30px 28px;
    box-shadow: 0 16px 34px rgba(16, 29, 48, .08);
    transition: box-shadow .25s ease, transform .25s ease;
}

.service-feature-card:hover {
    box-shadow: 0 22px 46px rgba(16, 29, 48, .14);
    transform: translateY(-4px);
}

.service-feature-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #eaf3fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-feature-card__icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

.service-feature-card__title {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-feature-card__desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 18px;
}

.service-feature-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-feature-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
}

.service-feature-card__list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary);
}

.service-feature-card__list--links li a {
    color: var(--primary);
    font-weight: 700;
    font-size: 14.5px;
    transition: color .2s ease;
}

.service-feature-card__list--links li a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ---------------------------------------------------------
   HİZMET DETAY — SIK SORULAN SORULAR (FAQ)
--------------------------------------------------------- */
.service-faq {
    background: var(--white);
    padding: 20px 0 100px;
}

.service-faq__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.service-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-faq__eyebrow svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.service-faq__eyebrow-flip {
    transform: rotate(180deg);
}

.service-faq__title {
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #eef1f5;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(16, 29, 48, .06);
    overflow: hidden;
    transition: box-shadow .25s ease, border-color .25s ease;
}

.faq-item.is-open {
    box-shadow: 0 18px 38px rgba(8, 116, 186, .12);
    border-color: rgba(8, 116, 186, .2);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    padding: 22px 24px;
    text-align: left;
    font-family: inherit;
}

.faq-item__q-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item__text {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.faq-item__chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: #9aa4b2;
    transition: transform .3s ease, fill .2s ease;
}

.faq-item.is-open .faq-item__chevron {
    transform: rotate(180deg);
    fill: var(--primary);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item__answer p {
    padding: 0 24px 22px 74px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

@media (max-width: 992px) {
    .service-intro__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-intro__media {
        order: -1;
    }

    .service-cta__top {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 32px;
    }

    .service-cta__actions {
        justify-content: center;
    }

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

@media (max-width: 576px) {
    .faq-item__answer p {
        padding-left: 24px;
    }
}

/* ---------------------------------------------------------
   HİZMET DETAY — ALT CTA (Zaman Kaybetmeyelim)
--------------------------------------------------------- */
.final-cta {
    background: var(--white);
    padding: 10px 0 90px;
}

.final-cta__frame {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 20px 46px rgba(16, 29, 48, .12);
}

.final-cta__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    background: var(--dark);
    border: 2px solid var(--cyan);
    border-radius: 18px;
    padding: 34px 44px;
}

.final-cta__title {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.final-cta__right {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.final-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.final-cta__phone-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(34, 211, 238, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, border-color .2s ease;
}

.final-cta__phone-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--cyan);
}

.final-cta__phone:hover .final-cta__phone-icon {
    background: var(--cyan);
    border-color: var(--cyan);
}

.final-cta__phone:hover .final-cta__phone-icon svg {
    fill: var(--dark);
}

.final-cta__phone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.final-cta__phone-text strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}

.final-cta__phone-text span {
    font-size: 13px;
    color: #8b95a3;
}

.final-cta__btn {
    flex-shrink: 0;
}

.final-cta__dot {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(8, 116, 186, .3);
    background: var(--white);
}

@media (max-width: 768px) {
    .final-cta__card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 26px;
    }

    .final-cta__right {
        width: 100%;
        justify-content: space-between;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .final-cta__right {
        flex-direction: column;
        align-items: flex-start;
    }

    .final-cta__btn {
        width: 100%;
        text-align: center;
    }
}

/* ---------------------------------------------------------
   GALERİ — KATEGORİ FİLTRESİ
--------------------------------------------------------- */
.gallery-filter {
    background: var(--white);
    padding: 50px 0 10px;
}

.gallery-filter__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 36px;
}

.gallery-filter__tab {
    position: relative;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text);
    padding: 10px 2px;
    transition: color .2s ease;
}

.gallery-filter__tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.gallery-filter__tab:hover {
    color: var(--navy);
}

.gallery-filter__tab.is-active {
    color: var(--primary);
}

.gallery-filter__tab.is-active::after {
    transform: scaleX(1);
}

/* ---------------------------------------------------------
   GALERİ — GÖRSEL IZGARASI (masonry)
--------------------------------------------------------- */
.gallery {
    background: var(--white);
    padding: 30px 0 100px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery__item {
    position: relative;
    margin: 0;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(16, 29, 48, .1);
    transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
}

.gallery__item.is-hidden {
    opacity: 0;
    transform: scale(.94);
    pointer-events: none;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 29, 48, 0) 55%, rgba(12, 22, 38, .85) 100%);
    pointer-events: none;
}

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 18px 18px;
    color: var(--white);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.35;
    z-index: 2;
}

.gallery__item:hover {
    box-shadow: 0 22px 44px rgba(16, 29, 48, .16);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-filter__tabs {
        gap: 6px 22px;
        font-size: 14px;
    }

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

/* ---------------------------------------------------------
   KURUMSAL — HAKKIMIZDA DETAY
--------------------------------------------------------- */
.about-detail {
    background: var(--white);
    padding: 70px 0 100px;
}

.about-detail__inner {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 64px;
    align-items: start;
}

.about-detail__media {
    position: relative;
}

.about-detail__img-main-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(16, 29, 48, .16);
}

.about-detail__img-main {
    width: 100%;
    height: auto;
    display: block;
}

.about-detail__img-sub-wrap {
    position: absolute;
    right: -28px;
    bottom: -36px;
    width: 42%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 20px 40px rgba(16, 29, 48, .2);
}

.about-detail__img-sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-detail__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-detail__eyebrow svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.about-detail__eyebrow-flip {
    transform: rotate(180deg);
}

.about-detail__title {
    font-size: clamp(26px, 2.6vw, 36px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-detail__lead {
    color: var(--primary);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-detail__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-detail__text p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

/* ---------------------------------------------------------
   KURUMSAL — DEĞERLENDİRMELERİMİZ (Testimonials)
--------------------------------------------------------- */
.testimonials {
    background: #f4f6f9;
    padding: 80px 0 100px;
}

.testimonials__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.testimonials__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.testimonials__eyebrow svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.testimonials__eyebrow-flip {
    transform: rotate(180deg);
}

.testimonials__title {
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
}

.testimonials__side {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 460px;
}

.testimonials__desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

.testimonials__next {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #c7d3e0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, border-color .2s ease;
}

.testimonials__next svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: color .2s ease;
}

.testimonials__next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.testimonials__next:hover svg {
    color: var(--white);
}

.testimonials__track {
    position: relative;
    min-height: 220px;
}

.testimonial-card {
    display: none;
    background: var(--white);
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 16px 40px rgba(16, 29, 48, .08);
    max-width: 760px;
    margin: 0 auto;
}

.testimonial-card.is-active {
    display: block;
    animation: testimonialFade .4s ease;
}

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

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
    fill: #f5a623;
}

.testimonial-card__text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 26px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card__author-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-card__author-text strong {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--navy);
}

.testimonial-card__author-text span {
    font-size: 13px;
    color: var(--text);
}

.testimonials__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonials__dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    transition: background-color .2s ease, transform .2s ease;
}

.testimonials__dots .dot.is-active {
    background: var(--primary);
    transform: scale(1.25);
}

@media (max-width: 992px) {
    .about-detail__inner {
        grid-template-columns: 1fr;
        gap: 90px 0;
    }

    .about-detail__media {
        max-width: 420px;
        margin: 0 auto;
    }

    .testimonials__head {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .about-detail__img-sub-wrap {
        right: -12px;
        bottom: -20px;
        width: 46%;
        border-width: 4px;
    }

    .testimonial-card {
        padding: 30px 26px;
    }

    .testimonials__side {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ---------------------------------------------------------
   BLOG — YAZI LİSTESİ (iç sayfa)
--------------------------------------------------------- */
.blog-list {
    background: var(--white);
    padding: 70px 0 100px;
}

.blog-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-post-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid #edf0f4;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.blog-post-card:hover {
    box-shadow: 0 20px 42px rgba(16, 29, 48, .12);
    border-color: transparent;
    transform: translateY(-4px);
}

.blog-post-card__img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.blog-post-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.blog-post-card:hover .blog-post-card__img-wrap img {
    transform: scale(1.06);
}

.blog-post-card__category {
    position: absolute;
    left: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    padding: 10px 16px;
    z-index: 2;
}

.blog-post-card__category svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
    flex-shrink: 0;
}

.blog-post-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 26px 28px;
}

.blog-post-card__date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #9aa4b2;
    margin-bottom: 14px;
}

.blog-post-card__date svg {
    width: 15px;
    height: 15px;
    fill: #9aa4b2;
    flex-shrink: 0;
}

.blog-post-card__title {
    display: block;
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color .2s ease;
}

.blog-post-card:hover .blog-post-card__title {
    color: var(--primary);
}

.blog-post-card__excerpt {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text);
    margin: 0 0 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 14.5px;
    font-weight: 800;
    color: var(--primary);
    align-self: flex-start;
}

.blog-post-card__link svg {
    width: 13px;
    height: 13px;
    margin-left: -2px;
    transition: transform .2s ease;
}

.blog-post-card:hover .blog-post-card__link svg:first-of-type {
    transform: translateX(2px);
}

.blog-post-card:hover .blog-post-card__link svg:last-of-type {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .blog-list {
        padding: 50px 0 80px;
    }

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

@media (max-width: 576px) {
    .blog-list__grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   BLOG DETAY
--------------------------------------------------------- */
.post-detail {
    background: var(--white);
    padding: 60px 0 110px;
}

.post-detail__breadcrumb {
    margin-bottom: 30px;
}

.post-detail__breadcrumb .breadcrumb__list {
    color: #9aa4b2;
}

.post-detail__breadcrumb .breadcrumb__item a {
    color: #9aa4b2;
}

.post-detail__breadcrumb .breadcrumb__item a:hover {
    color: var(--primary);
}

.post-detail__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}

/* --- Sol: yazı içeriği --- */
.post-content__category {
    display: inline-block;
    background: #eaf3fa;
    color: var(--primary);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.post-content__title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 16px;
}

.post-content__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: #9aa4b2;
    margin-bottom: 28px;
}

.post-content__meta svg {
    width: 15px;
    height: 15px;
    fill: #9aa4b2;
    flex-shrink: 0;
}

.post-content__media {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 20px 44px rgba(16, 29, 48, .12);
}

.post-content__media img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.post-content__body p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text);
    margin: 0;
}

/* ---------------------------------------------------------
   BLOG DETAY — İÇERİK İÇİ BAŞLIK / LİSTE STİLLERİ
--------------------------------------------------------- */
.post-content__body h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
    margin: 10px 0 4px;
}

.post-content__body ul,
.post-content__body ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding-left: 22px;
    list-style: revert;
}

.post-content__body ul li,
.post-content__body ol li {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text);
}

/* ---------------------------------------------------------
   BLOG DETAY — 2'Lİ GÖRSEL GALERİSİ (yan yana, başlıksız)
--------------------------------------------------------- */
.post-content__gallery-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 4px 0;
}

.post-content__gallery-2 img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 44px rgba(16, 29, 48, .12);
}

/* WordPress [caption] shortcode'u görseli .wp-caption ile sarar ve
   sabit piksel genişliği (inline style) verir; ayrıca altına açıklama
   metni (.wp-caption-text) ekler. Burada grid hücresini dolduracak
   şekilde genişliği eziyoruz ve açıklama metnini gizliyoruz. */
.post-content__gallery-2 .wp-caption {
    width: 100% !important;
    margin: 0;
}

.post-content__gallery-2 .wp-caption-text {
    display: none;
}

.post-content__gallery-2 figure {
    width: 100% !important;
    margin: 0;
}

.post-content__gallery-2 figcaption {
    display: none;
}

@media (max-width: 576px) {
    .post-content__gallery-2 {
        grid-template-columns: 1fr;
    }
}

/* --- Sağ: sidebar --- */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.post-sidebar__card {
    background: #f4f6f9;
    border-radius: 16px;
    padding: 26px 26px 22px;
}

.post-sidebar__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 18px;
}

.post-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.post-sidebar__list a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: color .2s ease;
}

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

.post-sidebar__features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.post-sidebar__features li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.post-sidebar__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(16, 29, 48, .1);
}

.post-sidebar__icon svg {
    width: 18px;
    height: 18px;
    fill: var(--navy);
}

.post-sidebar__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.4;
}

.post-sidebar__text strong {
    color: var(--navy);
    font-weight: 800;
    font-size: 15px;
}

.post-sidebar__quicklinks {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 14.5px;
    font-weight: 700;
    transition: background-color .2s ease;
}

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

.post-sidebar__quicklinks svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
    flex-shrink: 0;
    margin-right: 4px;
}

.post-sidebar__quicklinks a {
    color: var(--white);
    transition: opacity .2s ease;
}

.post-sidebar__quicklinks a:hover {
    opacity: .8;
    text-decoration: underline;
}

.post-sidebar__quicklinks span {
    color: rgba(255, 255, 255, .5);
}

@media (max-width: 992px) {
    .post-detail__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .post-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .post-sidebar__card {
        flex: 1 1 260px;
    }

    .post-sidebar__quicklinks {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .post-sidebar {
        flex-direction: column;
    }
}

/* ---------------------------------------------------------
   İLETİŞİM
--------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact {
    background: var(--white);
    padding: 70px 0 110px;
}

.contact__inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 64px;
    align-items: start;
}

.contact__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact__eyebrow svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.contact__eyebrow-flip {
    transform: rotate(180deg);
}

.contact__title {
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 34px;
}

.contact__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #eaf3fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(16, 29, 48, .08);
}

.contact__icon svg {
    width: 19px;
    height: 19px;
    fill: var(--cyan);
}

.contact__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
}

.contact__text a {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.5;
    transition: color .2s ease;
}

.contact__text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* --- Form --- */
.contact__form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.contact__field input,
.contact__field textarea {
    width: 100%;
    background: #f4f6f9;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 16px 18px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--navy);
    transition: border-color .2s ease, background-color .2s ease;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: #9aa4b2;
}

.contact__field input:focus,
.contact__field textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
}

.contact__field textarea {
    resize: vertical;
    min-height: 130px;
}

.contact__field--full {
    margin-bottom: 20px;
}

.contact__captcha {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: #f4f6f9;
    border: 1px solid #e3e8ee;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.contact__captcha-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    user-select: none;
}

.contact__captcha-check input {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.contact__captcha-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #c7d3e0;
    background: var(--white);
    transition: background-color .2s ease, border-color .2s ease;
    position: relative;
}

.contact__captcha-check input:checked + .contact__captcha-box {
    background: var(--primary);
    border-color: var(--primary);
}

.contact__captcha-check input:checked + .contact__captcha-box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact__captcha-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    color: #b7c0cc;
    font-size: 11px;
    font-weight: 700;
}

.contact__captcha-badge svg {
    width: 26px;
    height: 26px;
    fill: #b7c0cc;
}

.contact__terms {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 22px;
}

.contact__terms a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

.contact__submit {
    min-width: 160px;
}

@media (max-width: 992px) {
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

@media (max-width: 576px) {
    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .contact__captcha {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact__captcha-badge {
        margin-left: 0;
    }
}







/* ---------------------------------------------------------
   HİZMET DETAY — CHECKLIST (tikli liste) + SATIR ARASI BOŞLUK
--------------------------------------------------------- */
.service-intro__grid + .service-intro__grid {
    margin-top: 90px;
}

.service-intro__text .service-intro__checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 6px 0 26px;
}

/* İkon artık HTML/SVG olarak değil, saf CSS ile ekleniyor.
   Neden: WordPress editörü (TinyMCE/Classic) kayıt sırasında
   <svg> etiketini içerikten otomatik siliyor. İkonu ::before
   ile CSS'ten üretince editörün silecek bir şeyi kalmıyor —
   içerikte sade <li>Metin</li> yeterli. */
.service-intro__text .service-intro__checklist li {
    position: relative;
    display: block;
    padding-left: 34px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.5;
}

.service-intro__text .service-intro__checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 12.5l2.5 2.5L16 9'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 12.5l2.5 2.5L16 9'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* Editör bazen ilk paragrafın <p> etiketini de kırpabiliyor.
   Bu yüzden stilleri sadece "p" seçicisine değil, kapsayan
   .service-intro__text div'ine de tanımlıyoruz; böylece
   etiketsiz kalan düz metin de doğru görünür. */
.service-intro__text {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text);
}

@media (max-width: 576px) {
    .service-intro__grid + .service-intro__grid {
        margin-top: 56px;
    }
}


/* ---------------------------------------------------------
   SAYFALAR — BOŞ SAYFA İÇERİK ALANI (tr_page.php şablonu)
   ---------------------------------------------------------
   Kurumsal/statik sayfalar (hakkımızda, gizlilik, KVKK vb.)
   için tek sütun, okunabilir genişlikte, WordPress editöründen
   gelen ham içeriği (the_content) düzgün gösteren genel stil.
--------------------------------------------------------- */
.page-content {
    background: var(--white);
    padding: 70px 0 100px;
}

.page-content__inner {
    max-width: 100%;
}

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

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

.page-content__inner p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text);
    margin: 0 0 18px;
}

.page-content__inner h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
    margin: 36px 0 16px;
}

.page-content__inner h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.4;
    margin: 28px 0 14px;
}

.page-content__inner h4 {
    font-size: 16.5px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.4;
    margin: 22px 0 8px;
}

.page-content__inner strong {
    color: var(--navy);
    font-weight: 800;
}

.page-content__inner ul,
.page-content__inner ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 22px;
    padding-left: 22px;
    list-style: revert;
}

.page-content__inner ul li,
.page-content__inner ol li {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text);
}

.page-content__inner a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-content__inner a:hover {
    color: var(--primary-dark);
}

.page-content__inner img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 44px rgba(16, 29, 48, .12);
    margin: 8px 0 28px;
    display: block;
}

.page-content__inner blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 3px solid var(--primary);
    background: #f4f6f9;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--navy);
    font-weight: 700;
    font-size: 15.5px;
    line-height: 1.7;
}

@media (max-width: 576px) {
    .page-content {
        padding: 50px 0 70px;
    }

    .page-content__inner h2 {
        font-size: 22px;
    }
}
