/*
Theme Name: Polifilm Theme
Theme URI: https://polifilm.com.tr
Author: Fury Developer
Author URI: https://polifilm.com.tr
Description: Polifilm kurumsal web sitesi teması - Sürdürülebilir ambalaj çözümleri
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: polifilm
Tags: corporate, business, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ========================================
   CSS RESET & VARIABLES
======================================== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
    /* Primary Palette - Orange Dominant */
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --orange-300: #fdba74;
    --orange-400: #fb923c;
    --orange-500: #f26522;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --orange-800: #9a3412;
    --orange-900: #7c2d12;

    /* Neutral */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    /* Accent */
    --green-500: #7ab51d;
    --green-400: #a3d65c;

    /* Functional */
    --white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.18);
    --shadow-orange: 0 8px 30px rgba(242,101,34,.25);
    --transition-fast: .2s cubic-bezier(.4,0,.2,1);
    --transition-base: .35s cubic-bezier(.4,0,.2,1);
    --transition-slow: .6s cubic-bezier(.4,0,.2,1);

    /* Layout */
    --header-height: 80px;
    --topbar-height: 36px;
    --container-max: 1280px;
    --section-gap: 120px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-700);
    background: var(--white);
    overflow-x: clip;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; }

/* ========================================
   CONTAINER & LAYOUT
======================================== */
.pf-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.pf-container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   SECURITY TOP BAR
======================================== */
.pf-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-height);
    background: var(--slate-950);
    z-index: 99999;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(242,101,34,.15);
}

body.admin-bar .pf-topbar { top: 32px; }
@media (max-width: 782px) { body.admin-bar .pf-topbar { top: 46px; } }

.pf-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.pf-topbar__security {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
    letter-spacing: .5px;
}

.pf-topbar__shield {
    width: 14px;
    height: 14px;
    color: var(--green-400);
    filter: drop-shadow(0 0 6px rgba(163,214,92,.6));
    animation: pf-pulse 2.5s ease-in-out infinite;
}

@keyframes pf-pulse {
    0%,100% { filter: drop-shadow(0 0 4px rgba(163,214,92,.4)); }
    50% { filter: drop-shadow(0 0 10px rgba(163,214,92,.8)); }
}

.pf-topbar__dot {
    width: 6px;
    height: 6px;
    background: var(--green-400);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(163,214,92,.6);
    animation: pf-blink 2s ease-in-out infinite;
}

@keyframes pf-blink {
    0%,100% { opacity: 1; }
    50% { opacity: .4; }
}

.pf-topbar__status {
    color: var(--green-400);
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pf-topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Body offset */
body { padding-top: var(--topbar-height); }
body.admin-bar { padding-top: calc(32px + var(--topbar-height)); }
@media (max-width: 782px) { body.admin-bar { padding-top: calc(46px + var(--topbar-height)); } }

/* ========================================
   HEADER - Split Navigation with Center Logo
======================================== */
.pf-header {
    position: sticky;
    top: var(--topbar-height);
    z-index: 99998;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,.06);
    height: var(--header-height);
    transition: var(--transition-base);
}

body.admin-bar .pf-header { top: calc(32px + var(--topbar-height)); }
@media (max-width: 782px) { body.admin-bar .pf-header { top: calc(46px + var(--topbar-height)); } }

.pf-header.scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow-md);
    height: 70px;
}

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

/* Logo */
.pf-logo {
    flex-shrink: 0;
}

.pf-logo img {
    height: 44px;
    width: auto;
    transition: var(--transition-fast);
}

.pf-header.scrolled .pf-logo img { height: 38px; }

/* Navigation */
.pf-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    gap: 4px;
}

.pf-nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.pf-nav__list > li {
    position: relative;
}

.pf-nav__list > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    white-space: nowrap;
    letter-spacing: -.01em;
}

.pf-nav__list > li > a:hover {
    color: var(--orange-500);
    background: var(--orange-50);
}

.pf-nav__list > li.current-menu-item > a,
.pf-nav__list > li.current-menu-parent > a,
.pf-nav__list > li.current-menu-ancestor > a {
    color: var(--white);
    background: var(--orange-500);
    box-shadow: var(--shadow-orange);
}

/* Dropdown arrow */
.pf-nav__list > li.menu-item-has-children > a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: var(--transition-fast);
}

.pf-nav__list > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Dropdown / Submenu */
.pf-nav .sub-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    padding: 8px;
    z-index: 99996;
}

.pf-nav .sub-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--slate-100);
    border-top: 1px solid var(--slate-100);
    border-radius: 3px;
}

.pf-nav__list > li:hover > .sub-menu,
.pf-nav__list > li.submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pf-nav .sub-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.pf-nav .sub-menu li a:hover {
    color: var(--orange-500);
    background: var(--orange-50);
}

/* Header Right Actions */
.pf-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pf-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--slate-100);
    color: var(--slate-600);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.pf-search-btn:hover {
    background: var(--orange-50);
    color: var(--orange-500);
}

/* Language Dropdown */
.pf-lang {
    position: relative;
}

.pf-lang__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--slate-100);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: var(--slate-600);
    letter-spacing: .5px;
    transition: var(--transition-fast);
}

.pf-lang__toggle:hover {
    background: var(--orange-50);
    color: var(--orange-500);
}

.pf-lang__toggle svg {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

.pf-lang__toggle i {
    font-size: 8px;
    transition: var(--transition-fast);
}

.pf-lang.open .pf-lang__toggle i {
    transform: rotate(180deg);
}

.pf-lang__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: var(--transition-fast);
    z-index: 100;
    min-width: 110px;
    padding: 6px;
    overflow: hidden;
}

.pf-lang.open .pf-lang__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pf-lang__option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--slate-600);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.pf-lang__option:hover {
    background: var(--orange-50);
    color: var(--orange-500);
}

.pf-lang__option svg {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

/* Mobile Toggle */
.pf-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 100000;
    -webkit-tap-highlight-color: transparent;
    background: none;
    border: none;
}

.pf-mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--slate-800);
    border-radius: 2px;
    transition: var(--transition-fast);
    display: block;
}

.pf-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.pf-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.pf-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO - Geometric Split Design
======================================== */
.pf-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--slate-950);
}

.pf-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pf-hero__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity .8s ease;
}

.pf-hero__bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.pf-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(135deg, rgba(15,23,42,.85) 0%, rgba(15,23,42,.5) 40%, rgba(242,101,34,.15) 100%),
        linear-gradient(to top, rgba(15,23,42,.9) 0%, transparent 40%);
}

/* Geometric Decoration */
.pf-hero__geo {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.pf-hero__geo--1 {
    top: 10%;
    right: 8%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(242,101,34,.2);
    border-radius: 50%;
    animation: pf-spin 25s linear infinite;
}

.pf-hero__geo--2 {
    bottom: 15%;
    right: 15%;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(242,101,34,.15);
    transform: rotate(45deg);
    animation: pf-float 8s ease-in-out infinite;
}

.pf-hero__geo--3 {
    top: 30%;
    right: 25%;
    width: 12px;
    height: 12px;
    background: var(--orange-500);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(242,101,34,.5);
    animation: pf-float 6s ease-in-out infinite reverse;
}

@keyframes pf-spin {
    to { transform: rotate(360deg); }
}

@keyframes pf-float {
    0%,100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-30px) rotate(45deg); }
}

/* Hero Content */
.pf-hero__content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 60px 0;
}

.pf-hero__slide {
    display: none;
    animation: pf-slideIn .8s ease forwards;
}

.pf-hero__slide.active { display: block; }

@keyframes pf-slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.pf-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(242,101,34,.15);
    border: 1px solid rgba(242,101,34,.3);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--orange-300);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.pf-hero__tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--orange-500);
    border-radius: 50%;
    animation: pf-blink 1.5s infinite;
}

.pf-hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 700px;
    letter-spacing: -.03em;
}

.pf-hero__title span {
    color: var(--orange-400);
    position: relative;
}

.pf-hero__title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--orange-500);
    opacity: .3;
    border-radius: 3px;
}

.pf-hero__desc {
    font-size: clamp(16px, 1.5vw, 20px);
    color: rgba(255,255,255,.7);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.pf-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Slider Navigation */
.pf-hero__nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.pf-hero__dot {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    padding: 0;
}

.pf-hero__dot.active {
    background: var(--orange-500);
    width: 60px;
    box-shadow: 0 0 20px rgba(242,101,34,.5);
}

.pf-hero__dot:hover {
    background: rgba(255,255,255,.5);
}

/* Scroll Indicator */
.pf-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.4);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.pf-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange-500), transparent);
    animation: pf-scrollLine 2s ease-in-out infinite;
}

@keyframes pf-scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   BUTTONS
======================================== */
.pf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
    letter-spacing: .02em;
    white-space: nowrap;
}

.pf-btn--primary {
    background: var(--orange-500);
    color: var(--white);
    border-color: var(--orange-500);
    box-shadow: var(--shadow-orange);
}

.pf-btn--primary:hover {
    background: var(--orange-600);
    border-color: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(242,101,34,.35);
}

.pf-btn--outline {
    background: transparent;
    color: var(--slate-700);
    border-color: var(--slate-300);
}

.pf-btn--outline:hover {
    border-color: var(--orange-500);
    color: var(--orange-500);
    transform: translateY(-2px);
}

.pf-btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.3);
}

.pf-btn--outline-light:hover {
    border-color: var(--orange-400);
    color: var(--orange-400);
    background: rgba(242,101,34,.1);
}

.pf-btn--ghost {
    background: rgba(255,255,255,.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    border-color: rgba(255,255,255,.15);
}

.pf-btn--ghost:hover {
    background: rgba(255,255,255,.2);
    transform: translateY(-2px);
}

.pf-btn i { font-size: 12px; transition: var(--transition-fast); }
.pf-btn:hover i { transform: translateX(3px); }

/* ========================================
   SECTION TITLE SYSTEM
======================================== */
.pf-section-header {
    margin-bottom: 60px;
}

.pf-section-header--center { text-align: center; }

.pf-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange-500);
    margin-bottom: 16px;
}

.pf-section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange-500);
    border-radius: 1px;
}

.pf-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.15;
    letter-spacing: -.03em;
}

.pf-section-title span { color: var(--orange-500); }

.pf-section-desc {
    font-size: 17px;
    color: var(--slate-500);
    max-width: 560px;
    margin-top: 16px;
    line-height: 1.7;
}

.pf-section-header--center .pf-section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   PARTNERSHIP / CTA BANNER
======================================== */
.pf-cta-banner {
    position: relative;
    padding: 80px 0;
    background: var(--slate-950);
    overflow: hidden;
}

.pf-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242,101,34,.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pf-cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.pf-cta-banner__text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em;
    line-height: 1.2;
}

.pf-cta-banner__text p {
    color: var(--slate-400);
    margin-top: 12px;
    font-size: 16px;
}

.pf-cta-banner__actions {
    flex-shrink: 0;
}

/* Orange stripe accent */
.pf-cta-banner__stripe {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--orange-500), var(--green-500));
}

/* ========================================
   PRODUCTS SECTION - Bento Grid
======================================== */
.pf-products {
    padding: var(--section-gap) 0;
    background: var(--slate-50);
    position: relative;
}

/* Diagonal Top */
.pf-products::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--slate-50);
    transform: skewY(-2deg);
    z-index: 1;
}

.pf-products__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.pf-products__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.pf-products__image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.pf-products__image:hover .pf-products__image-bg {
    transform: scale(1.05);
}

.pf-products__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.7) 0%, transparent 50%);
    z-index: 2;
}

.pf-products__image-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    z-index: 3;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    color: var(--white);
}

.pf-products__image-badge h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.pf-products__image-badge p {
    font-size: 13px;
    opacity: .8;
    margin-top: 4px;
}

.pf-products__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.pf-products__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pf-product-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
    cursor: pointer;
}

.pf-product-card:hover {
    border-color: var(--orange-300);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.pf-product-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--orange-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-500);
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.pf-product-card:hover .pf-product-card__icon {
    background: var(--orange-500);
    color: var(--white);
}

.pf-product-card__text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 2px;
}

.pf-product-card__text p {
    font-size: 13px;
    color: var(--slate-500);
}

.pf-product-card__arrow {
    margin-left: auto;
    color: var(--slate-300);
    transition: var(--transition-fast);
}

.pf-product-card:hover .pf-product-card__arrow {
    color: var(--orange-500);
    transform: translateX(4px);
}

/* ========================================
   QUALITY SECTION - Overlap Card Design
======================================== */
.pf-quality {
    padding: var(--section-gap) 0;
    position: relative;
    overflow: hidden;
}

.pf-quality__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.pf-quality__content {
    position: relative;
    z-index: 2;
}

.pf-quality__content p {
    font-size: 16px;
    color: var(--slate-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.pf-quality__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.pf-quality__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
}

.pf-quality__feature i {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: var(--orange-50);
    color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.pf-quality__visual {
    position: relative;
}

.pf-quality__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.pf-quality__image img,
.pf-quality__image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
}

/* Floating stats card */
.pf-quality__stat {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-xl);
    z-index: 3;
    border-left: 4px solid var(--orange-500);
}

.pf-quality__stat h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--orange-500);
}

.pf-quality__stat p {
    font-size: 13px;
    color: var(--slate-500);
    font-weight: 600;
    margin: 0 !important;
}

/* Decorative ring */
.pf-quality__ring {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    border: 3px solid var(--orange-100);
    border-radius: 50%;
    z-index: 1;
}

/* ========================================
   CAREER SECTION
======================================== */
.pf-career {
    padding: var(--section-gap) 0;
    background: var(--slate-950);
    position: relative;
    overflow: hidden;
}

.pf-career::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(242,101,34,.08) 100%);
    pointer-events: none;
}

.pf-career__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.pf-career__content .pf-section-label { color: var(--orange-400); }
.pf-career__content .pf-section-label::before { background: var(--orange-400); }
.pf-career__content .pf-section-title { color: var(--white); }

.pf-career__content p {
    font-size: 16px;
    color: var(--slate-400);
    line-height: 1.8;
    margin: 20px 0 32px;
}

.pf-career__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.pf-career__image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.pf-career__image:hover .pf-career__image-bg {
    transform: scale(1.05);
}

.pf-career__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(242,101,34,.2) 0%, transparent 50%);
}

/* ========================================
   FOOTER - Modern Mega Footer
======================================== */
.pf-footer {
    background: var(--slate-900);
    color: var(--slate-400);
    position: relative;
}

.pf-footer__top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.pf-footer__brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.pf-footer__logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .8;
}

.pf-footer__social {
    display: flex;
    gap: 8px;
}

.pf-footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.06);
    color: var(--slate-400);
    transition: var(--transition-fast);
}

.pf-footer__social a:hover {
    background: var(--orange-500);
    color: var(--white);
    transform: translateY(-2px);
}

.pf-footer__widgets {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.pf-footer__widget h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pf-footer__widget ul li {
    margin-bottom: 10px;
}

.pf-footer__widget ul li a {
    font-size: 14px;
    color: var(--slate-400);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pf-footer__widget ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--orange-500);
    transition: var(--transition-fast);
}

.pf-footer__widget ul li a:hover {
    color: var(--orange-400);
}

.pf-footer__widget ul li a:hover::before {
    width: 12px;
}

.pf-footer__widget.contact-widget h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-300);
    margin-bottom: 8px;
    margin-top: 20px;
}

.pf-footer__widget.contact-widget h5:first-of-type { margin-top: 0; }

.pf-footer__widget.contact-widget p {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 4px;
}

.pf-footer__widget.contact-widget a {
    font-size: 13px;
    color: var(--slate-400);
}

.pf-footer__widget.contact-widget a:hover { color: var(--orange-400); }

/* Footer Bottom */
.pf-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

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

.pf-footer__links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-500);
}

.pf-footer__links a:hover { color: var(--orange-400); }

.pf-footer__links .pf-footer__blog { color: var(--orange-400); }

.pf-footer__copy {
    font-size: 12px;
    color: var(--slate-600);
    text-align: right;
}

.pf-footer__copy a { color: var(--orange-400); }

.pf-footer__protection {
    display: block;
    margin-top: 6px;
    color: var(--green-400);
    font-size: 11px;
}

/* ========================================
   SEARCH OVERLAY - Modern Fullscreen
======================================== */
.pf-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.95);
    backdrop-filter: blur(30px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.pf-search-overlay.active { display: flex; }

.pf-search-overlay form {
    width: 100%;
    max-width: 700px;
    padding: 0 24px;
}

.pf-search-overlay input {
    width: 100%;
    padding: 24px 0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
    background: transparent;
    border: none;
    border-bottom: 3px solid rgba(255,255,255,.15);
    color: var(--white);
    transition: var(--transition-fast);
}

.pf-search-overlay input:focus {
    border-bottom-color: var(--orange-500);
}

.pf-search-overlay input::placeholder { color: rgba(255,255,255,.25); }

.pf-search-overlay__close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,.1);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.pf-search-overlay__close:hover {
    background: var(--orange-500);
    transform: rotate(90deg);
}

/* ========================================
   PAGE HERO - Parallax Banner
======================================== */
.pf-page-hero {
    position: relative;
    height: 420px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: clip;
    isolation: isolate;
}

.pf-page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 1;
}

.pf-page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(135deg, rgba(15,23,42,.8) 0%, rgba(15,23,42,.5) 50%, rgba(242,101,34,.1) 100%),
        linear-gradient(to top, rgba(15,23,42,.9) 0%, transparent 40%);
}

.pf-page-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    width: 100%;
}

.pf-page-hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.03em;
    margin-bottom: 12px;
}

.pf-page-hero__title span { color: var(--orange-400); }

.pf-page-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.pf-page-hero__meta {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pf-page-hero__meta-item {
    font-size: 14px;
    color: rgba(255,255,255,.6);
}

.pf-page-hero__meta-item i {
    margin-right: 6px;
    color: var(--orange-400);
}

.pf-page-hero__meta-item a {
    color: rgba(255,255,255,.6);
}

.pf-page-hero__meta-item a:hover { color: var(--orange-400); }

/* ========================================
   PAGE CONTENT
======================================== */
.pf-page-content {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.pf-page-content p { margin-bottom: 20px; line-height: 1.8; }

.pf-entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-700);
}

.pf-entry-content h2, .pf-entry-content h3, .pf-entry-content h4 {
    font-family: 'Poppins', sans-serif;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--slate-900);
    letter-spacing: -.02em;
}

.pf-entry-content p { margin-bottom: 20px; }
.pf-entry-content ul, .pf-entry-content ol { margin-left: 30px; margin-bottom: 20px; list-style: disc; }
.pf-entry-content li { margin-bottom: 10px; }
.pf-entry-content img { max-width: 100%; height: auto; border-radius: var(--radius-lg); }
.pf-entry-content a { color: var(--orange-500); font-weight: 600; }
.pf-entry-content a:hover { text-decoration: underline; }

/* ========================================
   BLOG POSTS GRID
======================================== */
.pf-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pf-post-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
}

.pf-post-card:hover {
    border-color: var(--orange-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.pf-post-card__thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.pf-post-card__body { padding: 28px; }

.pf-post-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.02em;
}

.pf-post-card__title a { color: var(--slate-800); }
.pf-post-card__title a:hover { color: var(--orange-500); }

.pf-post-card__meta {
    font-size: 13px;
    color: var(--slate-400);
    margin-bottom: 12px;
}

.pf-post-card__excerpt {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ========================================
   SEARCH RESULTS
======================================== */
.pf-search-results { margin-bottom: 48px; }

.pf-search-item {
    display: flex;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--slate-200);
}

.pf-search-item:last-child { border-bottom: none; }

.pf-search-item__thumb img {
    width: 160px;
    height: 110px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.pf-search-item__content { flex: 1; }

.pf-search-item__type {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: var(--orange-500);
    background: var(--orange-50);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.pf-search-item__title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pf-search-item__title a { color: var(--slate-800); }
.pf-search-item__title a:hover { color: var(--orange-500); }

.pf-search-item__excerpt {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 12px;
}

.pf-read-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange-500);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pf-read-more i { transition: var(--transition-fast); }
.pf-read-more:hover i { transform: translateX(4px); }

/* No Results / 404 */
.pf-no-results, .pf-error-content {
    text-align: center;
    padding: 80px 0;
    max-width: 520px;
    margin: 0 auto;
}

.pf-no-results__icon, .pf-error-content__icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    background: var(--orange-50);
    color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.pf-no-results h2, .pf-error-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--slate-800);
    margin-bottom: 12px;
}

.pf-no-results p, .pf-error-content p {
    color: var(--slate-500);
    margin-bottom: 32px;
}

.pf-search-form {
    display: flex;
    max-width: 420px;
    margin: 0 auto 24px;
}

.pf-search-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    font-size: 14px;
    transition: var(--transition-fast);
}

.pf-search-form input:focus { border-color: var(--orange-400); }

.pf-search-form button {
    padding: 14px 28px;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    cursor: pointer;
}

/* Pagination */
.pf-pagination { text-align: center; margin-top: 48px; }

.pf-pagination .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pf-pagination a, .pf-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-md);
    color: var(--slate-600);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.pf-pagination a:hover, .pf-pagination .current {
    background: var(--orange-500);
    border-color: var(--orange-500);
    color: var(--white);
}

.pf-pagination .dots { border: none; background: none; }

/* Post Navigation */
.pf-post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.pf-post-nav a {
    color: var(--slate-700);
    font-size: 14px;
    font-weight: 600;
}

.pf-post-nav a:hover { color: var(--orange-500); }
.pf-post-nav i { margin: 0 6px; }

.pf-post-tags {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--slate-200);
    font-size: 14px;
}

.pf-post-tags a {
    color: var(--slate-500);
    margin-left: 4px;
}

.pf-post-tags a:hover { color: var(--orange-500); }

/* Page Links */
.page-links {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--slate-200);
}

/* ========================================
   COMMENTS
======================================== */
.pf-comments {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 2px solid var(--slate-100);
}

.pf-comments__title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
}

.pf-comments ol {
    list-style: none;
    padding: 0;
}

.pf-comments .comment {
    padding: 24px 0;
    border-bottom: 1px solid var(--slate-100);
}

.pf-comments .comment:last-child { border-bottom: none; }

.pf-comments .children { margin-left: 48px; }

.comment-body {
    display: flex;
    gap: 16px;
}

.comment-author img { border-radius: var(--radius-full); }

.comment-content { flex: 1; }

.comment-meta .fn { font-weight: 700; color: var(--slate-800); }
.comment-meta .comment-metadata { font-size: 12px; color: var(--slate-400); margin-left: 8px; }
.comment-content p { color: var(--slate-600); line-height: 1.7; margin-bottom: 12px; }
.reply a { font-size: 12px; color: var(--orange-500); font-weight: 700; }

.comment-respond { margin-top: 48px; }

.comment-reply-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.comment-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--slate-700);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.comment-form input:focus, .comment-form textarea:focus {
    border-color: var(--orange-400);
    box-shadow: 0 0 0 4px rgba(242,101,34,.08);
}

.comment-form textarea { min-height: 140px; resize: vertical; }

.comment-form .form-submit input {
    background: var(--orange-500);
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition-fast);
    border: none;
}

.comment-form .form-submit input:hover {
    background: var(--orange-600);
    box-shadow: var(--shadow-orange);
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center { text-align: center; }
.hidden { display: none; }

/* ========================================
   MOBILE MENU OPEN STATE
======================================== */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */
@media (max-width: 1024px) {
    :root { --section-gap: 80px; }

    .pf-footer__widgets { grid-template-columns: repeat(3, 1fr); }

    .pf-products__grid { grid-template-columns: 1fr; }
    .pf-products__image { min-height: 350px; }

    .pf-quality__grid,
    .pf-career__grid { gap: 40px; }
}

/* ========================================
   RESPONSIVE - MOBILE NAV
======================================== */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --topbar-height: 30px;
        --section-gap: 64px;
    }

    .pf-topbar__security { font-size: 9px; gap: 6px; }
    .pf-topbar__shield { width: 12px; height: 12px; }
    .pf-topbar__status { display: none; }

    .pf-mobile-toggle { display: flex; }

    .pf-nav {
        display: none;
        position: fixed;
        top: calc(var(--topbar-height) + var(--header-height));
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 99997;
        padding: 20px 24px;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
    }

    body.admin-bar .pf-nav { top: calc(46px + var(--topbar-height) + var(--header-height)); }

    .pf-nav.active { display: flex; }

    .pf-nav__list {
        flex-direction: column;
        gap: 4px;
    }

    .pf-nav__list > li > a {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: var(--radius-md);
    }

    .pf-nav__list > li.current-menu-item > a {
        background: var(--orange-50);
        color: var(--orange-500);
        box-shadow: none;
    }

    /* Mobile dropdown arrow */
    .pf-nav__list > li.menu-item-has-children > a::after {
        margin-left: auto;
    }

    .pf-nav .sub-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none;
        display: none;
        background: var(--slate-50) !important;
        border-radius: var(--radius-md) !important;
        padding: 4px !important;
        margin-top: 4px;
    }

    .pf-nav .sub-menu::before { display: none !important; }

    .pf-nav .sub-menu li a {
        padding: 12px 16px !important;
        font-size: 15px;
    }

    /* Hero */
    .pf-hero { min-height: 85vh; }
    .pf-hero__geo { display: none; }
    .pf-hero__content { padding: 80px 0 120px; }
    .pf-hero__tag { margin-bottom: 16px; }
    .pf-hero__desc { font-size: 16px; }
    .pf-hero__nav { bottom: 40px; }
    .pf-hero__scroll { display: none; }

    /* Sections */
    .pf-products::before { top: -30px; height: 60px; }
    .pf-products__grid { grid-template-columns: 1fr; gap: 24px; }
    .pf-products__image { min-height: 280px; }

    .pf-quality__grid,
    .pf-career__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pf-quality__features { grid-template-columns: 1fr; }

    .pf-quality__stat { position: relative; bottom: auto; left: auto; margin-top: -20px; }

    .pf-cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    /* Footer */
    .pf-footer__widgets { grid-template-columns: repeat(2, 1fr); }

    .pf-footer__brand {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .pf-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .pf-footer__links { justify-content: center; }
    .pf-footer__copy { text-align: center; }

    /* Posts */
    .pf-posts-grid { grid-template-columns: 1fr; }
    .pf-search-item { flex-direction: column; }
    .pf-search-item__thumb img { width: 100%; height: 200px; }

    /* Page hero */
    .pf-page-hero { height: 320px; min-height: 260px; }
    .pf-page-hero__bg { height: 100%; }
}

@media (max-width: 480px) {
    .pf-footer__widgets { grid-template-columns: 1fr; }
    .pf-hero__actions { flex-direction: column; }
    .pf-lang__toggle span { display: none; }
}

/* ========================================
   DESKTOP NAV FORCE
======================================== */
@media (min-width: 769px) {
    .pf-nav { display: flex !important; }
    .pf-nav__list { display: flex !important; flex-direction: row !important; }
}

/* ========================================
   SITE MAIN Z-INDEX FIX
======================================== */
.site-main, #main-content, main {
    position: relative;
    z-index: 1;
}

.ppb-page {
    position: relative;
    z-index: 1;
    overflow-x: clip;
}
