@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: 45px;
    }

    /* 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 Slider Section */
.hero-slider {
    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 {
    position: relative;
    flex: 0 0 350px;
    /* Fixed width for sliding */
    min-width: 0;
    height: 190px;
    /* Adjusted to match aspect ratio of screenshot */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}



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

/* Ensure SVG stretches exactly to the container, no gaps */
.card-shape {
    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 {
    position: relative;
    z-index: 2;
    padding: 25px 30px;
    /* Slightly reduced padding */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-cat {
    font-family: 'Syne', sans-serif !important;
    color: white;
    font-weight: 800;
    font-size: 15px;
    /* Reduced to ensure long titles fit */
    line-height: 1.25;
    letter-spacing: 0.05em;
    display: block;
    text-transform: uppercase;
}

.product-img {
    position: absolute;
    right: 15px;
    bottom: 10px;
    max-height: 75%;
    /* Limit height to prevent overlap */
    max-width: 60%;
    /* Limit width */
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.product-card:hover .product-img {
    transform: scale(1.03);
}

@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: none !important;
    }

    /* Remove mt-5 spacing on mobile */
    .product-slider.mt-5 {
        margin-top: 10px !important;
    }

    /* 2 Column Grid for Mobile */
    .product-track {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        overflow: visible;
        padding-bottom: 0;
    }

    .product-card {
        flex: 0 0 calc(50% - 7.5px);
        /* Two cards per row */
        width: auto;
        min-width: 0;
        height: 160px;
        margin-right: 0;
    }

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

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

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

/* About Section */

.about-section {
    background-color: #000;
    min-height: 100vh;
    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: 120px 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;
}

/* 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;
    }
}

/* 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 30s 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-title {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        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 {
    background-image: url('img/catalog_01.png');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}



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

.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: 400px;
    }

    .catalog-title {
        font-size: 40px;
    }
}

/* Corporate Hero Styles */
.corp-hero {
    background-color: #c1272d;
    background-image: url('img/corp.svg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 100px 0;
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

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

.corp-hero-title {
    font-family: 'Zalando Sans Expanded', sans-serif !important;
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 60px;
    line-height: 1;
}

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

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

@media (max-width: 991.98px) {
    .corp-hero {
        padding: 80px 0;
        min-height: auto;
    }

    .corp-hero-title {
        font-size: 40px;
        margin-bottom: 40px;
    }
}

/* 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.svg');
    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: 300px;
        display: none;
        /* Hide empty image container on mobile if no content */
    }

    .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: 100%;
    /* Square aspect ratio */
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

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

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

@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-map-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    z-index: 10;
    background-color: transparent;
}

.hero-map-link:hover {
    background-color: transparent;
}

@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 {
        display: none !important;
    }

    .hero-map-link {
        display: none !important;
    }
}

/* 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;
}

.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;
}

.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;
    }

    .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;
    }
}