/**
 * Petroleum Theme — Mertsan
 */
:root {
    --pt-primary: #0d5c5c;
    --pt-accent: #0d5c5c;
    --pt-accent-hover: #0a4848;
    --pt-bg: #f5f2eb;
    --pt-text: #2d3748;
    --pt-muted: #6b7280;
    --pt-border: #e5e2db;
    --pt-font-heading: "Outfit", sans-serif;
    --pt-font-body: "Source Sans 3", sans-serif;
    --pt-white: #ffffff;
    --pt-primary-light: rgba(13, 92, 92, 0.08);
    --pt-radius: 8px;
    --pt-radius-lg: 12px;
    --pt-shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --pt-shadow: 0 4px 16px rgba(0,0,0,.08);
    --pt-transition: 0.25s ease;
}

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

.pt-body {
    font-family: var(--pt-font-body);
    color: var(--pt-text);
    background: var(--pt-bg);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--pt-font-heading);
    font-weight: 600;
    color: var(--pt-primary);
}

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

/* Yatay taşmayı önle (mobil sağda boşluk / kaydırma) */
html {
    overflow-x: hidden;
    max-width: 100%;
}
body.pt-body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

/* Topbar */
.pt-topbar {
    background: var(--pt-primary);
    color: rgba(255,255,255,.9);
    font-size: 0.8125rem;
    padding: 0.4rem 0;
}
.pt-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.pt-topbar__left, .pt-topbar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.pt-topbar__link {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    transition: color var(--pt-transition);
    white-space: nowrap;
}
.pt-topbar__link:hover { color: #fff; }
.pt-topbar__link i { margin-right: 0.25rem; }
.pt-topbar__links { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.pt-topbar__dot { color: rgba(255,255,255,.6); font-size: 0.7rem; user-select: none; }
.pt-topbar__text { color: rgba(255,255,255,.8); font-size: 0.75rem; }
.pt-topbar__socials { display: flex; gap: 0.5rem; }
.pt-topbar__socials a { color: rgba(255,255,255,.85); transition: color var(--pt-transition); }
.pt-topbar__socials a:hover { color: #fff; }
.pt-topbar__langs { display: flex; gap: 0.5rem; }

/* Header - sticky */
.pt-header {
    background: var(--pt-white);
    box-shadow: var(--pt-shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: box-shadow var(--pt-transition);
}
.pt-header--stuck { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.pt-header .navbar { padding: 0.6rem 0; }
.pt-brand__text {
    font-family: var(--pt-font-heading);
    font-size: 1.5rem;
    color: var(--pt-primary);
    font-weight: 600;
}
.pt-header .nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--pt-text);
    padding: 0.5rem 0.75rem !important;
    transition: color var(--pt-transition);
    position: relative;
}
.pt-header .nav-link:hover,
.pt-header .nav-link.active { color: var(--pt-primary); }
.pt-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: var(--pt-primary);
    border-radius: 1px;
}

/* Dropdown */
.pt-dropdown {
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius);
    box-shadow: var(--pt-shadow);
    padding: 0.5rem 0;
    min-width: 200px;
}
.pt-dropdown .dropdown-item {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    color: var(--pt-text);
    transition: all var(--pt-transition);
}
.pt-dropdown .dropdown-item:hover {
    background: var(--pt-primary-light);
    color: var(--pt-primary);
}

/* Mega menu */
.dropdown-mega { position: static; }
.pt-megamenu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: 100%;
    max-width: 720px;
    border-radius: var(--pt-radius-lg);
    border: 1px solid var(--pt-border);
    box-shadow: var(--pt-shadow);
    padding: 1rem 1.25rem;
}
.pt-megamenu__title {
    font-family: var(--pt-font-heading);
    font-weight: 600;
    color: var(--pt-primary);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}
.pt-megamenu__list { list-style: none; padding: 0; margin: 0; }
.pt-megamenu__list li { margin: 0; }
.pt-megamenu__list a {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.875rem;
    color: var(--pt-text);
    text-decoration: none;
    transition: color var(--pt-transition);
}
.pt-megamenu__list a:hover { color: var(--pt-primary); }
.pt-megamenu__footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--pt-border);
}
.pt-megamenu__footer a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pt-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.pt-megamenu__footer a:hover { color: var(--pt-accent-hover); }

/* Buttons - single primary style */
.pt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--pt-font-body);
    border-radius: var(--pt-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color var(--pt-transition), color var(--pt-transition), transform 0.15s ease;
}
.pt-btn--primary {
    background: var(--pt-primary);
    color: #fff;
}
.pt-btn--primary:hover {
    background: var(--pt-accent-hover);
    color: #fff;
}
.pt-btn--sm { padding: 0.4rem 1rem; font-size: 0.875rem; }
.pt-btn,
.pt-btn--sm {
    min-height: 44px;
}
.pt-btn--sm { min-height: 40px; }
.pt-btn--inverse {
    background: #fff;
    color: var(--pt-primary);
}
.pt-btn--inverse:hover {
    background: rgba(255,255,255,.95);
    color: var(--pt-primary);
}
.pt-btn--secondary {
    background: var(--pt-muted);
    color: #fff;
}
.pt-btn--secondary:hover {
    background: var(--pt-text);
    color: #fff;
}
.pt-btn--outline-light {
    background: rgba(255,255,255,.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,.5);
}
.pt-btn--outline-light:hover {
    background: rgba(255,255,255,.3);
    color: #fff;
    border-color: rgba(255,255,255,.6);
}
.pt-about-sidebar-link { color: var(--pt-primary); text-decoration: none; }
.pt-about-sidebar-link:hover { color: var(--pt-accent-hover); }
.pt-list-icon-primary { color: var(--pt-primary); }

/* Main */
.pt-main {
    min-height: 50vh;
    overflow-x: hidden;
    max-width: 100%;
}

/* Slider: YouTube iframe (100vw / min-width:177.78vh) taşmasını kes */
#ptHero,
#ptHero .carousel-inner,
#ptHero .carousel-item {
    overflow: hidden;
}
#ptHero .pt-hero--slider {
    overflow: hidden;
}
.pt-section.p-0 > .carousel {
    overflow: hidden;
}

/* Page hero (inner pages) */
.pt-hero {
    background: linear-gradient(135deg, var(--pt-primary) 0%, #0a4848 100%);
    color: #fff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.pt-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}
.pt-hero .container,
.pt-hero__inner { position: relative; z-index: 1; }
.pt-hero--slider {
    min-height: 400px;
    padding: 2.75rem 0;
}
.pt-hero--slider .pt-hero__bg { opacity: 1; }
.pt-hero-slider-fallback {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: opacity 0.6s ease;
}
.pt-hero-slider-fallback.is-hidden { opacity: 0; pointer-events: none; }
.pt-hero--slider .pt-hero__content {
    min-height: 300px;
    display: flex;
    align-items: center;
}

/* Slider content entrance animations */
.pt-hero--slider .pt-slide-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.carousel-item.active .pt-slide-content {
    opacity: 1;
    transform: translateY(0);
}
.pt-hero--slider .pt-slide-content .pt-hero__subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(.22,1,.36,1) 0.15s, transform 0.6s cubic-bezier(.22,1,.36,1) 0.15s;
}
.carousel-item.active .pt-slide-content .pt-hero__subtitle {
    opacity: 1;
    transform: translateY(0);
}
.pt-hero--slider .pt-slide-content .pt-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(.22,1,.36,1) 0.3s, transform 0.5s cubic-bezier(.22,1,.36,1) 0.3s;
}
.carousel-item.active .pt-slide-content .pt-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Slider navigation arrows */
.pt-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    padding: 0;
}
.pt-slider-nav:hover {
    background: rgba(255,255,255,.25);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-50%) scale(1.08);
}
.pt-slider-nav--prev { left: 1.25rem; }
.pt-slider-nav--next { right: 1.25rem; }

/* Slider indicators (dots) */
.pt-slider-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 2rem;
}
.pt-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}
.pt-slider-dot:hover { background: rgba(255,255,255,.6); }
.pt-slider-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 5px;
}

/* Slider progress bar */
.pt-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 6;
    background: rgba(255,255,255,.15);
    overflow: hidden;
}
.pt-slider-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--pt-primary), rgba(255,255,255,.8));
    transition: none;
}
.pt-slider-progress__bar.is-running {
    width: 100%;
    transition: width linear;
}

.pt-hero--tagline {
    padding: 2rem 0;
    text-align: center;
}
/* Ana sayfa “Devlerin Çözüm Ortağı” bandı: başlık + slogan tam ortada */
.pt-hero--tagline .pt-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.pt-hero--tagline .pt-hero__title {
    text-align: center;
    width: 100%;
}
.pt-hero--tagline .pt-hero__subtitle {
    text-align: center;
    margin: 0 auto 1.5rem auto;
    max-width: min(36rem, 100%);
}
.pt-hero__title {
    font-family: var(--pt-font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.pt-hero__subtitle {
    color: rgba(255,255,255,.92);
    margin: 0 0 1.5rem 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(0,0,0,.2);
    max-width: 600px;
}
.pt-hero__title--sm { margin-bottom: 0.25rem; }
.pt-hero__meta { color: rgba(255,255,255,.85); }

/* Inner pages — service detail hero */
.pt-hero--service-detail {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: linear-gradient(155deg, #0a3d3d 0%, var(--pt-primary) 42%, #063030 100%);
    overflow: hidden;
}
.pt-hero--service-detail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 70% 0%, rgba(255,255,255,.08) 0%, transparent 55%);
    pointer-events: none;
}
.pt-hero--service-detail .pt-hero__inner {
    position: relative;
    z-index: 1;
}
.pt-breadcrumb--service a {
    color: rgba(255,255,255,.88);
}
.pt-breadcrumb--service a:hover {
    color: #fff;
}
.pt-hero__title--service {
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 20ch;
}
.pt-hero__subtitle--service {
    font-size: clamp(1rem, 2vw, 1.15rem);
    opacity: 0.92;
    max-width: 42ch;
}
.pt-share-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: var(--pt-border);
    color: var(--pt-muted);
    text-decoration: none;
    transition: background var(--pt-transition), color var(--pt-transition);
}
.pt-share-btn:hover { background: var(--pt-primary-light); color: var(--pt-primary); }
.pt-breadcrumb {
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
}
.pt-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.35rem; list-style: none; padding: 0; margin: 0; }
.pt-breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.pt-breadcrumb a:hover { color: #fff; }
.pt-breadcrumb li:not(:last-child)::after { content: ' / '; color: rgba(255,255,255,.6); margin-left: 0.25rem; }

/* Sections */
.pt-section {
    padding: 3rem 0;
    background: var(--pt-bg);
}
.pt-section--white { background: var(--pt-white); }
.pt-section--primary {
    background: var(--pt-primary);
    color: #fff;
}
.pt-section--primary h2,
.pt-section--primary .pt-section-title,
.pt-section--primary .pt-cta__text { color: #fff; }
.pt-section--primary .pt-cta__text { color: rgba(255,255,255,.9); margin-bottom: 1rem; }
.pt-section-title {
    font-family: var(--pt-font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--pt-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}
.pt-section-badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pt-primary);
    margin-bottom: 0.5rem;
}

/* About section (home) */
.pt-about {
    background: linear-gradient(180deg, var(--pt-white) 0%, var(--pt-bg) 100%);
}
.pt-about__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pt-primary);
    margin-bottom: 0.5rem;
}
.pt-about__title {
    font-family: var(--pt-font-heading);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 600;
    color: var(--pt-primary);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}
.pt-about__lead {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--pt-text);
    margin-bottom: 1.25rem;
}
.pt-about__lead p:last-child { margin-bottom: 0; }
.pt-about__img-wrap {
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--pt-border);
    box-shadow: var(--pt-shadow);
}
.pt-about__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pt-about__blocks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.pt-about__block {
    padding: 1rem 0;
    border-bottom: 1px solid var(--pt-border);
}
.pt-about__block:last-of-type { border-bottom: 0; padding-bottom: 0; }
.pt-about__block-title {
    font-family: var(--pt-font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--pt-primary);
    margin: 0 0 0.35rem 0;
}
.pt-about__block-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--pt-muted);
    margin: 0;
}
.pt-about__block-text p:last-child { margin-bottom: 0; }
.pt-about__values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}
.pt-about__values-list li {
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.pt-about__values-list li:last-child { border-bottom: 0; }
.pt-about__value-name {
    font-weight: 600;
    color: var(--pt-primary);
}
.pt-about__value-desc {
    color: var(--pt-muted);
    font-weight: 400;
}
.pt-about__cta {
    display: inline-flex;
    align-items: center;
}

.pt-about-nav {
    flex-wrap: wrap;
    gap: 0.5rem;
}
@media (max-width: 575.98px) {
    .pt-about-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.25rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .pt-about-nav .pt-btn { flex-shrink: 0; }
}

/* Cards */
.pt-card {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    box-shadow: var(--pt-shadow-sm);
    transition: box-shadow var(--pt-transition), transform var(--pt-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pt-card:hover {
    box-shadow: var(--pt-shadow);
    transform: translateY(-2px);
}
.pt-card__img-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--pt-border);
}
.pt-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pt-card:hover .pt-card__img-wrap img { transform: scale(1.03); }
.pt-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.pt-card__title {
    font-family: var(--pt-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pt-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.35;
}
.pt-card__meta, .pt-card__text {
    font-size: 0.9375rem;
    color: var(--pt-muted);
    margin: 0 0 1rem 0;
    flex: 1;
}
.pt-card__badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: var(--pt-primary);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.pt-card__placeholder-icon { font-size: 2rem; }
.pt-brands-page-logo { max-height: 120px; object-fit: contain; }
.pt-partners-block--logo-only .pt-brands-page-logo { max-height: 120px; }
.pt-aspect-4-3 { aspect-ratio: 4/3; min-height: 220px; }
.pt-section-title--sm { font-size: 1.5rem; letter-spacing: 0.05em; }

/* Service cards (dark teal background section) */
.pt-service-card {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--pt-shadow-sm);
    transition: box-shadow var(--pt-transition), transform var(--pt-transition);
}
.pt-service-card:hover {
    box-shadow: var(--pt-shadow);
    transform: translateY(-2px);
}
.pt-service-card__body { padding: 1.5rem; flex: 1; }
.pt-service-card__title {
    font-family: var(--pt-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pt-primary);
    margin-bottom: 0.5rem;
}
.pt-service-card .pt-btn { margin-top: auto; }

/* Footer — compact, modern */
.pt-footer {
    background: #1a2332;
    color: rgba(255,255,255,.88);
    padding: 1.75rem 0 0.75rem;
    font-size: 0.8125rem;
}
.pt-footer__top { padding-bottom: 1.25rem; }
.pt-footer__brand-wrap { margin-bottom: 0.75rem; }
.pt-footer__logo {
    display: block;
    max-height: 32px;
    width: auto;
    margin-bottom: 0.5rem;
}
.pt-footer__brand {
    font-family: var(--pt-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}
.pt-footer__about {
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
    max-width: 260px;
    color: rgba(255,255,255,.75);
}
.pt-footer__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin: 0.5rem 0 0.75rem;
}
.pt-footer__contact-item {
    color: rgba(255,255,255,.88);
    text-decoration: none;
    transition: color var(--pt-transition);
}
.pt-footer__contact-item:hover { color: #fff; }
.pt-footer__contact-item i {
    margin-right: 0.35rem;
    opacity: 0.85;
    font-size: 0.7rem;
}
.pt-footer__socials {
    display: flex;
    gap: 0.5rem;
}
.pt-footer__socials a {
    color: rgba(255,255,255,.7);
    font-size: 0.95rem;
    transition: color var(--pt-transition);
}
.pt-footer__socials a:hover { color: #fff; }
.pt-footer__title {
    font-family: var(--pt-font-heading);
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.pt-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8125rem;
}
.pt-footer__links li { margin-bottom: 0.25rem; }
.pt-footer__links a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: color var(--pt-transition);
}
.pt-footer__links a:hover { color: #fff; }
.pt-footer__links.pt-footer__links--compact a { font-size: 0.75rem; }
.pt-footer__bottom {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 0.75rem;
    color: rgba(255,255,255,.55);
    text-align: center;
}
@media (min-width: 768px) {
    .pt-footer { padding: 2rem 0 0.875rem; }
    .pt-footer__top { padding-bottom: 1.5rem; }
}

/* Content body (WYSIWYG) */
.pt-content-body {
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.pt-content-body p { margin-bottom: 1rem; }
.pt-content-body ul, .pt-content-body ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.pt-content-body img,
.pt-content-body video,
.pt-content-body iframe,
.pt-content-body svg {
    max-width: 100%;
    height: auto;
}
.pt-content-body table {
    max-width: 100%;
}

/* Empty state */
.pt-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--pt-muted);
}
.pt-empty__icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
.pt-empty__text { margin: 0; font-size: 1rem; }

/* Working hours / contact blocks */
.pt-contact-block {
    background: var(--pt-white);
    border-radius: var(--pt-radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--pt-shadow-sm);
}
.pt-contact-block__title {
    font-family: var(--pt-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--pt-primary);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--pt-border);
}
.pt-contact-block--primary {
    background: var(--pt-primary);
    color: #fff;
    border: none;
}
.pt-contact-block--primary .pt-contact-block__title {
    color: rgba(255,255,255,.95);
    border-color: rgba(255,255,255,.2);
}
.pt-contact-block--primary p,
.pt-contact-block--primary .small { color: rgba(255,255,255,.9); }
.pt-content--narrow { max-width: 800px; margin-left: auto; margin-right: auto; }
.pt-sidebar-link { color: var(--pt-text); }
.pt-sidebar-link:hover,
.pt-sidebar-link.fw-semibold { color: var(--pt-primary); }
.pt-hours-table {
    width: 100%;
    font-size: 0.875rem;
    border-collapse: collapse;
}
.pt-hours-table th,
.pt-hours-table td {
    padding: 0.4rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid var(--pt-border);
}
.pt-hours-table th { color: var(--pt-muted); font-weight: 500; }

/* Partner logos */
.pt-partners {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
}
.pt-partners--large {
    gap: 2rem 2.5rem;
    padding: 0.5rem 0;
}
.pt-partners--large .pt-partners__item {
    max-height: 120px;
}
.pt-partners--large .pt-partners__item--white {
    max-height: 80px;
}
.pt-partners__cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: var(--pt-radius);
    min-height: 80px;
    text-decoration: none;
    color: inherit;
}
.pt-partners--large .pt-partners__cell {
    min-height: 100px;
    padding: 1rem 1.25rem;
}
.pt-partners__item {
    filter: none;
    opacity: 1;
    transition: transform var(--pt-transition), box-shadow var(--pt-transition);
    max-height: 64px;
    object-fit: contain;
}
.pt-partners__item--white {
    filter: none;
    opacity: 1;
}
.pt-partners__cell:hover .pt-partners__item {
    transform: scale(1.06);
}
.pt-partners__cell:hover .pt-partners__item--white {
    transform: scale(1.06);
}
.pt-partners__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--pt-muted);
}

/* Partners marquee (kaydırmalı logolar) */
.pt-partners-marquee {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 -0.5rem;
}
.pt-partners-marquee__track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: pt-partners-marquee 40s linear infinite;
}
.pt-partners-marquee__track:hover {
    animation-play-state: paused;
}
.pt-partners--marquee {
    flex-shrink: 0;
    flex-wrap: nowrap;
    padding-right: 2.5rem;
}
.pt-partners--marquee:first-child {
    padding-right: 2.5rem;
}
@keyframes pt-partners-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Partners section (split layout, light bg – yeşil üst üste olmasın diye) */
.pt-partners-section .pt-partners-section__title {
    font-family: var(--pt-font-heading);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 600;
    color: var(--pt-primary);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}
.pt-partners-section .pt-partners-section__text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--pt-text);
    margin: 0 0 1.5rem 0;
}
.pt-partners-section .pt-partners__cell {
    background: var(--pt-bg);
    border: 1px solid var(--pt-border);
}

/* Pagination */
.pt-pagination .pagination { justify-content: center; }
.pt-pagination .page-link {
    color: var(--pt-primary);
    border-color: var(--pt-border);
}
.pt-pagination .page-item.active .page-link {
    background: var(--pt-primary);
    border-color: var(--pt-primary);
}

/* ======================================================================
   Press room — media cards (Röportajlar & Görseller)
   ====================================================================== */
.pt-press-media-grid {
    margin-top: 0.25rem;
}
.pt-press-media-card {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    box-shadow: var(--pt-shadow-sm);
    border: 1px solid var(--pt-border);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--pt-transition), transform var(--pt-transition);
}
.pt-press-media-card:hover {
    box-shadow: var(--pt-shadow);
    transform: translateY(-3px);
}
.pt-press-media-card__media {
    position: relative;
    background: #0f172a;
}
.pt-press-media-card__ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.pt-press-media-card__img-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--pt-border);
}
.pt-press-media-card__zoom {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    line-height: 0;
    border-radius: 0;
}
.pt-press-media-card__zoom:focus-visible {
    outline: 2px solid var(--pt-primary);
    outline-offset: 2px;
}
.pt-press-media-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
    pointer-events: none;
}
.pt-press-media-card:hover .pt-press-media-card__zoom .pt-press-media-card__img {
    transform: scale(1.04);
}
/* Basın görselleri — lightbox */
#ptPressImgModal .modal-content {
    background: transparent;
}
#ptPressImgModal.modal {
    --bs-modal-bg: transparent;
}
.pt-press-img-modal__body {
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 0.75rem 1rem !important;
}
.pt-press-img-modal__img {
    max-height: min(88vh, 900px);
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: var(--pt-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.pt-press-img-modal__close {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    z-index: 2;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.45) !important;
    border-radius: 50%;
    padding: 0.55rem;
}
.pt-press-img-modal__close:hover {
    opacity: 0.92;
}
.pt-press-media-card__fallback {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}
.pt-press-media-card__fallback-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    gap: 0.65rem;
}
.pt-press-media-card__fallback-icon {
    font-size: 2.5rem;
    color: #f87171;
    line-height: 1;
}
.pt-press-media-card__fallback-title {
    font-family: var(--pt-font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
    max-width: 100%;
}
.pt-press-media-card__fallback-btn {
    margin-top: 0.25rem;
}

/* Alert */
.pt-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--pt-radius);
    margin-bottom: 1.5rem;
}
.pt-alert--success { background: rgba(13, 92, 92, 0.12); color: var(--pt-primary); border: 1px solid rgba(13, 92, 92, 0.3); }
.pt-alert--danger { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* Responsive: tablet and below */
@media (max-width: 991.98px) {
    .pt-hero { padding: 2rem 0; }
    .pt-section { padding: 2rem 0; }
    .pt-megamenu { max-width: 100%; }
    .pt-hero--slider { min-height: 480px; padding: 3.5rem 0; }
    .pt-hero--slider .pt-hero__content { min-height: 360px; }
    .pt-slider-nav { width: 42px; height: 42px; font-size: 1rem; }
    .pt-slider-nav--prev { left: 0.75rem; }
    .pt-slider-nav--next { right: 0.75rem; }
    .pt-header .nav-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    .pt-topbar__link,
    .pt-footer__links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    .carousel-control-prev,
    .carousel-control-next {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Responsive: small tablet */
@media (max-width: 767.98px) {
    .pt-topbar { display: none !important; }
    .pt-hero--tagline { padding: 1.75rem 0; }
}

/* Responsive: mobile */
@media (max-width: 575.98px) {
    .pt-section { padding: 1.5rem 0; }
    .pt-hero { padding: 1.5rem 0; }
    .pt-hero--slider { min-height: 380px; padding: 2.5rem 0; }
    .pt-hero--slider .pt-hero__content { min-height: 300px; }
    .pt-slider-nav { width: 38px; height: 38px; font-size: 0.875rem; }
    .pt-slider-nav--prev { left: 0.5rem; }
    .pt-slider-nav--next { right: 0.5rem; }
    .pt-slider-dots { bottom: 0.75rem; padding: 0.35rem 0.75rem; gap: 0.35rem; }
    .pt-slider-dot { width: 8px; height: 8px; }
    .pt-slider-dot.active { width: 20px; }
    .pt-footer__about { max-width: 100%; }
    .pt-footer__title { font-size: 0.65rem; }
    .pt-footer__links { font-size: 0.75rem; }
    .pt-partners-marquee { margin: 0; }
    .pt-partners--large .pt-partners__cell { min-height: 80px; padding: 0.75rem 1rem; }
    .pt-partners--large .pt-partners__item { max-height: 80px; }
    .pt-hours-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1rem;
    }
    .pt-hours-table { min-width: 240px; }
}

/* Desktop: hero slider full height */
@media (min-width: 992px) {
    .pt-hero--slider { min-height: 600px; padding: 5rem 0; }
    .pt-hero--slider .pt-hero__content { min-height: 460px; }
    .pt-slider-nav { width: 52px; height: 52px; font-size: 1.25rem; }
    .pt-slider-nav--prev { left: 2rem; }
    .pt-slider-nav--next { right: 2rem; }
    .pt-hero--tagline { padding: 3rem 0; }
}

/* Form theme (optional) */
.pt-body .form-control:focus,
.pt-body input:focus,
.pt-body textarea:focus,
.pt-body select:focus {
    border-color: var(--pt-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 92, 92, 0.25);
}

/* ======================================================================
   Anasayfa hizmetler — koyu zemin, krem kartlar, görsel bloklar
   ====================================================================== */
.pt-hizmetler-section {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: linear-gradient(165deg, #0a0f0f 0%, #0d2828 45%, #0d5c5c 100%);
    color: rgba(255,255,255,.92);
}
.pt-hizmetler-section__title {
    font-family: var(--pt-font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0 0 2rem;
    letter-spacing: 0.02em;
}
.pt-hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .pt-hizmetler-grid { grid-template-columns: repeat(2, 1fr); gap: 1.35rem; }
}
@media (min-width: 992px) {
    .pt-hizmetler-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.pt-hizmetler-grid__cell { min-width: 0; }

/* Visual (görsel) kart — DAF / MAN görselleri */
.pt-hizmet-visual {
    display: block;
    position: relative;
    border-radius: var(--pt-radius-lg);
    min-height: 220px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
    transition: transform var(--pt-transition), box-shadow var(--pt-transition);
}
.pt-hizmet-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.pt-hizmet-visual--daf {
    background: linear-gradient(135deg, #1a3a4a 0%, #2d5a6a 40%, #c9a227 15%, #1a3a4a 100%);
    background-size: 200% 200%;
}
.pt-hizmet-visual--man {
    background: linear-gradient(145deg, #2a2a2a 0%, #4a4a4a 50%, #0d5c5c 100%);
}
.pt-hizmet-visual__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--pt-font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: rgba(255,255,255,.25);
    letter-spacing: 0.15em;
    pointer-events: none;
}
.pt-hizmet-visual__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.06) 50%, transparent 60%);
    pointer-events: none;
}

/* Hizmet kartı — üstte tam genişlik görsel (16:10), altta metin; Hizmetlerimiz pt-card ile uyumlu */
.pt-hizmet-card {
    height: 100%;
    background: #f4f1ea;
    border-radius: var(--pt-radius-lg);
    box-shadow: 0 4px 24px rgba(0,0,0,.2);
    transition: transform var(--pt-transition), box-shadow var(--pt-transition);
    border: 1px solid rgba(255,255,255,.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.pt-hizmet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.28);
}
.pt-hizmet-card--stacked .pt-hizmet-card__figure {
    flex-shrink: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.pt-hizmet-card--stacked .pt-hizmet-card__img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #1a2332;
}
.pt-hizmet-card--stacked .pt-hizmet-card__img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}
.pt-hizmet-card--stacked:hover .pt-hizmet-card__img-wrap img {
    transform: scale(1.04);
}
.pt-hizmet-card__figure--icon .pt-hizmet-card__icon-wrap {
    aspect-ratio: 16 / 10;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pt-primary-light);
}
.pt-hizmet-card__figure--icon .pt-hizmet-card__icon-wrap i {
    font-size: 2.5rem;
    color: var(--pt-primary);
}
.pt-hizmet-card__inner {
    padding: 1.2rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    min-width: 0;
}
@media (min-width: 576px) {
    .pt-hizmet-card__inner {
        padding: 1.3rem 1.25rem 1.35rem;
    }
}
.pt-hizmet-card--no-media .pt-hizmet-card__inner {
    min-height: 200px;
}
.pt-hizmet-card--stacked .pt-hizmet-card__inner {
    min-height: 0;
}
.pt-hizmet-card__title {
    font-family: var(--pt-font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0d2828;
    margin: 0 0 0.35rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
}
.pt-hizmet-card__subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pt-primary);
    margin: 0 0 0.75rem;
}
.pt-hizmet-card__body,
.pt-hizmet-card__line {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #4a5568;
    margin: 0 0 0.5rem;
}
.pt-hizmet-card__line {
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.2rem;
}
.pt-hizmet-card__address {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #374151;
    margin: 0.25rem 0 1rem;
}
.pt-hizmet-card__address i { color: var(--pt-primary); margin-right: 0.35rem; }
.pt-hizmet-card__cta {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0d2828;
    text-decoration: none;
    padding: 0.45rem 0;
    border-bottom: 2px solid var(--pt-primary);
    transition: color var(--pt-transition), border-color var(--pt-transition);
}
.pt-hizmet-card__cta:hover {
    color: var(--pt-primary);
    border-color: #0a4848;
}

/* Service detail — intro, zigzag, outro */
.pt-service-detail {
    padding-top: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.pt-service-detail__container {
    max-width: 1100px;
}
.pt-service-detail__hero-img {
    max-width: 820px;
    margin: 0 auto 2.5rem;
}
.pt-service-detail__hero-img-inner {
    display: block;
    position: relative;
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 20px 40px rgba(13,92,92,.12);
    line-height: 0;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.pt-service-detail__hero-img-inner--link:hover {
    box-shadow: 0 8px 12px rgba(0,0,0,.06), 0 28px 56px rgba(13,92,92,.18);
    transform: translateY(-2px);
}
.pt-service-detail__hero-img-inner--link:hover img {
    transform: scale(1.02);
}
.pt-service-detail__hero-img-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.pt-service-detail__hero-img-hint {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(6px);
    border-top-left-radius: var(--pt-radius);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.pt-service-detail__hero-img-inner--link:hover .pt-service-detail__hero-img-hint {
    opacity: 1;
}
.pt-service-detail__intro-shell {
    margin-bottom: clamp(2rem, 5vw, 3.25rem);
}
.pt-service-detail__intro-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.35rem;
}
.pt-service-detail__intro-logo-wrap img {
    max-height: 72px;
    width: auto;
    max-width: min(100%, 260px);
    height: auto;
    object-fit: contain;
}
.pt-service-detail__intro-logo-link {
    display: inline-block;
    line-height: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.pt-service-detail__intro-logo-link:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.pt-service-detail__intro-logo-mark {
    display: inline-block;
    line-height: 0;
}
.pt-service-detail__intro {
    max-width: 52rem;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
    background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, var(--pt-white) 100%);
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius-lg);
    box-shadow: var(--pt-shadow-sm);
}
.pt-service-detail__intro--lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--pt-text);
}
.pt-service-detail__intro--lead p {
    margin: 0;
}
.pt-service-detail__outro-shell {
    margin-top: clamp(2rem, 5vw, 3rem);
    padding-top: clamp(1.75rem, 4vw, 2.5rem);
    border-top: 1px solid var(--pt-border);
}
.pt-service-detail__outro {
    max-width: 52rem;
    margin: 0 auto;
}

/* Zigzag — card rows */
.pt-service-zigzag {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.pt-service-zigzag__card {
    border-radius: clamp(12px, 2vw, 20px);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(15,23,42,.04), 0 18px 40px rgba(15,23,42,.1);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.pt-service-zigzag__card:hover {
    box-shadow: 0 8px 12px rgba(15,23,42,.06), 0 24px 48px rgba(15,23,42,.12);
}
.pt-service-zigzag__row {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 260px;
    align-items: stretch;
}
@media (min-width: 768px) {
    .pt-service-zigzag__row {
        grid-template-columns: 1fr 1fr;
        min-height: 340px;
    }
    .pt-service-zigzag__card--reverse .pt-service-zigzag__text {
        order: 2;
    }
    .pt-service-zigzag__card--reverse .pt-service-zigzag__media {
        order: 1;
    }
}
.pt-service-zigzag__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 220px;
}
.pt-service-zigzag__text-inner {
    position: relative;
    z-index: 1;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    padding-left: clamp(1.5rem, 4vw, 2.75rem);
}
.pt-service-zigzag__text-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: clamp(1.25rem, 3vw, 2rem);
    bottom: clamp(1.25rem, 3vw, 2rem);
    width: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,.35);
}
.pt-service-zigzag__text--teal {
    background: linear-gradient(145deg, #0c4545 0%, var(--pt-primary) 42%, #082f2f 100%);
    color: #fff;
}
.pt-service-zigzag__text--dark {
    background: linear-gradient(165deg, #1e293b 0%, #0f172a 55%, #020617 100%);
    color: rgba(255,255,255,.96);
}
.pt-service-zigzag__text--dark .pt-service-zigzag__text-inner::before {
    background: rgba(255,255,255,.2);
}
.pt-service-zigzag__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.88;
    margin-bottom: 0.75rem;
}
.pt-service-zigzag__title {
    font-family: var(--pt-font-heading);
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
    font-weight: 700;
    line-height: 1.22;
    margin: 0 0 1rem 0;
    color: inherit;
    letter-spacing: -0.02em;
}
.pt-service-zigzag__body {
    font-size: 0.9375rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}
.pt-service-zigzag__media {
    position: relative;
    min-height: 240px;
    background: #0f172a;
    overflow: hidden;
}
.pt-service-zigzag__media-frame,
.pt-service-zigzag__media-link {
    display: block;
    height: 100%;
    min-height: 240px;
    line-height: 0;
}
@media (min-width: 768px) {
    .pt-service-zigzag__media-frame,
    .pt-service-zigzag__media-link {
        position: absolute;
        inset: 0;
        min-height: 100%;
    }
}
.pt-service-zigzag__media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(.22,1,.36,1);
}
.pt-service-zigzag__media-link:hover img {
    transform: scale(1.05);
}
.pt-service-zigzag__media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.25) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.pt-service-zigzag__media-link:hover .pt-service-zigzag__media-shade {
    opacity: 1;
}
.pt-service-zigzag__media-placeholder {
    min-height: 240px;
    background: linear-gradient(135deg, var(--pt-border) 0%, #e8e4dc 100%);
}

/* Service detail footer strip */
.pt-service-footer {
    padding: clamp(2rem, 5vw, 3rem) 0;
    background: linear-gradient(180deg, var(--pt-bg) 0%, rgba(245,242,235,.65) 100%);
    border-top: 1px solid var(--pt-border);
}
.pt-service-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
@media (min-width: 992px) {
    .pt-service-footer__grid {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2rem;
    }
}
.pt-service-footer__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}
.pt-service-footer__card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.15rem;
    background: var(--pt-white);
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius-lg);
    box-shadow: var(--pt-shadow-sm);
    max-width: 520px;
}
.pt-service-footer__card-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pt-primary-light);
    color: var(--pt-primary);
    font-size: 1.1rem;
}
.pt-service-footer__card-title {
    font-family: var(--pt-font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pt-muted);
    margin: 0 0 0.35rem 0;
}
.pt-service-footer__card-text {
    font-size: 0.9375rem;
    color: var(--pt-text);
    line-height: 1.5;
}
.pt-service-footer__cta {
    flex-shrink: 0;
}
@media (min-width: 992px) {
    .pt-service-footer__cta {
        padding-top: 0.25rem;
    }
}
.pt-service-footer__back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--pt-primary);
    text-decoration: none;
    background: var(--pt-white);
    border: 1px solid var(--pt-border);
    border-radius: 100px;
    box-shadow: var(--pt-shadow-sm);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.pt-service-footer__back-link:hover {
    border-color: var(--pt-primary);
    box-shadow: var(--pt-shadow);
    color: var(--pt-primary);
    transform: translateX(-2px);
}
.pt-service-footer__back-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--pt-primary-light);
    font-size: 0.95rem;
}

/* Service detail inline banner */
.pt-service-detail__hero-img:has(+ .pt-service-banner-inline--after-hero) {
    margin-bottom: 1.25rem;
}
.pt-service-banner-inline--after-hero {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.pt-service-banner-inline {
    max-width: min(100%, 600px);
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--pt-radius);
    overflow: hidden;
    border: 1px solid var(--pt-border);
    line-height: 0;
}
.pt-service-banner-inline__link {
    display: block;
    transition: opacity var(--pt-transition);
}
.pt-service-banner-inline__link:hover {
    opacity: 0.9;
}
.pt-service-banner-inline__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section footer link */
.pt-hizmetler-section__footer { margin-top: 2.25rem; }
.pt-hizmetler-section__all {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid rgba(255,255,255,.4);
    transition: border-color var(--pt-transition), color var(--pt-transition);
}
.pt-hizmetler-section__all:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* İletişim formu */
.pt-contact-form-wrap .pt-contact-form .form-control {
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius);
    padding: 0.6rem 0.85rem;
    font-size: 0.9375rem;
    color: var(--pt-text);
    background: var(--pt-white);
}
.pt-contact-form-wrap .pt-contact-form .form-control:focus {
    border-color: var(--pt-primary);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 109, 109, 0.15);
}
.pt-contact-form-wrap .pt-contact-form .form-label {
    color: var(--pt-text);
    font-weight: 500;
}

/* İletişim — dikey bilgi kartları (ikon + metin) */
.pt-contact-info-stack {
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    background: var(--pt-white);
    box-shadow: var(--pt-shadow-sm);
}
.pt-contact-info-stack--muted {
    background: rgba(245, 242, 235, 0.65);
    border-color: rgba(13, 92, 92, 0.12);
}
.pt-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.05rem 1.2rem;
    border-bottom: 1px solid var(--pt-border);
}
.pt-contact-info-item:last-child {
    border-bottom: none;
}
.pt-contact-info-item__icon {
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pt-primary-light);
    color: var(--pt-primary);
    font-size: 1.15rem;
}
.pt-contact-info-item__body {
    min-width: 0;
    flex: 1;
    padding-top: 0.1rem;
}
.pt-contact-info-item__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pt-muted);
    margin-bottom: 0.4rem;
}
.pt-contact-info-item__value {
    display: block;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: var(--pt-text);
    word-break: break-word;
}
.pt-contact-info-item__value--multiline {
    font-weight: 600;
}
.pt-contact-info-item__value--link {
    color: var(--pt-primary);
    text-decoration: none;
    font-weight: 600;
}
.pt-contact-info-item__value--link:hover {
    text-decoration: underline;
}
.pt-contact-info-item__value--phone {
    color: var(--pt-primary);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.pt-contact-info-item__value--phone:hover {
    text-decoration: underline;
}
.pt-contact-info-item__value--email {
    color: var(--pt-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}
.pt-contact-info-item__value--email:hover {
    text-decoration: underline;
}
.pt-contact-info-item__sub {
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    color: var(--pt-muted);
    line-height: 1.45;
}

/* Ek lokasyon (DAF Plaza vb.) */
.pt-contact-loc-card {
    border: 1px solid rgba(13, 92, 92, 0.14);
    border-radius: var(--pt-radius-lg);
    padding: 1.15rem 1.2rem 1.25rem;
    background: linear-gradient(165deg, #fff 0%, rgba(245, 242, 235, 0.5) 100%);
    box-shadow: var(--pt-shadow-sm);
}
.pt-contact-loc-card__title {
    font-family: var(--pt-font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--pt-text);
    margin: 0 0 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--pt-border);
}
.pt-contact-loc-card .pt-contact-info-stack,
.pt-contact-loc-card .pt-contact-info-stack--muted {
    border: none;
    border-radius: var(--pt-radius);
    box-shadow: none;
    overflow: visible;
    background: transparent;
}
.pt-contact-loc-card .pt-contact-info-item {
    padding-left: 0;
    padding-right: 0;
    border-bottom-color: rgba(0, 0, 0, 0.06);
}
.pt-contact-loc-card .pt-contact-info-item:first-child {
    padding-top: 0;
}
.pt-contact-loc-card .pt-contact-info-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* Çalışma saati satırı */
.pt-hours-row {
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--pt-border);
    gap: 0.5rem;
}
.pt-hours-row:last-child { border-bottom: none; }

/* İletişim tagline */
.pt-contact-tagline {
    font-family: var(--pt-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pt-primary);
}

/* İletişim formu (if not already present) */
.pt-contact-form-wrap .pt-contact-form .form-control {
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius);
    padding: 0.6rem 0.85rem;
    font-size: 0.9375rem;
    color: var(--pt-text);
    background: var(--pt-white);
}
.pt-contact-form-wrap .pt-contact-form .form-control:focus {
    border-color: var(--pt-primary);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 109, 109, 0.15);
}
.pt-contact-form-wrap .pt-contact-form .form-label {
    color: var(--pt-text);
    font-weight: 500;
}

/* Sticky FAB (iletişim butonu) */
.pt-sticky-fab {
    position: fixed;
    bottom: 1.75rem;
    right: 1.5rem;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.pt-sticky-fab__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(8px) scale(0.95);
    pointer-events: none;
}
.pt-sticky-fab--open .pt-sticky-fab__menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.pt-sticky-fab__item {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pt-sticky-fab__item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.pt-sticky-fab__toggle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--pt-primary);
    border: none;
    color: #fff;
    font-size: 1.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    transition: background 0.2s ease, transform 0.2s ease;
    position: relative;
}
.pt-sticky-fab__toggle:hover { background: var(--pt-primary-dark, #005555); transform: scale(1.05); }
.pt-sticky-fab__icon-close { display: none; }
.pt-sticky-fab--open .pt-sticky-fab__icon-open  { display: none; }
.pt-sticky-fab--open .pt-sticky-fab__icon-close { display: block; }
