/* ============================================================
   KAPTAN PETROL - MODERN DESIGN SYSTEM
   Petrol Ofisi Yetkili Bayisi - Kurumsal Kimlik
   ============================================================ */

:root {
    --po-red: #E30613;
    --po-red-dark: #B30410;
    --po-red-light: #FF1A2D;
    --po-blue: #003D7A;
    --po-blue-dark: #002951;
    --po-blue-light: #1A5BA8;
    --po-yellow: #FFD700;
    --po-dark: #1A1A1A;
    --po-text: #4A4A4A;
    --po-muted: #8A8A8A;
    --po-bg: #FFFFFF;
    --po-bg-alt: #F8F9FA;
    --po-bg-soft: #F1F3F5;
    --po-border: #E5E7EB;
    --po-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --po-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
    --po-shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.16);
    --po-shadow-red: 0 12px 32px rgba(227, 6, 19, 0.25);
    --po-radius: 12px;
    --po-radius-lg: 20px;
    --po-radius-pill: 999px;
    --po-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --po-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --po-section-pad: 80px;
}

/* ============================================================
   GLOBAL RESETS & BASE
   ============================================================ */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    overflow-x: hidden;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--po-text);
    font-weight: 400;
}
img { max-width: 100%; height: auto; }
a { transition: var(--po-transition); }

/* Prevent horizontal scroll on mobile */
.container, .container-fluid { overflow-x: visible; }

/* ============================================================
   TYPOGRAPHY SCALE — corporate, consistent across all sub-pages
   Override legacy style.css declarations that vary wildly.
   ============================================================ */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: inherit;
    color: var(--po-dark);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.2px;
    margin: 0 0 12px;
}
body h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.5px; }
body h2 { font-size: 28px; }
body h3 { font-size: 22px; }
body h4 { font-size: 17px; }
body h5 { font-size: 15px; }
body h6 { font-size: 13px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--po-red); font-weight: 700; }

body p {
    font-family: inherit;
    font-size: 15px;
    line-height: 1.7;
    color: var(--po-text);
    margin: 0 0 14px;
    letter-spacing: 0;
}
body p:last-child { margin-bottom: 0; }
body small { font-size: 12px; line-height: 1.5; }
body ul, body ol { font-size: 15px; line-height: 1.7; }
body li { margin-bottom: 6px; }

@media (max-width: 991px) {
    body h1 { font-size: 30px; }
    body h2 { font-size: 24px; }
    body h3 { font-size: 20px; }
    body h4 { font-size: 16px; }
    body p { font-size: 14.5px; }
}
@media (max-width: 575px) {
    body h1 { font-size: 26px; }
    body h2 { font-size: 22px; }
    body h3 { font-size: 18px; }
    body p { font-size: 14px; }
}

/* ============================================================
   HEADER POSITION (override absolute → normal flow)
   Original style.css:182 makes header absolute, overlapping hero.
   Modern UX: header takes its own space, content flows below.
   ============================================================ */
.main_header_area {
    position: relative !important;
    background: #fff !important;
    border-bottom: none !important;
    top: auto !important;
    z-index: 100 !important;
}

/* Cancel old auto top-margin meant for absolute header */
.color_menu + section,
.color_menu + div,
.color_menu + .row {
    margin-top: 0 !important;
}

/* ============================================================
   TOPBAR (header_top) - Petrol Ofisi red, unified
   ============================================================ */
.main_header_area .header_top {
    background: linear-gradient(95deg, var(--po-red-dark) 0%, var(--po-red) 55%, var(--po-red-light) 100%);
    padding: 5px 0;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}
.main_header_area .header_top::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}
.main_header_area .header_top::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--po-blue-dark);
    opacity: 1;
}
.main_header_area .header_top .header_top_inner {
    position: relative;
    z-index: 1;
}
.main_header_area .header_top a,
.main_header_area .header_top span {
    color: #fff !important;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1;
}
.main_header_area .header_top a {
    padding: 3px 12px 3px 4px;
    margin-right: 4px;
    border-radius: 999px;
    display: inline-flex !important;
    align-items: center;
    text-decoration: none;
    transition: var(--po-transition);
    vertical-align: middle;
}
/* Flush alignment to container edges (matches navbar logo on left, İletişim on right) */
.main_header_area .header_top .pull-left > *:first-child { margin-left: 0; padding-left: 0; }
.main_header_area .header_top .pull-right > *:last-child { margin-right: 0; }
.main_header_area .header_top .pull-right .po-topbar__handle { padding-right: 12px; }
.main_header_area .header_top .pull-left a:first-child i,
.main_header_area .header_top .pull-left a:first-child { gap: 0; }
.main_header_area .header_top .pull-left a:first-child i { margin-left: 0 !important; }
.main_header_area .header_top a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}
.main_header_area .header_top a i {
    flex: 0 0 22px;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
    min-height: 22px;
    max-width: 22px;
    max-height: 22px;
    margin: 0 7px 0 0 !important;
    padding: 0 !important;
    background: #fff;
    color: var(--po-red) !important;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 11px !important;
    line-height: 1 !important;
    text-align: center;
    transition: var(--po-transition);
    box-sizing: border-box;
    overflow: hidden;
    vertical-align: middle;
}
.main_header_area .header_top a i::before {
    line-height: 1;
    display: block;
}
.main_header_area .header_top a:hover i {
    background: var(--po-blue-dark);
    border-color: var(--po-blue-dark);
    color: #fff !important;
    transform: scale(1.08);
}
/* The fax glyph is naturally wider — clip it to fit */
.main_header_area .header_top a i.fa-fax { font-size: 10px !important; }
.main_header_area .header_top a i.fa-envelope-o { font-size: 11px !important; }
.main_header_area .header_top a i.fa-phone { font-size: 12px !important; }
/* Group containers should also flex-align */
.main_header_area .header_top .pull-left,
.main_header_area .header_top .pull-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.main_header_area .header_top .header_top_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.main_header_area .header_social {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
}
.main_header_area .header_social li a {
    width: 28px; height: 28px;
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
}
.main_header_area .header_social li a i {
    width: auto;
    height: auto;
    margin: 0 !important;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 13px;
}
.main_header_area .header_social li a:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.main_header_area .header_social li a:hover i { color: var(--po-red); }

/* "Bizi Takip Edin" + @kaptanpetrol topbar right-side block */
.main_header_area .header_top .po-topbar__follow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1;
    margin-right: 4px;
}
.main_header_area .header_top .po-topbar__follow-emoji {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    transform-origin: 70% 100%;
    animation: po-wave 2.6s ease-in-out infinite;
}
.main_header_area .header_top .po-topbar__handle {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.main_header_area .header_top .po-topbar__handle i {
    background: #fff;
    color: var(--po-red) !important;
    border-color: #fff;
}
.main_header_area .header_top .po-topbar__handle:hover {
    background: #fff;
    color: var(--po-red) !important;
}
.main_header_area .header_top .po-topbar__handle:hover i {
    background: var(--po-blue-dark);
    color: #fff !important;
    border-color: var(--po-blue-dark);
}

/* ============================================================
   NAVBAR - modern look
   ============================================================ */
.main_header_area .header_menu .navbar.navbar-default {
    background: #fff;
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 0;
    border-radius: 0;
}
/* Brand: keep Bootstrap's `margin-left: -15px` (which pulls brand element to viewport edge),
   then add padding-left: 15px so the IMAGE sits exactly at the container content edge
   (same X as topbar's first item — visually aligned) */
.main_header_area .navbar-brand { padding: 12px 15px 12px 15px; height: auto; }
.main_header_area .navbar-brand img { max-height: 50px; width: auto; display: block; }

/* Navbar collapse on desktop has Bootstrap default padding: 0 15px which would push
   menu items 15px inside the container — zero it so the last item (İletişim) sits
   flush at the container's right content edge, matching topbar @kaptanpetrol pill */
@media (min-width: 992px) {
    .main_header_area .header_menu .navbar.navbar-default .navbar-collapse {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li > a {
    color: var(--po-dark);
    font-family: inherit;
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 70px;
    padding: 0 9px;
    position: relative;
    transition: var(--po-transition);
}
@media (min-width: 992px) {
    .main_header_area .header_menu .navbar.navbar-default .nav.navbar-nav {
        float: right;
        margin-right: 0;
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li:last-child > a { padding-right: 0; }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li:first-child > a { padding-left: 0; }
}
.color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li a {
    font-family: inherit;
}
.color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li > a:hover,
.color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li.active > a {
    color: var(--po-red);
}
.color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--po-red);
    transition: var(--po-transition);
    transform: translateX(-50%);
}
.color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li:hover > a::after {
    width: 60%;
}

/* ============================================================
   DROPDOWN — yeni nesil (modern card-style with animation)
   ============================================================ */
.header_menu .dropdown {
    position: relative;
}
.header_menu .dropdown-menu {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    transform-origin: top center;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    border-radius: 0;
    padding: 8px 0;
    min-width: 280px;
    margin-top: 12px;
    background: #fff;
    pointer-events: none;
    overflow: hidden;
}
/* Decorative caret arrow */
.header_menu .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 28px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.04);
    z-index: -1;
}
/* Top accent stripe */
.header_menu .dropdown-menu::after {
    content: '';
    position: absolute;
    top: 0; left: 16px; right: 16px;
    height: 3px;
    background: linear-gradient(90deg, var(--po-red) 0%, var(--po-red-light) 50%, var(--po-yellow) 100%);
    border-radius: 0 0 4px 4px;
    opacity: 0.85;
}
.header_menu .dropdown:hover > .dropdown-menu,
.header_menu .dropdown.open > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.header_menu .dropdown-menu,
.header_menu .dropdown-menu > li,
.header_menu .dropdown-menu > li > a {
    background: #fff !important;
    background-color: #fff !important;
}
.header_menu .dropdown-menu > li {
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible;
}
.header_menu .dropdown-menu > li > a {
    padding: 13px 20px 13px 44px !important;
    border-radius: 0 !important;
    color: var(--po-dark) !important;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4 !important;
    transition: all 0.2s ease;
    position: relative;
    text-transform: none !important;
    letter-spacing: 0;
    border: none !important;
}
/* Icon glyph — no box, just icon at left */
.header_menu .dropdown-menu > li > a::before {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    text-align: center;
    color: var(--po-red);
    font-family: 'FontAwesome';
    font-weight: normal;
    font-size: 14px;
    transition: color 0.2s ease;
}
/* No right arrow */
.header_menu .dropdown-menu > li > a::after { content: none !important; display: none !important; }
/* HOVER: solid red bg, white text + white icon — sharp edges */
.header_menu .dropdown-menu > li > a:hover,
.header_menu .dropdown-menu > li > a:focus {
    background: var(--po-red) !important;
    background-color: var(--po-red) !important;
    color: #fff !important;
    border-radius: 0 !important;
}
.header_menu .dropdown-menu > li > a:hover::before,
.header_menu .dropdown-menu > li > a:focus::before {
    color: #fff;
}

/* Specific dropdown item icons (using attribute-based mapping via href) */
.header_menu .dropdown-menu a[href="hakkimizda.html"]::before { content: '\f0e3'; }
.header_menu .dropdown-menu a[href="vizyonumuz.html"]::before { content: '\f06e'; }
.header_menu .dropdown-menu a[href="misyonumuz.html"]::before { content: '\f140'; }
.header_menu .dropdown-menu a[href="yonetim.html"]::before { content: '\f0c0'; }
.header_menu .dropdown-menu a[href="basindabiz.html"]::before { content: '\f1ea'; }
.header_menu .dropdown-menu a[href="referanslarimiz.html"]::before { content: '\f005'; }
.header_menu .dropdown-menu a[href="belgeler.html"]::before { content: '\f15c'; }
.header_menu .dropdown-menu a[href="galeri.html"]::before { content: '\f03e'; }
.header_menu .dropdown-menu a[href="akaryakit_hizmetleri.html"]::before { content: '\f043'; }
.header_menu .dropdown-menu a[href="lojistik_hizmetleri.html"]::before { content: '\f0d1'; }
.header_menu .dropdown-menu a[href="madeni_yag.html"]::before { content: '\f0c3'; }
.header_menu .dropdown-menu a[href="dokme_cimento.html"]::before { content: '\f1b3'; }
.header_menu .dropdown-menu a[href="otomotiv_yedek_parca.html"]::before { content: '\f085'; }

/* Mobile: revert dropdown to flow layout */
@media (max-width: 991px) {
    .header_menu .dropdown-menu {
        position: static !important;
        display: none !important;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        background: #fff !important;
        min-width: 0;
        pointer-events: auto;
    }
    .header_menu .dropdown.open > .dropdown-menu,
    .header_menu .submenu.open > .dropdown-menu {
        display: block !important;
    }
    .header_menu .dropdown-menu::before,
    .header_menu .dropdown-menu::after { display: none; }
    .header_menu .dropdown-menu > li {
        margin: 0;
    }
    .header_menu .dropdown-menu > li > a {
        padding: 14px 24px 14px 50px !important;
        border-bottom: none !important;
        border: none !important;
        border-radius: 0;
        background: #fff !important;
    }
    .header_menu .dropdown-menu > li > a::before {
        left: 24px;
        background: transparent !important;
        color: var(--po-red) !important;
        width: 18px !important;
        height: auto !important;
    }
    .header_menu .dropdown-menu > li > a:hover,
    .header_menu .dropdown-menu > li > a:focus {
        background: var(--po-red) !important;
        background-color: var(--po-red) !important;
        color: #fff !important;
    }
    .header_menu .dropdown-menu > li > a:hover::before {
        color: #fff !important;
    }
    /* Override original responsive.css dark item background */
    .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul li a {
        background: #fff !important;
        color: var(--po-dark) !important;
        font-weight: 600 !important;
        padding: 14px 24px 14px 50px !important;
        border: none !important;
        border-bottom: none !important;
    }
    .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul li a:hover,
    .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul li a:focus {
        background: var(--po-red) !important;
        color: #fff !important;
    }
    .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul li {
        border: none !important;
        border-bottom: none !important;
        background: #fff !important;
    }
}

/* ============================================================
   HOME HERO SLIDER (modern gradient-based — no photo conflicts)
   ============================================================ */
.po-hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: var(--po-blue-dark);
}
.po-hero::after {
    /* Subtle dot pattern overlay — gives premium texture */
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 5;
}
.po-hero__slides {
    position: absolute;
    inset: 0;
}
.po-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    pointer-events: none;
    z-index: 1;
}
.po-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
/* Each slide has a unique gradient theme */
.po-hero__slide[data-slide="0"] {
    background:
        radial-gradient(circle at 80% 50%, rgba(227, 6, 19, 0.45) 0%, transparent 55%),
        linear-gradient(125deg, #001f3f 0%, #003D7A 45%, #0a1f3a 100%);
}
.po-hero__slide[data-slide="1"] {
    background:
        radial-gradient(circle at 75% 40%, rgba(255, 215, 0, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 85% 70%, rgba(227, 6, 19, 0.30) 0%, transparent 55%),
        linear-gradient(135deg, #0a1f3a 0%, #002951 50%, #1a0a14 100%);
}
.po-hero__slide[data-slide="2"] {
    background:
        radial-gradient(circle at 78% 55%, rgba(227, 6, 19, 0.40) 0%, transparent 55%),
        linear-gradient(115deg, #002951 0%, #00264a 40%, #1a0410 100%);
}
/* Big decorative icon on the right side (different per slide) */
.po-hero__slide-icon {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    font-size: 480px;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
    pointer-events: none;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}
.po-hero__slide.is-active .po-hero__slide-icon {
    transform: translateY(-50%) scale(1);
    color: rgba(255, 255, 255, 0.08);
}
/* Diagonal accent stripe */
.po-hero__slide::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    right: 30%;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, var(--po-red) 50%, transparent 100%);
    transform: skewX(-12deg);
    opacity: 0.35;
    z-index: 1;
}

.po-hero__content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}
.po-hero__inner {
    max-width: 720px;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.3s;
}
.po-hero__slide.is-active .po-hero__inner {
    transform: translateY(0);
    opacity: 1;
}
.po-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(227, 6, 19, 0.25);
    color: #fff;
    border: 1.5px solid var(--po-red-light);
    padding: 8px 18px;
    border-radius: var(--po-radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.po-hero__eyebrow i { color: var(--po-yellow); }
.po-hero__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 20px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.po-hero__title span {
    color: var(--po-red-light);
    position: relative;
    display: inline-block;
}
.po-hero__title span::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -4px;
    height: 4px;
    background: var(--po-yellow);
    border-radius: 2px;
}
.po-hero__desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 36px;
    max-width: 580px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.20);
}
.po-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero pagination dots */
.po-hero__dots {
    position: absolute;
    bottom: 40px;
    left: 0; right: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.po-hero__dot {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.30);
    border: none;
    cursor: pointer;
    transition: var(--po-transition);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.po-hero__dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--po-red-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0s linear;
}
.po-hero__dot.is-active::after {
    transform: scaleX(1);
    transition: transform 6s linear;
}
.po-hero__dot:hover { background: rgba(255, 255, 255, 0.55); }

/* Hero arrows */
.po-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--po-transition);
}
.po-hero__arrow:hover {
    background: var(--po-red);
    border-color: var(--po-red);
    transform: translateY(-50%) scale(1.08);
}
.po-hero__arrow--prev { left: 28px; }
.po-hero__arrow--next { right: 28px; }

/* Hero floating decorations */
.po-hero__deco {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.08;
}
.po-hero__deco--1 {
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--po-red) 0%, transparent 70%);
    border-radius: 50%;
}
.po-hero__deco--2 {
    bottom: -80px;
    left: 20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--po-yellow) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.05;
}

@media (max-width: 991px) {
    .po-hero { height: 540px; }
    .po-hero__title { font-size: 42px; }
    .po-hero__desc { font-size: 16px; }
    .po-hero__arrow { width: 44px; height: 44px; font-size: 14px; }
    .po-hero__arrow--prev { left: 14px; }
    .po-hero__arrow--next { right: 14px; }
}
@media (max-width: 767px) {
    .po-hero { height: 480px; }
    .po-hero__title { font-size: 32px; }
    .po-hero__desc { font-size: 15px; margin-bottom: 28px; }
    .po-hero__inner { padding-right: 0; }
    .po-hero__eyebrow { font-size: 11px; padding: 6px 14px; margin-bottom: 18px; }
    .po-hero__dots { bottom: 22px; }
    .po-hero__dot { width: 28px; }
    .po-hero__actions .po-btn { padding: 12px 22px; font-size: 13px; }
    .po-hero__arrow { display: none; }
}
@media (max-width: 480px) {
    .po-hero { height: 460px; }
    .po-hero__title { font-size: 26px; }
    .po-hero__actions { flex-direction: column; }
    .po-hero__actions .po-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   PAGE BREADCRUMB (minimal corporate red)
   ============================================================ */
.banner_link {
    background: #FAFAFA;
    border-bottom: 1px solid var(--po-border);
    padding: 16px 0;
    position: relative;
    overflow: hidden;
}
.banner_link::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--po-red) 0%, var(--po-red-dark) 50%, var(--po-red) 100%);
}
.banner_link::after {
    content: '';
    position: absolute;
    inset: 3px 0 0 0;
    background-image: radial-gradient(rgba(227, 6, 19, 0.035) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}
.banner_link .container { position: relative; z-index: 1; }
.banner_link .abnner_link_inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
}
.banner_link .abnner_link_inner a {
    color: var(--po-muted);
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    line-height: 1.4;
    padding: 0;
    margin: 0;
    transition: var(--po-transition);
    text-decoration: none;
    position: relative;
}
.banner_link .abnner_link_inner a:first-child::before { display: none; }
.banner_link .abnner_link_inner a + a {
    padding-left: 26px;
}
.banner_link .abnner_link_inner a + a::before {
    content: '/';
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--po-border);
    font-weight: 400;
    font-family: inherit;
}
.banner_link .abnner_link_inner a:hover {
    color: var(--po-red);
}
.banner_link .abnner_link_inner a.active {
    color: var(--po-text);
}
.banner_link .abnner_link_inner a:last-child {
    color: var(--po-red);
    font-weight: 700;
    pointer-events: none;
}

/* ============================================================
   SECTION TITLE (modern)
   ============================================================ */
.section_title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.section_title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--po-dark);
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}
.section_title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--po-red) 0%, var(--po-red-light) 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}
.section_title p {
    font-size: 16px;
    color: var(--po-muted);
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.6;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.po-section {
    padding: var(--po-section-pad) 0;
}
.po-section--alt { background: var(--po-bg-alt); }
.po-section--dark {
    background: var(--po-blue-dark);
    color: #fff;
}
.po-section--dark .section_title h2 { color: #fff; }
.po-section--dark .section_title p { color: rgba(255,255,255,0.8); }

/* ============================================================
   GRID SYSTEM (CSS Grid)
   ============================================================ */
.po-grid {
    display: grid;
    gap: 28px;
}
.po-grid--2 { grid-template-columns: repeat(2, 1fr); }
.po-grid--3 { grid-template-columns: repeat(3, 1fr); }
.po-grid--4 { grid-template-columns: repeat(4, 1fr); }
.po-grid--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1199px) {
    .po-grid--5 { grid-template-columns: repeat(3, 1fr); }
    .po-grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .po-grid { gap: 22px; }
    .po-grid--5,
    .po-grid--4,
    .po-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .po-grid { gap: 18px; }
    .po-grid--5,
    .po-grid--4,
    .po-grid--3,
    .po-grid--2 { grid-template-columns: 1fr; }
}

/* ============================================================
   CARD - Service (Faaliyet Alanları)
   ============================================================ */
.po-service-card {
    background: #fff;
    border-radius: var(--po-radius-lg);
    padding: 36px 28px 32px;
    text-align: center;
    box-shadow: var(--po-shadow-sm);
    border: 1px solid var(--po-border);
    transition: var(--po-transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.po-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--po-red) 0%, var(--po-red-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--po-transition);
}
.po-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--po-shadow-lg);
    border-color: transparent;
    text-decoration: none;
}
.po-service-card:hover::before { transform: scaleX(1); }
.po-service-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(227,6,19,0.08) 0%, rgba(227,6,19,0.02) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--po-red);
    font-size: 32px;
    transition: var(--po-transition);
}
.po-service-card:hover .po-service-card__icon {
    background: linear-gradient(135deg, var(--po-red) 0%, var(--po-red-dark) 100%);
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
}
.po-service-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--po-dark);
    margin: 0 0 12px;
    line-height: 1.3;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.po-service-card__desc {
    font-size: 14px;
    color: var(--po-muted);
    line-height: 1.6;
    margin: 0 0 20px;
    min-height: 67px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}
@media (max-width: 991px) {
    .po-service-card__title { min-height: 0; }
    .po-service-card__desc { min-height: 0; }
}
.po-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--po-red);
    font-weight: 600;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    margin-top: auto;
}
.po-service-card__link i { transition: var(--po-transition); }
.po-service-card:hover .po-service-card__link i { transform: translateX(4px); }
@media (max-width: 767px) {
    .po-service-card { text-align: center; }
    .po-service-card__icon { margin-left: auto; margin-right: auto; }
    .po-service-card__link { align-self: center; justify-content: center; }
}

/* ============================================================
   CARD - Feature (Advantage on service pages)
   ============================================================ */
.po-feature-card {
    background: #fff;
    border-radius: var(--po-radius);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--po-border);
    transition: var(--po-transition);
    height: 100%;
}
.po-feature-card:hover {
    border-color: var(--po-red);
    transform: translateY(-4px);
    box-shadow: var(--po-shadow-md);
}
.po-feature-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: var(--po-red);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}
.po-feature-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--po-dark);
    margin: 0 0 8px;
}
.po-feature-card__desc {
    font-size: 14px;
    color: var(--po-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   CARD - Team (Yönetim)
   ============================================================ */
.po-team-card {
    background: #fff;
    border-radius: var(--po-radius-lg);
    padding: 36px 24px 28px;
    text-align: center;
    border: 1px solid var(--po-border);
    box-shadow: var(--po-shadow-sm);
    transition: var(--po-transition);
    position: relative;
    overflow: hidden;
}
.po-team-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(227,6,19,0.04) 100%);
    transition: var(--po-transition);
}
.po-team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--po-shadow-md);
    border-color: var(--po-red);
}
.po-team-card:hover::after { height: 100%; }
.po-team-card__avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--po-red) 0%, var(--po-red-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(227,6,19,0.25);
    position: relative;
    z-index: 1;
}
.po-team-card__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--po-dark);
    margin: 0 0 6px;
    position: relative;
    z-index: 1;
}
.po-team-card__title {
    font-size: 13px;
    color: var(--po-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================================
   CARD - Reference (Müşteri/Partner)
   ============================================================ */
.po-ref-card {
    background: #fff;
    border-radius: var(--po-radius);
    overflow: hidden;
    border: 1px solid var(--po-border);
    transition: var(--po-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.po-ref-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--po-shadow-md);
    border-color: var(--po-red);
}
.po-ref-card__img {
    aspect-ratio: 4/3;
    background: var(--po-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.po-ref-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--po-transition-slow);
}
.po-ref-card:hover .po-ref-card__img img { transform: scale(1.06); }
.po-ref-card__body {
    padding: 18px 20px;
    border-top: 3px solid var(--po-red);
}
.po-ref-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--po-dark);
    margin: 0 0 4px;
}
.po-ref-card__cat {
    font-size: 12px;
    color: var(--po-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ============================================================
   CARD - Document / Gallery
   ============================================================ */
.po-doc-card,
.po-gallery-card {
    display: block;
    background: #fff;
    border-radius: var(--po-radius);
    overflow: hidden;
    border: 1px solid var(--po-border);
    transition: var(--po-transition);
    position: relative;
    aspect-ratio: 4/3;
}
.po-doc-card:hover,
.po-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--po-shadow-md);
}
.po-doc-card img,
.po-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--po-transition-slow);
}
.po-doc-card:hover img,
.po-gallery-card:hover img { transform: scale(1.08); }
.po-doc-card__overlay,
.po-gallery-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(227,6,19,0.85) 100%);
    opacity: 0;
    transition: var(--po-transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}
.po-doc-card:hover .po-doc-card__overlay,
.po-gallery-card:hover .po-gallery-card__overlay { opacity: 1; }
.po-doc-card__icon,
.po-gallery-card__icon {
    width: 48px;
    height: 48px;
    background: #fff;
    color: var(--po-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: translateY(20px);
    transition: var(--po-transition);
}
.po-doc-card:hover .po-doc-card__icon,
.po-gallery-card:hover .po-gallery-card__icon { transform: translateY(0); }

/* ============================================================
   CARD - News (Basında Biz)
   ============================================================ */
.po-news-card {
    background: #fff;
    border-radius: var(--po-radius-lg);
    overflow: hidden;
    border: 1px solid var(--po-border);
    transition: var(--po-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.po-news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--po-shadow-md);
    border-color: transparent;
    text-decoration: none;
}
.po-news-card__img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--po-bg-alt);
    position: relative;
}
.po-news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--po-transition-slow);
}
.po-news-card:hover .po-news-card__img img { transform: scale(1.06); }
.po-news-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--po-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: var(--po-radius-pill);
}
.po-news-card__body {
    padding: 22px 22px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.po-news-card__meta {
    font-size: 12px;
    color: var(--po-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.po-news-card__meta i { color: var(--po-red); }
.po-news-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--po-dark);
    line-height: 1.4;
    margin: 0 0 16px;
    flex-grow: 1;
}
.po-news-card__link {
    color: var(--po-red);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.po-news-card:hover .po-news-card__link i { transform: translateX(4px); }

/* ============================================================
   PRODUCT CARDS (Petrol Ofisi Madeni Yağ kategorileri)
   PO-style large dark cards with centered title + bottom arrow
   ============================================================ */
.po-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.po-product-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    background: var(--po-bg-soft);
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border: 1px solid var(--po-border);
}
.po-product-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: transform 0.6s ease;
}
.po-product-card:hover .po-product-card__bg {
    transform: scale(1.06);
}
/* Subtle gradient at the bottom only — for text legibility, no global darkening */
.po-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
    transition: var(--po-transition);
}
.po-product-card:hover::before {
    background: linear-gradient(180deg, rgba(227, 6, 19, 0) 35%, rgba(179, 4, 16, 0.75) 100%);
}
.po-product-card__icon { display: none; }
.po-product-card__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 18px;
    text-align: center;
}
.po-product-card__title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}
.po-product-card__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1.5px solid rgba(255, 255, 255, 0.30);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--po-transition);
}
.po-product-card:hover .po-product-card__arrow {
    background: #fff;
    color: var(--po-red);
    border-color: #fff;
    transform: translateX(6px);
}
@media (max-width: 991px) {
    .po-product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .po-product-card__title { font-size: 15px; }
    .po-product-card__icon { font-size: 90px; }
}
@media (max-width: 600px) {
    .po-product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .po-product-card__title { font-size: 14px; margin-bottom: 18px; }
    .po-product-card__icon { font-size: 70px; }
    .po-product-card__arrow { width: 32px; height: 32px; font-size: 12px; }
}

/* ============================================================
   VIDEO MODAL (custom lightbox — reliable replacement for magnific)
   ============================================================ */
.po-video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.po-video-modal.is-open {
    display: flex;
    opacity: 1;
}
.po-video-modal__inner {
    position: relative;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.po-video-modal.is-open .po-video-modal__inner { transform: scale(1); }
.po-video-modal__inner iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.po-video-modal__close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--po-red);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--po-transition);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.4);
}
.po-video-modal__close:hover {
    background: var(--po-red-dark);
    transform: scale(1.08) rotate(90deg);
}
@media (max-width: 600px) {
    .po-video-modal { padding: 14px; }
    .po-video-modal__close {
        top: -44px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}
body.po-modal-open { overflow: hidden; }

/* ============================================================
   VIDEO GRID (4-up Petrol Ofisi tanıtım videoları)
   ============================================================ */
/* CAROUSEL — single row, auto-scroll, hover pause; arrows hidden (dots-only) */
.po-video-carousel {
    position: relative;
    padding: 0;
    max-width: none;
    margin: 0;
}
.po-video-carousel__viewport {
    overflow: hidden;
    margin: 0 -8px;
    padding: 8px;
}
.po-video-carousel__track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.po-video-carousel__track > .po-video-card {
    flex: 0 0 calc((100% - 48px) / 3);
}
.po-video-carousel__btn { display: none !important; }

/* Pagination dots */
.po-video-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.po-video-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--po-border);
    border: none;
    cursor: pointer;
    transition: var(--po-transition);
    padding: 0;
}
.po-video-carousel__dot.is-active {
    background: var(--po-red);
    width: 28px;
    border-radius: 4px;
}

/* Tablet: 2 visible */
@media (max-width: 991px) {
    .po-video-carousel { padding: 0 50px; }
    .po-video-carousel__track > .po-video-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .po-video-carousel__btn { width: 42px; height: 42px; font-size: 14px; }
}
/* Mobile: 1 visible */
@media (max-width: 600px) {
    .po-video-carousel { padding: 0 40px; }
    .po-video-carousel__track > .po-video-card {
        flex: 0 0 100%;
    }
    .po-video-carousel__btn { width: 38px; height: 38px; font-size: 13px; }
}
.po-video-card {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--po-radius);
    overflow: hidden;
    box-shadow: var(--po-shadow-sm);
    border: 1px solid var(--po-border);
    background: var(--po-bg-alt);
    cursor: pointer;
    transition: var(--po-transition);
}
.po-video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--po-shadow-lg);
    text-decoration: none;
}
.po-video-card img,
.po-video-card__play,
.po-video-card__badge,
.po-video-card__title {
    pointer-events: none;
}
.po-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.po-video-card:hover img { transform: scale(1.06); }
.po-video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
    opacity: 0.85;
    transition: var(--po-transition);
    pointer-events: none;
}
.po-video-card:hover::after { opacity: 0.95; }
.po-video-card__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--po-red);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 24px rgba(227, 6, 19, 0.50), 0 0 0 0 rgba(227, 6, 19, 0.35);
    transition: var(--po-transition);
    z-index: 2;
    padding-left: 4px;
    animation: po-video-pulse 2.4s ease-out infinite;
}
.po-video-card:hover .po-video-card__play {
    transform: translate(-50%, -50%) scale(1.10);
    background: var(--po-red-dark);
    animation: none;
}
@keyframes po-video-pulse {
    0%   { box-shadow: 0 8px 24px rgba(227, 6, 19, 0.50), 0 0 0 0 rgba(227, 6, 19, 0.50); }
    70%  { box-shadow: 0 8px 24px rgba(227, 6, 19, 0.50), 0 0 0 18px rgba(227, 6, 19, 0); }
    100% { box-shadow: 0 8px 24px rgba(227, 6, 19, 0.50), 0 0 0 0 rgba(227, 6, 19, 0); }
}
.po-video-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 10px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}
.po-video-card__badge i { color: var(--po-red-light); font-size: 11px; }
.po-video-card__title {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    z-index: 2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 991px) {
    .po-video-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 480px) {
    .po-video-grid { grid-template-columns: 1fr; gap: 16px; }
    .po-video-card__play { width: 52px; height: 52px; font-size: 18px; }
}

/* ============================================================
   STATS COUNTER
   ============================================================ */
.po-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.po-stat {
    text-align: center;
    padding: 32px 16px;
    background: #fff;
    border-radius: var(--po-radius-lg);
    box-shadow: var(--po-shadow-sm);
    border: 1px solid var(--po-border);
    transition: var(--po-transition);
}
.po-stat:hover { transform: translateY(-6px); box-shadow: var(--po-shadow-md); }
.po-stat__num {
    font-size: 48px;
    font-weight: 800;
    color: var(--po-red);
    line-height: 1;
    margin: 0 0 8px;
    letter-spacing: -1px;
}
.po-stat__num-suffix {
    font-size: 28px;
    color: var(--po-red);
    margin-left: 2px;
}
.po-stat__label {
    font-size: 13px;
    color: var(--po-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
    margin: 0;
}
@media (max-width: 991px) {
    .po-stats { grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .po-stat { padding: 22px 10px; border-radius: 14px; }
    .po-stat__num { font-size: 32px; margin-bottom: 4px; }
    .po-stat__num-suffix { font-size: 18px; }
    .po-stat__label { font-size: 11px; letter-spacing: 0.4px; }
}
@media (max-width: 600px) {
    .po-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .po-stat { padding: 18px 10px; }
    .po-stat__num { font-size: 28px; }
    .po-stat__num-suffix { font-size: 16px; }
    .po-stat__label { font-size: 10.5px; }
}
@media (max-width: 380px) {
    .po-stat__num { font-size: 24px; }
    .po-stat__num-suffix { font-size: 14px; }
    .po-stat__label { font-size: 10px; }
}

/* ============================================================
   CTA BANNER (replaces get_consult_area)
   ============================================================ */
.get_consult_area {
    background: linear-gradient(135deg, var(--po-red-dark) 0%, var(--po-red) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.get_consult_area::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.get_consult_area .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.get_consult_area .pull-left,
.get_consult_area .pull-right {
    float: none !important;
}
.get_consult_area .pull-left h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.get_consult_area .submit_btn,
.get_consult_area a.submit_btn {
    display: inline-block;
    background: #fff;
    color: var(--po-red);
    padding: 16px 36px;
    border-radius: var(--po-radius-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    border: none;
    transition: var(--po-transition);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.get_consult_area .submit_btn:hover {
    background: var(--po-yellow);
    color: var(--po-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.20);
    text-decoration: none;
}
@media (max-width: 767px) {
    .get_consult_area { padding: 40px 0; text-align: center; }
    .get_consult_area .container { justify-content: center; }
    .get_consult_area .pull-left h3 { font-size: 22px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.po-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--po-radius-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--po-transition);
    cursor: pointer;
}
.po-btn--primary {
    background: var(--po-red);
    color: #fff;
    box-shadow: 0 6px 20px rgba(227,6,19,0.30);
}
.po-btn--primary:hover {
    background: var(--po-red-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(227,6,19,0.40);
    text-decoration: none;
}
.po-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.po-btn--outline:hover {
    background: #fff;
    color: var(--po-red);
    border-color: #fff;
    text-decoration: none;
}
.po-btn--ghost {
    background: transparent;
    color: var(--po-red);
    border-color: var(--po-red);
}
.po-btn--ghost:hover {
    background: var(--po-red);
    color: #fff;
    text-decoration: none;
}

/* ============================================================
   CONTENT WRAPPER (Hakkımızda, Vizyon, Misyon)
   ============================================================ */
.our_about_area {
    padding: 70px 0;
    background: #fff;
}
.our_about_left_content h3 {
    font-size: 18px;
    line-height: 1.7;
    color: var(--po-text);
    font-weight: 500;
    margin: 0 0 18px;
}
.our_about_left_content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--po-text);
    margin: 0 0 16px;
}
.our_about_left_content p.lead {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--po-dark);
    padding-left: 16px;
    border-left: 3px solid var(--po-red);
    margin-bottom: 22px;
}
.our_about_left_content h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--po-red);
    margin: 32px 0 16px;
    padding-left: 18px;
    border-left: 4px solid var(--po-red);
    line-height: 1.2;
}
.our_about_left_content ul {
    list-style: none;
    padding-left: 0;
}
.our_about_left_content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--po-text);
    line-height: 1.6;
}
.our_about_left_content ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--po-red);
    font-weight: 700;
}
.our_about_image {
    background: var(--po-bg-alt);
    border-radius: var(--po-radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--po-shadow-sm);
    border: 1px solid var(--po-border);
}
.our_about_image img {
    border-radius: var(--po-radius);
    max-width: 100%;
}

/* Page section_title left aligned */
.our_about_area .section_title {
    text-align: left;
    margin-bottom: 30px;
}
.our_about_area .section_title h2 { display: block; }
.our_about_area .section_title h2::after {
    margin: 16px 0 0;
}

/* ============================================================
   FORM (Contact)
   ============================================================ */
.contact_us_area {
    padding: 70px 0;
    background: var(--po-bg-alt);
}
.contact_us_inner .section_title {
    text-align: center;
    margin-bottom: 40px;
}
.contact_us_form {
    background: #fff;
    padding: 32px;
    border-radius: var(--po-radius-lg);
    box-shadow: var(--po-shadow-sm);
    border: 1px solid var(--po-border);
}
.contact_us_form .form-control {
    border: 1.5px solid var(--po-border);
    border-radius: var(--po-radius);
    padding: 14px 18px;
    font-size: 15px;
    height: auto;
    box-shadow: none;
    transition: var(--po-transition);
}
.contact_us_form .form-control:focus {
    border-color: var(--po-red);
    box-shadow: 0 0 0 3px rgba(227,6,19,0.12);
    outline: none;
}
.contact_us_form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}
.contact_us_form .green_submit_btn {
    background: var(--po-red);
    color: #fff;
    border: none;
    border-radius: var(--po-radius-pill);
    padding: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--po-transition);
    box-shadow: 0 6px 20px rgba(227,6,19,0.25);
}
.contact_us_form .green_submit_btn:hover {
    background: var(--po-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(227,6,19,0.35);
}

.c_details_item {
    background: #fff;
    border-radius: var(--po-radius);
    padding: 24px;
    box-shadow: var(--po-shadow-sm);
    border: 1px solid var(--po-border);
    transition: var(--po-transition);
    margin-top: 24px;
    height: calc(100% - 24px);
}
.c_details_item:hover {
    transform: translateY(-4px);
    box-shadow: var(--po-shadow-md);
    border-color: var(--po-red);
}
.c_details_item .media-left i {
    width: 48px;
    height: 48px;
    background: var(--po-red);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.c_details_item .media-body { padding-left: 16px; vertical-align: middle; }
.c_details_item .media-body p,
.c_details_item .media-body a {
    color: var(--po-text);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
}
.c_details_item .media-body a:hover { color: var(--po-red); }

/* Map iframe responsive */
iframe[src*="google.com/maps"] {
    width: 100% !important;
    height: 420px !important;
    border: none;
    display: block;
    filter: grayscale(0.2);
}

/* ============================================================
   CONTACT — Corporate hero card + map section
   ============================================================ */
.po-contact-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, var(--po-red-dark) 0%, var(--po-red) 100%);
    color: #fff;
    border-radius: var(--po-radius-lg);
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(227, 6, 19, 0.18);
    margin-bottom: 36px;
    position: relative;
}
.po-contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}
.po-contact-hero__brand {
    padding: 38px 38px;
    position: relative;
    z-index: 1;
}
.po-contact-hero__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--po-yellow);
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: var(--po-radius-pill);
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.08);
}
.po-contact-hero__brand h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -0.4px;
}
.po-contact-hero__brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}
.po-contact-hero__quick {
    background: rgba(0, 0, 0, 0.18);
    padding: 32px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.po-contact-hero__cta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    text-decoration: none;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--po-radius);
    transition: var(--po-transition);
}
.po-contact-hero__cta:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.po-contact-hero__cta i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--po-red);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}
.po-contact-hero__cta span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.po-contact-hero__cta small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    opacity: 0.75;
    font-weight: 600;
}
.po-contact-hero__cta strong {
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .po-contact-hero { grid-template-columns: 1fr; }
    .po-contact-hero__brand { padding: 28px 24px 20px; }
    .po-contact-hero__quick { padding: 20px 24px 28px; }
    .po-contact-hero__brand h3 { font-size: 22px; }
}

/* Make c_details_item header label visible (h4) */
.c_details_item .media-body h4 {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--po-muted);
    margin: 0 0 6px !important;
    padding: 0 !important;
}
.c_details_item .media-body p,
.c_details_item .media-body a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--po-dark);
    line-height: 1.5;
}
.c_details_item .media-body a:hover { color: var(--po-red); }

/* Full-width map section */
.po-contact-map {
    margin: 0;
    padding: 0;
    background: var(--po-bg-alt);
}
.po-contact-map iframe {
    display: block;
    width: 100%;
    height: 460px;
    border: 0;
}
@media (max-width: 767px) {
    .po-contact-map iframe { height: 360px; }
}

/* ============================================================
   SUB-PAGE CARDS — basın, galeri, referans (business_box_item)
   ============================================================ */
.service_area {
    padding: 60px 0 70px !important;
    background: #fff;
}
.service_area .section_title {
    padding-bottom: 0 !important;
    margin-bottom: 40px;
}
.service_item_inner {
    margin-bottom: 0 !important;
    overflow: visible;
}
.service_item_inner .business_box_item {
    margin-bottom: 30px !important;
}

.business_box_item {
    background: #fff;
    border-radius: var(--po-radius-lg);
    overflow: hidden;
    box-shadow: var(--po-shadow-sm);
    border: 1px solid var(--po-border);
    transition: var(--po-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.business_box_item:hover {
    transform: translateY(-6px);
    box-shadow: var(--po-shadow-md);
    border-color: rgba(227, 6, 19, 0.25);
}
.business_box_item .business_image {
    display: block;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 11;
    background: var(--po-bg-soft);
}
.business_box_item .business_image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.55) 0%, rgba(179, 4, 16, 0.65) 100%);
    opacity: 0;
    transform: none;
    transition: opacity 0.35s ease;
    z-index: 1;
}
.business_box_item .business_image::after {
    content: '\f065';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--po-red);
    border-radius: 50%;
    font-size: 18px;
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.business_box_item:hover .business_image::before { opacity: 1; }
.business_box_item:hover .business_image::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.business_box_item .business_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.business_box_item:hover .business_image img {
    transform: scale(1.06);
}

.business_box_item .business_text {
    padding: 20px 22px 22px;
    border-left: none;
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}
.business_box_item .business_text::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px;
    height: 28px;
    background: var(--po-red);
    border-radius: 0 2px 2px 0;
}
.business_box_item .business_text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--po-dark);
    line-height: 1.45;
    margin: 0;
    text-transform: none;
    letter-spacing: -0.1px;
    transition: var(--po-transition);
    padding-bottom: 0;
}
.business_box_item:hover .business_text h4,
.business_box_item .business_text h4:hover {
    color: var(--po-red);
}
.business_box_item .business_text h5 {
    font-size: 13px;
    color: var(--po-muted);
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Referanslarımız — logo grid (no overlay icon) */
.business_box_item.po-ref,
body[class*="referans"] .business_box_item {
    align-items: center;
    padding: 14px;
}
body[class*="referans"] .business_box_item .business_image::before,
body[class*="referans"] .business_box_item .business_image::after {
    display: none;
}
body[class*="referans"] .business_box_item .business_image {
    aspect-ratio: 4 / 3;
    background: #fff;
}
body[class*="referans"] .business_box_item .business_image img {
    object-fit: contain;
    padding: 12px;
}

/* ============================================================
   BELGELER — document cards (vertical posters / certificates)
   ============================================================ */
.po-docs__grid { margin: 0 -12px; }
.po-docs__grid > [class*="col-"] { padding: 12px; }
.po-doc-card {
    background: #fff;
    border: 1px solid var(--po-border);
    border-radius: var(--po-radius-lg);
    overflow: hidden;
    box-shadow: var(--po-shadow-sm);
    transition: var(--po-transition);
    height: 100%;
    position: relative;
}
.po-doc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--po-red) 0%, var(--po-red-dark) 100%);
    transform: scaleX(0.4);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}
.po-doc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--po-shadow-md);
    border-color: rgba(227, 6, 19, 0.3);
}
.po-doc-card:hover::before { transform: scaleX(1); }

.po-doc-card__media {
    display: block;
    position: relative;
    aspect-ratio: 3 / 4;
    background: #FAFAFA;
    overflow: hidden;
    text-decoration: none;
}
.po-doc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.po-doc-card:hover .po-doc-card__media img {
    transform: scale(1.04);
}
.po-doc-card__zoom {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--po-red);
    color: #fff;
    font-size: 15px;
    box-shadow: 0 8px 18px rgba(227, 6, 19, 0.30);
    opacity: 0;
    transform: translateY(8px);
    transition: var(--po-transition);
    z-index: 3;
    pointer-events: none;
}
.po-doc-card:hover .po-doc-card__zoom {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 575px) {
    .po-doc-card__media { aspect-ratio: 4 / 5; }
    .po-doc-card__media img { padding: 12px; }
}

/* ============================================================
   YÖNETİM (workers_item) — clean executive cards
   ============================================================ */
.our_workers_area {
    padding: 60px 0 70px;
    background: var(--po-bg-alt);
}
.our_workers_area .section_title {
    margin-bottom: 40px;
}
/* Use Bootstrap row default (no flex) so col-md-offset-* works for centering */
.d_team_inner {
    display: block;
}
.d_team_inner::after { content: ''; display: table; clear: both; }
.d_team_inner--lead { margin-bottom: 8px; }

.workers_item {
    background: #fff !important;
    border: 1px solid var(--po-border) !important;
    border-radius: var(--po-radius-lg) !important;
    box-shadow: var(--po-shadow-sm) !important;
    padding: 32px 24px 28px !important;
    margin-bottom: 24px;
    text-align: center;
    transition: var(--po-transition);
    position: relative;
    overflow: hidden;
    /* Flex column so icon (::before) sits at top, text below */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100% - 24px);
}
/* Top red accent bar */
.workers_item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--po-red) 0%, var(--po-red-dark) 100%);
    transform: scaleX(0.4);
    transform-origin: left;
    transition: transform 0.4s ease;
}
/* Icon avatar — ::before so it appears BEFORE children (above the text) */
.workers_item::before {
    content: '\f007';
    font-family: 'FontAwesome';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.10) 0%, rgba(227, 6, 19, 0.04) 100%);
    color: var(--po-red);
    border-radius: 50%;
    font-size: 28px;
    text-align: center;
    transition: var(--po-transition);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.workers_item:hover {
    transform: translateY(-4px);
    box-shadow: var(--po-shadow-md) !important;
    border-color: rgba(227, 6, 19, 0.3) !important;
}
.workers_item:hover::after { transform: scaleX(1); }
.workers_item:hover::before {
    background: linear-gradient(135deg, var(--po-red) 0%, var(--po-red-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 22px rgba(227, 6, 19, 0.32);
    transform: scale(1.05);
}
.workers_item h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--po-dark) !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
    letter-spacing: -0.2px;
    text-transform: none;
    line-height: 1.2;
}
.workers_item h6 {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--po-red) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4;
}

/* Lead card — Şaban Kaptan, slightly larger / featured */
.workers_item--lead {
    padding: 38px 30px 32px !important;
    background: linear-gradient(180deg, #fff 0%, #FFFAFA 100%) !important;
    border-color: rgba(227, 6, 19, 0.25) !important;
    box-shadow: 0 12px 36px rgba(227, 6, 19, 0.10) !important;
}
.workers_item--lead::before {
    width: 88px;
    height: 88px;
    font-size: 34px;
    background: linear-gradient(135deg, var(--po-red) 0%, var(--po-red-dark) 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(227, 6, 19, 0.30);
    margin-bottom: 18px;
}
.workers_item--lead::after {
    transform: scaleX(1);
    height: 5px;
}
.workers_item--lead h4 {
    font-size: 22px !important;
    margin-bottom: 8px !important;
}
.workers_item--lead h6 {
    font-size: 12px !important;
    letter-spacing: 1.8px;
}
.workers_item--lead:hover::before {
    transform: scale(1.05);
    box-shadow: 0 14px 32px rgba(227, 6, 19, 0.40);
}

/* ============================================================
   FOOTER (yeni nesil — next-gen modern)
   ============================================================ */

/* Pre-footer gradient CTA strip */
.po-prefooter {
    background: linear-gradient(135deg, var(--po-blue-dark) 0%, var(--po-blue) 50%, var(--po-red-dark) 130%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.po-prefooter::before {
    content: '';
    position: absolute;
    top: 0; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.10) 0%, transparent 70%);
    pointer-events: none;
}
.po-prefooter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.po-prefooter__text { color: #fff; flex: 1 1 360px; }
.po-prefooter__text h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}
.po-prefooter__text p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.po-prefooter__contacts {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.po-prefooter__contact {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--po-transition);
}
.po-prefooter__contact:hover { color: var(--po-yellow); text-decoration: none; }
.po-prefooter__contact i {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.20);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--po-yellow);
}
.po-prefooter__contact small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.2;
    margin-bottom: 2px;
}
.po-prefooter__contact strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}
@media (max-width: 767px) {
    .po-prefooter { padding: 32px 0; }
    .po-prefooter__inner { flex-direction: column; align-items: flex-start; gap: 22px; }
    .po-prefooter__text h3 { font-size: 22px; }
    .po-prefooter__contacts { width: 100%; gap: 18px; }
}

.footer_area {
    background:
        radial-gradient(ellipse at top right, rgba(227, 6, 19, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(0, 61, 122, 0.20) 0%, transparent 50%),
        linear-gradient(180deg, #0f1115 0%, #06080b 100%);
    color: rgba(255,255,255,0.75);
    position: relative;
    overflow: hidden;
}
.footer_area::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--po-red), transparent);
    opacity: 0.6;
}
.footer_widget {
    padding: 70px 0 40px;
}
.footer_widget .f_widget {
    margin-bottom: 30px;
}
.footer_widget .about_widget img {
    max-width: 160px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}
.footer_widget .about_widget p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 18px;
}
.footer_widget .f_r_link {
    color: var(--po-red-light);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.footer_widget .f_r_link:hover { color: var(--po-yellow); }
.footer_widget .f_social {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    gap: 8px;
}
.footer_widget .f_social li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: block;
    font-size: 14px;
    transition: var(--po-transition);
}
.footer_widget .f_social li a:hover {
    background: var(--po-red);
    transform: translateY(-3px);
}
.footer_widget .f_title h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 22px;
    padding-bottom: 14px;
    position: relative;
}
.footer_widget .f_title h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 3px;
    background: var(--po-red);
    border-radius: 2px;
}
.footer_widget .link_widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer_widget .link_widget ul li {
    margin-bottom: 10px;
}
.footer_widget .link_widget ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: var(--po-transition);
}
.footer_widget .link_widget ul li a:hover {
    color: var(--po-red-light);
    padding-left: 6px;
}
.footer_widget .contact_widget .media {
    margin-bottom: 16px;
}
.footer_widget .contact_widget .media-left i {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(227,6,19,0.15);
    color: var(--po-red-light);
    border-radius: 10px;
    font-size: 14px;
}
.footer_widget .contact_widget .media-body { padding-left: 14px; }
.footer_widget .contact_widget .media-body h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0 0 4px;
}
.footer_widget .contact_widget .media-body p,
.footer_widget .contact_widget .media-body a {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    word-break: break-word;
}
.footer_widget .contact_widget .media-body a:hover { color: var(--po-red-light); }

.footer_copyright {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
}
.footer_copyright_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer_copyright_inner .pull-left,
.footer_copyright_inner .pull-right { float: none !important; }
.footer_copyright_inner p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin: 0;
}
.footer_copyright_inner h4 {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin: 0;
    font-weight: 400;
}
.footer_copyright_inner h4 a {
    color: var(--po-red-light);
    font-weight: 600;
}
@media (max-width: 600px) {
    .footer_copyright_inner { justify-content: center; text-align: center; }
}

/* ============================================================
   HABERLER VE DUYURULAR
   ============================================================ */
.po-news { background: var(--po-bg-alt); }
.po-news__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}
.po-news__item {
    display: flex;
    align-items: stretch;
    gap: 24px;
    padding: 18px 28px 18px 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--po-border);
    text-decoration: none;
    transition: var(--po-transition);
    position: relative;
    overflow: hidden;
}
.po-news__item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--po-red);
    transition: var(--po-transition);
}
.po-news__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
    border-color: transparent;
    text-decoration: none;
}
.po-news__item:hover::before { width: 4px; }

.po-news__thumb {
    flex: 0 0 130px;
    width: 130px;
    height: 88px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: var(--po-bg-soft);
}
.po-news__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.po-news__item:hover .po-news__thumb img { transform: scale(1.08); }

.po-news__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.po-news__tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--po-red);
    background: rgba(227, 6, 19, 0.08);
    padding: 4px 10px;
    border-radius: 999px;
    line-height: 1;
}
.po-news__title {
    margin: 0;
    color: var(--po-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.1px;
    transition: var(--po-transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.po-news__item:hover .po-news__title { color: var(--po-red); }

.po-news__meta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-left: 16px;
    border-left: 1px solid var(--po-border);
}
.po-news__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    color: var(--po-text);
    text-align: center;
    min-width: 60px;
}
.po-news__day {
    font-size: 26px;
    font-weight: 800;
    color: var(--po-blue-dark);
    letter-spacing: -0.5px;
}
.po-news__month {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--po-red);
    margin-top: 4px;
}
.po-news__year {
    font-size: 10px;
    color: var(--po-muted);
    margin-top: 2px;
    letter-spacing: 0.4px;
}
.po-news__arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--po-bg-soft);
    color: var(--po-blue-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--po-transition);
}
.po-news__item:hover .po-news__arrow {
    background: var(--po-red);
    color: #fff;
    transform: translateX(4px) rotate(-8deg);
}

.po-news__cta {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}
.po-news__all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--po-red);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: var(--po-shadow-red);
    transition: var(--po-transition);
}
.po-news__all:hover {
    background: var(--po-red-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(227, 6, 19, 0.40);
    text-decoration: none;
}
.po-news__all i { transition: transform 0.3s ease; }
.po-news__all:hover i { transform: translateX(4px); }

/* ===== HABERLER — mobile redesign (compact list-row) ===== */
@media (max-width: 767px) {
    .po-news__list { gap: 12px; }
    .po-news__item {
        padding: 12px;
        gap: 12px;
        align-items: center;
        border-radius: 14px;
        flex-wrap: nowrap;
    }
    .po-news__item::before { display: none; }
    .po-news__thumb {
        flex: 0 0 76px;
        width: 76px;
        height: 76px;
        border-radius: 10px;
    }
    .po-news__body {
        gap: 5px;
        flex: 1 1 auto;
        min-width: 0;
    }
    .po-news__tag {
        font-size: 9.5px;
        padding: 3px 8px;
        letter-spacing: 0.5px;
    }
    .po-news__title {
        font-size: 13.5px;
        line-height: 1.35;
        font-weight: 700;
        -webkit-line-clamp: 2;
    }
    /* Compact inline date as a tiny meta line under title */
    .po-news__meta {
        position: absolute;
        right: 14px;
        top: 14px;
        flex: 0 0 auto;
        padding: 0;
        border: none;
        gap: 0;
    }
    .po-news__item { position: relative; padding-right: 50px; }
    .po-news__date {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-end;
        line-height: 1;
        gap: 0;
        min-width: 0;
        text-align: right;
    }
    .po-news__day {
        font-size: 18px;
        font-weight: 800;
        color: var(--po-blue-dark);
        letter-spacing: -0.3px;
    }
    .po-news__month {
        font-size: 9.5px;
        color: var(--po-red);
        margin-top: 2px;
        letter-spacing: 0.3px;
    }
    .po-news__year { display: none; }
    .po-news__arrow { display: none; }
    .po-news__cta { margin-top: 24px; }
    .po-news__all { padding: 12px 22px; font-size: 13px; }
}
@media (max-width: 380px) {
    .po-news__thumb { flex: 0 0 64px; width: 64px; height: 64px; }
    .po-news__title { font-size: 12.5px; }
    .po-news__day { font-size: 16px; }
}

/* ============================================================
   FOOTER — premium kurumsal (sıfırdan, yeni tasarım)
   ============================================================ */
/* Layer 1 — Top CTA banner (red, bold) */
.po-footer__cta {
    background:
        radial-gradient(ellipse at 80% 50%, rgba(255, 215, 0, 0.10) 0%, transparent 50%),
        linear-gradient(135deg, var(--po-red) 0%, var(--po-red-dark) 100%);
    padding: 56px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.po-footer__cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.po-footer__cta-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.po-footer__cta-eyebrow {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.30);
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.po-footer__cta-headline {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.15;
    letter-spacing: -0.6px;
}
.po-footer__cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}
.po-footer__cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}
.po-footer__cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    transition: var(--po-transition);
}
.po-footer__cta-phone:hover { color: var(--po-yellow); text-decoration: none; }
.po-footer__cta-phone i {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.po-footer__cta-phone div { display: flex; flex-direction: column; line-height: 1.1; }
.po-footer__cta-phone small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.8;
    margin-bottom: 4px;
    font-weight: 600;
}
.po-footer__cta-phone strong {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.4px;
}
.po-footer__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: var(--po-red) !important;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    text-decoration: none;
    transition: var(--po-transition);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);
}
.po-footer__cta-btn:hover {
    background: var(--po-yellow);
    color: var(--po-dark) !important;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.30);
}
@media (max-width: 991px) {
    .po-footer__cta { padding: 44px 0; }
    .po-footer__cta-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .po-footer__cta-actions { align-items: center; }
    .po-footer__cta-text { margin: 0 auto; }
    .po-footer__cta-headline { font-size: 30px; }
}
@media (max-width: 600px) {
    .po-footer__cta-headline { font-size: 24px; }
    .po-footer__cta-phone i { width: 48px; height: 48px; font-size: 18px; }
    .po-footer__cta-phone strong { font-size: 22px; }
}

/* OLD red footer base — overridden below with dark corporate */
.po-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    background: #0E1116;
    overflow: hidden;
}
.po-footer::before {
    /* Subtle red glow top-left */
    content: '';
    position: absolute;
    top: -200px; left: -120px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.10) 0%, transparent 60%);
    pointer-events: none;
}
.po-footer::after {
    /* Faint dot grid texture */
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}
.po-footer__top {
    padding: 70px 0 50px;
    position: relative;
    z-index: 1;
}
.po-footer__grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.po-footer__col {
    flex: 0 1 auto;
    min-width: 0;
}
@media (max-width: 991px) {
    .po-footer__grid {
        gap: 38px 30px;
    }
    .po-footer__brand { flex: 1 1 100%; max-width: none; }
    .po-footer__col { flex: 1 1 calc(33.333% - 30px); }
}
@media (max-width: 767px) {
    .po-footer__grid { gap: 0; }
    .po-footer__brand { flex: 1 1 100%; padding: 0 0 28px; margin-bottom: 8px; border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
    .po-footer__col {
        flex: 1 1 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }
    .po-footer__col .po-footer__title {
        margin: 0;
        padding: 18px 0;
        cursor: pointer;
        position: relative;
        user-select: none;
    }
    .po-footer__col .po-footer__title::after {
        content: '\f107';
        font-family: 'FontAwesome';
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        color: var(--po-red);
        background: none;
        width: auto;
        height: auto;
        bottom: auto;
        left: auto;
        transition: transform 0.3s ease;
    }
    .po-footer__col.is-open .po-footer__title::after { transform: translateY(-50%) rotate(180deg); }
    .po-footer__col .po-footer__title { padding-bottom: 18px; }
    .po-footer__col .po-footer__list,
    .po-footer__col .po-footer__contact {
        max-height: 0;
        overflow: hidden;
        margin: 0;
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding: 0;
    }
    .po-footer__col.is-open .po-footer__list,
    .po-footer__col.is-open .po-footer__contact {
        max-height: 600px;
        padding: 0 0 22px;
    }
    .po-footer__top { padding: 40px 0 12px; }
}

/* Brand column */
.po-footer__brand {
    flex: 0 1 360px;
    max-width: 360px;
    padding-right: 10px;
}
.po-footer__logo {
    max-width: 170px;
    margin-bottom: 18px;
    display: block;
}
.po-footer__tagline {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin: 0 0 10px;
    line-height: 1.35;
}
.po-footer__about {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0 0 18px;
}
.po-footer__cobrand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    margin: 0;
}
.po-footer__cobrand-label {
    color: var(--po-text);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1;
    padding-right: 12px;
    border-right: 1px solid var(--po-border);
}
.po-footer__cobrand-logo {
    height: 24px;
    width: auto;
    display: block;
}
.po-footer__follow {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.po-footer__follow-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.po-footer__follow-emoji {
    display: inline-block;
    font-size: 18px;
    transform-origin: 70% 100%;
    animation: po-wave 2.6s ease-in-out infinite;
}
@keyframes po-wave {
    0%, 65%, 100% { transform: rotate(0deg); }
    7%   { transform: rotate(14deg); }
    14%  { transform: rotate(-8deg); }
    21%  { transform: rotate(14deg); }
    28%  { transform: rotate(-4deg); }
    35%  { transform: rotate(10deg); }
    42%  { transform: rotate(0deg); }
}
.po-footer__social {
    display: flex;
    gap: 10px;
}
.po-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--po-transition);
    text-decoration: none;
}
.po-footer__social a:hover {
    background: var(--po-red);
    border-color: var(--po-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(227, 6, 19, 0.40);
    text-decoration: none;
}

/* Column titles */
.po-footer__title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 22px;
    padding-bottom: 14px;
    position: relative;
}
.po-footer__title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px;
    height: 2px;
    background: var(--po-red);
}

/* Link list */
.po-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.po-footer__list li { margin-bottom: 12px; }
.po-footer__list a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    text-decoration: none;
    transition: var(--po-transition);
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
}
.po-footer__list a::before {
    content: '\f105';
    font-family: 'FontAwesome';
    margin-right: 8px;
    color: var(--po-red);
    font-size: 12px;
    transition: var(--po-transition);
    transform: translateX(-2px);
    opacity: 0.6;
}
.po-footer__list a:hover {
    color: #fff;
    text-decoration: none;
}
.po-footer__list a:hover::before {
    transform: translateX(2px);
    opacity: 1;
}

/* Contact column */
.po-footer__contact { display: flex; flex-direction: column; gap: 18px; }
.po-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.po-footer__contact-item i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    background: rgba(227, 6, 19, 0.15);
    color: var(--po-red-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--po-transition);
}
.po-footer__contact-item:hover i {
    background: var(--po-red);
    color: #fff;
}
.po-footer__contact-item div { flex: 1; min-width: 0; }
.po-footer__contact-item small {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
    font-weight: 600;
}
.po-footer__contact-item span,
.po-footer__contact-item a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    word-break: break-word;
    transition: var(--po-transition);
    display: block;
}
.po-footer__contact-item a:hover { color: var(--po-yellow); text-decoration: none; }

/* TOP STRIP — phone + PO bayi rozeti */
.po-footer__strip {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    z-index: 1;
}
.po-footer__strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.po-footer__phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    text-decoration: none;
    transition: var(--po-transition);
}
.po-footer__phone:hover { color: var(--po-yellow); text-decoration: none; }
.po-footer__phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1.5px solid rgba(255, 255, 255, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}
.po-footer__phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.po-footer__phone-text small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 600;
    margin-bottom: 4px;
}
.po-footer__phone-text strong {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.4px;
}
.po-footer__brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #fff;
    color: var(--po-red);
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.20);
}
.po-footer__brand-pill i { color: var(--po-red); font-size: 14px; }
@media (max-width: 600px) {
    .po-footer__strip-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
    .po-footer__phone-text strong { font-size: 22px; }
}

/* APP STRIP — full-width banner above footer columns */
.po-footer__app-strip {
    padding: 30px 0;
    background: linear-gradient(95deg, rgba(227, 6, 19, 0.12) 0%, rgba(227, 6, 19, 0.04) 50%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    z-index: 1;
}
.po-footer__app-strip-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}
.po-footer__app-info {
    display: flex;
    align-items: center;
    gap: 18px;
}
.po-footer__app-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    background: linear-gradient(135deg, var(--po-red) 0%, var(--po-red-dark) 100%);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.30);
}
.po-footer__app-info-text { display: flex; flex-direction: column; line-height: 1.25; }
.po-footer__app-info-text strong {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}
.po-footer__app-info-text span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}
.po-footer__app-strip .po-footer__apps {
    flex-direction: row;
    gap: 10px;
}
@media (max-width: 991px) {
    .po-footer__app-strip-inner { grid-template-columns: 1fr; gap: 22px; }
    .po-footer__app-strip .po-footer__apps { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 600px) {
    .po-footer__app-strip { padding: 26px 0; }
    .po-footer__app-info { gap: 14px; }
    .po-footer__app-icon { width: 48px; height: 48px; flex-basis: 48px; font-size: 20px; }
    .po-footer__app-info-text strong { font-size: 15px; }
    .po-footer__app-strip .po-footer__apps { flex-direction: column; }
    .po-footer__app-strip .po-footer__apps .po-app-badge { width: 100%; }
}

/* OLD app block in brand column — disable */
.po-footer__app-block {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.po-footer__app-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 16px;
}
.po-footer__apps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.po-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff !important;
    padding: 9px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transition: var(--po-transition);
    min-width: 170px;
}
.po-app-badge:hover {
    background: #1a1a1a;
    border-color: var(--po-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.30);
    text-decoration: none;
    color: #fff !important;
}
.po-app-badge i {
    font-size: 26px;
    color: #fff;
    line-height: 1;
}
.po-app-badge span { display: flex; flex-direction: column; line-height: 1.1; }
.po-app-badge small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3px;
    font-weight: 500;
}
.po-app-badge strong {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* Bottom bar */
.po-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 22px 0;
    background: rgba(0, 0, 0, 0.30);
    position: relative;
    z-index: 1;
}
.po-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.po-footer__bottom .po-footer__follow { margin: 0; }
.po-footer__bottom .po-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}
.po-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 18px 8px 14px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    text-decoration: none;
}
.po-footer__badge-logo {
    height: 28px;
    width: auto;
    display: block;
}
.po-footer__badge-text {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--po-text);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding-left: 12px;
    border-left: 1.5px solid rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.po-footer__badge-text strong {
    color: var(--po-red);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.8px;
}
.po-footer__copy {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    margin: 0;
}
.po-footer__copy strong { color: #fff; }
@media (max-width: 600px) {
    .po-footer__bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 14px;
    }
}

/* ============================================================
   FAB STACK — mobile-app style floating actions
   ============================================================ */
.po-fab {
    position: fixed;
    right: 20px;
    bottom: 92px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.po-fab__btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    background: var(--po-blue-dark);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18), 0 2px 4px rgba(0, 0, 0, 0.10);
    transition: var(--po-transition);
    border: none;
    cursor: pointer;
}
.po-fab__btn:hover,
.po-fab__btn:focus-visible {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    outline: none;
}
.po-fab__btn--tel { background: var(--po-red); }
.po-fab__btn--tel:hover { background: var(--po-red-dark); }
.po-fab__btn--mail { background: var(--po-blue); }
.po-fab__btn--mail:hover { background: var(--po-blue-dark); }
.po-fab__btn--ig {
    background: linear-gradient(135deg, var(--po-red) 0%, var(--po-red-dark) 100%);
}
.po-fab__btn--ig:hover {
    background: linear-gradient(135deg, var(--po-red-light) 0%, var(--po-red) 100%);
}

/* Hover label (tooltip) */
.po-fab__tip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--po-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.20);
}
.po-fab__tip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--po-dark);
}
.po-fab__btn:hover .po-fab__tip,
.po-fab__btn:focus-visible .po-fab__tip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Pulse ring on call button */
.po-fab__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--po-red);
    animation: po-fab-pulse 1.8s ease-out infinite;
    pointer-events: none;
}
@keyframes po-fab-pulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Scroll-to-top — at the bottom, separate from FAB stack */
.po-fab__top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 997;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--po-transition);
}
.po-fab__top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.po-fab__top:hover,
.po-fab__top:focus-visible {
    background: var(--po-red);
    transform: translateY(-3px);
    outline: none;
}

/* Tablet */
@media (max-width: 991px) {
    .po-fab { right: 18px; bottom: 84px; gap: 10px; }
    .po-fab__top { right: 18px; bottom: 18px; }
}
/* Phone */
@media (max-width: 600px) {
    .po-fab { right: 14px; bottom: 72px; gap: 10px; }
    .po-fab__btn { width: 48px; height: 48px; font-size: 17px; }
    .po-fab__top {
        right: 14px;
        bottom: 14px;
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
    .po-fab__tip { display: none; }
}

/* ============================================================
   MANAGER / WELCOME AREA (index)
   ============================================================ */
.manager_area {
    padding: 70px 0;
    background: var(--po-bg-alt);
}
.manager_area .our_about_left_content {
    background: #fff;
    padding: 50px;
    border-radius: var(--po-radius-lg);
    box-shadow: var(--po-shadow-sm);
    border: 1px solid var(--po-border);
    border-left: 6px solid var(--po-red);
}
.manager_area .section_title {
    text-align: left;
    margin-bottom: 24px;
}
.manager_area .section_title h3 {
    font-size: 24px;
    color: var(--po-red);
    margin: 0 0 8px;
    font-weight: 700;
}
.manager_area .section_title h3:nth-child(2) {
    color: var(--po-dark);
    font-size: 18px;
    font-weight: 500;
}
.manager_area h3 {
    font-size: 17px;
    line-height: 1.7;
    color: var(--po-text);
    font-weight: 500;
    margin: 0 0 16px;
}
.manager_area p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--po-text);
    margin: 0 0 14px;
}
.manager_area p:last-child {
    color: var(--po-red);
    font-weight: 700;
    font-size: 16px;
    margin-top: 24px;
}
@media (max-width: 767px) {
    .manager_area .our_about_left_content { padding: 28px 22px; }
}

/* ============================================================
   VIDEO BUSINESS (index intro)
   ============================================================ */
.video_business_area {
    padding: 70px 0;
}
.video_business_inner {
    position: relative;
    border-radius: var(--po-radius-lg);
    overflow: hidden;
    box-shadow: var(--po-shadow-md);
}
.video_business_inner img {
    width: 100%;
    display: block;
    transition: var(--po-transition-slow);
}
.video_business_inner:hover img { transform: scale(1.04); }
.video_business_inner a.popup-youtube {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    background: var(--po-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 32px rgba(227,6,19,0.45);
    animation: pulse-red 2s ease-in-out infinite;
}
.video_business_inner a.popup-youtube:hover {
    background: var(--po-red-dark);
    transform: translate(-50%, -50%) scale(1.08);
    color: #fff;
}
@keyframes pulse-red {
    0%, 100% { box-shadow: 0 8px 32px rgba(227,6,19,0.45), 0 0 0 0 rgba(227,6,19,0.4); }
    50% { box-shadow: 0 8px 32px rgba(227,6,19,0.45), 0 0 0 20px rgba(227,6,19,0); }
}
.video_business_content {
    padding-left: 30px;
}
.video_business_content h4 {
    color: var(--po-red);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0 0 10px;
}
.video_business_content h5 {
    font-size: 32px;
    font-weight: 700;
    color: var(--po-dark);
    margin: 0 0 18px;
    line-height: 1.2;
}
.video_business_content p {
    font-size: 15px;
    color: var(--po-text);
    line-height: 1.7;
    margin: 0 0 24px;
}
.video_business_content .main_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--po-red);
    color: #fff;
    border-radius: var(--po-radius-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(227,6,19,0.30);
    transition: var(--po-transition);
}
.video_business_content .main_btn:hover {
    background: var(--po-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(227,6,19,0.40);
    color: #fff;
    text-decoration: none;
}
@media (max-width: 991px) {
    .video_business_content { padding-left: 0; padding-top: 30px; }
    .video_business_content h5 { font-size: 26px; }
}

/* ============================================================
   PO BADGE (Petrol Ofisi Yetkili Bayisi)
   ============================================================ */
.po-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(227,6,19,0.08);
    color: var(--po-red);
    border: 2px solid var(--po-red);
    border-radius: var(--po-radius-pill);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}
.po-badge i { font-size: 16px; }

/* ============================================================
   SECTION HEAD VARIANT (left aligned)
   ============================================================ */
.po-section-head {
    margin-bottom: 50px;
}
.po-section-head--center { text-align: center; }
.po-section-head__eyebrow {
    color: var(--po-red);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px;
    display: block;
}
.po-section-head h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--po-dark);
    margin: 0 0 14px;
    line-height: 1.15;
    letter-spacing: -0.6px;
}
.po-section-head p {
    font-size: 16px;
    color: var(--po-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 720px;
}
.po-section-head--center p { margin: 0 auto; }
@media (max-width: 767px) {
    .po-section-head h2 { font-size: 28px; }
    .section_title h2 { font-size: 26px; }
}

/* ============================================================
   SERVICE PAGE: hero + content
   ============================================================ */
.po-service-detail__intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--po-text);
    font-weight: 500;
    padding: 22px 26px;
    background: var(--po-bg-alt);
    border-radius: var(--po-radius);
    border-left: 4px solid var(--po-red);
    margin: 0 0 24px;
}

/* ============================================================
   MOBILE NAVBAR — slide-in panel from RIGHT (override Bootstrap 3)
   ============================================================ */
.po-mnav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: none;
}
.po-mnav__head,
.main_header_area .po-mnav__head { display: none !important; }

@media (max-width: 991px) {
    /* Hide red top-bar entirely on mobile/tablet */
    .main_header_area .header_top { display: none; }

    /* Toggle button — visible & branded */
    .navbar-default .navbar-toggle {
        margin: 14px 15px;
        border: 1.5px solid var(--po-border) !important;
        border-radius: 8px;
        padding: 8px 12px;
        background: #fff !important;
    }
    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background: var(--po-bg-alt) !important;
    }
    .main_header_area.color_menu .navbar-default .navbar-toggle .icon-bar {
        background: var(--po-dark) !important;
        height: 2px;
        width: 22px;
    }

    /* Backdrop visible when panel open */
    .po-mnav__backdrop { display: block; }
    body.po-mnav-open .po-mnav__backdrop { opacity: 1; visibility: visible; }
    body.po-mnav-open { overflow: hidden; }

    /* Header creates a stacking context (z-index:100) that traps the slide-in
       panel below the backdrop. Lift the header above the backdrop while the
       menu is open so the panel renders on top, sharp and unblurred. */
    body.po-mnav-open .main_header_area { z-index: 1060 !important; }

    /* Slide-in panel — override Bootstrap collapse */
    .main_header_area .header_menu .navbar.navbar-default .navbar-collapse {
        position: fixed !important;
        top: 0;
        right: 0;
        bottom: 0;
        width: 88vw;
        max-width: 340px;
        height: 100vh;
        max-height: none;
        background: #fff;
        box-shadow: -16px 0 40px rgba(0, 0, 0, 0.18);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        overflow-y: auto;
        overflow-x: hidden;
        border-top: none;
        padding: 0;
        display: block !important;
        visibility: visible;
        height: 100dvh;
    }
    /* Custom JS toggles `.is-open` */
    .main_header_area .header_menu .navbar.navbar-default .navbar-collapse.is-open {
        transform: translateX(0);
    }

    /* Panel header (logo + close) */
    .po-mnav__head,
    .main_header_area .po-mnav__head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid var(--po-border);
        background: linear-gradient(95deg, var(--po-red-dark) 0%, var(--po-red) 100%);
    }
    .po-mnav__logo img {
        max-height: 36px;
        width: auto;
        filter: brightness(0) invert(1);
    }
    .po-mnav__close {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.32);
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: var(--po-transition);
    }
    .po-mnav__close:hover { background: rgba(255, 255, 255, 0.30); }

    /* Nav list */
    .main_header_area .header_menu .navbar.navbar-default .nav.navbar-nav {
        background: #fff;
        margin: 0;
        padding: 8px 0 32px;
        float: none;
        width: 100%;
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li {
        float: none;
        width: 100%;
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li > a {
        line-height: 1.4;
        padding: 16px 24px;
        border-bottom: 1px solid var(--po-border);
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li > a::after { display: none; }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul.dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        background: var(--po-bg-alt) !important;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        margin: 0;
        padding: 4px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul.dropdown-menu::before,
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul.dropdown-menu::after { display: none; }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu.open ul.dropdown-menu {
        max-height: 600px;
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul.dropdown-menu li a {
        background: transparent !important;
        color: var(--po-text) !important;
        padding: 12px 24px 12px 44px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
        font-size: 13px !important;
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul.dropdown-menu li a:hover {
        color: var(--po-red) !important;
        background: #fff !important;
    }
    /* Caret indicator on dropdown parents */
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu.dropdown > a.dropdown-toggle::after {
        content: '\f107';
        font-family: 'FontAwesome';
        color: var(--po-muted);
        transition: transform 0.25s ease;
        font-weight: normal;
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu.open > a.dropdown-toggle::after {
        transform: rotate(180deg);
        color: var(--po-red);
    }
}

/* ============================================================
   MOBILE NAVBAR — corporate refinement (icons, footer, polish)
   ============================================================ */
.po-mnav__footer { display: none; }
/* Mobile-only nav element — hidden on desktop nav */
@media (min-width: 992px) {
    .po-mnav__icon,
    .po-mnav__head { display: none !important; }
}

@media (max-width: 991px) {
    /* Override parent navbar's text-align:right which leaks into the panel */
    .main_header_area .header_menu .navbar.navbar-default .navbar-collapse,
    .main_header_area .header_menu .navbar.navbar-default .navbar-collapse * {
        text-align: left;
    }

    /* Panel: deeper shadow, off-white edge for premium feel */
    .main_header_area .header_menu .navbar.navbar-default .navbar-collapse {
        width: 86vw;
        max-width: 360px;
        background: #FAFAFA;
        box-shadow: -24px 0 70px rgba(0, 0, 0, 0.22);
    }

    /* Header: deep red corporate gradient — sticky so it stays visible while scrolling */
    .po-mnav__head,
    .main_header_area .po-mnav__head {
        padding: 18px 22px;
        background:
            linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%),
            linear-gradient(180deg, var(--po-red) 0%, var(--po-red-dark) 100%);
        position: sticky;
        top: 0;
        z-index: 5;
    }
    .po-mnav__head::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 18px 18px;
        pointer-events: none;
        opacity: 0.6;
    }
    .po-mnav__head::after {
        content: '';
        position: absolute;
        left: 0; right: 0; bottom: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--po-yellow) 0%, var(--po-red-light) 50%, var(--po-yellow) 100%);
        opacity: 0.85;
    }
    .po-mnav__logo { position: relative; z-index: 1; }
    .po-mnav__logo img { max-height: 38px; }
    .po-mnav__close {
        position: relative;
        z-index: 1;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.22) !important;
    }

    /* Nav list */
    .main_header_area .header_menu .navbar.navbar-default .nav.navbar-nav {
        padding: 14px 0 0;
        background: #FAFAFA;
    }

    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li > a {
        text-transform: none;
        font-weight: 600;
        font-size: 14.5px;
        letter-spacing: 0.1px;
        color: var(--po-dark);
        padding: 14px 22px;
        gap: 14px;
        justify-content: flex-start;
        position: relative;
        background: transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    /* Icon: clean white circle with red icon — corporate */
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li > a .po-mnav__icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        border: 1.5px solid var(--po-border);
        color: var(--po-red);
        font-size: 15px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: var(--po-transition);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }
    /* Caret slides to far right */
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu.dropdown > a.dropdown-toggle::after {
        margin-left: auto;
        font-size: 13px;
        color: var(--po-muted);
    }
    /* Hover / open: icon fills red */
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li:hover > a .po-mnav__icon,
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li.open > a .po-mnav__icon {
        background: var(--po-red);
        border-color: var(--po-red);
        color: #fff;
        box-shadow: 0 8px 18px rgba(227, 6, 19, 0.28);
    }
    /* Open dropdown: red left accent bar */
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li.open > a {
        background: linear-gradient(90deg, rgba(227, 6, 19, 0.045) 0%, transparent 70%);
        box-shadow: inset 3px 0 0 var(--po-red);
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav > li.open > a.dropdown-toggle::after {
        color: var(--po-red);
    }

    /* Submenu container: indented card */
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul.dropdown-menu {
        background: var(--po-bg-alt) !important;
        margin: 0 14px;
        border-radius: 10px;
        border-left: none;
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu.open ul.dropdown-menu {
        max-height: 700px;
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul.dropdown-menu li a {
        padding: 11px 16px !important;
        font-size: 13px !important;
        color: var(--po-text) !important;
        font-weight: 500 !important;
        text-transform: none !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul.dropdown-menu li:last-child a {
        border-bottom: none !important;
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul.dropdown-menu li a::before {
        font-family: 'FontAwesome';
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        font-size: 12px;
        color: var(--po-red);
        opacity: 0.85;
        flex-shrink: 0;
        transition: var(--po-transition);
    }
    .color_menu .header_menu .navbar.navbar-default .nav.navbar-nav li.submenu ul.dropdown-menu li a:hover::before {
        opacity: 1;
        transform: translateX(2px);
    }

    /* Submenu icon mapping (by href) */
    .nav.navbar-nav ul.dropdown-menu li a[href$="hakkimizda.html"]::before        { content: '\f05a'; } /* info-circle */
    .nav.navbar-nav ul.dropdown-menu li a[href$="vizyonumuz.html"]::before        { content: '\f06e'; } /* eye */
    .nav.navbar-nav ul.dropdown-menu li a[href$="misyonumuz.html"]::before        { content: '\f140'; } /* bullseye */
    .nav.navbar-nav ul.dropdown-menu li a[href$="yonetim.html"]::before           { content: '\f0c0'; } /* users */
    .nav.navbar-nav ul.dropdown-menu li a[href$="basindabiz.html"]::before        { content: '\f1ea'; } /* newspaper-o */
    .nav.navbar-nav ul.dropdown-menu li a[href$="referanslarimiz.html"]::before   { content: '\f2b5'; } /* handshake-o */
    .nav.navbar-nav ul.dropdown-menu li a[href$="belgeler.html"]::before          { content: '\f0f6'; } /* file-text-o */
    .nav.navbar-nav ul.dropdown-menu li a[href$="galeri.html"]::before            { content: '\f03e'; } /* picture-o */
    .nav.navbar-nav ul.dropdown-menu li a[href$="akaryakit_hizmetleri.html"]::before { content: '\f043'; } /* tint */
    .nav.navbar-nav ul.dropdown-menu li a[href$="lojistik_hizmetleri.html"]::before  { content: '\f0d1'; } /* truck */
    .nav.navbar-nav ul.dropdown-menu li a[href$="madeni_yag.html"]::before        { content: '\f0c3'; } /* flask */
    .nav.navbar-nav ul.dropdown-menu li a[href$="dokme_cimento.html"]::before     { content: '\f1b2'; } /* cube */
    .nav.navbar-nav ul.dropdown-menu li a[href$="otomotiv_yedek_parca.html"]::before { content: '\f275'; } /* industry */

    /* ---- Mobile menu footer (contact + social) — premium dark, compact ---- */
    .po-mnav__footer {
        display: block;
        padding: 22px 22px 26px;
        margin-top: 18px;
        background: linear-gradient(180deg, #1F1F1F 0%, var(--po-dark) 100%);
        position: relative;
        color: rgba(255, 255, 255, 0.85);
    }
    .po-mnav__footer::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--po-red) 50%, transparent 100%);
    }
    .po-mnav__footer-title {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.5);
        margin: 0 0 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .po-mnav__footer-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, transparent 100%);
    }
    /* Always add space before any non-first footer title */
    .po-mnav__footer > .po-mnav__footer-title:not(:first-child) { margin-top: 22px; }
    .po-mnav__contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .po-mnav__contact li { margin-bottom: 10px; }
    .po-mnav__contact li:last-child { margin-bottom: 0; }
    .po-mnav__contact a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.92);
        font-size: 12.5px;
        font-weight: 500;
        text-decoration: none;
        line-height: 1.4;
        transition: var(--po-transition);
    }
    .po-mnav__contact a i {
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(227, 6, 19, 0.18);
        border: 1px solid rgba(227, 6, 19, 0.35);
        color: #fff;
        font-size: 12px;
        flex-shrink: 0;
        transition: var(--po-transition);
    }
    .po-mnav__contact a:hover { color: #fff; }
    .po-mnav__contact a:hover i {
        background: var(--po-red);
        border-color: var(--po-red);
        box-shadow: 0 6px 14px rgba(227, 6, 19, 0.4);
    }
    .po-mnav__social { display: flex; gap: 10px; }
    .po-mnav__social a {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--po-red) 0%, var(--po-red-dark) 100%);
        border: none;
        color: #fff;
        font-size: 16px;
        text-decoration: none;
        transition: var(--po-transition);
        box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
    }
    .po-mnav__social a:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(227, 6, 19, 0.5);
    }
}

/* ============================================================
   GLOBAL RESPONSIVE TUNING
   ============================================================ */
/* Symmetric vertical rhythm — same padding for all .po-section instances */
.po-section + .po-section { border-top: 0; }
.po-section-head { margin-bottom: 40px; }

@media (max-width: 1199px) {
    :root { --po-section-pad: 70px; }
}
@media (max-width: 991px) {
    :root { --po-section-pad: 56px; }
    .our_about_image { margin-top: 30px; }
    .po-section-head { margin-bottom: 32px; }
}
@media (max-width: 767px) {
    :root { --po-section-pad: 44px; }
    .our_about_area,
    .manager_area,
    .video_business_area,
    .contact_us_area { padding: 44px 0; }
    iframe[src*="google.com/maps"] { height: 320px !important; }
    .po-section-head { margin-bottom: 26px; }
    .po-section-head h2 { font-size: 26px; }
    .section_title h2 { font-size: 24px; }
    .section_title { margin-bottom: 28px; }
    .video_business_content h5 { font-size: 22px; }
    .manager_area .section_title h3 { font-size: 18px; }
    .footer_widget { padding: 44px 0 20px; }
    .container { padding-left: 18px; padding-right: 18px; }
}
@media (max-width: 480px) {
    :root { --po-section-pad: 36px; }
    .po-section-head h2 { font-size: 22px; }
    .po-section-head__eyebrow { font-size: 11px; }
    .po-section-head p { font-size: 13.5px; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.po-mb-0 { margin-bottom: 0 !important; }
.po-mb-2 { margin-bottom: 16px !important; }
.po-mb-3 { margin-bottom: 24px !important; }
.po-mb-4 { margin-bottom: 32px !important; }
.po-mt-3 { margin-top: 24px !important; }
.po-text-center { text-align: center !important; }
.po-text-red { color: var(--po-red) !important; }
.po-bg-alt { background: var(--po-bg-alt) !important; }

/* Banner_link breadcrumb body extra spacing */
.banner_link + section,
.banner_link + .container,
.banner_link + div { padding-top: 20px; }

/* Color menu spacing fix */
.color_menu + section,
.color_menu + div { margin-top: 0; }
