/* ================= HERO FIX ================= */

.inner-hero {
    position: relative;
    overflow: hidden;
}
.scroll-icon {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1.6s infinite;
    transition: all 0.3s ease;
}

.scroll-icon i {
    color: #e20015; /* Bosch kırmızısı */
    font-size: 18px;
}

.scroll-icon:hover {
    transform: translateX(-50%) scale(1.08);
}


/* ================= STORY ================= */

.corporate-story {
    padding: 110px 0;
}

.story-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-text {
    flex: 1;
}

.section-title {
    display: inline-block;
    position: relative;
    margin-bottom: 25px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 6px;
    background: url("images/bosch-strip.png") repeat-x;
    background-size: auto 100%;
}

.story-text p {
    margin-bottom: 15px;
    line-height: 1.75;
    color: #444;
}


/* ================= MODERN TIMELINE ================= */

.timeline-modern {
    position: relative;
    margin-top: 90px;
    padding-bottom: 20px;
}

.timeline-modern::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: #e20015;
    transform: translateX(-50%);
}

.timeline-modern-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
}

.timeline-modern-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-modern-item:nth-child(even) {
    left: 50%;
}

.timeline-modern-item::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 18px;
    height: 18px;
    background: #e20015;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #fff;
    z-index: 2;
}

.timeline-modern-item:nth-child(odd)::before {
    right: -9px;
}

.timeline-modern-item:nth-child(even)::before {
    left: -9px;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.timeline-year {
    font-size: 20px;
    font-weight: 700;
    color: #e20015;
    display: block;
    margin-bottom: 10px;
}


/* ================= WHY US ================= */

.why-us {
    padding: 110px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.why-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.why-card h3 {
    margin-bottom: 15px;
    color: #e20015;
}


/* ================= FOUNDER MESSAGE ================= */

.founder-message {
    padding: 110px 0;
    background: #111;
    color: #fff;
    text-align: center;
}

.message-box {
    max-width: 800px;
    margin: 40px auto 0;
    line-height: 1.8;
    font-size: 18px;
}


/* ================= VALUES ================= */

.values-section {
    padding: 110px 0;
    background: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.value-card img {
    height: 50px;
    margin-bottom: 15px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .story-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .story-image {
        height: 320px;
    }

    .timeline-modern::before {
        left: 15px;
        transform: none;
    }

    .timeline-modern-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px;
        text-align: left !important;
        margin-bottom: 40px;
    }

    .timeline-modern-item::before {
        left: 6px !important;
        right: auto !important;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 25px;
    }

    .message-box {
        font-size: 16px;
    }
}