@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@800;900&display=swap');

:root {
    --primary-color: #c1272d;
    /* Red from the screenshot */
    --dark-bg: #101010;
    --topbar-bg: #0a0a0a;
    --text-main: #ffffff;
    --text-muted: #8e8e8e;
    --font-family: 'Inter', sans-serif;
}

*:not(.material-symbols-outlined) {
    font-family: var(--font-family) !important;
}

.container {
    max-width: 1540px !important;
}

body {
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background-color: var(--topbar-bg);
    color: var(--text-muted);
    font-size: 13.5px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.top-bar span {
    font-weight: 300;
}

.top-bar b {
    font-weight: 600;
    color: #ccc;
}

.main-header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 400;
    padding: 10px 18px !important;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-quote {
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 100px;
    padding: 12px 28px !important;
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(193, 39, 45, 0.3);
}

.btn-quote:hover {
    background-color: #a31d23;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 39, 45, 0.4);
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .main-header {
        padding: 12px 0;
    }

    .navbar-brand img {
        max-height: 35px;
    }

    /* Custom Toggler with Material Symbols */
    .navbar-toggler {
        border: none !important;
        padding: 0;
        outline: none !important;
        box-shadow: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        position: relative;
    }

    .navbar-toggler .material-symbols-outlined {
        color: #ffffff;
        font-size: 32px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: absolute;
    }

    .navbar-toggler .close-icon {
        opacity: 0;
        transform: rotate(-90deg) scale(0);
    }

    .navbar-toggler[aria-expanded="true"] .menu-icon {
        opacity: 0;
        transform: rotate(90deg) scale(0);
    }

    .navbar-toggler[aria-expanded="true"] .close-icon {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    /* Mobile Menu Overlay */
    .navbar-collapse {
        background: rgba(16, 16, 16, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        margin-top: 15px;
        padding: 30px 20px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        z-index: 1000;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for menu items */
    .navbar-collapse.show .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .navbar-collapse.show .nav-item:nth-child(2) {
        transition-delay: 0.15s;
    }

    .navbar-collapse.show .nav-item:nth-child(3) {
        transition-delay: 0.2s;
    }

    .navbar-collapse.show .nav-item:nth-child(4) {
        transition-delay: 0.25s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) {
        transition-delay: 0.3s;
    }

    .navbar-collapse.show .nav-item:nth-child(6) {
        transition-delay: 0.35s;
    }

    .navbar-collapse.show .nav-item:nth-child(7) {
        transition-delay: 0.4s;
    }

    .nav-link {
        font-size: 18px !important;
        padding: 12px !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .btn-quote {
        margin-top: 20px;
        width: 100%;
        display: block;
        padding: 15px !important;
        font-size: 16px;
    }
}

/* Hero Section */
.hero-section {
    background-image: url('img/hero_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Calculate remaining height subtracting header (approx 145px) so total matches 100vh */
    min-height: calc(100vh - 145px);
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-title {
    font-family: 'Syne', sans-serif !important;
    font-size: 96px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.hero-title .line-1,
.hero-title .line-2 {
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}



.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: white;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: white;
    color: black;
}

/* Product Slider */
.product-slider {
    position: relative;
    width: 100%;
}

.product-track {
    display: flex;
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.product-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.hero-title .line-1,
.hero-title .line-2,
.hero-subtitle {
    transition: all 0.5s ease;
}

/* Larger, more logical card sizing */
.product-card_index {
    position: relative;
    flex: 0 0 365px;
    min-width: 0;
    height: 260px;
    /* Increased taller to definitely stop overlap */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    overflow: hidden;
}

/* SVG Mask Container */
.card-bg-mask_index {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    z-index: 1;
}

/* Ensure SVG stretches exactly to the container, no gaps */
.card-shape_index {
    display: block;
    width: 100%;
    height: 100%;
    /* filter is moved to .card-bg-mask if needed, or kept here if efficient */
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.card-content_index {
    position: relative;
    z-index: 2;
    padding: 20px 25px;
    /* Slightly more compact padding */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.product-info {
    max-width: 100%;
    /* Use full width for title as requested */
    width: 100%;
    position: relative;
    z-index: 10;
}

.product-cat_index {
    font-family: 'Syne', sans-serif !important;
    color: white;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    display: block;
    text-transform: uppercase;
    text-align: left;
    max-width: 380px;
}

.product-img_index {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
    /* Stay firmly at the bottom */
    max-height: 60%;
    /* Adjusted height ratio */
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    z-index: 5;
}




@media (max-width: 991.98px) {
    .hero-slider {
        padding-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 80px;
        min-height: auto;
        height: auto;
        text-align: center;
        /* Center align everything */
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin: 0 auto 20px auto;
        max-width: 100%;
    }

    .hero-title .line-1::after,
    .hero-title .line-2::after {
        display: none;
        /* Simplify title decorations on mobile */
    }

    /* Center the badge */
    .col-lg-6.d-flex.justify-content-lg-end {
        justify-content: center !important;
        flex-direction: column;
        align-items: center !important;
        margin-top: 10px;
    }

    .origin-badge {
        margin-right: 0 !important;
        margin-bottom: 30px;
        justify-content: center;
    }

    .slider-nav {
        display: flex !important;
        justify-content: center;
        margin-top: 20px;
        z-index: 100;
    }

    .nav-btn {
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Slider for Mobile */
    .product-slider.mt-5 {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .product-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        overflow-x: auto;
        padding-bottom: 30px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .product-track::-webkit-scrollbar {
        display: none;
    }

    .product-card_index {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        height: 160px;
        /* Set exactly to 160px as requested */
        margin-right: 0;
        scroll-snap-align: center;
        padding: 0 15px;
    }

    .card-content_index {
        padding: 15px 15px;
        /* Compact padding */
    }

    .product-cat_index {
        font-size: 14px;
        /* Scaled down for grid */
    }

    .product-img_index {
        max-width: 70%;
        max-height: 70%;
        bottom: 5px;
        right: 5px;
    }
}

/* About Section */

.about-section {
    background-color: #000;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-title {
    font-family: 'Zalando Sans Expanded', 'Syne', sans-serif !important;
    font-weight: 200;
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.about-description {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    display: inline;
    padding-bottom: 5px;
}

.about-text-wrapper {
    max-width: 90%;
}

.nav-btn-outline {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.nav-btn-outline:hover {
    background: white;
    color: black;
}

.btn-about {
    background-color: #c41e1e;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: none;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-about:hover {
    background-color: #e02d2d;
    color: white;
    transform: scale(1.05);
}

.about-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-bottom-left-radius: 120px;
    /* specialized corner */
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .about-section {
        min-height: auto;
        padding: 50px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-image-container {
        border-bottom-left-radius: 60px;
    }
}

/* Engineering Section */
.engineering-section {
    background-image: url('/assets/img/walpaper_01.png');
    background-size: cover;
    background-color: black;
    background-position: center;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.engineering-content-wrapper {
    position: relative;
    padding-left: 60px;
}

/* Vertical Dashed Line with Icon */


.engineering-title {
    font-family: 'Zalando Sans Expanded', 'Syne', sans-serif !important;
    font-weight: 200;
    font-size: 46px;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.engineering-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.wireframe-wrapper {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
}

.wireframe-img {
    filter: brightness(1.2) contrast(1.1);
    width: 100%;
}

@media (max-width: 991.98px) {
    .engineering-section {
        padding: 60px 0;
    }

    .engineering-content-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }

    .engineering-content-wrapper::before,
    .engineering-content-wrapper::after {
        display: none;
    }

    .engineering-title {
        font-size: 32px;
    }
}

/* Vision Section */
.vision-section {
    background-color: #000;
    overflow: hidden;
}

.vision-badge {
    background: rgba(40, 40, 40, 0.8);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
}

.vision-title {
    font-family: 'Zalando Sans Expanded', 'Syne', sans-serif !important;
    font-weight: 200;
    font-size: 56px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.vision-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
}

.pink-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ff007f;
    /* Magenta/Pink */
    border-radius: 50%;
    margin-left: 5px;
    position: relative;
    top: -5px;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

/* Specific position for the dot on the heading in the image */
.vision-title .pink-dot {
    position: absolute;
    right: 35%;
    top: 50%;
}

.vision-image-wrapper {
    position: relative;
    z-index: 1;
}

.pink-dot-large {
    position: absolute;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 3px solid #ff007f;
    border-radius: 50%;
    top: 45%;
    right: 45%;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.8);
}

.vision-img {
    width: 100%;
    height: auto;
    /* You might want to add a reflection or specialized mask if needed */
}

@media (max-width: 991.98px) {
    .vision-section {
        padding: 60px 0;
    }

    .vision-title {
        font-size: 36px;
    }

    .vision-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
}

/* Power Section */
.power-section {
    background-color: #000;
    background-image: url('/assets/img/background_02.png');
    background-size: cover;
    background-position: center;
    padding: 0 0 20px 0;
    position: relative;
    overflow: hidden;
    margin-top: -30px;
    /* Pull the section up slightly to bridge gap */
}

.power-badge-circle {
    width: 140px;
    height: 140px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.badge-content {
    text-align: center;
}

.badge-title,
.badge-subtitle {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.anvil-icon {
    font-size: 40px;
    display: block;
    margin: 5px 0;
}

.power-title {
    font-family: 'Zalando Sans Expanded', 'Syne', sans-serif !important;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.power-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.power-vehicles-wrapper {
    width: 100%;
    overflow: hidden;
}

.power-vehicles-row {
    position: relative;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.power-truck-img {
    width: 100%;
    /* Increased limit */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
    /* Mirror reflection effect */
    -webkit-box-reflect: below 0px linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}

.btn-power-red {
    background-color: #c41e1e;
    color: white;
    border-radius: 50px;
    padding: 18px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-power-white {
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    padding: 18px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.power-actions {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.sparks-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 60, 0, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.3;
}

/* Product Listing Styles */
.product-listing-section_pages {
    background-color: #000;
    padding: 100px 0;
}

@media (max-width: 991.98px) {
    .product-listing-section_pages {
        padding: 50px 0;
    }
}

.product-grid_pages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-item-card_pages {
    position: relative;
    width: 100%;
    aspect-ratio: 508 / 550;
    background: rgba(60, 60, 60, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.37px solid transparent;
    border-image: linear-gradient(to bottom, #000, #666) 1;
    clip-path: polygon(0% 40px, 40px 0%, 100% 0%, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0% 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease, background 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

.product-item-card_pages::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.product-item-card_pages:hover {
    transform: translateY(-10px);
    background: rgba(80, 80, 80, 0.6);
}

.product-item-img_pages {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    z-index: 2;
    transition: transform 0.5s ease;
}



.product-item-card_pages:hover .product-item-img_pages {
    transform: translateX(-50%) scale(1.05);
}

.product-item-info_pages {
    position: relative;
    z-index: 3;
}

.product-item-title_pages {
    font-family: 'Syne', sans-serif !important;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 22px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.btn-product-detail_pages {
    background-color: #c1272d;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-product-detail_pages:hover {
    background-color: #e02d2d;
    color: #fff;
}

@media (max-width: 576px) {
    .product-grid_pages {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 5px;
    }

    .product-item-card_pages {
        padding: 15px;
        aspect-ratio: auto;
        min-height: 280px;
        clip-path: none !important;
        border-radius: 15px;
        background: rgba(45, 45, 45, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .product-item-img_pages {
        top: 15px !important;
        width: 85% !important;
        height: 120px !important;
        object-fit: contain;
    }

    .product-item-title_pages {
        font-size: 13px !important;
        margin-bottom: 12px !important;
        min-height: 32px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .btn-product-detail_pages {
        padding: 8px 10px !important;
        font-size: 10px !important;
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }
}


.stats-row {
    gap: 20px;
    justify-content: center;
}

.stat-item {
    background: rgba(31, 31, 31, 0.5);
    border: 1px solid;
    border-image-source: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 70%);
    border-image-slice: 1;
    padding: 20px 25px;
    text-align: left;
    min-height: 213px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(45, 45, 45, 0.7);
    border-image-source: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 90%);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Zalando Sans Expanded', 'Syne', sans-serif !important;
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .stats-section {
        padding: 50px 0;
    }

    .stats-row {
        gap: 0;
    }

    .stat-item {
        border-right: none;
        border-bottom: none;
        border-image-source: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 90%);
        text-align: center;
        padding: 20px 10px;
        min-height: 160px;
        margin-bottom: 5px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-text {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .power-section {
        padding: 60px 0;
    }

    .power-title {
        font-size: 28px;
    }

    .power-truck-img {
        max-height: 200px;
    }

    .power-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Ticker Section */
.ticker-section {
    background-color: #0E0E0E;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-wrapper {
    display: flex;
    width: fit-content;
    animation: ticker-animation 100s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
}

.ticker-item {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 28px;
    font-weight: 200;
    color: #fff;
    text-transform: uppercase;
    padding: 0 40px;
    line-height: normal;
    letter-spacing: 1px;
}

.ticker-dot {
    color: #fff;
    font-size: 24px;
    opacity: 0.3;
}

@media (max-width: 991.98px) {
    .ticker-item {
        font-size: 18px;
        padding: 0 20px;
    }

    .ticker-dot {
        font-size: 16px;
    }
}

@keyframes ticker-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer Section */
.site-footer {
    background-color: #101010;
    color: #fff;
    padding: 80px 0 0 0;
    font-family: 'Outfit', sans-serif;
}

.footer-top {
    padding-bottom: 60px;
}

.footer-logo-area img {
    max-width: 250px;
    margin-bottom: 30px;
}

.footer-social-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: block;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: #c41e1e;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact-info {
    font-size: 14px;
}

.footer-contact-info p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-contact-info strong {
    color: #fff;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-adshub-logo {
    max-width: 100px;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    font-size: 13px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991.98px) {
    .site-footer {
        padding: 50px 0 0 0;
    }

    .footer-top {
        padding-bottom: 30px;
    }

    .footer-logo-area img {
        max-width: 180px;
        margin-bottom: 20px;
    }

    .footer-title {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .footer-bottom-content {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Catalog Section */
.catalog-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 50px 80px;
    overflow: hidden;
}

.catalog-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.catalog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    background-image: url(/assets/img/slide/elifgen_katalog.jpg);
    background-size: cover;
    /* Overlay for better readability */
    z-index: 1;
    background-position: center;
}

.catalog-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 20px;
}

.catalog-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.catalog-title {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 60px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 40px;
}

.catalog-title span {
    display: block;
    font-weight: 800;
    letter-spacing: -1px;
}

.btn-catalog {
    background-color: #fff;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-catalog:hover {
    background-color: #c41e1e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .catalog-section {
        height: auto;
        aspect-ratio: 16 / 9;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 20px;
        text-align: left;
    }

    .catalog-section::before {
        display: block;
        background-position: 15%;
    }

    .catalog-content {
        position: relative;
        text-align: left;
        width: auto;
        z-index: 5;
    }

    .btn-catalog {
        width: auto;
        max-width: none;
        margin: 0;
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* Corporate Hero Styles */
.corp-hero {
    background-color: #c1272d;
    background-image: none;
    background-size: cover;
    background-position: center;
    /* padding: 100px 0 30px 0; */
    color: #fff;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-compact {
    min-height: 250px !important;
    /* padding: 100px 0 20px !important; */
}


.corp-hero-breadcrumb {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    opacity: 0.5;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.corp-hero-title {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -1px;
}

.dynamic-page-hero {
    background-image: url('/assets/img/corp.svg');
    background-color: #0d0d0d;
    background-size: cover;
    background-position: center;
    min-height: 240px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.corp-hero-subtitle {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    max-width: 520px;
    line-height: 1.1;
}

.corp-hero-desc {
    font-size: 15px;
    line-height: 1.5;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991.98px) {
    .corp-hero {
        /* padding: 90px 0 20px !important; */
        min-height: 180px;
    }

    .corp-hero-title {
        font-size: 28px !important;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }

    .corp-hero-subtitle {
        font-size: 18px !important;
        margin-bottom: 15px;
    }

    .corp-hero-desc {
        font-size: 15px !important;
        line-height: 1.5;
    }

    .dynamic-page-hero {
        min-height: 40vh;
        padding: 60px 0;
    }
}

/* Vision & Mission Section */
.vision-mission-section {
    background-color: #fff;
    padding-top: 100px;
}

.vm-header {
    margin-bottom: 80px;
    text-align: left;
    padding-left: 50px;
}

.vm-main-title {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 48px;
    max-width: 389px;
    font-weight: 500;
    color: #101010;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
}

.vm-quote {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.vm-grid-container {
    background-color: #F0F0F0;
    padding: 80px 0;
}

.vm-grid-row {
    display: flex;
    justify-content: space-between;
}

.vm-item {
    flex: 1;
    padding: 0 50px;
    text-align: left;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.vm-item:last-child {
    border-right: none;
}

.vm-icon-box {
    color: #C01A20;
    font-size: 52px;
    margin-bottom: 30px;
}

.vm-icon-box .material-symbols-outlined {
    font-size: 45px !important;
}

.vm-icon-box i {
    font-style: normal;
}

.vm-item-title {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 22px;
    font-weight: 800;
    color: #101010;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vm-item-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 991.98px) {
    .vm-header {
        padding-left: 30px;
    }

    .vm-main-title {
        font-size: 36px;
    }

    .vm-grid-row {
        flex-direction: column;
        gap: 60px;
    }

    .vm-item {
        border-right: none;
        padding: 0 20px;
    }
}

/* Corporate Vehicles Section */
.corp-vehicles-section {
    background-color: #1E1E1E;
    padding: 100px 0 0 0;
    overflow: hidden;
    width: 100%;
}

.quality-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.quality-title {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.1;
}

.quality-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.corp-vehicle-img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

/* Solutions Hero Styles */
.solutions-hero {
    background-image: url('img/solutions_bread.webp');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.solutions-hero-content {
    flex: 1;
    padding: 100px 80px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.solutions-hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}


/* Solutions Grid Section */
.solutions-grid-section {
    background-color: #000;
    background-image: url('img/solitons_02_back.svg');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.sol-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(16.15px);
    -webkit-backdrop-filter: blur(16.15px);
    border-radius: 49.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    height: 100%;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sol-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.sol-card-icon-box {
    width: 100px;
    height: 100px;
    background-color: #C01A20;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.sol-card-icon-box .material-symbols-outlined {
    font-size: 40px;
    color: #fff;
}

.sol-card-body {
    padding: 20px 40px 40px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sol-card-title {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.sol-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

@media (max-width: 1199.98px) {
    .sol-card-title {
        font-size: 20px;
    }
}

@media (max-width: 991.98px) {
    .solutions-hero {
        flex-direction: column;
        background-image: url('img/corp.svg') !important;
        min-height: auto;
    }

    .solutions-hero-content {
        padding: 60px 30px;
    }

    .solutions-hero-image {
        height: 600px;
        display: block;
        width: 100%;
    }

    .solutions-grid-section {
        padding: 120px 0;
    }

    .sol-card {
        min-height: auto;
        margin-bottom: 30px;
    }
}

/* Media Gallery Styles */
.media-hero {
    background-color: #c1272d;
    background-image: url('img/corp.svg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 140px 0;
    color: #fff;
    position: relative;
}

.media-gallery-section {
    padding: 100px 0;
    background-color: #fff;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.gallery-item {
    width: 25%;
    padding: 15px;
}

.gallery-img-wrapper {
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #f8f9fa;
    transition: all 0.4s ease;
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(193, 39, 45, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.gallery-overlay span {
    color: #fff;
    font-size: 42px;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-img-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-img-wrapper:hover .gallery-overlay span {
    transform: scale(1);
}

.gallery-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #c1272d;
}

.gallery-img-wrapper:hover .gallery-img {
    transform: scale(1.08);
}

@media (max-width: 991.98px) {
    .media-hero {
        padding: 80px 0 100px 0;
        clip-path: none;
    }

    .gallery-item {
        width: 50%;
    }
}

/* Contact Hero Styles */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    background-image: url('img/iletisim.svg');
    background-size: cover;
    background-position: center;
}

.contact-hero-left {
    flex: 1;
    padding-top: 120px;
    padding-left: 80px;
    padding-bottom: 120px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text at the bottom */
    position: relative;
    z-index: 2;
}

.contact-hero-right {
    flex: 1;
    position: relative;
}

.hero-contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .contact-hero {
        flex-direction: column;
        min-height: auto;
        background-image: url('img/corp.svg') !important;
    }

    .contact-hero-left {
        padding: 80px 30px;
        min-height: 400px;
    }

    .contact-hero-right {
        height: 600px;
        width: 100%;
    }
}

/* UAE Office Section */
.contact-office-section {
    background-color: #050505;
    background-image: url('img/iletisim_022.svg');
    background-size: cover;
    background-position: center;
    background-blend-mode: hard-light;
    padding: 100px 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.office-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.office-info {
    flex: 1.2;
}

.office-title {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.office-details p {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 1.95rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.office-details strong {
    color: #fff;
    font-weight: 800;
    margin-right: 8px;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c1272d;
    text-decoration: none;
}

.office-cards {
    flex: 1;
    display: flex;
    gap: 30px;
}

.glass-card {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 0;
    height: 450px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.glass-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card-icon-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    background-color: #c01a20;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 20px;
    color: #fff;
    z-index: 5;
}

.card-icon-box .material-symbols-outlined {
    font-size: 48px !important;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.card-content {
    flex: 1;
    display: flex;
    align-items: center;
    /* Center vertically */
    justify-content: center;
    /* Center horizontally */
    padding: 120px 40px 60px 40px;
    /* More top padding to balance icon box */
    text-align: center;
}

.card-content h3 {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0;
}

/* Quotation Request Section */
.request-quotation-section {
    background-color: #fff;
    padding: 120px 0;
    color: #1a1a1a;
}

.quotation-grid {
    display: flex;
    gap: 80px;
}

.quotation-content {
    flex: 1;
    position: sticky;
    top: 140px;
    align-self: flex-start;
}

.quotation-main-title {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.quotation-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 450px;
    color: #444;
}

.quotation-form-wrapper {
    flex: 1;
    background-color: #e6e6e6;
    padding: 40px;
    border-radius: 20px;
    position: sticky;
    top: 140px;
    align-self: flex-start;
}

.quotation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-title {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #000;
    display: table;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    background-color: #f0f0f0;
    border: 1px solid #d4d4d4;
    border-radius: 15px;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: #fff;
    border-color: #c1272d;
    outline: none;
    box-shadow: 0 0 0 4px rgba(193, 39, 45, 0.1);
}

.btn-send-request {
    background-color: #000;
    color: #fff;
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 1rem;
    font-weight: 800;
    padding: 18px;
    border: none;
    border-radius: 12px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send-request:hover {
    background-color: #c1272d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {

    .office-grid,
    .quotation-grid {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .quotation-content,
    .quotation-form-wrapper {
        position: static;
    }

    .office-info,
    .quotation-content {
        max-width: 100%;
    }

    .office-cards {
        width: 100%;
        justify-content: center;
    }

    .quotation-intro {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-office-section {
        padding: 60px 0;
    }

    .office-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .office-details p {
        font-size: 1.35rem;
    }

    .office-cards {
        flex-direction: row;
        /* Side by side on mobile */
        gap: 15px;
        justify-content: center;
    }

    .glass-card {
        height: auto;
        min-height: 260px;
        border-radius: 25px;
    }

    .card-icon-box {
        width: 60px;
        height: 60px;
        border-bottom-right-radius: 15px;
    }

    .card-icon-box .material-symbols-outlined {
        font-size: 28px !important;
    }

    .card-content {
        padding: 70px 15px 30px 15px;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .quotation-main-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .quotation-form-wrapper {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 1.2rem;
    }
}

/* Product Detail Page Styles */
.product-detail-content_detail {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
}

.product-main-img_detail {
    margin-bottom: 40px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

.product-text-content_detail p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 300;
}

.features-title_detail {
    font-family: 'Syne', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.features-intro_detail,
.features-list-header_detail {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-weight: 300;
}

.features-list_detail {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.features-list_detail li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.features-list_detail li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c1272d;
    font-weight: bold;
}

.collage-title_detail {
    font-family: 'Syne', sans-serif !important;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.collage-placeholder_detail {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gallery Thumbnail Grid */
.gallery-thumbs_detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-thumb-item_detail {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.gallery-thumb-item_detail:hover {
    border-color: rgba(193, 39, 45, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.gallery-thumb-img_detail {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.gallery-thumb-item_detail:hover .gallery-thumb-img_detail {
    transform: scale(1.08);
}

.gallery-thumb-overlay_detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-thumb-item_detail:hover .gallery-thumb-overlay_detail {
    opacity: 1;
}

.gallery-thumb-overlay_detail .material-symbols-outlined {
    font-size: 36px;
    color: #fff;
}

/* Lightbox */
.gallery-lightbox_detail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox_detail.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close_detail {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s ease;
}

.lightbox-close_detail:hover {
    color: #c1272d;
}

.lightbox-nav_detail {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav_detail:hover {
    background: rgba(193, 39, 45, 0.6);
    border-color: rgba(193, 39, 45, 0.8);
}

.lightbox-prev_detail {
    left: 30px;
}

.lightbox-next_detail {
    right: 30px;
}

.lightbox-content_detail {
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img_detail {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-counter_detail {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 991.98px) {
    .collage-title_detail {
        font-size: 28px;
    }

    .product-detail-content_detail {
        padding: 50px 0;
    }

    .gallery-thumbs_detail {
        gap: 8px;
    }

    .gallery-thumb-item_detail {
        border-radius: 8px;
    }

    .gallery-thumb-overlay_detail .material-symbols-outlined {
        font-size: 24px;
    }

    .lightbox-nav_detail {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .lightbox-prev_detail {
        left: 10px;
    }

    .lightbox-next_detail {
        right: 10px;
    }
}

/* Statistics Section */
.stats-section {
    background-image: url('img/istatistik.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-color: #000;
    position: relative;
}

.stats-row {
    gap: 20px;
    justify-content: center;
}

.stat-item {
    background: rgba(31, 31, 31, 0.5);
    border: 1px solid;
    border-image-source: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 70%);
    border-image-slice: 1;
    padding: 20px 25px;
    text-align: left;
    min-height: 213px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(45, 45, 45, 0.7);
    border-image-source: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 90%);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Zalando Sans Expanded', 'Syne', sans-serif !important;
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .stats-section {
        padding: 50px 0;
    }

    .stats-row {
        gap: 0;
    }

    .stat-item {
        border-right: none;
        border-bottom: none;
        border-image-source: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 90%);
        text-align: center;
        padding: 20px 10px;
        min-height: 160px;
        margin-bottom: 5px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-text {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .power-section {
        padding: 60px 0;
    }

    .power-title {
        font-size: 28px;
    }

    .power-truck-img {
        max-height: 200px;
    }

    .power-actions {
        flex-direction: column;
        align-items: center;
    }
}

.samet-hero {

    background-image: url('img/hero_coparete_01.png');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .samet-hero {
        flex-direction: column;
        background-image: url(img/corp.svg) !important;
        min-height: auto;
    }

    .samet-hero .solutions-hero-image {
        height: 90vh !important;
        width: 100% !important;
        display: block !important;
    }

    .samet-hero .solutions-hero-image img {
        width: 100% !important;
        height: 280px !important;
        object-fit: cover !important;
        object-position: 13% center !important;
        transform: scale(1.1);
        transform-origin: left center;
    }

    .hero-contact-image {
        width: 100% !important;
        height: 280px !important;
        object-fit: cover !important;
        object-position: 13% center !important;
        transform: scale(1.1);
        transform-origin: left center;
    }

    .quality-title {
        font-size: 38px
    }
}

/* Image Protection Overlay */
.img-overlay-wrapper {
    position: relative;
    max-width: 100%;
}

.img-save-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: transparent;
    pointer-events: auto;
    user-select: none;
    -webkit-user-drag: none;
}

img.protected-img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

/* Map Section */
.contact-map-section {
    width: 100%;
    height: 600px;
    background-color: #eee;
    overflow: hidden;
    line-height: 0;
}

.contact-map-section iframe {
    filter: grayscale(1) invert(0.9) contrast(1.2);
    /* Premium dark/gray look */
    transition: all 0.5s ease;
}

.contact-map-section iframe:hover {
    filter: grayscale(0) invert(0) contrast(1);
}