/* ============================================================
   Lojistikv3 — Modern Site CSS
   ============================================================ */

:root {
    --accent:   #C8953C;
    --dark:     #0f1318;
    --dark2:    #1b2230;
    --gray:     #4a5568;
    --gray-lt:  #8a94a6;
    --border:   #e8ecf0;
    --light:    #f7f8fa;
    --white:    #ffffff;
    --radius:   6px;
    --radius-lg:12px;
    --shadow:   0 4px 24px rgba(0,0,0,.08);
    --shadow-lg:0 8px 40px rgba(0,0,0,.13);
    --trans:    .22s ease;
    --font:     'Inter', 'Poppins', system-ui, sans-serif;
    --container:1260px;
}

/* Google Fonts — Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

/* ── TOP BAR ─────────────────────────────────────────────── */
.s-topbar {
    background: var(--dark);
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-family: var(--font);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.s-topbar .s-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.s-topbar-left, .s-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.s-topbar a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--trans);
}
.s-topbar a:hover { color: var(--accent); }
.s-topbar a i { font-size: 12px; color: var(--accent); }

/* Language dropdown in topbar */
.s-lang {
    position: relative;
}
.s-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.8);
    font-size: 12px;
    font-family: var(--font);
    transition: background var(--trans);
}
.s-lang-btn:hover { background: rgba(255,255,255,.1); }
.s-lang-btn i { font-size: 10px; transition: transform var(--trans); }
.s-lang.open .s-lang-btn i { transform: rotate(180deg); }
.s-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    min-width: 160px;
    padding: 6px 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--trans), transform var(--trans);
}
.s-lang.open .s-lang-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.s-lang-menu a {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    color: rgba(255,255,255,.78);
    white-space: nowrap;
    transition: background var(--trans), color var(--trans);
}
.s-lang-menu a:hover { background: rgba(255,255,255,.06); color: var(--accent); }

/* ── MAIN HEADER ─────────────────────────────────────────── */
.s-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--white);
    box-shadow: 0 1px 0 var(--border);
    font-family: var(--font);
    transition: box-shadow var(--trans);
}
.s-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.10);
}
.s-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
}
.s-brand img {
    height: 44px;
    width: auto;
    display: block;
}
.s-brand-fallback {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -.5px;
}

/* ── NAV ─────────────────────────────────────────────────── */
.s-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
/* CRITICAL: only top-level ul gets flex-row layout */
.s-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}
.s-nav > ul > li { position: relative; }
.s-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 15px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: background var(--trans), color var(--trans);
}
.s-nav > ul > li > a .fa-chevron-down {
    font-size: 10px;
    transition: transform .22s ease;
}
.s-nav > ul > li:hover > a,
.s-nav > ul > li.active > a {
    background: var(--light);
    color: var(--accent);
}
.s-nav > ul > li:hover > a .fa-chevron-down,
.s-nav > ul > li.open > a .fa-chevron-down { transform: rotate(180deg); }

/* Hover köprüsü: li ile dropdown arasındaki boşluğu kapatır */
.s-nav > ul > li::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
}

/* Desktop Dropdown */
.s-nav .s-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,.11);
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 200;
}
/* Arrow tip */
.s-nav .s-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    transform: rotate(45deg);
}
.s-nav > ul > li:hover .s-dropdown,
.s-nav > ul > li.open .s-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.s-dropdown li {
    list-style: none;
}
.s-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: background var(--trans), color var(--trans), padding-left var(--trans);
}
.s-dropdown li a::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--trans);
}
.s-dropdown li a:hover {
    background: var(--light);
    color: var(--accent);
    padding-left: 18px;
}
.s-dropdown li a:hover::before { opacity: 1; }

/* ── HEADER ACTIONS ──────────────────────────────────────── */
.s-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.s-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
    white-space: nowrap;
}
.s-btn-cta:hover {
    background: #b07d2e;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200,149,60,.35);
}

/* ── HAMBURGER ───────────────────────────────────────────── */
.s-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 0;
    transition: background var(--trans);
}
.s-hamburger:hover { background: var(--light); }
.s-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .3s, opacity .3s, width .3s;
}
.s-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.s-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.s-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ──────────────────────────────────────────── */
.s-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--white);
    z-index: 1001;
    box-shadow: -4px 0 32px rgba(0,0,0,.15);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    padding: 20px 0 40px;
}
.s-mobile-nav.open { transform: translateX(0); }
.s-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1000;
    opacity: 0;
    transition: opacity .3s;
}
.s-mobile-overlay.open { opacity: 1; }
.s-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}
.s-mobile-nav-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}
.s-mobile-nav > ul { list-style: none; margin: 0; padding: 0; }
.s-mobile-nav > ul > li { border-bottom: 1px solid var(--border); }
.s-mobile-nav > ul > li:last-child { border-bottom: none; }
.s-mobile-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color var(--trans), background var(--trans);
}
.s-mobile-nav > ul > li > a:hover { color: var(--accent); background: var(--light); }
/* Chevron rotation when li.open */
.s-mobile-nav > ul > li > a .fa-chevron-down {
    font-size: 11px;
    transition: transform .25s ease;
}
.s-mobile-nav > ul > li.open > a .fa-chevron-down { transform: rotate(180deg); }
.s-mobile-nav > ul > li.open > a { color: var(--accent); }
/* Mobile accordion */
.s-mobile-nav .mob-dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--light);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    border-top: 1px solid var(--border);
}
.s-mobile-nav .mob-dropdown.open { max-height: 400px; }
.s-mobile-nav .mob-dropdown li { border-bottom: none; }
.s-mobile-nav .mob-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 32px;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    text-decoration: none;
    transition: color var(--trans), background var(--trans);
    border-left: 3px solid transparent;
}
.s-mobile-nav .mob-dropdown li a::before {
    content: '';
    width: 5px;
    height: 5px;
    min-width: 5px;
    background: var(--accent);
    border-radius: 50%;
    opacity: .5;
}
.s-mobile-nav .mob-dropdown li a:hover {
    color: var(--accent);
    background: rgba(200,149,60,.06);
    border-left-color: var(--accent);
}
.s-mobile-nav .mob-dropdown li a:hover::before { opacity: 1; }
.s-mobile-nav-cta {
    margin: 16px 20px 0;
    display: block;
    text-align: center;
    padding: 13px;
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background var(--trans);
}
.s-mobile-nav-cta:hover { background: #b07d2e; color: var(--white); }
.s-mob-lang {
    margin: 12px 20px 20px;
    position: relative;
}
.s-mob-lang-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: background var(--trans);
}
.s-mob-lang-btn:hover { background: var(--border); }
.s-mob-lang-menu {
    display: none;
    position: absolute;
    bottom: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-height: 220px;
    overflow-y: auto;
    z-index: 50;
}
.s-mob-lang.open .s-mob-lang-menu { display: block; }
.s-mob-lang-menu a {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background var(--trans);
}
.s-mob-lang-menu a:last-child { border-bottom: none; }
.s-mob-lang-menu a:hover { background: var(--light); color: var(--accent); }

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

/* ── FOOTER ──────────────────────────────────────────────── */
.s-footer {
    background: var(--dark);
    color: rgba(255,255,255,.72);
    font-family: var(--font);
    margin-top: auto;
}
.s-footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.s-footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
    opacity: .9;
}
.s-footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    margin-bottom: 22px;
}
.s-footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.s-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    color: rgba(255,255,255,.7);
    font-size: 14px;
    text-decoration: none;
    transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.s-footer-socials a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.s-footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.s-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.s-footer-col ul li a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--trans), gap var(--trans);
}
.s-footer-col ul li a::before {
    content: '›';
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}
.s-footer-col ul li a:hover { color: var(--white); gap: 12px; }
.s-footer-contact ul { gap: 14px; }
.s-footer-contact ul li a::before { display: none; }
.s-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,.6);
}
.s-footer-contact .fc-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}
.s-footer-contact .fc-text a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color var(--trans);
}
.s-footer-contact .fc-text a:hover { color: var(--accent); }
.s-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    font-size: 13px;
    color: rgba(255,255,255,.38);
    flex-wrap: wrap;
}
.s-footer-bottom a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color var(--trans);
}
.s-footer-bottom a:hover { color: var(--accent); }

/* ── SCROLL TOP ──────────────────────────────────────────── */
.s-scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    z-index: 800;
    box-shadow: 0 4px 16px rgba(200,149,60,.4);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity var(--trans), transform var(--trans), background var(--trans);
}
.s-scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.s-scroll-top:hover { background: #b07d2e; }

/* ══════════════════════════════════════════════════════════
   PAGE COMPONENTS
   ══════════════════════════════════════════════════════════ */

/* ── COMMON UTILITIES ────────────────────────────────────── */
body { font-family: var(--font); color: var(--dark); }
main { min-height: 60vh; }
.p-section     { padding: 80px 0; }
.p-section-sm  { padding: 50px 0; }
.p-section-lg  { padding: 110px 0; }
.p-bg-light    { background: var(--light); }
.p-bg-dark     { background: var(--dark); }

.p-title { margin-bottom: 48px; }
.p-title .p-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.p-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin: 0 0 14px;
}
.p-title.white h2, .p-title.white .p-label { color: var(--white); }
.p-title.white p { color: rgba(255,255,255,.65); }
.p-title p { font-size: 16px; color: var(--gray); line-height: 1.7; margin: 0; }
.p-title.center { text-align: center; }

.p-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--accent);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none !important;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
    font-family: var(--font);
}
.p-btn:hover { background: #b07d2e; border-color: #b07d2e; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,149,60,.3); }
.p-btn-ghost {
    background: transparent;
    color: var(--accent) !important;
}
.p-btn-ghost:hover { background: var(--accent); color: #fff !important; }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.p-breadcrumb {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    background: var(--dark) center/cover no-repeat;
}
.p-breadcrumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,19,24,.88) 50%, rgba(15,19,24,.6));
}
.p-breadcrumb-inner { position: relative; z-index: 1; }
.p-breadcrumb-inner h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}
.p-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}
.p-breadcrumb-nav li { color: rgba(255,255,255,.55); }
.p-breadcrumb-nav li a { color: var(--accent); text-decoration: none; }
.p-breadcrumb-nav li + li::before { content: '/'; margin-right: 6px; color: rgba(255,255,255,.3); }

/* ── HERO SLIDER ─────────────────────────────────────────── */
.p-hero { position: relative; background: var(--dark); overflow: hidden; }
.p-hero-inner { position: relative; }

/* Before slick init: hide all slides except first */
.p-hero-inner:not(.slick-initialized) .p-hero-slide { display: none; }
.p-hero-inner:not(.slick-initialized) .p-hero-slide:first-child { display: flex; }

/* Before slick init: hide extra service cards */
#svc-carousel:not(.slick-initialized) > div { display: none; }
#svc-carousel:not(.slick-initialized) > div:nth-child(-n+3) { display: block; }

/* Before slick init: hide extra testimonials */
#testi-carousel:not(.slick-initialized) > div { display: none; }
#testi-carousel:not(.slick-initialized) > div:first-child { display: block; }

/* Before slick init: hide extra brands */
#brand-carousel:not(.slick-initialized) > div { display: none; }
#brand-carousel:not(.slick-initialized) > div:nth-child(-n+6) { display: inline-block; }

.p-hero-slide {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* slick sets display via JS — keep flex for initialized slides */
.p-hero-inner.slick-initialized .p-hero-slide { display: flex !important; }
.p-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,19,24,.85) 40%, rgba(15,19,24,.35));
}
.p-hero-content { position: relative; z-index: 1; max-width: 600px; }
.p-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.13;
    margin-bottom: 22px;
}
.p-hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,.78);
    line-height: 1.75;
    margin-bottom: 36px;
}
/* slick arrows for hero */
.p-hero-inner .slick-prev,
.p-hero-inner .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: var(--radius);
    color: #fff;
    font-size: 18px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--trans), border-color var(--trans);
    backdrop-filter: blur(4px);
}
.p-hero-inner .slick-prev:hover,
.p-hero-inner .slick-next:hover { background: var(--accent); border-color: var(--accent); }
.p-hero-inner .slick-prev::before,
.p-hero-inner .slick-next::before { content: none; }
.p-hero-inner .slick-prev { left: 30px; }
.p-hero-inner .slick-next { right: 30px; }
.p-hero .slick-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.p-hero .slick-dots li button {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none; padding: 0; cursor: pointer;
    font-size: 0;
    transition: all var(--trans);
}
.p-hero .slick-dots li.slick-active button {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ── STEPS ───────────────────────────────────────────────── */
.p-step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 26px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    border-top: 3px solid var(--accent);
    transition: transform var(--trans), box-shadow var(--trans);
}
.p-step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.p-step-icon { font-size: 46px; color: var(--accent); margin-bottom: 14px; line-height: 1; }
.p-step-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--white);
    background: var(--accent);
    border-radius: 20px;
    padding: 3px 14px;
    margin-bottom: 14px;
}
.p-step-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.p-step-card p  { font-size: 14px; color: var(--gray); line-height: 1.65; margin: 0; }

/* ── ABOUT ───────────────────────────────────────────────── */
.p-about-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}
.p-about-content { display: flex; flex-direction: column; justify-content: center; height: 100%; }
.p-about-body { font-size: 15px; color: var(--gray); line-height: 1.8; }
.p-about-body p, .p-about-body li { margin-bottom: 12px; }
.p-about-body img { max-width: 100%; }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.p-svc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--trans), box-shadow var(--trans);
    height: 100%;
}
.p-svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.p-svc-img { position: relative; overflow: hidden; }
.p-svc-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.p-svc-card:hover .p-svc-img img { transform: scale(1.06); }
.p-svc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,19,24,.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity var(--trans);
}
.p-svc-card:hover .p-svc-img-overlay { opacity: 1; }
.p-svc-body { padding: 20px; }
.p-svc-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.p-svc-body p  { font-size: 14px; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }
.p-svc-body .p-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--trans);
}
.p-svc-body .p-link:hover { gap: 10px; }

/* Carousel wrapper for services */
.p-svc-carousel { position: relative; }
.p-svc-carousel .slick-list { overflow: hidden; margin: 0 -12px; }
.p-svc-carousel .slick-track { display: flex; }
.p-svc-carousel .slick-slide { padding: 12px; height: auto; }
.p-svc-carousel .slick-slide > div { height: 100%; }
.p-car-arrows { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.p-car-btn {
    width: 44px; height: 44px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--dark);
    font-size: 15px;
    transition: all var(--trans);
}
.p-car-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Services grid (hizmetlerimiz page) */
.p-svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.p-testi-section {
    position: relative;
    background: var(--dark) center/cover no-repeat;
}
.p-testi-section::before { content: ''; position: absolute; inset: 0; background: rgba(15,19,24,.84); }
.p-testi-section .container { position: relative; z-index: 1; }
.p-testi-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 8px;
    backdrop-filter: blur(6px);
}
.p-testi-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.p-testi-card img {
    width: 64px; height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    flex-shrink: 0;
}
.p-testi-meta cite { display: block; font-style: normal; font-weight: 700; color: var(--accent); font-size: 15px; }
.p-testi-meta span { font-size: 13px; color: rgba(255,255,255,.5); }
.p-testi-card p { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.78; font-style: italic; margin: 0; }
.p-testi-section .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin-top: 32px;
}
.p-testi-section .slick-dots li button {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: none; padding: 0; cursor: pointer; font-size: 0;
    transition: all var(--trans);
}
.p-testi-section .slick-dots li.slick-active button { background: var(--accent); width: 24px; border-radius: 4px; }

/* ── WHY US ──────────────────────────────────────────────── */
.p-why { display: grid; grid-template-columns: 1fr 1fr; }
.p-why-img {
    background: center/cover no-repeat;
    min-height: 480px;
    position: relative;
}
.p-why-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px; height: 72px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
    text-decoration: none;
    box-shadow: 0 0 0 14px rgba(200,149,60,.22);
    transition: box-shadow var(--trans);
}
.p-why-play:hover { box-shadow: 0 0 0 22px rgba(200,149,60,.18); color: #fff; }
.p-why-content {
    background: var(--dark2);
    padding: 80px 60px;
    display: flex; flex-direction: column; justify-content: center;
}
.p-why-content .p-body { font-size: 15px; color: rgba(255,255,255,.68); line-height: 1.8; }

/* ── BLOG CARDS ──────────────────────────────────────────── */
.p-blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--trans), box-shadow var(--trans);
    height: 100%;
}
.p-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.p-blog-thumb { position: relative; overflow: hidden; }
.p-blog-thumb img {
    width: 100%; height: 220px;
    object-fit: cover; display: block;
    transition: transform .5s ease;
}
.p-blog-card:hover .p-blog-thumb img { transform: scale(1.05); }
.p-blog-date-badge {
    position: absolute; bottom: 12px; left: 12px;
    background: var(--accent); color: #fff;
    font-size: 12px; font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius);
}
.p-blog-body { padding: 22px; }
.p-blog-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.p-blog-body h3 a { color: inherit; text-decoration: none; }
.p-blog-body h3 a:hover { color: var(--accent); }
.p-blog-body p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 18px; }

/* Blog list (blog.php inner page) */
.p-blog-list-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow var(--trans);
}
.p-blog-list-card:hover { box-shadow: var(--shadow-lg); }
.p-blog-list-card .p-thumb img {
    width: 100%; height: 100%; min-height: 200px;
    object-fit: cover; display: block;
}
.p-blog-list-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.p-post-meta { font-size: 13px; color: var(--gray-lt); margin-bottom: 12px; display: flex; gap: 14px; align-items: center; }
.p-post-meta i { color: var(--accent); }
.p-blog-list-body h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.35; }
.p-blog-list-body h3 a { color: inherit; text-decoration: none; }
.p-blog-list-body h3 a:hover { color: var(--accent); }
.p-blog-list-body p  { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }

/* ── BRANDS ──────────────────────────────────────────────── */
.p-brands { background: var(--light); }
.p-brand-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
}
.p-brand-item-inner {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 90px;
    transition: box-shadow var(--trans), border-color var(--trans);
}
.p-brand-item-inner:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    border-color: var(--accent);
}
.p-brand-item img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(.55);
    transition: filter var(--trans);
}
.p-brand-item-inner:hover img { filter: none; }

/* ── BRANDS PAGE (referanslarimiz) ──────────────────────── */
.p-brands-page { background: var(--light); }
.p-brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.p-brand-card-inner {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 120px;
    text-align: center;
    transition: box-shadow var(--trans), border-color var(--trans), transform var(--trans);
}
.p-brand-card-inner:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.09);
    border-color: var(--accent);
    transform: translateY(-3px);
}
.p-brand-card img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(.55);
    transition: filter var(--trans);
}
.p-brand-card-inner:hover img { filter: none; }
.p-brand-card span {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-lt);
    line-height: 1.3;
}

/* ── GALLERY & REFERENCES ────────────────────────────────── */
.p-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.p-gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--dark);
}
.p-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.p-gallery-item:hover img { transform: scale(1.06); }
.p-gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(15,19,24,.55);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--trans);
}
.p-gallery-item:hover .p-gallery-overlay { opacity: 1; }
.p-gallery-overlay a {
    width: 48px; height: 48px;
    background: var(--accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; text-decoration: none;
}

/* ── VIDEO GRID ──────────────────────────────────────────── */
.p-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.p-video-wrap { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; }
.p-video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── MAP ─────────────────────────────────────────────────── */
.p-map iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ── CONTACT ─────────────────────────────────────────────── */
.p-contact-info { display: flex; flex-direction: column; gap: 16px; }
.p-contact-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.p-ci-icon {
    width: 48px; height: 48px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; flex-shrink: 0;
}
.p-ci-text h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-lt); margin-bottom: 4px; }
.p-ci-text span, .p-ci-text a {
    font-size: 15px; color: var(--dark); text-decoration: none; font-weight: 500;
}
.p-ci-text a:hover { color: var(--accent); }

/* ── FORM ────────────────────────────────────────────────── */
.p-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.p-form .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 16px;
    font-size: 14px;
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--trans), box-shadow var(--trans);
    width: 100%;
    display: block;
}
.p-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,149,60,.15);
    outline: none;
}
.p-form textarea.form-control { resize: vertical; min-height: 130px; }
.p-form .p-frow { margin-bottom: 18px; }

/* ── SIDEBAR / WIDGET ────────────────────────────────────── */
.p-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.p-widget h3 {
    font-size: 16px; font-weight: 700; color: var(--dark);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.p-widget .service-list { list-style: none; padding: 0; margin: 0; }
.p-widget .service-list li { border-bottom: 1px solid var(--border); }
.p-widget .service-list li:last-child { border-bottom: none; }
.p-widget .service-list li a {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 0;
    color: var(--gray); font-size: 14px; text-decoration: none;
    transition: color var(--trans), gap var(--trans);
}
.p-widget .service-list li a::before { content: '›'; color: var(--accent); font-size: 18px; font-weight: 700; }
.p-widget .service-list li a:hover { color: var(--accent); gap: 12px; }
.p-widget .recent-posts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.p-widget .recent-posts li { display: flex; gap: 14px; align-items: flex-start; }
.p-widget .recent-posts img { width: 70px; height: 55px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.p-widget .widget-posts-title a { font-size: 14px; font-weight: 600; color: var(--dark); text-decoration: none; line-height: 1.4; display: block; }
.p-widget .widget-posts-title a:hover { color: var(--accent); }
.p-widget .widget-posts-meta { font-size: 12px; color: var(--gray-lt); margin-top: 4px; }

/* ── POST DETAIL ─────────────────────────────────────────── */
.p-post-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}
.p-post-wrap img { max-width: 100%; border-radius: var(--radius); margin-bottom: 24px; display: block; }
.p-post-wrap h1, .p-post-wrap h2, .p-post-wrap h3 {
    color: var(--dark); font-weight: 700; margin: 24px 0 14px; line-height: 1.3;
}
.p-post-wrap p, .p-post-wrap li { color: var(--gray); line-height: 1.8; margin-bottom: 14px; }

/* ── PAGINATION ──────────────────────────────────────────── */
.p-pagination {
    display: flex; justify-content: center; gap: 6px;
    margin-top: 44px; flex-wrap: wrap;
    list-style: none; padding: 0; margin-left: 0;
}
.p-pagination li a,
.p-pagination li span {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius);
    font-size: 14px; font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--border);
    color: var(--gray);
    transition: all var(--trans);
}
.p-pagination li a:hover,
.p-pagination li.active a,
.p-pagination li.active span {
    background: var(--accent); border-color: var(--accent); color: var(--white);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .s-nav > ul { gap: 0; }
    .s-nav > ul > li > a { padding: 8px 10px; font-size: 14px; }
    .p-svc-grid { grid-template-columns: repeat(2, 1fr); }
    .p-brands-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
    .s-nav { display: none; }
    .s-hamburger { display: flex; }
    .s-mobile-nav, .s-mobile-overlay { display: block; }
    .s-footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .p-hero-slide { min-height: 420px; }
    .p-hero-content h1 { font-size: 34px; }
    .p-why { grid-template-columns: 1fr; }
    .p-why-img { min-height: 320px; }
    .p-why-content { padding: 50px 32px; }
    .p-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .p-video-grid { grid-template-columns: repeat(2, 1fr); }
    .p-blog-list-card { grid-template-columns: 1fr; }
    .p-blog-list-card .p-thumb img { min-height: 220px; height: 220px; }
    .p-svc-grid { grid-template-columns: repeat(2, 1fr); }
    .p-brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .s-topbar .s-topbar-left { display: none; }
    .s-footer-top { grid-template-columns: 1fr; gap: 32px; }
    .s-footer-bottom { flex-direction: column; text-align: center; }
    .p-section { padding: 56px 0; }
    .p-title h2 { font-size: 26px; }
    .p-hero-slide { min-height: 340px; }
    .p-hero-content h1 { font-size: 26px; }
    .p-gallery-grid, .p-video-grid { grid-template-columns: 1fr; }
    .p-breadcrumb-inner h1 { font-size: 28px; }
    .p-form-wrap { padding: 24px; }
    .p-svc-grid { grid-template-columns: 1fr; }
    .p-brands-grid { grid-template-columns: repeat(2, 1fr); }
}
