/* ============================================================
   Lojistikv4 — 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); }
}

/* ============================================================
   V4 visual system overrides
   ============================================================ */

:root {
    --accent: #ff6b35;
    --accent-2: #14b8a6;
    --ink: #101828;
    --dark: #121620;
    --dark2: #1e2633;
    --gray: #596579;
    --gray-lt: #98a2b3;
    --border: #e5e7eb;
    --light: #f4f7fb;
    --radius: 8px;
    --radius-lg: 8px;
    --shadow: 0 14px 34px rgba(16, 24, 40, .08);
    --shadow-lg: 0 24px 64px rgba(16, 24, 40, .16);
}

html { scroll-behavior: smooth; }
body {
    background:
        radial-gradient(circle at 18% 0%, rgba(20,184,166,.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: var(--ink);
    font-size: 15px;
}

.s-container,
.container {
    max-width: 1240px;
}

.s-topbar {
    background: #0f1722;
    padding: 8px 0;
}

.s-topbar a i,
.s-lang-menu a:hover,
.s-topbar a:hover {
    color: var(--accent-2);
}

.s-header {
    top: 0;
    background: rgba(255,255,255,.88);
    border-bottom: 1px solid rgba(229,231,235,.8);
    box-shadow: 0 1px 0 rgba(16,24,40,.04);
    backdrop-filter: saturate(180%) blur(16px);
}

.s-header.scrolled {
    box-shadow: 0 14px 38px rgba(16,24,40,.10);
}

.s-header-inner {
    height: 78px;
}

.s-brand img {
    max-width: 178px;
    height: 46px;
    object-fit: contain;
}

.s-nav > ul {
    gap: 6px;
    padding: 5px;
    background: rgba(244,247,251,.72);
    border: 1px solid rgba(229,231,235,.72);
    border-radius: 8px;
}

.s-nav > ul > li > a {
    padding: 10px 14px;
    border-radius: 7px;
    color: #253143;
    font-weight: 700;
}

.s-nav > ul > li:hover > a,
.s-nav > ul > li.active > a {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 8px 22px rgba(16,24,40,.08);
}

.s-nav .s-dropdown {
    top: calc(100% + 12px);
    border-radius: 8px;
    border: 1px solid rgba(229,231,235,.9);
    box-shadow: 0 24px 54px rgba(16,24,40,.14);
}

.s-btn-cta,
.s-mobile-nav-cta,
.p-btn {
    border-radius: 8px;
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 12px 26px rgba(255,107,53,.24);
}

.s-btn-cta:hover,
.s-mobile-nav-cta:hover,
.p-btn:hover {
    background: #e95d2b;
    border-color: #e95d2b;
    box-shadow: 0 16px 34px rgba(255,107,53,.30);
}

.p-btn-ghost {
    background: rgba(255,255,255,.10);
    color: #fff !important;
    border-color: rgba(255,255,255,.38);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.p-btn-ghost:hover {
    background: #fff;
    color: var(--ink) !important;
    border-color: #fff;
}

.p-hero {
    isolation: isolate;
}

.p-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(244,247,251,.96));
    z-index: 3;
    pointer-events: none;
}

.p-hero-slide {
    min-height: 700px;
    padding: 70px 0 110px;
    background-position: center;
}

.p-hero-slide::before {
    background:
        linear-gradient(90deg, rgba(12,18,28,.92) 0%, rgba(12,18,28,.78) 43%, rgba(12,18,28,.26) 100%),
        linear-gradient(180deg, rgba(20,184,166,.24), rgba(255,107,53,.12));
}

.p-hero-content {
    max-width: 720px;
}

.p-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 8px;
    background: rgba(255,255,255,.10);
    color: rgba(255,255,255,.88);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.p-hero-kicker i {
    color: var(--accent-2);
}

.p-hero-content h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: 0;
    max-width: 760px;
    margin-bottom: 24px;
}

.p-hero-content p {
    max-width: 640px;
    font-size: 18px;
    line-height: 1.72;
    color: rgba(255,255,255,.82);
}

.p-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.p-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 10px;
    max-width: 560px;
}

.p-hero-metrics div {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.09);
    backdrop-filter: blur(10px);
}

.p-hero-metrics strong {
    display: block;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.p-hero-metrics span {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,.70);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.p-hero-inner .slick-prev,
.p-hero-inner .slick-next {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.10);
}

.p-hero .slick-dots {
    bottom: 46px;
    z-index: 5;
}

.p-hero .slick-dots li button,
.p-testi-section .slick-dots li button {
    height: 6px;
    border-radius: 99px;
}

.p-hero .slick-dots li.slick-active button,
.p-testi-section .slick-dots li.slick-active button {
    background: var(--accent-2);
}

.p-section {
    padding: 94px 0;
}

.p-bg-light {
    background:
        linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}

.p-title {
    margin-bottom: 42px;
}

.p-title .p-label {
    color: var(--accent);
    letter-spacing: .11em;
}

.p-title h2 {
    color: var(--ink);
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.p-title.center {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.p-step-card,
.p-svc-card,
.p-blog-card,
.p-contact-item,
.p-form-wrap,
.p-widget,
.p-post-wrap,
.p-brand-card-inner,
.p-brand-item-inner {
    border: 1px solid rgba(229,231,235,.92);
    box-shadow: 0 12px 32px rgba(16,24,40,.07);
}

.p-step-card {
    text-align: left;
    padding: 30px;
    border-top: 0;
    overflow: hidden;
}

.p-step-card::after {
    content: '';
    position: absolute;
    right: -26px;
    top: -26px;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: rgba(20,184,166,.12);
}

.p-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    border-radius: 8px;
    background: rgba(255,107,53,.10);
    color: var(--accent);
    font-size: 28px;
}

.p-step-num {
    background: #101828;
}

.p-step-card h3,
.p-svc-body h3,
.p-blog-body h3,
.p-blog-list-body h3 {
    color: var(--ink);
    font-weight: 850;
}

.p-about-img {
    position: relative;
}

.p-about-img::before {
    content: '';
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(20,184,166,.28);
    border-radius: 8px;
    z-index: -1;
}

.p-about-img img {
    border-radius: 8px;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.p-about-body {
    color: #526173;
}

.p-svc-card {
    border-radius: 8px;
}

.p-svc-img img {
    height: 260px;
}

.p-svc-img-overlay {
    opacity: 1;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(16,24,40,.05), rgba(16,24,40,.72));
}

.p-svc-img-overlay .p-btn {
    padding: 10px 16px;
    font-size: 13px;
    opacity: 0;
    transform: translateY(8px);
}

.p-svc-card:hover .p-svc-img-overlay .p-btn {
    opacity: 1;
    transform: translateY(0);
}

.p-svc-body {
    padding: 24px;
}

.p-svc-body .p-link,
.p-blog-body .p-link {
    color: var(--accent);
}

.p-car-btn,
.s-scroll-top {
    border-radius: 8px;
}

.p-testi-section::before {
    background:
        linear-gradient(90deg, rgba(15,23,34,.92), rgba(15,23,34,.82)),
        rgba(15,23,34,.86);
}

.p-testi-card {
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.p-testi-card img {
    border-color: var(--accent-2);
}

.p-testi-meta cite {
    color: #fff;
}

.p-why {
    background: #0f1722;
}

.p-why-content {
    background:
        linear-gradient(135deg, rgba(20,184,166,.18), transparent 42%),
        #111827;
}

.p-why-play {
    background: var(--accent-2);
    box-shadow: 0 0 0 14px rgba(20,184,166,.18);
}

.p-blog-card,
.p-blog-list-card {
    border-radius: 8px;
}

.p-blog-date-badge {
    background: #101828;
}

.p-brands {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.p-brand-item-inner,
.p-brand-card-inner {
    border-radius: 8px;
}

.p-breadcrumb {
    min-height: 340px;
}

.p-breadcrumb::before {
    background:
        linear-gradient(90deg, rgba(16,24,40,.90), rgba(16,24,40,.62)),
        linear-gradient(135deg, rgba(20,184,166,.18), rgba(255,107,53,.14));
}

.p-breadcrumb-inner h1 {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    letter-spacing: 0;
}

.p-contact-item {
    box-shadow: none;
}

.p-ci-icon {
    background: #101828;
    color: var(--accent-2);
}

.p-form-wrap {
    background:
        linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.p-form .form-control {
    border-radius: 8px;
    min-height: 52px;
}

.p-form .form-control:focus {
    border-color: var(--accent-2);
    box-shadow: 0 0 0 4px rgba(20,184,166,.14);
}

.s-footer {
    background:
        linear-gradient(135deg, rgba(255,107,53,.10), transparent 36%),
        #0f1722;
}

.s-footer-col h4 {
    border-bottom-color: var(--accent-2);
}

.s-footer-col ul li a::before,
.s-footer-contact .fc-icon {
    color: var(--accent-2);
}

.s-footer-socials a:hover,
.s-scroll-top {
    background: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 960px) {
    .s-header-inner {
        height: 68px;
    }
    .p-hero-slide {
        min-height: 620px;
        padding: 56px 0 96px;
    }
    .p-hero-metrics {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }
    .p-hero-content h1 {
        font-size: 44px;
    }
}

@media (max-width: 640px) {
    .s-container,
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }
    .s-header-actions .s-btn-cta {
        display: none;
    }
    .p-hero-slide {
        min-height: 610px;
        padding: 46px 0 86px;
    }
    .p-hero-content h1 {
        font-size: 36px;
    }
    .p-hero-content p {
        font-size: 15px;
    }
    .p-hero-actions .p-btn {
        width: 100%;
        justify-content: center;
    }
    .p-hero-inner .slick-prev,
    .p-hero-inner .slick-next {
        display: none !important;
    }
    .p-hero-metrics {
        grid-template-columns: 1fr;
    }
    .p-hero-metrics div {
        padding: 12px 14px;
    }
    .p-section {
        padding: 64px 0;
    }
    .p-about-img::before {
        display: none;
    }
}

/* ============================================================
   V4.1 header and navigation refresh
   ============================================================ */

.s-header {
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(16,24,40,.08);
}

.s-header-inner {
    height: 84px;
    gap: 34px;
}

.s-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 180px;
    text-decoration: none;
}

.s-brand::after {
    content: '';
    width: 1px;
    height: 38px;
    margin-left: 28px;
    background: linear-gradient(180deg, transparent, rgba(16,24,40,.18), transparent);
}

.s-nav {
    justify-content: flex-start;
}

.s-nav > ul {
    gap: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.s-nav > ul > li > a {
    position: relative;
    padding: 30px 15px;
    border-radius: 0;
    background: transparent;
    color: #283548;
    font-size: 14px;
    font-weight: 800;
    box-shadow: none;
}

.s-nav > ul > li > a::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 20px;
    height: 3px;
    border-radius: 99px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans);
}

.s-nav > ul > li:hover > a,
.s-nav > ul > li.active > a {
    background: transparent;
    color: var(--accent);
    box-shadow: none;
}

.s-nav > ul > li:hover > a::after,
.s-nav > ul > li.active > a::after {
    transform: scaleX(1);
}

.s-nav > ul > li::after {
    height: 10px;
}

.s-nav .s-dropdown {
    top: calc(100% + 2px);
    left: 12px;
    min-width: 236px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(16,24,40,.08);
    box-shadow: 0 24px 60px rgba(16,24,40,.16);
}

.s-nav .s-dropdown::before {
    display: none;
}

.s-dropdown li a {
    border-radius: 7px;
}

.s-header-actions {
    margin-left: auto;
}

.s-btn-cta {
    padding: 13px 20px;
    border-radius: 999px;
    background: #101828;
    border-color: #101828;
    box-shadow: none;
}

.s-btn-cta i {
    color: var(--accent-2);
}

.s-btn-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.s-btn-cta:hover i {
    color: #fff;
}

.s-hamburger {
    border-radius: 999px;
}

.p-hero-content p {
    margin-bottom: 32px;
}

.p-hero-actions {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .s-header-inner {
        gap: 18px;
    }
    .s-brand {
        min-width: 150px;
    }
    .s-brand::after {
        margin-left: 18px;
    }
    .s-nav > ul > li > a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 13px;
    }
    .s-nav > ul > li > a::after {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 960px) {
    .s-header-inner {
        height: 70px;
    }
    .s-brand::after {
        display: none;
    }
}

/* ============================================================
   V4.2 header, hero overlay and breadcrumb refresh
   ============================================================ */

.s-topbar {
    background: #ffffff;
    color: #536172;
    border-bottom: 1px solid rgba(16,24,40,.08);
}

.s-topbar a {
    color: #536172;
}

.s-topbar a:hover,
.s-topbar a i {
    color: var(--accent);
}

.s-topbar-right a i {
    color: #101828;
}

.s-lang-btn {
    background: #f4f7fb;
    border-color: rgba(16,24,40,.10);
    color: #253143;
}

.s-lang-btn:hover {
    background: #eaf0f7;
}

.s-header {
    background: #101828;
    border-bottom: 0;
    box-shadow: 0 16px 42px rgba(16,24,40,.18);
}

.s-header.scrolled {
    box-shadow: 0 18px 46px rgba(16,24,40,.24);
}

.s-header-inner {
    height: 76px;
}

.s-brand {
    min-width: 210px;
    align-self: stretch;
    padding: 0 28px;
    margin-left: -28px;
    background: #fff;
}

.s-brand img {
    height: 48px;
}

.s-brand::after {
    display: none;
}

.s-nav > ul > li > a {
    padding: 26px 15px;
    color: rgba(255,255,255,.78);
}

.s-nav > ul > li > a::after {
    left: 15px;
    right: 15px;
    bottom: 17px;
    height: 2px;
    background: var(--accent-2);
}

.s-nav > ul > li:hover > a,
.s-nav > ul > li.active > a {
    color: #fff;
}

.s-nav > ul > li.active > a {
    background: rgba(255,255,255,.07);
    border-radius: 8px;
}

.s-nav .s-dropdown {
    top: calc(100% + 12px);
    background: #101828;
    border-color: rgba(255,255,255,.10);
}

.s-dropdown li a {
    color: rgba(255,255,255,.72);
}

.s-dropdown li a:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.s-btn-cta {
    background: #fff;
    border-color: #fff;
    color: #101828;
}

.s-btn-cta:hover {
    color: #fff;
}

.s-hamburger {
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
}

.s-hamburger span {
    background: #fff;
}

.s-hamburger:hover {
    background: rgba(255,255,255,.12);
}

.p-hero::after {
    display: none;
}

.p-hero-slide {
    min-height: 660px;
    padding: 76px 0 92px;
}

.p-hero-slide::before {
    background:
        linear-gradient(90deg, rgba(7,12,20,.88) 0%, rgba(7,12,20,.70) 43%, rgba(7,12,20,.24) 100%),
        linear-gradient(180deg, rgba(7,12,20,.12) 0%, rgba(7,12,20,.44) 100%);
}

.p-hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(20,184,166,.16), transparent 34%),
        linear-gradient(290deg, rgba(255,107,53,.12), transparent 32%);
    pointer-events: none;
}

.p-hero-content {
    z-index: 2;
}

.p-hero .slick-dots {
    bottom: 28px;
}

.p-breadcrumb {
    min-height: 300px;
    align-items: flex-end;
    padding: 86px 0 42px;
    background-position: center;
}

.p-breadcrumb::before {
    background:
        linear-gradient(90deg, rgba(16,24,40,.86) 0%, rgba(16,24,40,.72) 46%, rgba(16,24,40,.34) 100%),
        linear-gradient(135deg, rgba(255,107,53,.22), transparent 44%);
}

.p-breadcrumb::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 7px;
    background: linear-gradient(90deg, var(--accent) 0 34%, var(--accent-2) 34% 58%, #101828 58% 100%);
}

.p-breadcrumb-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
}

.p-breadcrumb-inner h1 {
    margin: 0;
    max-width: 780px;
}

.p-breadcrumb-nav {
    align-self: end;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 8px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.p-breadcrumb-nav li a {
    color: #fff;
}

.p-breadcrumb-nav li:last-child {
    color: rgba(255,255,255,.72);
}

@media (max-width: 960px) {
    .s-header .s-container {
        position: relative;
    }
    .s-header-inner {
        height: 68px;
        position: relative;
    }
    .s-brand {
        min-width: auto;
        margin-left: -18px;
        padding: 0 18px;
    }
    .s-brand img {
        height: 42px;
    }
    .s-header-actions {
        display: none !important;
        margin-left: 0;
    }
    .s-hamburger {
        display: flex !important;
        position: fixed !important;
        right: 18px !important;
        top: 68px !important;
        z-index: 2000 !important;
        width: 42px !important;
        height: 42px !important;
    }
    .p-breadcrumb-inner {
        grid-template-columns: 1fr;
    }
    .p-breadcrumb-nav {
        justify-self: start;
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .s-topbar-left {
        display: none;
    }
    .p-hero-slide {
        min-height: 560px;
        padding: 44px 0 68px;
    }
    .p-breadcrumb {
        min-height: 250px;
        padding: 64px 0 32px;
    }
}

/* ============================================================
   V4.3 footer refresh
   ============================================================ */

.s-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(20,184,166,.13), transparent 30%),
        linear-gradient(315deg, rgba(255,107,53,.12), transparent 34%),
        #101828;
    border-top: 7px solid transparent;
    border-image: linear-gradient(90deg, var(--accent), var(--accent-2), #101828) 1;
}

.s-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.75), transparent 82%);
    pointer-events: none;
}

.s-footer .s-container {
    position: relative;
    z-index: 1;
}

.s-footer-top {
    grid-template-columns: 1.35fr .85fr 1fr 1.25fr;
    gap: 26px;
    padding: 64px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.s-footer-brand,
.s-footer-col {
    min-width: 0;
}

.s-footer-brand {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
    backdrop-filter: blur(10px);
}

.s-footer-brand img {
    height: 48px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.s-footer-brand p {
    color: rgba(255,255,255,.68);
    font-size: 14px;
}

.s-footer-socials {
    gap: 8px;
}

.s-footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
    color: #fff;
}

.s-footer-socials a:hover {
    background: var(--accent-2);
    border-color: var(--accent-2);
    transform: translateY(-2px);
}

.s-footer-col {
    padding-top: 10px;
}

.s-footer-col h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 0;
    border: 0;
    color: #fff;
    font-size: 12px;
    letter-spacing: .12em;
}

.s-footer-col h4::before {
    content: '';
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
}

.s-footer-col ul {
    gap: 8px;
}

.s-footer-col ul li a {
    display: inline-flex;
    width: 100%;
    padding: 8px 0;
    color: rgba(255,255,255,.66);
    font-weight: 600;
}

.s-footer-col ul li a::before {
    content: '';
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: rgba(20,184,166,.75);
}

.s-footer-col ul li a:hover {
    color: #fff;
    gap: 14px;
}

.s-footer-contact ul {
    gap: 12px;
}

.s-footer-contact li {
    padding: 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 8px;
    background: rgba(255,255,255,.055);
}

.s-footer-contact .fc-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(20,184,166,.14);
    border-color: rgba(20,184,166,.22);
    color: var(--accent-2);
}

.s-footer-contact .fc-text,
.s-footer-contact .fc-text a {
    color: rgba(255,255,255,.78);
    font-weight: 650;
}

.s-footer-contact .fc-text a:hover {
    color: var(--accent-2);
}

.s-footer-bottom {
    padding: 22px 0 28px;
    color: rgba(255,255,255,.56);
}

.s-footer-bottom a {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
}

.s-footer-bottom a:hover {
    background: var(--accent);
    color: #fff;
}

@media (max-width: 960px) {
    .s-footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .s-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .s-footer-top {
        grid-template-columns: 1fr;
        padding-top: 46px;
    }
    .s-footer-brand {
        padding: 24px;
    }
    .s-footer-col {
        padding-top: 0;
    }
}

/* ============================================================
   V4.4 full page surface and non-sticky header
   ============================================================ */

.s-topbar {
    background:
        linear-gradient(90deg, #101828 0%, #142235 72%, #101828 100%);
    color: rgba(255,255,255,.72);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.s-topbar .s-container {
    min-height: 38px;
}

.s-topbar-left,
.s-topbar-right {
    gap: 14px;
}

.s-topbar a {
    color: rgba(255,255,255,.74);
    font-weight: 650;
}

.s-topbar a:hover,
.s-topbar a i {
    color: var(--accent-2);
}

.s-topbar-right a {
    width: 28px;
    height: 28px;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 8px;
    background: rgba(255,255,255,.055);
}

.s-topbar-right a i {
    color: #fff;
}

.s-topbar-right a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.s-lang-btn {
    min-height: 28px;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
    color: #fff;
}

.s-lang-btn:hover {
    background: rgba(255,255,255,.14);
}

.s-lang-menu {
    background: #101828;
    border-color: rgba(255,255,255,.12);
}

.s-header {
    position: relative;
    top: auto;
}

main {
    background:
        radial-gradient(circle at 8% 10%, rgba(20,184,166,.07), transparent 28%),
        linear-gradient(180deg, #f6f9fc 0%, #ffffff 34%, #f7f9fc 100%);
}

.p-section {
    position: relative;
}

.p-section:not(.p-bg-light):not(.p-testi-section) {
    background: transparent;
}

.p-bg-light {
    background:
        linear-gradient(180deg, rgba(244,247,251,.96), rgba(255,255,255,.96)),
        radial-gradient(circle at 92% 18%, rgba(255,107,53,.08), transparent 26%);
}

.p-title .p-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.p-title .p-label::before {
    content: '';
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
}

.p-title.center .p-label {
    justify-content: center;
}

.p-title.center .p-label::after {
    content: '';
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent-2);
}

.p-step-card,
.p-svc-card,
.p-blog-card,
.p-blog-list-card,
.p-contact-item,
.p-form-wrap,
.p-widget,
.p-post-wrap,
.p-brand-card-inner,
.p-brand-item-inner {
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid rgba(16,24,40,.08);
}

.p-step-card:hover,
.p-svc-card:hover,
.p-blog-card:hover,
.p-brand-card-inner:hover,
.p-brand-item-inner:hover {
    border-color: rgba(20,184,166,.36);
}

.p-svc-grid,
.p-gallery-grid,
.p-video-grid,
.p-brands-grid {
    position: relative;
}

.p-svc-card {
    display: flex;
    flex-direction: column;
}

.p-svc-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.p-svc-body .p-link {
    margin-top: auto;
}

.p-blog-list-card {
    border: 1px solid rgba(16,24,40,.08);
}

.p-gallery-item,
.p-video-wrap {
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(16,24,40,.10);
}

.p-gallery-overlay {
    background:
        linear-gradient(135deg, rgba(16,24,40,.78), rgba(20,184,166,.35));
}

.p-map {
    padding: 18px;
    background: #101828;
}

.p-map iframe {
    border-radius: 8px;
    filter: saturate(.9) contrast(1.03);
}

.p-contact-info {
    position: sticky;
    top: 24px;
}

.p-contact-item {
    box-shadow: 0 14px 34px rgba(16,24,40,.07);
}

.p-form-wrap {
    position: relative;
    overflow: hidden;
}

.p-form-wrap::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.p-form-wrap .p-title {
    margin-bottom: 28px;
}

.p-form .form-control {
    background: #fff;
    border-color: rgba(16,24,40,.12);
}

.p-widget {
    overflow: hidden;
}

.p-widget h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 0;
    padding: 0;
}

.p-widget h3::before {
    content: '';
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
}

.p-post-wrap {
    border-top: 5px solid var(--accent-2);
}

.p-pagination li a,
.p-pagination li span {
    background: #fff;
}

.p-pagination li a:hover,
.p-pagination li.active a,
.p-pagination li.active span {
    background: #101828;
    border-color: #101828;
}

.p-brands-page,
.p-brands {
    background:
        linear-gradient(180deg, #fff, #f6f9fc);
}

@media (max-width: 960px) {
    .p-contact-info {
        position: static;
    }
}

@media (max-width: 640px) {
    .s-topbar .s-container {
        justify-content: center;
    }
    .s-topbar-right {
        width: 100%;
        justify-content: center;
    }
    .s-topbar-right a {
        width: 30px;
        height: 30px;
    }
}

/* Panel renkleriyle uyumlu beyaz header üstü */
.s-topbar {
    background: #fff;
    color: #526173;
    border-bottom: 1px solid rgba(16,24,40,.08);
}

.s-topbar a {
    color: #526173;
}

.s-topbar a:hover,
.s-topbar a i {
    color: var(--accent);
}

.s-topbar-right a {
    border-color: rgba(16,24,40,.10);
    background: #f7f9fc;
}

.s-topbar-right a i {
    color: #101828;
}

.s-topbar-right a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.s-topbar-right a:hover i {
    color: #fff;
}

.s-lang-btn {
    background: #f7f9fc;
    border-color: rgba(16,24,40,.10);
    color: #253143;
}

.s-lang-btn:hover {
    background: #eef2f7;
}

/* Panel renklerini header, butonlar ve genel site aksanına uygula */
.s-header,
.s-nav .s-dropdown,
.p-pagination li a:hover,
.p-pagination li.active a,
.p-pagination li.active span {
    background: var(--dark);
    border-color: var(--dark);
}

.s-header {
    box-shadow: 0 16px 42px color-mix(in srgb, var(--dark) 22%, transparent);
}

.s-nav > ul > li.active > a {
    background: color-mix(in srgb, #fff 9%, transparent);
}

.s-nav > ul > li > a::after,
.p-hero .slick-dots li.slick-active button,
.p-testi-section .slick-dots li.slick-active button,
.s-footer-col ul li a::before,
.s-footer-contact .fc-icon,
.p-why-play {
    background: var(--accent-2);
}

.s-nav > ul > li:hover > a,
.s-nav > ul > li.active > a,
.s-dropdown li a:hover,
.s-btn-cta i,
.p-hero-kicker i,
.s-footer-contact .fc-icon,
.s-footer-contact .fc-text a:hover,
.p-ci-icon,
.s-footer-col ul li a:hover {
    color: var(--accent-2);
}

.s-btn-cta,
.p-btn,
.s-mobile-nav-cta,
.s-scroll-top,
.p-blog-date-badge,
.p-step-num,
.p-pagination li a:hover,
.p-pagination li.active a,
.p-pagination li.active span {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.s-btn-cta:hover,
.p-btn:hover,
.s-mobile-nav-cta:hover,
.s-scroll-top:hover,
.s-footer-bottom a:hover,
.s-topbar-right a:hover,
.s-footer-socials a:hover {
    background: var(--accent-2);
    border-color: var(--accent-2);
    color: #fff;
}

.s-btn-cta:hover i {
    color: #fff;
}

.p-btn-ghost {
    background: color-mix(in srgb, var(--dark) 24%, transparent);
    border-color: color-mix(in srgb, #fff 38%, transparent);
}

.p-title .p-label,
.p-svc-body .p-link,
.p-blog-body .p-link,
.p-breadcrumb-nav li a,
.p-widget .service-list li a:hover,
.p-blog-body h3 a:hover,
.p-blog-list-body h3 a:hover,
.p-ci-text a:hover {
    color: var(--accent);
}

.p-title .p-label::before,
.p-title.center .p-label::after,
.p-widget h3::before,
.s-footer-col h4::before,
.p-breadcrumb::after,
.s-footer,
.p-form-wrap::before {
    --panel-gradient: linear-gradient(90deg, var(--accent), var(--accent-2), var(--dark));
}

.p-title .p-label::before,
.p-widget h3::before,
.s-footer-col h4::before {
    background: var(--accent);
}

.p-title.center .p-label::after {
    background: var(--accent-2);
}

.p-breadcrumb::after,
.p-form-wrap::before {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.s-footer {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--accent-2) 14%, transparent), transparent 30%),
        linear-gradient(315deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 34%),
        var(--dark);
    border-image: linear-gradient(90deg, var(--accent), var(--accent-2), var(--dark)) 1;
}

.p-ci-icon,
.s-footer-contact .fc-icon {
    background: color-mix(in srgb, var(--accent-2) 14%, var(--dark));
    border-color: color-mix(in srgb, var(--accent-2) 26%, transparent);
}

.p-step-card::after {
    background: color-mix(in srgb, var(--accent-2) 14%, transparent);
}

.p-step-icon {
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
}
