:root {
    --primary: #3A3634;
    --secondary: #525252;
    --accent: #0096D6;
    --accent-gold: #F5A623;
    --text: #3A3634;
    --text-muted: #6b7280;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-pill: 50px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

* { box-sizing: border-box; }

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

a { color: inherit; }

/* ── Top Bar ── */
.top-bar {
    background: #18181B;
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar a { color: var(--accent-gold); text-decoration: none; }
.top-bar a:hover { color: #fff; }
.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.75rem;
    transition: var(--transition);
    text-decoration: none;
}
.top-bar-social a:hover { background: var(--accent); color: #fff; }

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.site-header .navbar { padding: 0.75rem 0; }
.site-header .navbar-brand {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0;
}
.site-header .navbar-brand img { height: 58px; width: auto; }
.site-header .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}
.site-header .nav-link:hover,
.site-header .nav-link.active { color: var(--accent); }
.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}
.site-header .nav-link:hover::after { transform: scaleX(1); }
.site-header .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}
.site-header .navbar-toggler:focus { box-shadow: none; }

.header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 12%, white);
    color: var(--accent);
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}
.header-social a:hover {
    background: var(--accent);
    color: #fff;
}
@media (max-width: 991.98px) {
    .site-header .header-social {
        justify-content: center;
        padding: 0.75rem 0 0.25rem;
        border-top: 1px solid #eee;
        margin-top: 0.5rem;
    }
}

/* ── Mega Menu (Big Menu) ── */
.site-header .navbar { position: relative; }
.mega-menu-item { position: static; }
.mega-menu-toggle .mega-chevron { font-size: 0.65rem; transition: transform 0.2s ease; }
.mega-menu-item.is-open .mega-chevron { transform: rotate(180deg); }
.mega-menu-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-top: 1px solid #eee;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1040;
    padding: 1.5rem 0 2rem;
}
.mega-menu-item.is-open .mega-menu-panel,
.mega-menu-item:hover .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ── Hover Dropdown (Medya vb.) ── */
.site-header .nav-hover-dropdown { position: relative; }
.site-header .nav-hover-dropdown .nav-dropdown-chevron {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}
.site-header button.nav-link,
.site-header button.nav-link:focus {
    color: var(--text);
    font: inherit;
    line-height: inherit;
}
.site-header button.nav-link.dropdown-toggle::after {
    display: none;
}
@media (min-width: 992px) {
    .site-header .nav-hover-dropdown .dropdown-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0;
        min-width: 12rem;
        border: none;
        border-radius: var(--radius);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }
    .site-header .nav-hover-dropdown:hover .dropdown-menu,
    .site-header .nav-hover-dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .site-header .nav-hover-dropdown:hover .nav-dropdown-chevron,
    .site-header .nav-hover-dropdown:focus-within .nav-dropdown-chevron {
        transform: rotate(180deg);
    }
}

/* Big Menu — Royal Forklift tarzı sol sekme + ürün paneli */
.bigmenu {
    display: flex;
    gap: 0;
    min-height: 320px;
    max-height: 70vh;
}
.bigmenu .tab-menu {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
    padding: 0.5rem 0;
    overflow-y: auto;
}
.bigmenu .tab-menu .bigmenu-tab {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    border-left: 3px solid transparent;
}
.bigmenu .tab-menu .bigmenu-tab:hover {
    background: #f5f7fa;
    color: var(--accent);
}
.bigmenu .tab-menu .bigmenu-tab.active {
    background: color-mix(in srgb, var(--accent) 8%, white);
    color: var(--accent);
    border-left-color: var(--accent);
}
.bigmenu .tabs {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 1.5rem 1rem 1.75rem;
}
.bigmenu .tab-pane { display: none; }
.bigmenu .tab-pane.active { display: block; }
.bigmenu .tab-item { margin-bottom: 1.75rem; }
.bigmenu .tab-item:last-child { margin-bottom: 0; }
.bigmenu .tab-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}
.bigmenu .tab-item .item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.55rem 0.65rem;
    margin: 0 -0.65rem;
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    transition: background 0.15s ease;
}
.bigmenu .tab-item .item:hover {
    background: #f5f7fa;
    color: var(--accent);
}
.bigmenu .tab-item .item img {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8f9fa;
}
.bigmenu .tab-item .item h6 {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    line-height: 1.35;
}
.bigmenu .tab-item .item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Sektörel Çözümlerimiz — masaüstünde 4 sütunlu kart grid */
@media (min-width: 992px) {
    .bigmenu.bigmenu-grid-4 {
        min-height: 0;
    }
    .bigmenu.bigmenu-grid-4.bigmenu-single-tab .tab-menu {
        display: none;
    }
    .bigmenu.bigmenu-grid-4.bigmenu-single-tab .tabs {
        padding: 0.75rem 1.5rem 1rem;
    }
    .bigmenu.bigmenu-grid-4 .tab-item {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem 1.25rem;
        margin-bottom: 0;
    }
    .bigmenu.bigmenu-grid-4 .tab-item h3 {
        grid-column: 1 / -1;
        margin-bottom: 0.25rem;
    }
    .bigmenu.bigmenu-grid-4 .tab-item .item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
        padding: 1rem 0.75rem;
        height: 100%;
        border: 1px solid #eee;
    }
    .bigmenu.bigmenu-grid-4 .tab-item .item:hover {
        background: var(--white);
        border-color: color-mix(in srgb, var(--accent) 35%, #eee);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    }
    .bigmenu.bigmenu-grid-4 .tab-item .item img {
        width: 80px;
        height: 80px;
        margin-bottom: 0.65rem;
    }
    .bigmenu.bigmenu-grid-4 .tab-item .item h6 {
        font-size: 0.8125rem;
    }
    .bigmenu.bigmenu-grid-4 .tab-item .item p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 991.98px) {
    .site-header button.nav-link.dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
        background: transparent;
        border: 0;
        cursor: pointer;
    }
    .site-header button.nav-link.dropdown-toggle::after {
        display: none;
    }

    .mega-menu-item { position: relative; }
    .mega-menu-panel {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0.5rem 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .mega-menu-item.is-open .mega-menu-panel { display: block; }
    .mega-menu-item:hover .mega-menu-panel { display: none; }
    .mega-menu-item.is-open:hover .mega-menu-panel { display: block; }

    .site-header .nav-hover-dropdown .dropdown-menu {
        position: static;
        float: none;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0.5rem 1rem;
        margin-top: 0.25rem;
        min-width: 0;
    }
    .site-header .nav-hover-dropdown.is-open .dropdown-menu {
        display: block;
    }
    .site-header .nav-hover-dropdown.is-open .nav-dropdown-chevron {
        transform: rotate(180deg);
    }
    .site-header .nav-hover-dropdown .dropdown-item {
        padding-left: 0;
        padding-right: 0;
        white-space: normal;
    }

    .bigmenu {
        flex-direction: column;
        min-height: 0;
        max-height: none;
    }
    .bigmenu .tab-menu {
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 0.5rem 0;
        gap: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }
    .bigmenu .tab-menu .bigmenu-tab {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 0.55rem 0.85rem;
        border-left: none;
        border-bottom: 2px solid transparent;
        font-size: 0.8rem;
    }
    .bigmenu .tab-menu .bigmenu-tab.active {
        border-left-color: transparent;
        border-bottom-color: var(--accent);
    }
    .bigmenu .tabs {
        padding: 0.75rem 0 0.5rem;
        max-height: 60vh;
    }
    .bigmenu.bigmenu-grid-4 .tab-item {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }
    .bigmenu.bigmenu-grid-4 .tab-item .item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
        padding: 0.75rem 0.5rem;
        border: 1px solid #eee;
    }
    .bigmenu.bigmenu-grid-4 .tab-item .item img {
        width: 64px;
        height: 64px;
        margin-bottom: 0.5rem;
    }
}

/* ── Buttons ── */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.75rem;
    transition: var(--transition);
    letter-spacing: 0.02em;
}
.btn-primary:hover {
    background: #2a2725;
    border-color: #2a2725;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58,54,52,0.25);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.75rem;
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-outline-light {
    border-radius: var(--radius-pill);
    font-weight: 600;
    padding: 0.65rem 1.75rem;
    border-width: 2px;
}
.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    border-radius: var(--radius-pill);
    font-weight: 600;
    padding: 0.65rem 1.75rem;
}
.btn-accent:hover {
    background: #007ab0;
    border-color: #007ab0;
    color: #fff;
}

/* ── Hero Slider ── */
.hero-slider { position: relative; }
.hero-slide {
    min-height: 88vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.75) 55%, rgba(255,255,255,0.92) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.9s ease;
}
.hero-content h1 {
    color: #ffffff;
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: none;
}
.hero-content .lead {
    color: #ffffff;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    margin-bottom: 2rem;
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 48px;
    height: 48px;
    background: rgba(58,54,52,0.85);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    margin: 0 1.5rem;
}
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover { background: var(--text); }
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon { width: 1.25rem; height: 1.25rem; }
.hero-slider .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text);
    opacity: 0.3;
    border: none;
}
.hero-slider .carousel-indicators .active { opacity: 1; background: var(--accent); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Stories Strip (Royal style) ── */
.home-stories {
    background: var(--white);
    border-bottom: 1px solid #eee;
}
.stories-scroll-wrap {
    position: relative;
}
.stories-scroll-wrap::before,
.stories-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.stories-scroll-wrap.can-scroll-left::before {
    left: 0;
    opacity: 1;
    background: linear-gradient(to right, var(--white), transparent);
}
.stories-scroll-wrap.can-scroll-right::after {
    right: 0;
    opacity: 1;
    background: linear-gradient(to left, var(--white), transparent);
}
.stories-strip {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem 1rem 1.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
}
.stories-strip::-webkit-scrollbar { display: none; }
.story-item {
    flex: 0 0 auto;
    text-align: center;
    width: 88px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}
.story-img {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--accent) 70%, white);
    overflow: hidden;
    margin: 0 auto 0.4rem;
    transition: var(--transition);
    background: var(--white);
}
.story-img:hover,
.story-img:active {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--accent) 25%, transparent);
}
.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 8%, white);
}
.story-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    line-height: 1.25;
    transition: var(--transition);
    word-break: break-word;
}
.story-label:hover { color: var(--primary); }

@media (min-width: 768px) {
    .stories-strip {
        gap: 10px;
        padding: 1.25rem max(1rem, calc((100vw - 1140px) / 2 + 1rem)) 2.5rem;
        justify-content: flex-start;
        scroll-snap-type: none;
    }
    .story-item { width: 164px; }
    .story-img {
        width: 110px;
        height: 110px;
    }
    .story-icon { font-size: 2rem; }
    .story-label { font-size: 0.65rem; }
}

@media (min-width: 1200px) {
    .stories-strip {
        padding-left: max(1rem, calc((100vw - 1140px) / 2));
        padding-right: max(1rem, calc((100vw - 1140px) / 2));
    }
}

/* ── Marquee Ticker ── */
.marquee-bar {
    background: var(--white);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    padding: 0.75rem 0;
}
.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    border-right: 1px solid #eee;
    transition: var(--transition);
}
.marquee-item:hover { color: var(--accent); background: var(--light-bg); }
.marquee-item:nth-child(6n+1) { border-left: 4px solid var(--accent-gold); }
.marquee-item:nth-child(6n+2) { border-left: 4px solid var(--accent); }
.marquee-item:nth-child(6n+3) { border-left: 4px solid #25D366; }
.marquee-item:nth-child(6n+4) { border-left: 4px solid #e74c3c; }
.marquee-item:nth-child(6n+5) { border-left: 4px solid #9b59b6; }
.marquee-item:nth-child(6n) { border-left: 4px solid #3498db; }

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

/* ── Second Slider Area (Royal Forklift — ürün vitrin) ── */
.second-slider-area {
    background: var(--white);
    padding: 0;
    overflow: hidden;
}
.second-slider-area.pt-0 { padding-top: 0 !important; }

.second-slider {
    position: relative;
    overflow: hidden;
    background: #111;
}
.second-slider-viewport {
    overflow: hidden;
    width: 100%;
}
.second-slider-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.second-slider-slide {
    flex: 0 0 100%;
    min-width: 100%;
}
.second-slider .item {
    position: relative;
    display: block;
    width: 100%;
    min-height: 280px;
}
.second-slider .item img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 280px;
    max-height: 520px;
    object-fit: cover;
}
.second-slider .item .only-m { display: none; }
.second-slider .item .content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem max(1rem, calc((100vw - 1140px) / 2 + 1rem));
    background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 45%, transparent 70%);
    color: #fff;
    pointer-events: none;
}
.second-slider .item .content h3 {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 1.25rem;
    max-width: 520px;
}
.second-slider .item .btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    pointer-events: auto;
}
.second-slider .item .btns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}
.second-slider .item .btns a:hover {
    background: #fff;
    color: var(--secondary);
}
.second-slider .item .btns a.btn-dark {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}
.second-slider .item .btns a.btn-dark:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.second-slider-area .action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    padding: 1.25rem max(1rem, calc((100vw - 1140px) / 2 + 1rem));
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: var(--white);
}
.second-slider-area .action h2 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    margin: 0;
    color: var(--secondary);
}
.second-slider-area .second-for {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
}
.second-slider-area .second-for a {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.second-slider-area .second-for a:hover {
    color: var(--accent);
    border-color: color-mix(in srgb, var(--accent) 30%, white);
}
.second-slider-area .second-for a.active {
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 10%, white);
    border-color: var(--accent);
}

@media (max-width: 991.98px) {
    .second-slider .item { min-height: 220px; }
    .second-slider .item img {
        min-height: 220px;
        max-height: 360px;
    }
    .second-slider .item .only-d { display: none; }
    .second-slider .item .only-m { display: block; }
    .second-slider .item .content {
        padding: 1.5rem 1rem;
        background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.75) 100%);
        justify-content: flex-end;
    }
    .second-slider-area .action {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    .second-slider-area .second-for {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }
}

/* ── Box Slider Area (Royal — Sistem Makinaları) ── */
.box-slider-area {
    background: var(--white);
    padding: 0;
    overflow: hidden;
}
.box-slider-area.pt-0 { padding-top: 0 !important; }

    .box-slider-area .action {
        /*display: flex;*/
        text-align: center;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1rem 2rem;
        padding: 1.25rem max(1rem, calc((100vw - 1140px) / 2 + 1rem));
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        background: var(--white);
    }
.box-slider-area .action h2 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    margin: 0;
    color: var(--secondary);
}
.box-slider-area .box-for {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
}
.box-slider-area .box-for a {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    transition: var(--transition);
}
.box-slider-area .box-for a:hover {
    color: var(--accent);
    border-color: color-mix(in srgb, var(--accent) 25%, white);
}
.box-slider-area .box-for a.active {
    color: var(--secondary);
    background: var(--light-bg);
    border-color: #ddd;
}

.box-slider {
    position: relative;
    overflow: hidden;
    background: var(--white);
}
.box-slider-viewport {
    overflow: hidden;
    width: 100%;
}
.box-slider-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.box-slider-slide {
    flex: 0 0 100%;
    min-width: 100%;
}
.box-slider .item {
    padding: 1.5rem max(1rem, calc((100vw - 1140px) / 2 + 1rem)) 2rem;
}
.box-slider .item .row {
    align-items: stretch;
}
.box-slider .item .col-md-6 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.box-slider .box {
    position: relative;
    flex: 1 1 auto;
    min-height: 512px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #111;
}
.box-slider .box.box-half {
    flex: 1 1 0;
    min-height: 0;
}
.box-slider .box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.box-slider .box .only-m { display: none; }
.box-slider .box .text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.82) 100%);
    color: #fff;
    z-index: 1;
}
.box-slider .box .text h3 {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 700;
    margin: 0 0 0.65rem;
    line-height: 1.3;
}
.box-slider .box .text p {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
}
.box-slider .box .text .btn-dark {
    align-self: flex-start;
    border-radius: var(--radius-pill);
    padding: 0.55rem 1.15rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--secondary);
    border-color: var(--secondary);
}
.box-slider .box .text .btn-dark:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.stacked-features {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}
.stacked-features li,
.stacked-features p {
    display: block;
    margin: 0 0 0.35rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
}
.stacked-features li:last-child,
.stacked-features p:last-child {
    margin-bottom: 0;
}
.product-slider .box-product .text .stacked-features li,
.product-slider .box-product .text .stacked-features p {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 0.3rem;
}
.second-slider .item .content .stacked-features li,
.second-slider .item .content .stacked-features p {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.45;
    margin-bottom: 0.4rem;
    max-width: 520px;
}

@media (max-width: 767.98px) {
    .box-slider-area .action {
        flex-direction: column;
        align-items: flex-start;
    }
    .box-slider .box {
        min-height: 260px;
    }
    .box-slider .box .only-d { display: none; }
    .box-slider .box .only-m { display: block; }
    .box-slider .item .col-md-6 {
        gap: 0.85rem;
    }
}

/* ── Product Slider (Royal — İstifleme Makineleri vb.) ── */
.product-slider-section {
    background: var(--white);
    padding: 0 0 3rem;
    overflow: hidden;
    border-top: 1px solid #eee;
}
.product-slider-section .title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin: 0;
    padding: 2.5rem 1rem 0;
    color: var(--secondary);
}
.product-slider {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 3.5rem;
}
.product-slider-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.product-slider-viewport::-webkit-scrollbar {
    display: none;
}
.product-slider-track {
    display: flex;
    gap: 1rem;
}
.product-slider .item {
    flex: 0 0 calc((100% - 3rem) / 4);
    scroll-snap-align: start;
    min-width: 0;
}
.product-slider .box-product {
    position: relative;
    height: 100%;
    min-height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /*background: #111;*/
}
.product-slider .box-product img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 55%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}
.product-slider .box-product:hover img {
    transform: scale(1.04);
}
.product-slider .box-product .text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,-0.45) 60%, rgba(0,0,0,0.85) 100%);
    color: #fff;
    z-index: 1;
}
.product-slider .box-product .text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.55rem;
    line-height: 1.3;
}
.product-slider .box-product .text p {
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0 0 0.9rem;
    color: rgba(255,255,255,0.92);
}
.product-slider .box-product .text .btn-dark {
    align-self: flex-start;
    border-radius: var(--radius-pill);
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--secondary);
    border-color: var(--secondary);
}
.product-slider .box-product .text .btn-dark:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.product-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0;
}
.product-slider-nav:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--accent);
}
.product-slider-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}
.product-slider-prev { left: 0.35rem; }
.product-slider-next { right: 0.35rem; }
.product-slider-nav i {
    font-size: 1.2rem;
    line-height: 1;
}

@media (max-width: 1199.98px) {
    .product-slider .item {
        flex: 0 0 calc((100% - 2rem) / 3);
    }
}

@media (max-width: 991.98px) {
    .product-slider-section .title {
        padding-top: 2rem;
    }
    .product-slider .item {
        flex: 0 0 calc((100% - 1rem) / 2);
    }
    .product-slider .box-product {
        min-height: 380px;
    }
}

@media (max-width: 575.98px) {
    .product-slider {
        padding: 0 2.85rem;
    }
    .product-slider .item {
        flex: 0 0 calc(100% - 1rem);
    }
    .product-slider-nav {
        width: 2.25rem;
        height: 2.25rem;
    }
}

/* ── Product Showcase Grid (legacy) ── */
.product-showcase-section {
    background: var(--white);
    padding: 0 0 3rem;
    overflow: hidden;
}
.product-showcase-head {
    padding: 2.5rem 0 1.5rem;
    text-align:center;
    border-top: 1px solid #eee;
}
.product-showcase-head h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin: 0;
    color: var(--secondary);
}
.product-showcase-subtitle {
    margin: 0.5rem 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.product-showcase-carousel {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 3.25rem;
}
.product-showcase-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.35rem;
}
.product-showcase-viewport::-webkit-scrollbar {
    display: none;
}
.product-showcase-track {
    display: flex;
    gap: 1.25rem;
}
.showcase-product-card {
    flex: 0 0 calc((100% - 3.75rem) / 4);
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    min-width: 0;
    width: 100%;
    max-width: 900px;
}
.showcase-product-card.is-visible {
    transform: translateY(0) !important;
}
.showcase-product-card:hover {
    border-color: color-mix(in srgb, var(--accent) 35%, white);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.showcase-product-card.is-visible:hover {
    transform: translateY(-4px) !important;
}
.showcase-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.showcase-nav:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--white);
}
.showcase-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}
.showcase-nav-prev { left: 0; }
.showcase-nav-next { right: 0; }
.showcase-nav i {
    font-size: 1.15rem;
    line-height: 1;
}
.showcase-product-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 435 / 500;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.showcase-product-visual img {
    width: 100%;
    height: 100%;
    max-width: 435px;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}
.showcase-product-card:hover .showcase-product-visual img {
    transform: scale(1.04);
}
.showcase-product-placeholder {
    font-size: 2.5rem;
    color: #ccc;
}
.showcase-product-body {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.showcase-product-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    color: var(--secondary);
}
.showcase-product-body p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0 0 1rem;
    flex: 1;
}
.showcase-product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}
.showcase-product-link:hover {
    color: var(--secondary);
}
.showcase-product-link::after {
    content: "\F138";
    font-family: "bootstrap-icons";
    font-size: 0.85rem;
}

@media (max-width: 1199.98px) {
    .showcase-product-card {
        flex: 0 0 calc((100% - 2.5rem) / 3);
    }
}

@media (max-width: 991.98px) {
    .product-showcase-head {
        padding: 2rem 0 1rem;
    }
    .showcase-product-card {
        flex: 0 0 calc((100% - 1.25rem) / 2);
    }
}

@media (max-width: 575.98px) {
    .product-showcase-carousel {
        padding: 0 2.75rem;
    }
    .showcase-product-card {
        flex: 0 0 calc(100% - 2rem);
    }
    .showcase-nav {
        width: 2.15rem;
        height: 2.15rem;
    }
}

/* ── Sections ── */
.section-padding { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header.text-center .section-title { margin-bottom: 0.5rem; }
.section-badge {
    display: inline-block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.3;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0.75rem auto 0;
}
.section-text { color: var(--text-muted); font-size: 0.95rem; }
.section-text p:last-child { margin-bottom: 0; }

/* ── Feature Boxes (Royal style) ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.feature-box {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.feature-box:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.feature-box-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: color-mix(in srgb, var(--accent) 10%, white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}
.feature-box h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.feature-box p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Service / Product Cards ── */
.service-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    border: 1px solid #eee;
    transition: var(--transition);
    color: var(--text);
    text-decoration: none;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
    color: var(--text);
}
.service-card-visual {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.service-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.service-card:hover .service-card-visual img { transform: scale(1.05); }
.service-card-visual .service-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent);
    box-shadow: var(--shadow);
    margin: 0;
}
.service-card-body { padding: 1.5rem; }
.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.service-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solutions-offers-page {
    padding-bottom: 4rem;
}

.solutions-offers-grid .solutions-offer-card .service-card-visual {
    height: 180px;
}

.solutions-offers-grid .solutions-offer-card .service-card-visual .service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

@media (min-width: 1200px) {
    .solutions-offers-grid .solutions-offer-card .service-card-body {
        min-height: 190px;
    }
}

/* ── Product Cards ── */
.product-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    border: 1px solid #eee;
    transition: var(--transition);
    color: var(--text);
    text-decoration: none;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
    color: var(--text);
}
.product-card-visual {
    position: relative;
    height: 356px;
    background: #f5f5f5;
    overflow: hidden;
}
.product-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card-visual img { transform: scale(1.05); }
.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}
.product-card-body { padding: 1.25rem; }
.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.product-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.product-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.product-specs li {
    margin-bottom: 0.35rem;
}
.product-specs i {
    color: var(--accent);
    margin-right: 0.35rem;
}
.product-spec-table th {
    width: 40%;
    background: #f8f9fa;
    font-weight: 600;
    font-size: 0.875rem;
}
.product-spec-table td { font-size: 0.875rem; }
.product-detail-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}
.product-gallery-main img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
}
.product-gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.product-gallery-thumb {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0;
    background: none;
    width: 88px;
    height: 68px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.product-gallery-thumb.active,
.product-gallery-thumb:hover {
    border-color: var(--accent);
}
.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Legacy service-icon (inner pages) */
.service-icon {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent) 10%, white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

/* ── About ── */
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    transform: translate(12px, 12px);
    z-index: -1;
}
.about-image-wrap img { border-radius: var(--radius-lg); }

/* ── Why Us Pillars ── */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.pillar-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}
.pillar-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}
.pillar-card .pillar-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--accent) 20%, white);
    line-height: 1;
    margin-bottom: 1rem;
}
.pillar-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.pillar-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Brands ── */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.25rem;
    align-items: center;
}
.brand-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}
.brand-item img {
    max-height: 128px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: var(--transition);
}
.brand-item:hover img { filter: none; opacity: 1; }
.brand-name { font-weight: 600; color: var(--text); font-size: 0.85rem; }

/* ── References / Client Logos Marquee ── */
.references-marquee {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0 1rem;
}
.references-marquee::before,
.references-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(2rem, 8vw, 5rem);
    z-index: 2;
    pointer-events: none;
}
.references-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--light-bg), transparent);
}
.references-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--light-bg), transparent);
}
.references-marquee-viewport {
    overflow: hidden;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}
.references-marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: references-marquee 36s linear infinite;
    will-change: transform;
}
.references-marquee:hover .references-marquee-track,
.references-marquee:focus-within .references-marquee-track {
    animation-play-state: paused;
}
.reference-logo-item {
    flex: 0 0 calc((min(100vw, 1140px) - 2rem - 3.75rem) / 4);
    width: calc((min(100vw, 1140px) - 2rem - 3.75rem) / 4);
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.reference-logo-item:hover {
    border-color: color-mix(in srgb, var(--accent) 35%, white);
    box-shadow: var(--shadow);
}
.reference-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.reference-logo-item img {
    max-height: 56px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(25%);
    opacity: 0.9;
    transition: var(--transition);
}
.reference-logo-item:hover img {
    filter: none;
    opacity: 1;
}
@keyframes references-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 991.98px) {
    .reference-logo-item {
        flex-basis: calc((100vw - 2rem - 1.25rem) / 2);
        width: calc((100vw - 2rem - 1.25rem) / 2);
    }
}
@media (max-width: 575.98px) {
    .reference-logo-item {
        flex-basis: calc(100vw - 2rem);
        width: calc(100vw - 2rem);
    }
}
@media (prefers-reduced-motion: reduce) {
    .references-marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }
    .references-marquee-viewport {
        overflow: visible;
    }
    .references-marquee [aria-hidden="true"] {
        display: none;
    }
}

/* ── References Page (Royal Forklift ortaklar tablosu) ── */
.references-page .references-partners-grid {
    --partner-border: #e3e3e3;
    margin-left: 0;
    margin-right: 0;
}
.references-page .references-partners-col {
    padding: 0;
}
.references-page .references-partner-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #f4f4f4;
    border: 1px solid var(--partner-border);
    margin-right: -1px;
    margin-bottom: -1px;
    overflow: hidden;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}
.references-page .references-partner-box:hover {
    background: #efefef;
    box-shadow: inset 0 0 0 1px rgba(0, 150, 214, 0.15);
    z-index: 1;
    position: relative;
}
.references-page .references-partner-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 1.25rem 1rem 0.75rem;
    background: #f4f4f4;
    text-decoration: none;
}
.references-page .references-partner-media img {
    width: 100%;
    max-width: 220px;
    max-height: 140px;
    object-fit: contain;
    filter: grayscale(10%);
    transition: transform 0.2s ease, filter 0.2s ease;
}
.references-page .references-partner-box:hover .references-partner-media img {
    filter: none;
    transform: scale(1.03);
}
.references-page .references-partner-caption {
    padding: 1rem 0.75rem 1.15rem;
    text-align: center;
    background: #f4f4f4;
    border-top: 1px solid var(--partner-border);
    margin-top: auto;
}
.references-page .references-partner-caption h4 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
}
@media (min-width: 992px) {
    .references-page .references-partner-media {
        min-height: 200px;
    }
}
@media (max-width: 575.98px) {
    .references-page .references-partner-media {
        min-height: 130px;
        padding: 0.85rem 0.65rem 0.5rem;
    }
    .references-page .references-partner-media img {
        max-height: 90px;
    }
    .references-page .references-partner-caption {
        padding: 0.75rem 0.5rem 0.85rem;
    }
    .references-page .references-partner-caption h4 {
        font-size: 0.875rem;
    }
}

/* ── Social Media Section ── */
.social-media-section {
    background: var(--white);
}
.social-media-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}
.social-media-card-wrap {
    min-width: 0;
}
.social-media-card {
    position: relative;
    display: block;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--light-bg);
    border: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
.social-media-card:hover {
    border-color: color-mix(in srgb, var(--accent) 35%, white);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.social-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.social-media-card:hover img {
    transform: scale(1.05);
}
.social-media-platform {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 2;
}
.social-media-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1;
}
.social-media-card:hover .social-media-overlay {
    opacity: 1;
}
.social-media-overlay p {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
}
.social-media-follow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}
.social-media-follow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: var(--white);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-media-follow-link:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}
.social-media-follow-link i {
    font-size: 1.05rem;
}
@media (max-width: 991.98px) {
    .social-media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575.98px) {
    .social-media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }
}

/* ── Blog ── */
.blog-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover img { transform: scale(1.03); }
.blog-card .img-wrap { overflow: hidden; }
.blog-card-body { padding: 1.5rem; }
.blog-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    line-height: 1.4;
}
.blog-card h3 a { color: var(--text); text-decoration: none; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 1rem; }

/* ── FAQ ── */
.faq-accordion .accordion-item {
    border: 1px solid #eee;
    margin-bottom: 0.5rem;
    border-radius: var(--radius) !important;
    overflow: hidden;
    background: var(--white);
}
.faq-accordion .accordion-button {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    box-shadow: none !important;
    padding: 1.25rem 1.5rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--light-bg);
    color: var(--accent);
}
.faq-accordion .accordion-button::after { filter: none; }
.faq-accordion .accordion-body {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0 1.5rem 1.25rem;
}

/* ── CTA Banner ── */
.cta-banner {
    background: var(--secondary);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}
.cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
}
.cta-banner p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ── Footer ── */
.site-footer {
    background: #18181B;
    color: rgba(255,255,255,0.8);
}
.site-footer h5, .site-footer h6 {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}
.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    line-height: 2.2;
    font-size: 0.875rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-posts .footer-post-item { margin-bottom: 0.85rem; line-height: 1.4; }
.footer-posts .footer-post-item:last-child { margin-bottom: 0; }
.footer-posts a {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    line-height: 1.45;
    text-decoration: none;
    transition: var(--transition);
}
.footer-posts a:hover { color: var(--accent); padding-left: 4px; }
.footer-post-date {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    margin-top: 0.15rem;
}
.footer-posts-all {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}
.footer-posts-all:hover { color: #fff; }
.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-social-link:hover { background: var(--accent); color: white; }

.footer-contact-list { margin-top: 0.25rem; }
.footer-contact-item { margin-bottom: 1.25rem; }
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-label {
    display: block;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
    opacity: 0.9;
}
.footer-contact-value p:last-child { margin-bottom: 0; }
.footer-map-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}
.footer-map-link:hover { color: #fff; text-decoration: underline; }

/* ── Bottom Action Bar (Royal style) ── */
.bottom-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1019;
    display: flex;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.bottom-action-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 0.5rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.bottom-action-bar a:hover { filter: brightness(1.1); color: #fff; }
.bottom-action-bar .action-call { background: var(--accent-gold); }
.bottom-action-bar .action-whatsapp { background: #25D366; }
.bottom-action-bar .action-email { background: var(--accent); }
body.has-bottom-bar { padding-bottom: 52px; }
body.has-bottom-bar .whatsapp-float { bottom: 68px; }

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 1020;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.08); color: white; }

/* ── Contact ── */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.contact-info i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.contact-form {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.contact-form .form-control {
    border-radius: var(--radius);
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
}
.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}
.support-form-section {
    padding-bottom: 1.75rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid #eee;
}
.support-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.support-form-section-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text);
}
.support-form .form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.support-form .form-select {
    border-radius: var(--radius);
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
}
.support-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}

/* ── Why Us Content ── */
.why-us-content ul { list-style: none; padding: 0; margin: 0; }
.why-us-content li {
    padding: 0.85rem 0 0.85rem 2rem;
    position: relative;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #ffffff;
}
    .why-us-content li::before {
        content: '\F26A';
        font-family: 'bootstrap-icons';
        position: absolute;
        left: 0;
        color: var(--secondary);
    }

/* ── Page Banner ── */
.page-banner {
    background: var(--light-bg);
    color: var(--text);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.page-banner h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.page-banner .lead { color: var(--text-muted); font-size: 1rem; }
.page-banner-image {
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    border-bottom: none;
}
.page-banner-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
}
.page-banner-image .container { position: relative; z-index: 1; }
.page-banner-image h1, .page-banner-image .lead { color: #fff; }
.page-content { padding: 4rem 0; }
.about-page-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-page-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ── Contact Page (Royal Forklift style) ── */
.contact-page { padding-bottom: 4rem; }
.contact-breadcrumb {
    background: transparent;
    padding: 1.25rem 0 0.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
}
.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }
.contact-breadcrumb a { color: var(--accent); text-decoration: none; }
.contact-breadcrumb a:hover { text-decoration: underline; }

.contact-hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light-bg);
    margin-bottom: 3rem;
    min-height: 220px;
    display: flex;
    align-items: center;
}
.contact-hero-image {
    background-size: cover;
    background-position: center;
    min-height: 280px;
}
.contact-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 100%);
}
.contact-hero-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
    max-width: 720px;
}
.contact-hero h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.contact-hero-image h2,
.contact-hero-image p { color: #fff; }
.contact-hero p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-section { padding: 2.5rem 0; }
.contact-section .title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--secondary);
}

.custom-box-1 {
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.custom-box-1:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.custom-box-1 h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.custom-box-1 h3 i { color: var(--accent); font-size: 1.1rem; }
.custom-box-1 p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}
.custom-box-1 .img {
    margin: 0.5rem 0 1rem;
}
.custom-box-1 .img img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}
.custom-box-1 .btn-dark {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius-pill);
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    margin-top: auto;
}
.custom-box-1 .btn-dark:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.box-content-2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.box-content-2.h-half { min-height: 140px; }
.box-content-2 h3,
.box-content-2 h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary);
}
.box-content-2 p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}
.box-content-2 p.big { font-size: 0.95rem; color: var(--text); }
.box-content-2 p a { color: var(--accent); text-decoration: none; }
.box-content-2 p a:hover { text-decoration: underline; }
.box-content-2 a.icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
    transition: var(--transition);
}
.box-content-2 a.icon i { color: var(--accent); }
.box-content-2 a.icon:hover { color: var(--accent); }
.box-content-2.maps {
    padding: 0;
    overflow: hidden;
    min-height: 320px;
}
.box-content-2.maps iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}
.contact-map-placeholder {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    padding: 2rem;
    text-align: center;
}

.contact-form-section .custom-form .form-group { margin-bottom: 1rem; }
.contact-form-section .custom-form h6 {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.contact-form-section .custom-form .title {
    font-size: 1rem;
    font-weight: 600;
}
.contact-form-section .theme-color { color: var(--accent); }
.contact-form-section .form-check-label p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.contact-form-section .form-check-label a {
    color: var(--accent);
    font-size: 0.8rem;
}

.contact-form-short {
    max-width: 760px;
    margin: 0 auto;
}

.follow-we {
    padding-top: 3rem;
    text-align: center;
}
.follow-we .title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.follow-we .social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.follow-we .social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--text);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}
.follow-we .social li.youtube a:hover { background: #ff0000; color: #fff; }
.follow-we .social li.linkedin a:hover { background: #0a66c2; color: #fff; }
.follow-we .social li.instagram a:hover { background: #e4405f; color: #fff; }
.follow-we .social li.facebook a:hover { background: #1877f2; color: #fff; }
.follow-we .social li.twitter a:hover { background: #000; color: #fff; }
.follow-we .social li.whatsapp a:hover { background: #25d366; color: #fff; }
.follow-we .social li.other a:hover { background: var(--accent); color: #fff; }



/* Breadcrumb */
.breadcrumb-bar {
    background: var(--light-bg);
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
}
.breadcrumb-bar .breadcrumb {
    margin: 0;
    font-size: 0.85rem;
}
.breadcrumb-bar .breadcrumb a { color: var(--accent); text-decoration: none; }

/* ── Gallery ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    border: 1px solid #eee;
    transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    padding: 2rem 1rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ── Video Cards ── */
.video-card {
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}
.video-card .ratio { background: #000; }
.video-card-body { padding: 0.75rem 1rem 1rem; }

/* ── Media pages ── */
.media-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.35rem;
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
}
.media-subnav-link {
    flex: 1 1 auto;
    text-align: center;
    padding: 0.65rem 1rem;
    border-radius: var(--radius);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.media-subnav-link:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.8);
}
.media-subnav-link.active {
    background: var(--white);
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}
.media-filters {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
}
.media-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}
.media-item-tags span,
.gallery-meta span {
    display: inline-block;
    font-size: 0.72rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-muted);
}
.gallery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.35rem;
}
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.catalog-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: var(--transition);
}
.catalog-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: #ddd;
}
.catalog-card-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    font-size: 1.5rem;
}
.catalog-card-body { min-width: 0; }

/* ── Content Body ── */
.content-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
.content-body h2, .content-body h3 { color: var(--text); font-weight: 600; }
.content-body img { max-width: 100%; height: auto; border-radius: var(--radius); }

/* ── Hero video & mobile ── */
.hero-slide-video { position: relative; overflow: hidden; }
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Map ── */
.map-section iframe { display: block; filter: grayscale(20%); }

/* ── Products Page (Royal Forklift style) ── */
.products-page { padding-bottom: 4rem; }
.products-breadcrumb {
    background: transparent;
    padding: 1.25rem 0 0.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
}
.products-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }
.products-breadcrumb a { color: var(--accent); text-decoration: none; }
.products-breadcrumb a:hover { text-decoration: underline; }

.products-hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light-bg);
    margin-bottom: 2.5rem;
    min-height: 220px;
    display: flex;
    align-items: center;
}
.products-hero-image {
    background-size: cover;
    background-position: center;
    min-height: 280px;
}
.products-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 100%);
}
.products-hero-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
    max-width: 720px;
}
.products-hero h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.products-hero-image h2,
.products-hero-image p { color: #fff; }
.products-hero p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.products-category-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.product-category-card {
    display: grid;
    grid-template-columns: minmax(240px, 38%) 1fr auto;
    align-items: stretch;
    background: #f6f6f6;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 200px;
    border: 1px solid #eee;
}
.product-category-card img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: contain;
    display: block;
}
.product-category-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: linear-gradient(135deg, #ececec 0%, #f8f8f8 100%);
    color: var(--text-muted);
    font-size: 3rem;
}
.product-category-card .text {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-category-card .text h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}
.product-category-card .text p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}
.product-category-card .open {
    align-self: center;
    margin: 1.5rem 2rem;
    white-space: nowrap;
    border-radius: 999px;
    padding: 0.65rem 1.35rem;
    font-weight: 600;
}

.products-category-banner {
    border-radius: var(--radius-lg);
    margin-bottom: 0;
}

.product-related {
    border-top: 1px solid var(--border-color, rgba(0, 0, 0, 0.08));
}

.product-related .product-card {
    height: 100%;
}

@media (max-width: 991px) {
    .product-category-card {
        grid-template-columns: minmax(200px, 42%) 1fr;
    }
    .product-category-card .open {
        grid-column: 1 / -1;
        margin: 0 1.5rem 1.5rem;
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .product-category-card {
        grid-template-columns: 1fr;
    }
    .product-category-card img,
    .product-category-card-placeholder {
        min-height: 600px;
        max-height: 220px;
    }
    .product-category-card .text {
        padding: 1.5rem;
    }
    .products-hero-content { padding: 1.75rem 1.25rem; }
}

/* ── Utilities ── */
.bg-light { background: var(--light-bg) !important; }
.bg-dark-section {
    background: #18181B;
    color: #fff;
}
.text-accent { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 991px) {
    .top-bar { display: none; }
    .site-header .navbar-brand img { height: 50px; }
    .hero-slide { min-height: 75vh; }
    .section-padding { padding: 3.5rem 0; }
    .bottom-action-bar { display: flex; }
    body.has-bottom-bar { padding-bottom: 52px; }
}
@media (min-width: 992px) {
    .bottom-action-bar { display: none; }
    body.has-bottom-bar { padding-bottom: 0; }
}
@media (max-width: 768px) {
    .hero-slide { min-height: 70vh; background-image: var(--mobile-bg, var(--desktop-bg)) !important; }
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next { display: none; }
    .contact-form { padding: 1.25rem; }
    .contact-hero-content { padding: 1.75rem 1.25rem; }
    .box-content-2.h-half { min-height: auto; }
    .box-content-2.maps iframe,
    .contact-map-placeholder { min-height: 260px; }
}

.local-page-selector {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border: 1px solid #e8edf2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.local-page-selector-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.local-page-selector-step {
    background: color-mix(in srgb, var(--accent) 12%, white);
    color: var(--accent);
    font-weight: 600;
    padding: 0.45rem 0.85rem;
}
.local-page-selector-form .form-select:disabled {
    background-color: #f3f4f6;
    cursor: not-allowed;
}
.local-page-selector-form .form-text {
    font-size: 0.78rem;
    margin-top: 0.35rem;
}
#local-page-status {
    min-height: 1.25rem;
}
@media (max-width: 767.98px) {
    .local-page-selector-head {
        flex-direction: column;
    }
}
