﻿
/* ---------- GLOBAL ---------- */
body {
    font-family: 'Inter',sans-serif;
    background: #0b0b0b;
    color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat',sans-serif;
}

.section-padding {
    padding: 120px 0
}

.text-red {
    color: #c1121f
}

.btn-red {
    background: #c1121f;
    color: #fff;
    padding: 14px 40px;
    border-radius: 0;
    letter-spacing: 1px;
}

    .btn-red:hover {
        background: #9b111e;
        color: #fff
    }


/* ---------- NAVBAR ---------- */
.navbar {
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(8px);
    padding: 25px 0;
}

.navbar-brand {
    font-weight: 900;
    letter-spacing: 2px
}

.nav-link {
    color: #fff !important;
    margin-left: 25px;
}

    .nav-link:hover {
        color: #c1121f !important
    }

/* ---------- HERO SLIDER ---------- */
.hero,
.hero-slider {
    height: 70vh;
    overflow: hidden;
}

    .hero-slider .swiper-slide {
        opacity: 0 !important;
    }

    .hero-slider .swiper-slide-active {
        opacity: 1 !important;
        z-index: 2;
    }


/* ---------- PRODUCTS SLIDER ---------- */
.product-slide {
    position: relative;
    height: 420px;
    overflow: hidden;
}

    .product-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .product-slide:hover img {
        transform: scale(1.1);
    }

.product-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,.9),rgba(0,0,0,.2));
    display: flex;
    align-items: flex-end;
    padding: 35px;
    transition: .4s;
}

.product-slide:hover .product-info {
    background: linear-gradient(to top,rgba(193,18,31,.9),rgba(0,0,0,.2));
}

.product-info h5 {
    font-weight: 700;
}

.product-next,
.product-prev {
    color: #fff;
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: 0.4s;
}

    .product-next:hover,
    .product-prev:hover {
        background: #c1121f;
        border-color: #c1121f;
    }

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* ---------- ABOUT ---------- */
.about-short {
    background: #0f0f0f;
}

.about-short-img {
    height: 420px;
    background: url("https://images.unsplash.com/photo-1581092919534-94c5ecb22a1b") center/cover no-repeat;
    position: relative;
}

    .about-short-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0,0,0,.6), rgba(0,0,0,.1));
    }


/* ---------- SERVICES ---------- */
.service-modern {
    position: relative;
    background: linear-gradient(145deg, #111, #0b0b0b);
    padding: 60px 40px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s ease;
    overflow: hidden;
}

    .service-modern span {
        font-size: 3.5rem;
        font-weight: 900;
        color: rgba(255,255,255,0.08);
        position: absolute;
        top: 20px;
        right: 30px;
        transition: 0.5s;
    }

    .service-modern h5 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .service-modern p {
        opacity: 0.8;
        font-size: 0.95rem;
    }

    .service-modern::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: #c1121f;
        transition: 0.5s;
        z-index: 0;
    }

    .service-modern * {
        position: relative;
        z-index: 2;
    }

    .service-modern:hover::before {
        width: 6px;
    }

    .service-modern:hover span {
        color: rgba(193,18,31,0.3);
        transform: scale(1.1);
    }

    .service-modern:hover {
        transform: translateY(-10px);
        background: #111;
    }


/* ---------- STATS ---------- */
.stats {
    background: url("/assets/photo-1581092160562-40aa08e78837.jpg") center/cover no-repeat;
    position: relative;
}

    .stats .overlay {
        background: rgba(0,0,0,.75)
    }

.stat-box h2 {
    font-size: 3rem;
    font-weight: 900;
}

/* ---------- CTA ---------- */
.cta {
    background: #c1121f;
    text-align: center;
}

    .cta h2 {
        font-weight: 900
    }

.cta-text {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1rem;
}


/* ---------- FOOTER ---------- */
footer {
    background: #000;
    padding: 50px 0;
    opacity: .8;
}

.section-divider {
    height: 2px;
    width: 80px;
    background: #c1121f; /* kırmızı */
    margin: 10px auto 60px auto;
    border-radius: 1px;
}

.section-gradient {
    height: 40px; /* ince bir aralık */
    background: linear-gradient(to bottom, #0b0b0b, #111);
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 991px) {

    .navbar {
        padding: 15px 0;
    }

    .navbar-nav {
        background: #000;
        padding: 25px;
        margin-top: 20px;
        text-align: center;
    }

    .nav-link {
        margin: 15px 0;
        font-size: 1.1rem;
    }

    .navbar-toggler {
        border: 1px solid rgba(255,255,255,.3);
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }

    .section-padding {
        padding: 80px 0;
    }

    .hero {
        height: 75vh;
    }

        .hero h1 {
            font-size: 2.4rem;
        }

        .hero p {
            font-size: 0.95rem;
        }

    .about-short-img {
        height: 280px;
        margin-top: 30px;
    }

    .product-slide {
        height: 300px;
    }

    .service-modern {
        padding: 40px 30px;
    }

    .stat-box h2 {
        font-size: 2.2rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {

    .hero h1 {
        font-size: 2rem;
    }

    .btn-red {
        padd 
