/* ============================================================
   POLO KABLO - PREMIUM CORPORATE DESIGN
   Custom CSS - Energy Industry Premium Aesthetic
   ============================================================ */

/* ===== FONT IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Manrope:wght@200;300;400;500;600;700;800&family=Italiana&family=Quicksand:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --polo-navy: #1a1b3a;
    --polo-navy-deep: #0f1028;
    --polo-navy-light: #2c2a4a;
    --polo-silver: #b0b0b8;
    --polo-silver-light: #d4d4dc;
    --polo-silver-dark: #8a8a92;
    --polo-accent: #c9a961;
    --polo-accent-glow: #e8c87a;
    --polo-white: #ffffff;
    --polo-off-white: #f8f8fa;
    --polo-bg-dark: #0a0b1e;
    --polo-text: #1a1b3a;
    --polo-text-light: #6b6b73;
    --polo-border: rgba(26, 27, 58, 0.08);
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
    
    --transition-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--polo-text);
    background: var(--polo-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s var(--transition-smooth);
}

/* ===== CUSTOM CURSOR ===== */
.polo-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--polo-navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, width 0.3s, height 0.3s;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.polo-cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--polo-navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.4s var(--transition-elegant), width 0.3s, height 0.3s;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
    .polo-cursor, .polo-cursor-ring { display: none; }
}

/* ===== PRELOADER ===== */
.polo-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #f8f8fa;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1.2s var(--transition-elegant);
}

.polo-preloader.loaded {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.preloader-logo {
    width: 240px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: preloaderLogoFade 1s var(--transition-elegant) 0.3s forwards;
    /* Orjinal renk korunur */
}

@keyframes preloaderLogoFade {
    to { opacity: 1; transform: translateY(0); }
}

.preloader-line {
    width: 240px;
    height: 1px;
    background: rgba(26, 27, 58, 0.08);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--polo-accent), var(--polo-navy), var(--polo-accent), transparent);
    animation: preloaderLine 2.5s var(--transition-elegant) forwards;
}

@keyframes preloaderLine {
    0% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0; left: 100%; }
}

.preloader-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--polo-text-light);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 30px;
    opacity: 0;
    animation: preloaderTextFade 1s ease 1s forwards;
}

@keyframes preloaderTextFade {
    0% { opacity: 0; letter-spacing: 4px; }
    100% { opacity: 1; letter-spacing: 8px; }
}

/* Percent sayısı kaldırıldı */
.preloader-percent {
    display: none;
}

/* Energy particles in preloader - very subtle on light bg */
.preloader-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.preloader-particles::before,
.preloader-particles::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.06) 0%, transparent 60%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.preloader-particles::before {
    top: -200px;
    left: -200px;
}

.preloader-particles::after {
    bottom: -200px;
    right: -200px;
    animation-delay: 2s;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}


/* ============================================================
   HEADER - Floating Pill → Sticky Full-Width Transition
   ============================================================ */
.polo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 24px 30px 0;
    transition: padding 0.6s var(--transition-elegant);
    background: transparent;
    pointer-events: none; /* Allow clicks to pass through padding area */
}

/* Inner pill - the actual visible header */
.polo-header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 14px 16px 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    box-shadow:
        0 10px 40px -10px rgba(26, 27, 58, 0.15),
        0 2px 8px rgba(26, 27, 58, 0.05);
    transition:
        padding 0.6s var(--transition-elegant),
        border-radius 0.6s var(--transition-elegant),
        box-shadow 0.6s var(--transition-elegant),
        background-color 0.6s var(--transition-elegant);
    pointer-events: auto;
    position: relative;
}

/* Scrolled state - radius shrinks to 0, padding collapses, full-width */
.polo-header.scrolled {
    padding: 0;
}

.polo-header.scrolled .polo-header-inner {
    max-width: 100%;
    border-radius: 0;
    padding: 12px 60px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(26, 27, 58, 0.08);
}

/* Logo */
.polo-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
    flex-shrink: 0;
}

.polo-logo img {
    height: 50px;
    width: auto;
    transition: height 0.5s var(--transition-elegant);
}

.polo-header.scrolled .polo-logo img {
    height: 44px;
}

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

.polo-nav-link {
    padding: 10px 16px;
    color: var(--polo-text);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
    text-transform: none;
    position: relative;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.polo-nav-link:hover {
    color: var(--polo-accent);
}

.polo-nav-link.active {
    color: var(--polo-navy);
    font-weight: 600;
}

.polo-nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--polo-accent);
    border-radius: 2px;
    transition: width 0.3s var(--transition-elegant);
}

.polo-nav-link:hover::after,
.polo-nav-link.active::after {
    width: 24px;
}

/* Dropdown indicator chevron */
.polo-nav-item > .polo-nav-link::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-top: -3px;
    transition: transform 0.3s ease;
    order: 2;
    opacity: 0.6;
}

.polo-nav-item:hover > .polo-nav-link::before {
    transform: rotate(225deg);
    margin-top: 3px;
    opacity: 1;
}

.polo-nav-item {
    position: relative;
}

/* Dropdown menu */
.polo-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 260px;
    background: var(--polo-white);
    border-radius: 16px;
    box-shadow:
        0 20px 50px -10px rgba(26, 27, 58, 0.2),
        0 4px 12px rgba(26, 27, 58, 0.06);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--transition-elegant);
}

.polo-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: var(--polo-white);
    border-top-left-radius: 4px;
}

.polo-nav-item:hover .polo-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.polo-dropdown a {
    display: block;
    padding: 11px 24px;
    color: var(--polo-text);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: none;
    transition: all 0.25s ease;
    position: relative;
}

.polo-dropdown a:hover {
    color: var(--polo-accent);
    background: rgba(201, 169, 97, 0.06);
    padding-left: 30px;
}

/* Header right actions */
.polo-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Language switcher */
.polo-lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--polo-text-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 100px;
    border: 1px solid var(--polo-border);
    background: transparent;
    transition: all 0.3s ease;
}

.polo-lang-switch:hover {
    border-color: var(--polo-accent);
    color: var(--polo-navy);
}

.polo-lang-switch .active-lang {
    color: var(--polo-navy);
    font-weight: 700;
}

.polo-lang-divider {
    width: 1px;
    height: 12px;
    background: var(--polo-border);
}

/* CTA Button - Pill style with arrow */
.polo-cta-btn {
    padding: 14px 16px 14px 28px;
    background: var(--polo-navy);
    border: none;
    color: var(--polo-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: none;
    position: relative;
    transition: all 0.4s var(--transition-elegant);
    cursor: pointer;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.polo-cta-btn::after {
    content: '';
    width: 32px;
    height: 32px;
    background: var(--polo-accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1b3a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='7' y1='17' x2='17' y2='7'/><polyline points='7 7 17 7 17 17'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transition: all 0.4s var(--transition-elegant);
}

.polo-cta-btn:hover {
    background: var(--polo-navy-deep);
    padding-right: 20px;
}

.polo-cta-btn:hover::after {
    transform: rotate(45deg);
    background-color: var(--polo-accent-glow);
}

/* ===== SEARCH BUTTON ===== */
.polo-search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--polo-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--polo-text);
    transition: all 0.3s ease;
}

.polo-search-btn:hover {
    background: var(--polo-navy);
    border-color: var(--polo-navy);
    color: var(--polo-white);
}

.polo-search-btn svg {
    width: 16px;
    height: 16px;
}

/* Search overlay */
.polo-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 11, 30, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-elegant);
}

.polo-search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.polo-search-overlay-inner {
    width: 90%;
    max-width: 800px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s var(--transition-elegant);
}

.polo-search-overlay.open .polo-search-overlay-inner {
    transform: translateY(0);
}

.polo-search-overlay-label {
    color: var(--polo-accent);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.polo-search-form {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.polo-search-form input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--polo-white);
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 300;
    padding: 20px 60px 20px 0;
}

.polo-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.polo-search-form button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--polo-accent);
    cursor: pointer;
    padding: 10px;
}

.polo-search-form button svg {
    width: 28px;
    height: 28px;
}

.polo-search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--polo-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.polo-search-close:hover {
    background: var(--polo-accent);
    border-color: var(--polo-accent);
    color: var(--polo-navy);
    transform: rotate(90deg);
}

/* Mobile-only elements - hidden on desktop */
.polo-mobile-close,
.polo-mobile-menu-logo,
.polo-mobile-contact,
.polo-pg-mobile-dots {
    display: none;
}

/* Mobile menu toggle */
.polo-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
}

.polo-menu-toggle span {
    position: absolute;
    width: 24px;
    height: 1.5px;
    background: var(--polo-navy);
    left: 8px;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.polo-menu-toggle span:nth-child(1) { top: 14px; }
.polo-menu-toggle span:nth-child(2) { top: 20px; width: 18px; }
.polo-menu-toggle span:nth-child(3) { top: 26px; }

.polo-menu-toggle.active span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.polo-menu-toggle.active span:nth-child(2) { opacity: 0; }
.polo-menu-toggle.active span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ===== HERO SECTION - YARNEX STYLE ===== */
.polo-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--polo-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.polo-hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.polo-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polo-hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 11, 30, 0.8) 0%,
        rgba(26, 27, 58, 0.7) 50%,
        rgb(10 11 30 / 55%) 100%
    );
    z-index: 2;
}

/* Animated grid overlay */
.polo-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* YARNEX-style giant background brand text */
.polo-hero-brandtext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: clamp(120px, 24vw, 380px);
    letter-spacing: -8px;
    line-height: 1;
    white-space: nowrap;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.02) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    pointer-events: none;
    user-select: none;
    text-transform: uppercase;
    opacity: 0;
    animation: brandTextIn 2s var(--transition-elegant) 0.5s forwards;
}

@keyframes brandTextIn {
    0% { opacity: 0; transform: translate(-50%, -45%); letter-spacing: -20px; }
    100% { opacity: 1; transform: translate(-50%, -50%); letter-spacing: -8px; }
}

.polo-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    text-align: center;
}

.polo-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s var(--transition-elegant) 1.2s forwards;
}

.polo-hero-meta-line {
    width: 50px;
    height: 1px;
    background: var(--polo-accent);
}

.polo-hero-meta-text {
    color: var(--polo-silver-light);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Slogan title - reduced by half */
.polo-hero-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.2vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--polo-white);
    letter-spacing: -1px;
    margin-bottom: 20px;
    overflow: hidden;
}

.polo-hero-title .word {
    display: inline-block;
    overflow: hidden;
    margin-right: 0.25em;
}

.polo-hero-title .word .inner {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
}

.polo-hero-title .word .inner.italic {
    font-style: italic;
    color: var(--polo-accent);
    font-weight: 400;
}

.polo-hero-title.animate .word .inner {
    animation: heroWordReveal 1.2s var(--transition-elegant) forwards;
}

.polo-hero-title.animate .word:nth-child(1) .inner { animation-delay: 1.4s; }
.polo-hero-title.animate .word:nth-child(2) .inner { animation-delay: 1.55s; }
.polo-hero-title.animate .word:nth-child(3) .inner { animation-delay: 1.7s; }
.polo-hero-title.animate .word:nth-child(4) .inner { animation-delay: 1.85s; }

@keyframes heroWordReveal {
    0% { transform: translateY(110%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Description - smaller, animated word by word */
.polo-hero-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--polo-silver-light);
    font-size: 14px;
    line-height: 1.7;
    overflow: hidden;
}

.polo-hero-desc .word {
    display: inline-block;
    overflow: hidden;
    margin-right: 0.25em;
}

.polo-hero-desc .word .inner {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
}

.polo-hero-desc.animate .word .inner {
    animation: heroWordReveal 0.8s var(--transition-elegant) forwards;
}

/* Stagger description animation - dynamically delayed via :nth-child */
.polo-hero-desc.animate .word:nth-child(1) .inner { animation-delay: 2.1s; }
.polo-hero-desc.animate .word:nth-child(2) .inner { animation-delay: 2.16s; }
.polo-hero-desc.animate .word:nth-child(3) .inner { animation-delay: 2.22s; }
.polo-hero-desc.animate .word:nth-child(4) .inner { animation-delay: 2.28s; }
.polo-hero-desc.animate .word:nth-child(5) .inner { animation-delay: 2.34s; }
.polo-hero-desc.animate .word:nth-child(6) .inner { animation-delay: 2.4s; }
.polo-hero-desc.animate .word:nth-child(7) .inner { animation-delay: 2.46s; }
.polo-hero-desc.animate .word:nth-child(8) .inner { animation-delay: 2.52s; }
.polo-hero-desc.animate .word:nth-child(9) .inner { animation-delay: 2.58s; }
.polo-hero-desc.animate .word:nth-child(10) .inner { animation-delay: 2.64s; }
.polo-hero-desc.animate .word:nth-child(11) .inner { animation-delay: 2.7s; }
.polo-hero-desc.animate .word:nth-child(12) .inner { animation-delay: 2.76s; }
.polo-hero-desc.animate .word:nth-child(n+13) .inner { animation-delay: 2.82s; }

/* Scroll indicator */
.polo-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--polo-white);
    text-align: center;
    opacity: 0;
    animation: scrollFadeIn 1s ease 3s forwards;
}

.polo-scroll-indicator-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--polo-accent), transparent);
    margin: 15px auto 0;
    position: relative;
    overflow: hidden;
}

.polo-scroll-indicator-line::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--polo-white), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -60px; }
    100% { top: 60px; }
}

@keyframes scrollFadeIn {
    to { opacity: 1; }
}

.polo-scroll-text {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.polo-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 45px;
    background: var(--polo-accent);
    color: var(--polo-navy);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-elegant);
    border: none;
    cursor: pointer;
}

.polo-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--polo-white);
    transform: translateY(100%);
    transition: transform 0.4s var(--transition-elegant);
    z-index: -1;
}

.polo-btn-primary:hover::before {
    transform: translateY(0);
}

.polo-btn-primary i {
    transition: transform 0.3s ease;
}

.polo-btn-primary:hover i {
    transform: translateX(5px);
}

.polo-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 45px;
    background: transparent;
    color: var(--polo-white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s var(--transition-elegant);
    cursor: pointer;
}

.polo-btn-secondary:hover {
    background: var(--polo-white);
    color: var(--polo-navy);
    border-color: var(--polo-white);
}

/* Hero side info */
/* Buttons (still used elsewhere) */

/* Scroll indicator */
.polo-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--polo-white);
    text-align: center;
    opacity: 0;
    animation: scrollFadeIn 1s ease 2.3s forwards;
}

.polo-scroll-indicator-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--polo-accent), transparent);
    margin: 15px auto 0;
    position: relative;
    overflow: hidden;
}

.polo-scroll-indicator-line::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--polo-white), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -60px; }
    100% { top: 60px; }
}

@keyframes scrollFadeIn {
    to { opacity: 1; }
}

.polo-scroll-text {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== SECTION GENERAL ===== */
.polo-section {
    padding: 140px 0;
    position: relative;
}

.polo-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.polo-section-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--polo-accent);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.polo-section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--polo-accent);
}

.polo-section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--polo-navy);
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.polo-section-title em {
    font-style: italic;
    color: var(--polo-accent);
    font-weight: 400;
}

.polo-section-desc {
    font-size: 16px;
    line-height: 1.9;
    color: var(--polo-text-light);
    max-width: 600px;
}

/* ===== ABOUT SECTION ===== */
.polo-about {
    background: var(--polo-off-white);
    position: relative;
    overflow: hidden;
}

.polo-about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 97, 0.03) 100%);
    pointer-events: none;
}

.polo-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.polo-about-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.polo-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--transition-elegant);
}

.polo-about-image:hover img {
    transform: scale(1.05);
}

.polo-about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(26, 27, 58, 0.1));
    pointer-events: none;
}

.polo-about-image-frame {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 1px solid var(--polo-accent);
    z-index: -1;
}

.polo-about-content {
    padding: 0 0 0 20px;
}

.polo-about-paragraph {
    color: var(--polo-text-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.polo-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--polo-border);
}

.polo-stat-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: var(--polo-navy);
    line-height: 1;
    margin-bottom: 10px;
}

.polo-stat-number sup {
    font-size: 24px;
    color: var(--polo-accent);
    top: -30px;
    margin-left: 5px;
}

.polo-stat-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--polo-text-light);
    font-weight: 500;
}

/* ===== PRODUCTS SECTION ===== */
.polo-products {
    background: var(--polo-bg-dark);
    color: var(--polo-white);
    position: relative;
    overflow: hidden;
}

.polo-products::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(176, 176, 184, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.polo-products .polo-section-title {
    color: var(--polo-white);
}

.polo-products .polo-section-desc {
    color: var(--polo-silver-light);
}

.polo-products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 40px;
}

.polo-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.polo-product-card {
    background: var(--polo-bg-dark);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s var(--transition-elegant);
    aspect-ratio: 1 / 1.2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.polo-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--polo-navy-light) 0%, var(--polo-navy-deep) 100%);
    opacity: 0;
    transition: opacity 0.5s var(--transition-elegant);
    z-index: 1;
}

.polo-product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--polo-accent);
    transition: width 0.5s var(--transition-elegant);
    z-index: 2;
}

.polo-product-card:hover::before { opacity: 1; }
.polo-product-card:hover::after { width: 100%; }

.polo-product-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.polo-product-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    transition: all 0.8s var(--transition-elegant);
}

.polo-product-card:hover .polo-product-card-bg img {
    opacity: 0.25;
    transform: scale(1.1);
}

.polo-product-card-content {
    position: relative;
    z-index: 3;
}

.polo-product-card-num {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--polo-accent);
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-style: italic;
}

.polo-product-card-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--polo-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.polo-product-card-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--polo-silver-light);
    margin-bottom: 40px;
}

.polo-product-card-link {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--polo-accent);
    font-weight: 500;
    transition: gap 0.3s ease;
}

.polo-product-card:hover .polo-product-card-link {
    gap: 15px;
}

.polo-product-card-link svg {
    width: 16px;
    height: 16px;
}

/* ===== CAPABILITIES / FEATURES ===== */
.polo-capabilities {
    background: var(--polo-white);
}

.polo-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 80px;
    border-top: 1px solid var(--polo-border);
    border-left: 1px solid var(--polo-border);
}

.polo-capability {
    padding: 60px 40px;
    border-right: 1px solid var(--polo-border);
    border-bottom: 1px solid var(--polo-border);
    transition: all 0.4s var(--transition-elegant);
    position: relative;
}

.polo-capability:hover {
    background: var(--polo-navy);
    color: var(--polo-white);
}

.polo-capability:hover .polo-capability-icon {
    color: var(--polo-accent);
}

.polo-capability:hover .polo-capability-title,
.polo-capability:hover .polo-capability-desc {
    color: var(--polo-white);
}

.polo-capability-icon {
    width: 60px;
    height: 60px;
    color: var(--polo-navy);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.polo-capability-num {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--polo-silver-dark);
    font-style: italic;
}

.polo-capability-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--polo-navy);
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.polo-capability-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--polo-text-light);
    transition: color 0.4s ease;
}

/* ===== GLOBAL PRESENCE ===== */
.polo-global {
    background: var(--polo-navy);
    color: var(--polo-white);
    position: relative;
    overflow: hidden;
}

.polo-global::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.polo-global .polo-section-title {
    color: var(--polo-white);
}

.polo-global-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.polo-global-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    margin-top: 60px;
}

.polo-global-stat {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.polo-global-stat-num {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 300;
    color: var(--polo-accent);
    line-height: 1;
    margin-bottom: 10px;
}

.polo-global-stat-label {
    color: var(--polo-silver-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.polo-globe-container {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== CTA SECTION ===== */
.polo-cta {
    background: var(--polo-off-white);
    text-align: center;
}

.polo-cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.polo-cta-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 90px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--polo-navy);
    margin-bottom: 40px;
}

.polo-cta-title em {
    font-style: italic;
    color: var(--polo-accent);
}

/* ===== FOOTER ===== */
.polo-footer {
    background: var(--polo-bg-dark);
    color: var(--polo-silver-light);
    padding: 120px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Decorative bottom-left image */
.polo-footer-bg-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background-image: url('../img/imgLogo/footer-logo-bg.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    pointer-events: none;
    opacity: 0.85;
    z-index: 0;
}

.polo-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--polo-accent));
    z-index: 1;
}

/* Make sure content stays above bg */
.polo-footer .polo-container {
    position: relative;
    z-index: 2;
}

.polo-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.polo-footer-brand img {
    height: 60px;
    filter: brightness(0) invert(1);
    margin-bottom: 30px;
}

.polo-footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--polo-silver);
    max-width: 380px;
    margin-bottom: 30px;
}

.polo-footer-social {
    display: flex;
    gap: 12px;
}

.polo-footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--polo-silver);
    transition: all 0.3s ease;
}

.polo-footer-social a:hover {
    background: var(--polo-accent);
    border-color: var(--polo-accent);
    color: var(--polo-navy);
}

.polo-footer-col h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--polo-white);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.polo-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--polo-accent);
}

.polo-footer-col ul {
    list-style: none;
}

.polo-footer-col ul li {
    margin-bottom: 12px;
}

.polo-footer-col ul a {
    font-size: 13px;
    color: var(--polo-silver);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.polo-footer-col ul a:hover {
    color: var(--polo-accent-glow);
    gap: 10px;
}

.polo-footer-col ul a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.polo-footer-col ul a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.polo-footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--polo-silver);
    font-size: 13px;
    line-height: 1.6;
}

.polo-footer-contact-item i {
    color: var(--polo-accent);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===== FOOTER BOTTOM - 3 columns: left ©, center policy links, right credit ===== */
.polo-footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 12px;
    color: var(--polo-silver-dark);
    letter-spacing: 1px;
    gap: 20px;
}

.polo-footer-bottom-left {
    text-align: left;
}

/* Center: policy links */
.polo-footer-bottom-center {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    justify-self: center;
}

.polo-footer-bottom-center a {
    color: var(--polo-silver);
    transition: color 0.3s ease;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
}

.polo-footer-bottom-center a:hover {
    color: var(--polo-accent-glow);
}

.polo-footer-bottom-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

/* Right: credit */
.polo-footer-credit {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 10px;
    letter-spacing: 0;
    justify-self: end;
}

.polo-footer-credit .credit-sanat {
    /* Nadall-like elegant italic serif */
   font-weight: 400;
    font-size: 13px;
}

.polo-footer-credit .credit-link {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
}

.polo-footer-credit .credit-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--polo-accent);
    transition: width 0.4s ease;
}

.polo-footer-credit .credit-link:hover::after {
    width: 100%;
}

.polo-footer-credit .credit-sanat-name {
    /* Bold-ish elegant serif for SANAT (Nadall feel) */
    font-family: Nadall;
    font-size: 22px;
   
    
}

.polo-footer-credit .credit-ustu-name {
    /* Quizma-light feel: very light sans-serif */
    font-family: Quizma-LightDemo;
    font-size: 22px;
}

 

@media (max-width: 768px) {
    .polo-footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    .polo-footer-bottom-left {
        text-align: center;
    }
    .polo-footer-bottom-center {
        justify-self: center;
    }
    .polo-footer-credit {
        justify-self: center;
        justify-content: center;
    }
    .polo-footer-credit .credit-sanat-name,
    .polo-footer-credit .credit-ustu-name { font-size: 18px; }
    .polo-footer-bg-deco { width: 320px; height: 320px; opacity: 0.5; }
}

/* ===== PRODUCT FEATURE GRID (from 'veriler' table) ===== */
.polo-feature-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 14px;
    position: relative;
    z-index: 2;
}

.polo-feature-item {
    background: var(--polo-white);
    border: 1px solid var(--polo-border);
    border-radius: 14px;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.4s var(--transition-elegant);
    text-align: center;
}

.polo-feature-item:hover {
    transform: translateY(-4px);
    border-color: var(--polo-accent);
    box-shadow: 0 12px 30px -10px rgba(26, 27, 58, 0.15);
}

.polo-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--polo-off-white) 0%, rgba(201, 169, 97, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--polo-navy);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.polo-feature-item:hover .polo-feature-icon {
    background: var(--polo-accent);
    color: var(--polo-navy);
    transform: scale(1.05);
}

.polo-feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: filter 0.3s ease;
    filter: grayscale(1);
}

.polo-feature-icon svg {
    width: 28px;
    height: 28px;
}

.polo-feature-label {
    font-size: 11px;
    color: var(--polo-text);
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-transform: none;
}

@media (max-width: 768px) {
    .polo-feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .polo-feature-icon { width: 48px; height: 48px; }
    .polo-feature-icon img { width: 26px; height: 26px; }
    .polo-feature-icon svg { width: 22px; height: 22px; }
    .polo-feature-label { font-size: 10px; }
}

/* ===== VIDEO LIGHTBOX (intro film) ===== */
.polo-video-trigger {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: var(--polo-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.polo-video-trigger:hover {
    color: var(--polo-accent);
}

.polo-video-trigger-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.12);
    border: 1px solid rgba(201, 169, 97, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--polo-accent);
    transition: all 0.4s var(--transition-elegant);
    position: relative;
    flex-shrink: 0;
}

.polo-video-trigger-circle::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    animation: videoPulse 2s ease-out infinite;
}

@keyframes videoPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.polo-video-trigger:hover .polo-video-trigger-circle {
    background: var(--polo-accent);
    border-color: var(--polo-accent);
    color: var(--polo-navy);
    transform: scale(1.05);
}

.polo-video-trigger-circle svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.polo-video-trigger-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.polo-video-trigger-label small {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--polo-silver);
    margin-bottom: 4px;
}

.polo-video-trigger-label strong {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    color: var(--polo-white);
    letter-spacing: 0.5px;
}

.polo-video-trigger:hover .polo-video-trigger-label strong {
    color: var(--polo-accent-glow);
}

/* Lightbox overlay */
.polo-video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 11, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 40px 20px;
}

.polo-video-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.polo-video-lightbox-inner {
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16/9;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s var(--transition-elegant);
}

.polo-video-lightbox.open .polo-video-lightbox-inner {
    transform: scale(1);
}

.polo-video-lightbox iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

.polo-video-lightbox-close {
    position: absolute;
    top: -56px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--polo-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.polo-video-lightbox-close:hover {
    background: var(--polo-accent);
    border-color: var(--polo-accent);
    color: var(--polo-navy);
    transform: rotate(90deg);
}

/* Why-section: ensure button row aligns nicely */
.polo-why .polo-why-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 0;
}

/* ===== INNER PAGE BANNER ===== */
.polo-inner-banner {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--polo-navy);
    overflow: hidden;
    padding-top: 120px;
}

.polo-inner-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.polo-inner-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.polo-inner-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--polo-navy) 0%, transparent 50%, var(--polo-navy) 100%);
    z-index: 2;
}

.polo-inner-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.polo-inner-banner-label {
    color: var(--polo-accent);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.polo-inner-banner-title {
     
    font-size: clamp(17px, 3vw, 42px);
    font-weight: 300;
    color: var(--polo-white);
    letter-spacing: -1px;
    line-height: 1.1;
}

.polo-breadcrumb {
    margin-top: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--polo-silver);
}

.polo-breadcrumb a {
    color: var(--polo-silver);
}

.polo-breadcrumb a:hover {
    color: var(--polo-accent-glow);
}

.polo-breadcrumb .sep {
    margin: 0 12px;
    color: var(--polo-silver-dark);
}

/* ===== PAGE CONTENT ===== */
.polo-page-content {
    padding: 120px 0;
}

.polo-page-content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.polo-page-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.polo-page-sidebar ul {
    list-style: none;
    border-top: 1px solid var(--polo-border);
}

.polo-page-sidebar ul li {
    border-bottom: 1px solid var(--polo-border);
}

.polo-page-sidebar ul a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    color: var(--polo-text);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.polo-page-sidebar ul a:hover,
.polo-page-sidebar ul a.active {
    color: var(--polo-accent);
    padding-left: 10px;
}

.polo-page-sidebar ul a::after {
    content: '→';
    opacity: 0;
    transition: all 0.3s ease;
}

.polo-page-sidebar ul a:hover::after,
.polo-page-sidebar ul a.active::after {
    opacity: 1;
}

.polo-page-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--polo-text);
}

.polo-page-body h1, .polo-page-body h2, .polo-page-body h3 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--polo-navy);
    margin-bottom: 20px;
    margin-top: 40px;
}

.polo-page-body h1 { font-size: 48px; }
.polo-page-body h2 { font-size: 36px; }
.polo-page-body h3 { font-size: 28px; }

.polo-page-body p {
    margin-bottom: 20px;
    color: var(--polo-text-light);
}

.polo-page-body strong {
    color: var(--polo-navy);
    font-weight: 600;
}

/* ===== CONTACT PAGE ===== */
.polo-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.polo-contact-info {
    padding: 50px 40px;
    background: var(--polo-navy);
    color: var(--polo-white);
    position: relative;
    overflow: hidden;
}

.polo-contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
}

.polo-contact-info-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.polo-contact-info-item:last-child {
    border-bottom: none;
}

.polo-contact-info-label {
    color: var(--polo-accent);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.polo-contact-info-value {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--polo-white);
    font-weight: 400;
}

.polo-form {
    display: grid;
    gap: 25px;
}

.polo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.polo-form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--polo-text-light);
    margin-bottom: 10px;
    font-weight: 500;
}

.polo-form-group input,
.polo-form-group textarea,
.polo-form-group select {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid var(--polo-border);
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--polo-text);
    transition: border-color 0.3s ease;
    outline: none;
}

.polo-form-group input:focus,
.polo-form-group textarea:focus {
    border-bottom-color: var(--polo-accent);
}

.polo-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .polo-products-grid { grid-template-columns: repeat(2, 1fr); }
    .polo-capabilities-grid { grid-template-columns: repeat(2, 1fr); }
    .polo-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .polo-header { padding: 16px 16px 0; }
    .polo-header.scrolled { padding: 0; }
    .polo-header-inner {
        padding: 10px 10px 10px 20px;
        gap: 12px;
    }
    .polo-header.scrolled .polo-header-inner {
        padding: 10px 20px;
    }
    .polo-container { padding: 0 30px; }
    .polo-section { padding: 80px 0; }

    /* Mobile nav - full overlay */
    .polo-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--polo-bg-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        z-index: 99999;
        padding: 80px 12px 40px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.5s var(--transition-elegant);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .polo-nav.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Mobile menu logo at top */
    .polo-mobile-menu-logo {
        display: block;
        margin-bottom: 50px;
    }
    .polo-mobile-menu-logo img {
        height: 50px;
        filter: brightness(0) invert(1);
    }

    /* Mobile menu close button */
    .polo-mobile-close {
        display: flex;
        position: absolute;
        top: 25px;
        right: 25px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--polo-white);
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        font-size: 20px;
    }
    .polo-mobile-close:hover {
        background: var(--polo-accent);
        border-color: var(--polo-accent);
        color: var(--polo-navy);
        transform: rotate(90deg);
    }

    /* Menu items */
    .polo-nav-link {
        font-size: 19px !important;
        padding: 16px 16px !important;
        color: var(--polo-white) !important;
        font-family: var(--font-display);
        font-weight: 400;
        text-transform: none !important;
        letter-spacing: 0 !important;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .polo-nav-link::before { display: none !important; }
    .polo-nav-link::after { display: none; }

    .polo-nav-item {
        width: 100%;
    }

    /* Parent nav-link with dropdown - show caret */
    .polo-nav-item > .polo-nav-link {
        position: relative;
    }
    .polo-nav-item > .polo-nav-link::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        display: inline-block !important;
        margin-left: 10px;
        font-size: 10px;
        color: var(--polo-accent);
        opacity: 0.7;
        transition: transform 0.3s ease;
        position: static;
        background: transparent;
        width: auto;
        height: auto;
    }
    .polo-nav-item.active > .polo-nav-link::after {
        transform: rotate(180deg);
    }
    .polo-nav-item.active > .polo-nav-link {
        color: var(--polo-accent) !important;
    }

    /* Dropdown - sub menu */
    .polo-nav-item .polo-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(201, 169, 97, 0.05);
        box-shadow: none;
        padding: 12px 0 14px;
        display: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        min-width: 0;
        width: 100%;
    }
    .polo-nav-item.active .polo-dropdown {
        display: block;
        animation: subMenuSlide 0.35s ease forwards;
    }
    @keyframes subMenuSlide {
        from { opacity: 0; transform: translateY(-6px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .polo-nav-item .polo-dropdown::before { display: none; }

    .polo-nav-item .polo-dropdown a {
        display: block;
        color: var(--polo-silver) !important;
        font-size: 13px !important;
        text-align: center;
        padding: 10px 20px;
        line-height: 1.4;
        font-family: var(--font-body);
        font-weight: 400;
        letter-spacing: 0.3px;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100%;
        box-sizing: border-box;
        transition: all 0.3s ease;
    }
    .polo-nav-item .polo-dropdown a:hover,
    .polo-nav-item .polo-dropdown a:active {
        color: var(--polo-accent) !important;
        background: rgba(201, 169, 97, 0.08);
    }

    /* Contact info in mobile menu */
    .polo-mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 50px;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
        align-items: center;
    }
    .polo-mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 14px;
        color: var(--polo-silver-light);
        font-size: 14px;
    }

    .polo-mobile-contact-item .icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(201, 169, 97, 0.1);
        border: 1px solid rgba(201, 169, 97, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--polo-accent);
        flex-shrink: 0;
    }

    .polo-mobile-contact-item a {
        color: var(--polo-silver-light);
    }

    /* Mobile search trigger button (inside menu, below contact) */
    .polo-mobile-search-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-top: 12px;
        padding: 14px 28px;
        background: var(--polo-accent);
        border: 1px solid var(--polo-accent);
        color: var(--polo-navy);
        border-radius: 100px;
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .polo-mobile-search-btn svg {
        width: 16px;
        height: 16px;
    }
    .polo-mobile-search-btn:hover,
    .polo-mobile-search-btn:active {
        background: var(--polo-accent-glow);
        transform: translateY(-2px);
    }

    /* Lang switch in mobile menu */
    .polo-mobile-lang {
        margin-top: 25px;
        display: inline-flex;
        gap: 12px;
        padding: 6px;
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.02);
    }
    .polo-mobile-lang a {
        padding: 10px 22px;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        color: var(--polo-silver);
        transition: all 0.3s;
    }
    .polo-mobile-lang a.active {
        background: var(--polo-accent);
        color: var(--polo-navy);
    }

    .polo-menu-toggle { display: block; }
    .polo-lang-switch { display: none; }
    .polo-search-btn { display: none; }

    .polo-about-grid,
    .polo-global-grid,
    .polo-page-content-grid,
    .polo-contact-grid { grid-template-columns: 1fr; gap: 60px; }

    .polo-hero-content { padding: 100px 30px 80px; }

    .polo-about-stats { grid-template-columns: 1fr; gap: 30px; }
    .polo-products-grid { grid-template-columns: 1fr; }
    .polo-capabilities-grid { grid-template-columns: 1fr; }
    .polo-footer-grid { grid-template-columns: 1fr; }
    .polo-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .polo-hero-actions { flex-direction: column; }
    .polo-btn-primary, .polo-btn-secondary { width: 100%; justify-content: center; }
    .polo-cta-btn { padding: 10px 10px 10px 18px; font-size: 12px; }
    .polo-cta-btn::after { width: 28px; height: 28px; }
}

/* ============================================================
   NEW HOMEPAGE SECTIONS
   ============================================================ */

/* ===== PRODUCT GROUPS (Sticky Stack Style) ===== */
.polo-pg-section {
    background: var(--polo-white);
    padding: 120px 0;
    position: relative;
    overflow: visible;
}

.polo-pg-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    position: relative;
    overflow: visible;
}

.polo-pg-left {
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
    align-self: start;
    z-index: 1;
}

.polo-pg-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--polo-text-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.polo-pg-label-icon {
    width: 26px;
    height: 14px;
    position: relative;
    display: inline-block;
}
.polo-pg-label-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--polo-accent);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%);
}

.polo-pg-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--polo-navy);
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.polo-pg-title b {
    font-weight: 700;
}

.polo-pg-desc {
    color: var(--polo-text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 420px;
}

.polo-pg-allbtn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px 14px 28px;
    background: linear-gradient(135deg, var(--polo-navy) 0%, var(--polo-navy-light) 100%);
    color: var(--polo-white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.4s var(--transition-elegant);
}

.polo-pg-allbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(26, 27, 58, 0.4);
}

.polo-pg-allbtn-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--polo-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--polo-navy);
    transition: transform 0.3s ease;
}

.polo-pg-allbtn:hover .polo-pg-allbtn-arrow {
    transform: rotate(45deg);
}

.polo-pg-allbtn-arrow svg {
    width: 14px;
    height: 14px;
}

/* Sticky stack cards */
.polo-pg-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.polo-pg-card {
    position: sticky;
    top: 130px;
    aspect-ratio: 16/10;
    border-radius: 24px;
    overflow: hidden;
    background: var(--polo-navy);
    box-shadow: 0 20px 60px -20px rgba(26, 27, 58, 0.3);
    transition: all 0.5s var(--transition-elegant);
}

/* Stagger sticky cards so they stack */
.polo-pg-card:nth-child(1) { top: 130px; }
.polo-pg-card:nth-child(2) { top: 150px; }
.polo-pg-card:nth-child(3) { top: 170px; }
.polo-pg-card:nth-child(4) { top: 190px; }
.polo-pg-card:nth-child(5) { top: 210px; }
.polo-pg-card:nth-child(6) { top: 230px; }
.polo-pg-card:nth-child(7) { top: 250px; }
.polo-pg-card:nth-child(8) { top: 270px; }

.polo-pg-card-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.polo-pg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polo-pg-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg,
        rgba(10, 11, 30, 0.5) 0%,
        rgba(10, 11, 30, 0.2) 50%,
        rgba(10, 11, 30, 0.7) 100%);
}

.polo-pg-card-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--polo-white);
}

.polo-pg-card-title {
    font-size: clamp(24px, 2.0vw, 38px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--polo-white);
    max-width: 70%;
    text-shadow: 0px 1px 4px black;
}

.polo-pg-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

/* Stroked number */
.polo-pg-card-num {
    
    font-size: clamp(60px, 4vw, 110px);
    font-weight: 700;
    line-height: 1;
    -webkit-text-stroke: 1.5px var(--polo-white);
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -2px;
}

.polo-pg-card-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--polo-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--polo-navy);
    transition: all 0.4s var(--transition-elegant);
    flex-shrink: 0;
}

.polo-pg-card:hover .polo-pg-card-arrow {
    background: var(--polo-accent);
    transform: rotate(45deg);
}

.polo-pg-card-arrow svg {
    width: 18px;
    height: 18px;
}

/* ===== ABOUT - WHY CHOOSE US (Circle layout) ===== */
.polo-why {
    background: var(--polo-white);
    padding: 120px 0 20px;
    position: relative;
    color: var(--polo-white);
}

.polo-why-inner {
    background: var(--polo-navy-deep);
    background-image: url(../img/hakkinda-bg.jpg);
    border-radius: 32px;
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

.polo-why-inner::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.polo-why-inner::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 176, 184, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.polo-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.polo-why-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--polo-silver);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.polo-why-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 3.0vw, 64px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--polo-white);
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.polo-why-desc {
    color: var(--polo-silver-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 480px;
}

/* Counter grid */
.polo-why-counters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.polo-why-counter {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.polo-why-counter-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    color: var(--polo-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.polo-why-counter-num sup {
    font-size: 0.5em;
    margin-left: 4px;
    color: var(--polo-accent);
}

.polo-why-counter-label {
    color: var(--polo-silver);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Right side - 4 circles */
.polo-why-circles {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.polo-why-circle {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    transition: all 0.5s var(--transition-elegant);
}

.polo-why-circle:nth-child(1) { transform: translateY(20px); }
.polo-why-circle:nth-child(2) { transform: translateY(-30px); }
.polo-why-circle:nth-child(3) { transform: translateY(40px); }
.polo-why-circle:nth-child(4) { transform: translateY(-10px); }

.polo-why-circle:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.polo-why-circle.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polo-why-circle.text {
    background: linear-gradient(135deg, #727170 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    color: var(--polo-navy);
}

.polo-why-circle.text-navy {
    background: linear-gradient(135deg, var(--polo-navy-light) 0%, var(--polo-navy) 100%);
    color: var(--polo-white);
}

.polo-why-circle-text {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 500;
    line-height: 1.15;
}

/* Floating M decoration - REMOVED */

/* ===== SERVICES WE PROVIDE (4-card grid - Invena style) ===== */
.polo-services {
    background: var(--polo-white);
    padding: 80px 0;
}

.polo-services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.polo-services-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--polo-text-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    justify-content: center;
}

.polo-services-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--polo-navy);
    letter-spacing: -1px;
}

.polo-services-title b {
    font-weight: 700;
}

.polo-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.polo-service-card {
    position: relative;
    padding: 36px 30px 36px;
    border: 1px solid var(--polo-border);
    border-radius: 0 30px 0 0;
    background: var(--polo-white);
    transition: all 0.5s var(--transition-elegant);
    text-align: center;
    overflow: hidden;
    text-decoration: none;
}

/* Folded corner effect (bottom-right) */
.polo-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, transparent 50%, var(--polo-off-white) 50%);
    border-left: 1px solid var(--polo-border);
    border-top: 1px solid var(--polo-border);
}

.polo-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--polo-accent);
    box-shadow: 0 25px 50px -12px rgba(26, 27, 58, 0.12);
}

.polo-service-card:hover::after {
    background: linear-gradient(135deg, transparent 50%, var(--polo-accent) 50%);
}

.polo-service-icon {
    width: 70px;
    height: 70px;
    background: var(--polo-off-white);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--polo-navy);
    transition: all 0.4s var(--transition-elegant);
}

.polo-service-card:hover .polo-service-icon {
    background: var(--polo-accent);
    color: var(--polo-navy);
    transform: scale(1.05);
}

.polo-service-icon svg {
    width: 34px;
    height: 34px;
}

.polo-service-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--polo-navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.polo-service-desc {
    color: var(--polo-text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .polo-services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .polo-service-card { padding: 28px 24px; }
    .polo-service-icon { width: 60px; height: 60px; margin-bottom: 20px; }
    .polo-service-title { font-size: 18px; }
}

@media (max-width: 480px) {
    .polo-services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCTS LISTING PAGE - HORIZONTAL STRIPS (new design)
   ============================================================ */

/* Intro section: title left, description+meta right */
.polo-products-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--polo-border);
}

.polo-products-intro-left {
    padding-right: 40px;
}

.polo-products-intro-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 300;
    color: var(--polo-navy);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 20px 0 0;
}

.polo-products-intro-title em {
    font-style: italic;
    color: var(--polo-accent);
    font-weight: 400;
}

.polo-products-intro-right p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--polo-text-light);
    margin-bottom: 30px;
}

.polo-products-intro-meta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.polo-products-intro-meta > div {
    font-size: 11px;
    color: var(--polo-text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.polo-products-intro-meta > div span {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--polo-navy);
    letter-spacing: -1px;
    margin-bottom: 4px;
}

/* Strip cards */
.polo-cat-strips {
    background: var(--polo-white);
}

.polo-cat-strip {
    display: grid;
    grid-template-columns: 90px 1fr 50%;
    gap: 50px;
    align-items: stretch;
    padding: 50px 0;
    border-bottom: 1px solid var(--polo-border);
    text-decoration: none;
    color: inherit;
    transition: all 0.5s var(--transition-elegant);
    position: relative;
}

.polo-cat-strip:last-child {
    border-bottom: none;
}

.polo-cat-strip:hover {
    background: var(--polo-off-white);
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 -30px;
}

/* Reversed layout (image left, content right) */
.polo-cat-strip.reverse {
    grid-template-columns: 50% 1fr 90px;
}

.polo-cat-strip.reverse .polo-cat-strip-num {
    order: 3;
    text-align: right;
}

.polo-cat-strip.reverse .polo-cat-strip-content {
    order: 2;
}

.polo-cat-strip.reverse .polo-cat-strip-img {
    order: 1;
}

/* Number */
.polo-cat-strip-num {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 6px;
    line-height: 1;
}

.polo-cat-strip-num span {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: var(--polo-navy);
    -webkit-text-stroke: 1px var(--polo-navy);
    transition: all 0.4s ease;
    display: block;
    letter-spacing: -2px;
}

.polo-cat-strip:hover .polo-cat-strip-num span {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: var(--polo-accent);
}

.polo-cat-strip-num small {
    display: block;
    font-size: 12px;
    color: var(--polo-text-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 8px;
    font-family: var(--font-display);
}

/* Content */
.polo-cat-strip-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 30px;
}

.polo-cat-strip.reverse .polo-cat-strip-content {
    padding-right: 0;
    padding-left: 30px;
}

.polo-cat-strip-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--polo-accent);
    margin-bottom: 18px;
}

.polo-cat-strip-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    color: var(--polo-navy);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.polo-cat-strip:hover .polo-cat-strip-title {
    color: var(--polo-navy-deep);
}

.polo-cat-strip-desc {
    color: var(--polo-text-light);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 540px;
}

.polo-cat-strip-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--polo-navy);
    align-self: flex-start;
}

.polo-cat-strip-cta-text {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
}

.polo-cat-strip-cta-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--polo-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--polo-navy);
    transition: all 0.4s var(--transition-elegant);
}

.polo-cat-strip-cta-arrow svg {
    width: 16px;
    height: 16px;
}

.polo-cat-strip:hover .polo-cat-strip-cta-arrow {
    background: var(--polo-accent);
    border-color: var(--polo-accent);
    color: var(--polo-navy);
    transform: translateX(8px);
}

.polo-cat-strip:hover .polo-cat-strip-cta-text {
    color: var(--polo-accent);
}

/* Image */
.polo-cat-strip-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 18px;
    background: var(--polo-off-white);
}

.polo-cat-strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-elegant);
}

.polo-cat-strip:hover .polo-cat-strip-img img {
    transform: scale(1.06);
}

.polo-cat-strip-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 27, 58, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Products CTA box */
.polo-products-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 50px 60px;
    background: var(--polo-navy);
    border-radius: 24px;
    color: var(--polo-white);
    position: relative;
    overflow: hidden;
}

.polo-products-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.polo-products-cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.15);
    color: var(--polo-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.polo-products-cta-icon svg {
    width: 40px;
    height: 40px;
}

.polo-products-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    color: var(--polo-white);
    margin: 0 0 8px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.polo-products-cta p {
    color: var(--polo-silver-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.polo-products-cta .polo-btn-primary {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .polo-products-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .polo-products-intro-left { padding-right: 0; }
    .polo-products-intro-meta { gap: 24px; }
    .polo-products-intro-meta > div span { font-size: 28px; }

    .polo-cat-strip,
    .polo-cat-strip.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 0;
    }
    .polo-cat-strip.reverse .polo-cat-strip-num,
    .polo-cat-strip.reverse .polo-cat-strip-content,
    .polo-cat-strip.reverse .polo-cat-strip-img {
        order: initial;
        text-align: left;
        padding-left: 0;
    }
    .polo-cat-strip-num { flex-direction: row; align-items: baseline; gap: 12px; }
    .polo-cat-strip-num span { font-size: 44px; }
    .polo-cat-strip-content { padding: 0; }
    .polo-cat-strip:hover {
        padding-left: 16px;
        padding-right: 16px;
        margin: 0 -16px;
    }

    .polo-products-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 28px;
        gap: 24px;
    }
    .polo-products-cta-icon { margin: 0 auto; }
    .polo-products-cta p { margin: 0 auto; }
    .polo-products-cta .polo-btn-primary { justify-self: center; }
}

/* ============================================================
   PRODUCT CATEGORY PAGE LAYOUT (col3 sidebar / col9 content)
   ============================================================ */

/* Compact banner - title only */
.polo-inner-banner.polo-inner-banner-compact {
    min-height: 360px;
    padding-top: 120px;
}

.polo-product-layout {
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 40px;
    align-items: start;
}

/* SIDEBAR (col-3) */
.polo-product-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.polo-product-sidebar-inner {
    background: var(--polo-off-white);
    border-radius: 20px;
    padding: 30px 24px;
}

.polo-product-sidebar h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--polo-navy);
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(26, 27, 58, 0.08);
}

.polo-product-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.polo-product-sidebar ul li {
    margin-bottom: 2px;
}

.polo-product-sidebar ul a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    color: var(--polo-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.polo-product-sidebar ul a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
}

.polo-product-sidebar ul a:hover,
.polo-product-sidebar ul a.active {
    background: var(--polo-navy);
    color: var(--polo-white);
}

.polo-product-sidebar ul a:hover svg,
.polo-product-sidebar ul a.active svg {
    opacity: 1;
    transform: translateX(0);
    color: var(--polo-accent);
}

/* CONTENT (col-9) */
.polo-product-content {
    min-width: 0;
}

/* 4-column products grid */
.polo-product-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.polo-product-card-4 {
    display: flex;
    flex-direction: column;
    background: var(--polo-white);
    border: 1px solid var(--polo-border);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s var(--transition-elegant);
    position: relative;
}

.polo-product-card-4:hover {
    transform: translateY(-6px);
    border-color: var(--polo-accent);
    box-shadow: 0 20px 40px -12px rgba(26, 27, 58, 0.15);
}

.polo-product-card-4-img {
    /* aspect-ratio: 4/3; */
    overflow: hidden;
    background: #ffffff;
}

.polo-product-card-4-img img {
    width: 92%;
    
 
    transition: transform 0.6s var(--transition-elegant);
}

.polo-product-card-4:hover .polo-product-card-4-img img {
    transform: scale(1.07);
}

.polo-product-card-4-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.polo-product-card-4-content h4 {
    font-family: 'Manrope';
    font-size: 17px;
    font-weight: 600;
    color: var(--polo-navy);
    line-height: 1.3;
    margin: 0;
}

.polo-product-card-4-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--polo-text-light);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.polo-product-card-4-link svg {
    width: 14px;
    height: 14px;
}

.polo-product-card-4:hover .polo-product-card-4-link {
    color: var(--polo-accent);
    gap: 12px;
}

/* Empty state */
.polo-product-empty {
    padding: 80px 40px;
    background: var(--polo-off-white);
    border-radius: 20px;
    text-align: center;
}

.polo-product-empty h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--polo-navy);
    margin-bottom: 14px;
    font-weight: 500;
}

.polo-product-empty p {
    color: var(--polo-text-light);
    margin-bottom: 30px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA box */
.polo-product-cta {
    margin-top: 60px;
    padding: 40px;
    background: var(--polo-navy);
    border-radius: 20px;
    color: var(--polo-white);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.polo-product-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.18) 0%, transparent 60%);
}

.polo-product-cta h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--polo-white);
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.polo-product-cta p {
    color: var(--polo-silver-light);
    margin: 0 0 8px;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.polo-product-cta .polo-btn-primary {
    align-self: flex-start;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 1200px) {
    .polo-product-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .polo-product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .polo-product-sidebar {
        position: static;
    }
    .polo-product-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .polo-product-sidebar ul li {
        margin: 0;
        flex: 1 1 auto;
    }
    .polo-product-sidebar ul a {
        padding: 10px 14px;
        font-size: 12px;
        text-align: center;
        justify-content: center;
    }
    .polo-product-sidebar ul a svg { display: none; }

    .polo-product-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .polo-product-card-4-content { padding: 16px; gap: 10px; }
    .polo-product-card-4-content h4 { font-size: 15px; }

    .polo-product-cta { padding: 30px 24px; }
    .polo-product-cta h3 { font-size: 22px; }
}

@media (max-width: 480px) {
    .polo-product-grid-4 { grid-template-columns: 1fr; }
}

/* ===== EXPORT MAP SECTION ===== */
.polo-map-section {
    background: var(--polo-white);
    padding: 20px 0 50px;
    position: relative;
    overflow: hidden;
}

.polo-map-inner {
    background: var(--polo-bg-dark);
    background-image: linear-gradient(rgba(10, 11, 30, 0.92), rgb(10 11 30 / 66%)), url(../img/map-harita.jpeg);
    background-size: cover;
    background-position: center;
    background-blend-mode: normal;
    border-radius: 32px 32px 32px 32px;
    padding: 80px 60px 40px;
    position: relative;
    overflow: hidden;
    color: var(--polo-white);
}

/* Subtle glow on top */
.polo-map-inner::before {
    content: '';
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.polo-map-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

.polo-map-subtitle {
    color: var(--polo-silver-light);
    font-size: 16px;
    line-height: 1.7;
    max-width: 720px;
    margin: 25px auto 0;
}

.polo-map-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 3.5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--polo-white);
    margin-bottom: 0;
}

.polo-map-title em,
.polo-map-title .accent {
    font-style: normal;
    font-weight: 700;
    color: var(--polo-accent);
}

.polo-map-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    aspect-ratio: 2/1;
}

.polo-map-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.polo-map-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center,
        rgba(201, 169, 97, 0.15) 0%,
        transparent 50%);
    z-index: 1;
}

/* ===== MARQUEE COUNTRIES (Finclix style) ===== */
.polo-countries-section {
    background: var(--polo-white);
    padding: 0 0 60px;
    color: var(--polo-white);
    overflow: hidden;
}

.polo-countries-inner {
 
    border-radius: 0 0 32px 32px;
    padding: 30px 0 60px;
    margin-top: -1px;
    overflow: hidden;
}

.polo-marquee-row {
    display: flex;
    gap: 0;
    overflow: hidden;
    padding: 12px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.polo-marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 60s linear infinite;
    flex-shrink: 0;
    will-change: transform;
}

.polo-marquee-row.reverse .polo-marquee-track {
    animation-direction: reverse;
    animation-duration: 70s;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.polo-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 36px;
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 60px);
    font-weight: 700;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.18);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.polo-marquee-item.solid {
    color: var(--polo-white);
    -webkit-text-fill-color: var(--polo-white);
    -webkit-text-stroke: 0;
}

/* Daire separator */
.polo-marquee-dot {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--polo-accent);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
    align-self: center;
}

/* Eski yıldız stili - kaldırıldı ama eski kullanımlar için kalsın */
.polo-marquee-star {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--polo-accent);
}


/* ===== FOOTER UPPER (4 Cards - Turboplus style) ===== */
.polo-footer-upper {
    background: var(--polo-off-white);
    padding: 100px 0;
}

/* 3 columns × 2 rows grid:
   - Left big card spans 2 rows (cols 1)
   - Top right card spans 2 cols (cols 2-3, row 1)
   - Bottom: catalog (col 2, row 2) + certificates (col 3, row 2)
*/
.polo-fu-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    min-height: 700px;
}

.polo-fu-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px;
    text-decoration: none;
    transition: all 0.5s var(--transition-elegant);
}

.polo-fu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(26, 27, 58, 0.25);
}

/* Card 1: Environmental policy - left, 2 rows */
.polo-fu-card.large {
    grid-column: 1;
    grid-row: 1 / span 2;
}

/* Card 2: Blog - top right, 2 columns */
.polo-fu-card.wide {
    grid-column: 2 / span 2;
    grid-row: 1;
}

/* Card 3: Catalogue - middle bottom */
.polo-fu-card.col2 {
    grid-column: 2;
    grid-row: 2;
}

/* Card 4: Certificates - right bottom */
.polo-fu-card.col3 {
    grid-column: 3;
    grid-row: 2;
}

.polo-fu-card-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.polo-fu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-elegant);
}

.polo-fu-card:hover .polo-fu-card-img img {
    transform: scale(1.05);
}

.polo-fu-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
        rgba(10, 11, 30, 0.3) 0%,
        rgba(10, 11, 30, 0.85) 100%);
}

.polo-fu-card-content {
    position: relative;
    z-index: 3;
    color: var(--polo-white);
    margin-top: auto;
}

.polo-fu-card-tag {
    display: inline-block;
    padding: 7px 16px;
    background: var(--polo-accent);
    color: var(--polo-navy);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 20px;
}

.polo-fu-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--polo-white);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
}

.polo-fu-card-link svg {
    width: 14px;
    height: 14px;
}

.polo-fu-card-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 36px);
    font-weight: 500;
    color: var(--polo-white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.polo-fu-card-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.6;
    max-width: 90%;
}

.polo-fu-card-arrow-up {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--polo-white);
    z-index: 3;
    transition: all 0.4s var(--transition-elegant);
}

.polo-fu-card:hover .polo-fu-card-arrow-up {
    background: var(--polo-accent);
    border-color: var(--polo-accent);
    color: var(--polo-navy);
    transform: rotate(45deg);
}

/* Special card variants */
.polo-fu-card.accent {
    background: url(../img/polo-katalog-mockup.jpg);
    background-size: cover;
    color: var(--polo-navy);
}

.polo-fu-card.accent .polo-fu-card-content,
.polo-fu-card.accent .polo-fu-card-title {
    color: var(--polo-navy);
}

.polo-fu-card.accent .polo-fu-card-link {
    color: var(--polo-navy);
}

.polo-fu-card.accent .polo-fu-card-arrow-up {
    border-color: rgba(26, 27, 58, 0.4);
    color: var(--polo-navy);
}

.polo-fu-card.light {
    background: var(--polo-white);
    border: 1px solid var(--polo-border);
}

.polo-fu-card.light .polo-fu-card-content,
.polo-fu-card.light .polo-fu-card-title {
    color: var(--polo-navy);
}

.polo-fu-card.light .polo-fu-card-link {
    color: var(--polo-navy);
}

.polo-fu-card.light .polo-fu-card-arrow-up {
    border-color: var(--polo-border);
    color: var(--polo-navy);
}

.polo-fu-card.light .polo-fu-card-desc {
    color: var(--polo-text-light);
}

/* ===== BLOG CAROUSEL inside .wide card ===== */
.polo-fu-blog-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.polo-fu-blog-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease, transform 1.2s ease;
    transform: scale(1.05);
    z-index: 1;
}

.polo-fu-blog-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.polo-fu-blog-slide .polo-fu-card-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.polo-fu-blog-slide .polo-fu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polo-fu-blog-slide .polo-fu-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(10,11,30,0.3) 0%, rgba(10,11,30,0.85) 100%);
}

.polo-fu-blog-slide .polo-fu-card-content {
    position: absolute;
    bottom: 36px;
    left: 36px;
    right: 36px;
    z-index: 3;
    color: var(--polo-white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}

.polo-fu-blog-slide.active .polo-fu-card-content {
    opacity: 1;
    transform: translateY(0);
}

/* Carousel dots */
.polo-fu-carousel-dots {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.polo-fu-dot {
    width: 28px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.polo-fu-dot.active {
    background: var(--polo-accent);
    width: 44px;
}

.polo-fu-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE FOR NEW SECTIONS */
@media (max-width: 992px) {
    .polo-pg-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .polo-pg-left {
        position: static;
    }
    /* Mobile product groups - VERTICAL EXPANDING STACK (unique design) */
    .polo-pg-right {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
        scroll-snap-type: none !important;
    }
    .polo-pg-right::-webkit-scrollbar { display: none; }

    .polo-pg-card {
        position: static !important;
        flex: none !important;
        aspect-ratio: auto !important;
        border-radius: 20px;
        min-height: 90px;
        height: auto;
        padding: 0 !important;
        scroll-snap-align: none !important;
        background: var(--polo-white) !important;
        border: 1px solid var(--polo-border);
        box-shadow: none;
        overflow: hidden;
        display: flex !important;
        flex-direction: row;
        align-items: stretch;
        text-decoration: none;
        transition: all 0.4s var(--transition-elegant);
    }

    /* Hide overlay on mobile - we want light cards */
    .polo-pg-card .polo-pg-card-overlay,
    .polo-pg-card::before,
    .polo-pg-card::after {
        display: none !important;
    }

    /* Image becomes thumbnail (left side) */
    .polo-pg-card .polo-pg-card-img {
        position: relative !important;
        width: 110px;
        flex-shrink: 0;
        height: auto;
        z-index: 1;
    }
    .polo-pg-card .polo-pg-card-img img {
        opacity: 1 !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .polo-pg-card .polo-pg-card-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent 70%, var(--polo-white));
    }

    /* Card content (right side) */
    .polo-pg-card .polo-pg-card-content {
        position: relative !important;
        flex: 1;
        padding: 18px 18px 18px 14px !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 10px;
        z-index: 2;
    }

    .polo-pg-card-title {
        font-size: 17px !important;
        font-weight: 600 !important;
        color: var(--polo-navy) !important;
        max-width: 100% !important;
        line-height: 1.3 !important;
        font-family: var(--font-display);
    }

    .polo-pg-card-bottom {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .polo-pg-card-num {
        font-size: 28px !important;
        -webkit-text-stroke: 1px var(--polo-accent) !important;
        -webkit-text-fill-color: transparent;
        color: transparent;
        font-weight: 700;
        letter-spacing: -1px;
        line-height: 1;
    }

    .polo-pg-card-arrow {
        width: 36px !important;
        height: 36px !important;
        background: var(--polo-navy) !important;
        color: var(--polo-white) !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    .polo-pg-card-arrow svg { width: 14px !important; height: 14px !important; }

    /* Active/tap state - card lights up with accent */
    .polo-pg-card:active,
    .polo-pg-card:focus,
    .polo-pg-card.is-active {
        background: var(--polo-navy) !important;
        border-color: var(--polo-navy);
        transform: translateX(4px);
    }
    .polo-pg-card:active .polo-pg-card-img::after,
    .polo-pg-card.is-active .polo-pg-card-img::after {
        background: linear-gradient(90deg, transparent 50%, var(--polo-navy));
    }
    .polo-pg-card:active .polo-pg-card-title,
    .polo-pg-card.is-active .polo-pg-card-title {
        color: var(--polo-white) !important;
    }
    .polo-pg-card:active .polo-pg-card-num,
    .polo-pg-card.is-active .polo-pg-card-num {
        -webkit-text-stroke-color: var(--polo-accent) !important;
    }
    .polo-pg-card:active .polo-pg-card-arrow,
    .polo-pg-card.is-active .polo-pg-card-arrow {
        background: var(--polo-accent) !important;
        color: var(--polo-navy) !important;
        transform: rotate(45deg);
    }

    /* Hide mobile dots since we have static list now */
    .polo-pg-mobile-dots {
        display: none !important;
    }

    .polo-why-grid { grid-template-columns: 1fr; gap: 60px; }
    .polo-why-circles { max-width: 400px; margin: 0 auto; }
    .polo-why-inner { padding: 60px 24px; border-radius: 24px; }
    .polo-map-inner { padding: 50px 20px 30px; border-radius: 24px 24px 0 0; }
    .polo-countries-inner { border-radius: 0 0 24px 24px; padding: 25px 0 40px; }

    .polo-fu-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
        min-height: auto;
    }
    .polo-fu-card.large,
    .polo-fu-card.wide,
    .polo-fu-card.col2,
    .polo-fu-card.col3 {
        grid-column: auto;
        grid-row: auto;
        min-height: 280px;
    }

    .polo-marquee-item {
        font-size: clamp(20px, 6vw, 36px);
        padding: 0 24px;
    }
    .polo-marquee-star { width: 24px; height: 24px; }
}

@media (max-width: 576px) {
    .polo-pg-right { grid-template-columns: 1fr; }
    .polo-why-counters { grid-template-columns: 1fr; }
}


.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--transition-elegant), transform 1s var(--transition-elegant);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

::selection {
    background: var(--polo-accent);
    color: var(--polo-navy);
}


table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
}

/* HEADER */
thead th {
  background-color: #2b1d41;
  color: #ffffff;
  padding: 14px 12px;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* BODY */
tbody td {
  padding: 12px;
  border-bottom: 1px solid #eeeeee;
  color: #333333;
  font-size: 14px;
}

/* ZEBRA STRIPES */
tbody tr:nth-child(even) {
  background-color: #f5f5f7;
}

/* HOVER EFFECT */
tbody tr:hover {
  background-color: #e9e7ee;
  transition: 0.2s ease;
}

/* LEFT ACCENT */
tbody td:first-child {
  border-left: 4px solid transparent;
}

tbody tr:hover td:first-child {
  border-left: 4px solid #2b1d41;
}

/* BORDER RIGHT */
th, td {
  border-right: 1px solid #eeeeee;
}

th:last-child,
td:last-child {
  border-right: none;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--polo-off-white); }
::-webkit-scrollbar-thumb { background: var(--polo-navy); }
::-webkit-scrollbar-thumb:hover { background: var(--polo-accent); }

/* ============================================================
   WHATSAPP MULTI-LANGUAGE WIDGET
   ============================================================ */
.polo-wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
}

/* Trigger button */
.polo-wa-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.polo-wa-trigger::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: waPulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.6); opacity: 0; }
}

.polo-wa-trigger:hover {
    transform: scale(1.08);
    background: #1da851;
}

.polo-wa-trigger-icon-close {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 22px;
}

.polo-wa-trigger-icon-open {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.polo-wa-widget.open .polo-wa-trigger {
    background: var(--polo-navy);
    box-shadow: 0 10px 30px rgba(26, 27, 58, 0.4);
}

.polo-wa-widget.open .polo-wa-trigger::before {
    display: none;
}

.polo-wa-widget.open .polo-wa-trigger-icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.polo-wa-widget.open .polo-wa-trigger-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Options Panel */
.polo-wa-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 340px;
    background: var(--polo-white);
    border-radius: 24px;
    box-shadow: 0 25px 60px -10px rgba(26, 27, 58, 0.25),
                0 0 0 1px rgba(26, 27, 58, 0.04);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.polo-wa-widget.open .polo-wa-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Panel header (green gradient) */
.polo-wa-panel-header {
    padding: 22px 22px 18px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.polo-wa-panel-header::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.polo-wa-panel-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.polo-wa-panel-title i {
    font-size: 22px;
}

.polo-wa-panel-sub {
    margin: 6px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
}

/* Options list */
.polo-wa-options {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.polo-wa-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--polo-navy);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.polo-wa-option:hover {
    background: var(--polo-off-white);
    transform: translateX(4px);
}

/* Flag/Icon */
.polo-wa-flag {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--polo-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.polo-wa-option:hover .polo-wa-flag {
    background: var(--polo-white);
    box-shadow: 0 4px 12px rgba(26, 27, 58, 0.08);
}

.polo-wa-flag svg {
    width: 24px;
    height: 24px;
    color: var(--polo-accent);
}

.polo-wa-option-global .polo-wa-flag {
    background: linear-gradient(135deg, var(--polo-accent) 0%, #d4b876 100%);
}

.polo-wa-option-global .polo-wa-flag svg {
    color: var(--polo-navy);
}

/* Info */
.polo-wa-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
}

.polo-wa-info strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--polo-navy);
    font-family: var(--font-display);
}

.polo-wa-info small {
    font-size: 11px;
    color: var(--polo-text-light);
    letter-spacing: 0.3px;
    margin-top: 2px;
}

/* Arrow */
.polo-wa-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--polo-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--polo-navy);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.polo-wa-arrow svg {
    width: 12px;
    height: 12px;
}

.polo-wa-option:hover .polo-wa-arrow {
    background: #25D366;
    color: white;
    transform: translateX(2px);
}

.polo-wa-option-global:hover .polo-wa-arrow {
    background: var(--polo-accent);
    color: var(--polo-navy);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .polo-wa-widget {
        bottom: 20px;
        right: 20px;
    }
    .polo-wa-panel {
        width: calc(100vw - 40px);
        max-width: 320px;
        right: 0;
    }
    .polo-wa-trigger {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }
}
