:root {
    --primary-color: #d7141a;
    --text-color: #1F1F1F;
    --muted-color: #6b6b6f;
    --border-soft: rgba(0, 0, 0, 0.08);
}

/* Bootstrap container override */
@media (min-width: 1400px) {
    .container {
        max-width: 1640px;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-color);
    background: #f6f6f8;
}

.site-header {
    background: transparent;
    border-bottom: 1px solid var(--border-soft);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: transparent;
}

.branding {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    text-decoration: none;
    font-weight: lighter;
    color: white;
    transition: color 0.3s ease;
    font-size: 1em;
}

.site-header.scrolled .site-nav a {
    color: var(--text-color);
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:focus,
.site-nav a:hover {
    color: var(--primary-color);
}

.site-nav a:focus::after,
.site-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted-color);
    margin: 15px 0px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-title {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875em;
    letter-spacing: 0.05em;
}

.contact-phone {
    font-weight: 700;
    font-size: 1.75em;
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.2s ease;
    white-space: nowrap;
    line-height: 30px;
}

.contact-phone:hover {
    color: var(--primary-color);
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

address {
    font-style: normal;
    font-size: 0.875em;
    line-height: 1.5;
    color: #999999;
    margin-bottom: 0px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.page-content {
    max-width: 960px;
    margin: 80px auto;
    padding: 0 48px;
}

.coming-soon {
    padding: 48px 0;
    text-align: center;
    color: var(--muted-color);
}

.coming-soon h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

/* Slider */
#slider {
    position: relative;
    overflow: hidden;
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-color);
    background: #fff;
}

.gallarySwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.slider-viewport {
    position: relative;
    height: 100%;
}

.slider-item {
    position: relative;
    align-items: center;
}

.slider-item img {
    width: 122%;
    max-height: 1200px;
    object-fit: cover;
}

/* .slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.4) 56%, rgba(255, 255, 255, 0) 72%);
    z-index: 0;
    pointer-events: none;
} */

#slider .container {
    position: relative;
    z-index: 1;
    height: auto;
    display: flex;
    align-items: center;
}

.slider-copy {
    position: absolute;
    top: 50%;
    left: 9%;
    z-index: 1;
    max-width: 650px;
}

.slider-copy h1 {
    font-size: 2.75em;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 24px;
}

.slider-copy h1 strong {
    font-weight: 700;
}

.slider-copy p {
    margin: 0 0 48px;
    font-size: 1.25em;
    line-height: 1.6;
    color: rgba(29, 29, 31, 0.75);
    font-weight: lighter;
}

.slider-pagination {
    display: flex;
    align-items: center;
    gap: 14px;
}

.slider-pagination .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.2s ease;
}

.slider-pagination .dot.active {
    background: var(--primary-color);
}

.slider-nav-group {
    position: absolute;
    bottom: clamp(24px, 5vw, 88px);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.slider-nav {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: rgba(200, 200, 200, 0.6);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-nav .icon {
    position: relative;
    width: 18px;
    height: 18px;
}

.slider-nav .icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 3px solid rgba(255, 255, 255, 0.95);
    border-right: 3px solid rgba(255, 255, 255, 0.95);
    width: inherit;
    height: inherit;
    transform-origin: center;
}

.slider-nav-prev .icon::before {
    transform: rotate(45deg);
    left: -3px;
}

.slider-nav-next .icon::before {
    transform: rotate(-130deg);
}

.slider-nav:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.slider-nav:focus-visible {
    outline: 3px solid rgba(215, 20, 26, 0.6);
    outline-offset: 4px;
}

/* Swiper default styles override */
.swiper-button-next:after,
.swiper-button-prev:after {
    content: none;
}

.swiper-button-next,
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 992px) {

    .slider-overlay {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.35) 70%, rgba(255, 255, 255, 0) 85%);
    }

    .slider-copy {
            position: absolute;
            top: 35%;
            left: 20%;
            z-index: 1;
            max-width: 650px;
    }
    .slider-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(206, 29, 43, 0.7) 0%, rgba(206, 29, 43, 0.4) 40%, transparent 70%);
        z-index: 1;
        pointer-events: none;
    }

    .slider-copy * {
        color: white;
    }

    .swiper-slide-active .slider-copy p.animate-text {
        color: white;
    }
    

    .slider-pagination {
        justify-content: center;
    }

    .slider-nav-group {
        left: 50%;
        transform: translateX(-50%);
        bottom: 48px;
    }
}

@media (max-width: 576px) {
    .slider-item {
        min-height: 100vh;
        position: relative;
    }

    .slider-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(206, 29, 43, 0.7) 0%, rgba(206, 29, 43, 0.4) 40%, transparent 70%);
        z-index: 1;
        pointer-events: none;
    }

    .slider-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 0;
        left: 0;
    }

    .slider-copy {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 100%;
        text-align: center;
        z-index: 2;
    }

    .slider-copy h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .slider-copy p {
        font-size: 1rem;
        margin-bottom: 40px;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .slider-nav {
        width: 48px;
        height: 48px;
    }
}

.coming-soon p {
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 1120px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 24px;
    }

    .contact-block {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 8px 16px;
        text-align: right;
    }

    .contact-title {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .header-inner {
        padding: 16px 20px;
        position: relative;
    }

    .branding {
        width: auto;
        justify-content: flex-start;
        flex-direction: row;
    }

    .logo-link img {
        height: 40px;
        width: auto;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: white;
        z-index: 1001;
        padding: 80px 24px 24px;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .site-nav.active {
        right: 0;
    }

    .site-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .site-nav li {
        border-bottom: 1px solid var(--border-soft);
    }

    .site-nav a {
        display: block;
        padding: 16px 0;
        font-size: 1.1em;
        color: var(--text-color);
    }

    .site-nav a::after {
        display: none;
    }

    .contact-block {
        position: fixed;
        top: auto;
        right: -100%;
        width: 320px;
        background: white;
        z-index: 1001;
        padding: 24px;
        border-top: 2px solid var(--border-soft);
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        transition: right 0.3s ease;
    }

    .contact-block.active {
        right: 0;
        bottom: 0;
    }

    .contact-title {
        width: 100%;
    }

    .contact-phone {
        justify-content: flex-start;
    }

    address {
        font-size: 0.85rem;
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #f6f6f8;
    overflow: hidden;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 60px;
    align-items: center;
    position: relative;
}

/* Sol Üst: 2007'den Günümüze */
.feature-intro {
    align-self: start;
}

.feature-intro h2 {
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-color);
}

.feature-intro p {
    font-size: 0.9em;
    line-height: 1.6;
    color: var(--muted-color);
    margin-bottom: 24px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: var(--text-color);
}

.check-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Orta: Eğik Kartlar Container */
.feature-cards {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}

/* Eğik Kartlar */
.feature-card {
    position: relative;
    display: block;
    width: 450px;
    height: 600px;
    overflow: hidden;
    text-decoration: none;
    transform: skew(-25deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.feature-card:nth-child(2) {
    margin-top: 150px;
}

/* Skewli kartlar için özel animasyonlar */
@keyframes fadeInUpSkewed {
    from {
        opacity: 0;
        transform: skew(-25deg) translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: skew(-25deg) translate3d(0, 0, 0);
    }
}

@keyframes fadeInDownSkewed {
    from {
        opacity: 0;
        transform: skew(-25deg) translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: skew(-25deg) translate3d(0, 0, 0);
    }
}

.feature-card.animate__fadeInUp {
    animation-name: fadeInUpSkewed;
}

.feature-card.animate__fadeInDown {
    animation-name: fadeInDownSkewed;
}

.feature-card:hover {
    transform: skew(-25deg) translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card .card-image {
    position: absolute;
    inset: -10%;
    left: -5%;
    right: -5%;
}

.feature-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skew(25deg) scale(1.5)
}

.feature-card .card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.feature-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 1;
    transform: skew(25deg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-card h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    margin: 0;
}

.card-arrow {
    flex-shrink: 0;
}

.card-arrow svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.feature-card:hover .card-arrow svg {
    transform: translateX(4px);
}

/* Sağ Alt: Markamızı Tanıyın */
.feature-outro {
    align-self: end;
}

.feature-outro h2 {
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-color);
    text-align: right;
}

.feature-outro p {
    font-size: 0.9em;
    line-height: 1.6;
    color: var(--muted-color);
    text-align: right;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .feature-intro {
        align-self: auto;
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-outro {
        align-self: auto;
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-outro h2,
    .feature-outro p {
        text-align: left;
    }

    .feature-cards {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .feature-cards {
        flex-wrap: nowrap;
    }
    .features-section {
        padding: 60px 0;
    }

    .features-wrapper {
        gap: 60px;
    }

    .feature-intro h2,
    .feature-outro h2 {
        font-size: 1.8em;
    }

    .feature-cards {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .feature-card {
        width: 240px;
        height: 320px;
        transform: skew(-20deg);
    }

    .feature-card:hover {
        transform: skew(-20deg) translateY(-4px);
    }

    .feature-card .card-image {
        inset: -10%;
        left: -5%;
        right: -5%;
    }

    .feature-card .card-image img {
        transform: skew(20deg);
    }

    .feature-card .card-content {
        padding: 20px;
        transform: skew(20deg);
    }

    .feature-card h3 {
        font-size: 1.3em;
    }

    .card-arrow svg {
        width: 28px;
        height: 28px;
    }
}

/* About Section */
.about-section {
    background: #fff;
    padding: 80px 0;
    padding-bottom: 200px;
}

.truck-image {
    position: absolute;
    bottom: -180px;
    z-index: 3;
    left: -210px;
    max-height: 400px;
}

/* Custom WOW animasyon - Fade in + Slide in Right */
@keyframes fadeSlideInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeSlideInRight {
    animation-name: fadeSlideInRight;
}


.about-text h2 {
    font-size: 2.75em;
    font-weight: bold;
    margin-bottom: 24px;
    color: #3E3E3E;
}

.about-text p {
    font-size: 0.95em;
    line-height: 1.7;
    color: #3E3E3E;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    margin-left: auto;
}

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


@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .about-image {
        min-height: 400px;
        margin-left: 0;
    }
}

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

    .about-text h2 {
        font-size: 1.5em;
    }

    .about-image {
        min-height: 300px;
    }
}

/* Why Us Section */
.why-us-section {
    background: #CE1D2B;
    color: white;
    overflow: hidden;
    padding: 40px 0px;
}

.why-us-content {
    padding: 80px 0;
}

.why-us-content p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

.features-grid-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}


.feature-icon img {
    width: 50px;
    height: 50px;
}

.feature-text h4 {
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.feature-text p {
    font-size: 1em;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Map Section */
.map-section {
    position: relative;
    padding-top: 80px;
    display: block;
    height: 100%;
}

.map-shadow {
    position: absolute;
    background: #CE1D2B;
    background: #CE1D2B;
    background: linear-gradient(0deg, rgba(206, 29, 43, 1) 0%, rgba(206, 29, 43, 0.77) 65%, rgb(206 29 43 / 0%) 100%);
    left: 0px;
    height: 50%;
    z-index: 4;
    width: 100vw;
    bottom: 0;
}


.map-header {
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
    display: block;
    max-width: 450px;
}

.map-header h3 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 12px;
    color: white;
    padding-bottom: 12px;
}

.map-header h3:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    background: url('../bottom-line.svg');
    width: 540px;
    height: 350px;
    background-repeat: no-repeat;
}

.map-header p {
    font-size: 0.95em;
    line-height: 1.6;
    opacity: 0.95;
}

.map-container {
    position: absolute;
    display: block;
    height: 100%;
    top: 15%;
    z-index: 1;
}


.map-image {
    position: absolute;
    width: 2000px height: auto;
    z-index: 2;
    left: 120px;
    bottom: 0px;
}

.map-marker {
    position: absolute;
    top: 25%;
    right: 30%;
    z-index: 3;
}

.marker-pin {
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid black;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.marker-pin::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: black;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.marker-label {
    position: absolute;
    top: 30px;
    right: 0;
    background: white;
    color: #3E3E3E;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .map-section {
        position: static;
        margin-top: 60px;
    }
}

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

    .feature-item {
        margin-bottom: 20px;
    }

    .map-header h3 {
        font-size: 1.5em;
    }

    .marker-label {
        font-size: 0.75em;
        padding: 6px 10px;
    }
}

/* Why Gallary Branda Section */
.why-gallary-section {
    background: #2B2B2B;
    padding: 60px 0px;
    position: relative;
    overflow: visible;
}

.why-gallary-title {
    color: white;
    position: relative;
    z-index: 2;
}

.why-gallary-title h2 {
    font-size: 2.75em;
    font-weight: 700;
    line-height: 1.1;
    color: white;
}

.why-gallary-content {
    color: white;
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.why-gallary-content>p {
    font-size: 1em;
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
}

.feature-box h4 {
    font-size: 1.25em;
    font-weight: bold;
    color: #EC1D25;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 1em;
    color: white;
    margin: 0;
    opacity: 0.9;
}

.truck-display {
    position: relative;
    height: 100%;
}

.truck-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    top: -120px;
    z-index: 3;
}

@media (max-width: 992px) {
    .why-gallary-content {
        padding: 60px 0;
    }

    .why-gallary-content h2 {
        font-size: 2.2em;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .truck-display {
        margin-top: 40px;
        min-height: 300px;
    }

    .truck-img {
        position: relative;
        right: 0;
        width: 100%;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .why-gallary-content h2 {
        font-size: 1.8em;
    }

    .truck-display {
        min-height: 200px;
    }
}

/* Products Section */
.products-section {
    background: #2B2B2B;
    padding: 100px 0;
    overflow: hidden;
}

.products-content {
    color: white;
    padding-right: 40px;
}

.products-content h2 {
    font-size: 2.75em;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    color: white;
}

.products-content>p {
    font-size: 1em;
    margin-bottom: 40px;
    opacity: 0.8;
}

.products-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.products-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.25em;
    color: white;
    font-weight: bold;
}

.products-list .check-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    background: #565B5D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-list .check-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.products-nav-group {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.products-nav {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.products-nav .icon {
    position: relative;
    width: 18px;
    height: 18px;
}

.products-nav .icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 3px solid rgba(0, 0, 0, 0.95);
    border-right: 3px solid rgba(0, 0, 0, 0.95);
    width: 15px;
    height: 15px;
    transform-origin: center;
}

.products-nav-prev .icon::before {
    transform: rotate(-135deg);
}

.products-nav-next .icon::before {
    transform: rotate(45deg);
}

.products-nav:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.productsSwiper {
    width: 100%;
    height: 600px;
}

.productsSwiper .swiper-slide {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid white;
    padding: 3px 0px;
}

.productsSwiper .swiper-slide img {
    height: 101%;
    width: auto;
    object-fit: contain;
}

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

    .products-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .products-content h2 {
        font-size: 2.2em;
    }

    .productsSwiper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .products-content h2 {
        font-size: 1.8em;
    }

    .productsSwiper {
        height: 300px;
    }
}

/* Slider Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

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

.slider-item img {
    animation: fadeInScale 1.2s ease-out;
}

.slider-copy .animate-text {
    opacity: 0;
}

.swiper-slide-active .slider-copy h1.animate-text {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.swiper-slide-active .slider-copy p.animate-text {
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.gallary-fade-text {
    position: absolute;
}

.gallary-fade-text img {
    width: 100%;
}

/* Gallery Section */
.gallery-section {
    background: #f6f6f8;
    padding: 100px 0;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 3em;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    color: var(--text-color);
}

.gallery-header p {
    font-size: 1em;
    color: var(--muted-color);
    margin: 0;
    flex: 1;
    padding-left: 40px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #2B2B2B;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1em;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-view-all:hover {
    background: var(--text-color);
    transform: translateY(-2px);
    color: white;
}

.btn-view-all svg {
    width: 20px;
    height: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

@media (max-width: 992px) {
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .gallery-header p {
        padding-left: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .gallery-header h2 {
        font-size: 2.2em;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 0;
    position: relative;
    padding-top: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}

.contact-left {
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-logo img {
    max-width: 350px;
    height: auto;
}

.contact-description p {
    font-size: 0.75em;
    line-height: 1.7;
    color: #696969;
    margin-bottom: 5px;

    text-align: justify;
}

.contact-description p:last-child {
    margin-bottom: 0;
}

.contact-map {
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 210px
}

.contact-right {
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
}

.contact-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    order: 1;
    flex: 1;
    align-items: flex-end;
    text-align: right;
}

.contact-label {
    font-size: 0.875em;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 1em;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.contact-value:hover {
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-left {
        order: 1;
    }

    .contact-map {
        order: 2;
    }

    .contact-right {
        order: 3;
    }
}

@media (max-width: 768px) {

    .contact-left,
    .contact-right {
        padding: 40px 20px;
    }

    .contact-logo img {
        max-width: 250px;
    }

    .contact-map {
        min-height: 300px;
    }

    .contact-right {
        gap: 30px;
    }
}

@media(max-width: 1440px) {
    .features-wrapper {
        grid-template-columns: 1.5fr 1fr 1.5fr;
    }

    .about-image {
        padding-left: 200px;
    }

    .truck-image {
        position: absolute;
        bottom: -80px;
        z-index: 3;
        left: 100px;
        max-height: 300px;
    }

    .map-container {
        top: 0px;
    }

    .map-marker {
        position: absolute;
        top: 22%;
        right: 20%;
        z-index: 3;
    }

    .feature-card {
        width: 250px;
        height: 400px;
    }
    .about-text h2 {
        font-size: 1.75em;
    }
}
@media(max-width:1399px) {
    .contact-block {
        display: none;
    }
    .site-header.scrolled {
        padding: 20px 0px;
    }
}
@media(max-width:1299px) {
    .map-container {
        top: -140px;
    }
    .map-marker {
        display: none;
    }
}

@media(max-width:1200px) {
    .map-container {
        display: none;
    }
}


@media(max-width:991px) {
     .slider-item img {
        max-height: unset;
     }

     .about-image {
        padding-left: 0px;
     }

     .truck-image {
        display: none;
     }

     .map-section {
        display: none;
     }
     .contact-wrapper {
        display: flex;
            flex-direction: column;
            gap: 30px;
     }
     .contact-map {
        min-height: unset;
     }
     .contact-right {
        display: flex;
            flex-direction: column;
            justify-content: center;
     }
     .feature-card {
        transform: unset;
     }
     .feature-card .card-image img {
        transform: unset;
        transform: scale(1.5);
     }
     .feature-card .card-content {
        transform: unset;
     }
     .feature-card:nth-child(2) {
        margin-top: unset;
     }
}

@media(max-width: 1024px) {
    .features-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        grid-template-columns: unset;
        flex-direction: column;
    }
}

@media(max-width:576px) {
    .feature-cards {
        flex-wrap: wrap;
    }
    .feature-card {
        height: 200px;
        width: 100vw;
    }

    .feature-card:hover {
        transform: unset;
    }
}

.site-nav a:focus, .site-nav a:hover {
    color: white;
    font-weight: bold;
}