

.company-overview {
    padding: 60px 0;
    background: var(--bg-color);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.overview-text {
    font-size: 1.1rem;
    color: var(--text-dark-low);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark-low);
    font-weight: 500;
}

.overview-image {
    position: relative;
}

    .overview-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.timeline-section {
    padding: 60px 0;
    background: white;
}

.timeline-header {
    text-align: center;
    margin-bottom: 50px;
}

    .timeline-header h2 {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

.timeline-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

    .timeline-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-description {
    font-size: 0.95rem;
    color: var(--text-dark-low);
    line-height: 1.5;
}

.values-section {
    padding: 60px 0;
    background: var(--bg-color);
}

.values-header {
    text-align: center;
    margin-bottom: 40px;
}

    .values-header h2 {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.value-card {
    background: white;
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.08);
    transition: all 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

    .value-icon i {
        font-size: 1.3rem;
        color: white;
    }

.value-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.value-description {
    font-size: 0.9rem;
    color: var(--text-dark-low);
    line-height: 1.5;
}

.gallery-section {
    padding: 60px 0;
    background: white;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

    .gallery-header h2 {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-slides {
    display: flex;
    transition: transform 0.6s ease;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
}

    .gallery-slide img {
        width: 100%;
        height: 500px;
        object-fit: contain;
    }

.gallery-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

    .gallery-navigation:hover {
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

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


@media (max-width: 1200px) {
    .company-overview,
    .timeline-section,
    .values-section,
    .gallery-section {
        padding: 50px 0;
    }

    .overview-grid {
        gap: 70px;
    }

    .timeline-header {
        margin-bottom: 45px;
    }

    .values-header {
        margin-bottom: 35px;
    }

    .gallery-header {
        margin-bottom: 50px;
    }

    .gallery-slide img {
        height: 450px;
    }
}

@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .overview-stats {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .timeline-items {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .gallery-slide img {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .company-overview,
    .timeline-section,
    .values-section,
    .gallery-section {
        padding: 45px 0;
    }

    .overview-grid {
        gap: 45px;
    }

    .overview-text {
        font-size: 1.05rem;
        margin-bottom: 1.8rem;
    }

    .stat-item {
        padding: 1.3rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .timeline-header {
        margin-bottom: 40px;
    }

    .timeline-items {
        gap: 22px;
    }

    .timeline-card {
        padding: 22px;
    }

    .values-header {
        margin-bottom: 32px;
    }

    .values-grid {
        gap: 18px;
    }

    .value-card {
        padding: 22px 18px;
    }

    .gallery-header {
        margin-bottom: 45px;
    }

    .gallery-slide img {
        height: 350px;
    }

    .gallery-navigation {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .company-overview,
    .timeline-section,
    .values-section,
    .gallery-section {
        padding: 40px 0;
    }

    .overview-grid {
        gap: 35px;
    }

    .overview-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin-top: 1.2rem;
    }

    .stat-item {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .timeline-header {
        margin-bottom: 35px;
    }

    .timeline-items {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-year {
        font-size: 0.85rem;
        padding: 5px 14px;
    }

    .timeline-title {
        font-size: 1.05rem;
    }

    .timeline-description {
        font-size: 0.9rem;
    }

    .values-header {
        margin-bottom: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 20px 16px;
    }

    .value-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 14px;
    }

        .value-icon i {
            font-size: 1.2rem;
        }

    .value-title {
        font-size: 1.05rem;
    }

    .value-description {
        font-size: 0.85rem;
    }

    .gallery-header {
        margin-bottom: 40px;
    }

    .gallery-slide img {
        height: 300px;
    }

    .gallery-navigation {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }

    .gallery-prev {
        left: 15px;
    }

    .gallery-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .company-overview,
    .timeline-section,
    .values-section,
    .gallery-section {
        padding: 35px 0;
    }

    .overview-grid {
        gap: 30px;
    }

    .overview-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.3rem;
    }

    .overview-stats {
        gap: 1rem;
        margin-top: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .timeline-header {
        margin-bottom: 30px;
    }

    .timeline-items {
        gap: 16px;
    }

    .timeline-card {
        padding: 18px;
    }

    .timeline-year {
        font-size: 0.8rem;
        padding: 4px 12px;
        margin-bottom: 10px;
    }

    .timeline-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .timeline-description {
        font-size: 0.85rem;
    }

    .values-header {
        margin-bottom: 25px;
    }

    .values-grid {
        gap: 14px;
    }

    .value-card {
        padding: 18px 14px;
    }

    .value-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 12px;
    }

        .value-icon i {
            font-size: 1.1rem;
        }

    .value-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .value-description {
        font-size: 0.8rem;
    }

    .gallery-header {
        margin-bottom: 35px;
    }

    .gallery-slide img {
        height: 260px;
    }

    .gallery-navigation {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .gallery-prev {
        left: 12px;
    }

    .gallery-next {
        right: 12px;
    }

    .gallery-dots {
        gap: 10px;
        margin-top: 25px;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .company-overview,
    .timeline-section,
    .values-section,
    .gallery-section {
        padding: 30px 0;
    }

    .overview-grid {
        gap: 25px;
    }

    .overview-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }

    .overview-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 0.8rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .timeline-header {
        margin-bottom: 25px;
    }

    .timeline-items {
        gap: 14px;
    }

    .timeline-card {
        padding: 16px;
    }

    .timeline-year {
        font-size: 0.75rem;
        padding: 3px 10px;
        margin-bottom: 8px;
    }

    .timeline-title {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    .timeline-description {
        font-size: 0.8rem;
    }

    .values-header {
        margin-bottom: 20px;
    }

    .values-grid {
        gap: 12px;
    }

    .value-card {
        padding: 16px 12px;
    }

    .value-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 10px;
    }

        .value-icon i {
            font-size: 1rem;
        }

    .value-title {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    .value-description {
        font-size: 0.75rem;
    }

    .gallery-header {
        margin-bottom: 30px;
    }

    .gallery-slide img {
        height: 220px;
    }

    .gallery-navigation {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-dots {
        gap: 8px;
        margin-top: 20px;
    }

    .gallery-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 360px) {
    .company-overview,
    .timeline-section,
    .values-section,
    .gallery-section {
        padding: 25px 0;
    }

    .overview-grid {
        gap: 20px;
    }

    .overview-text {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .overview-stats {
        gap: 0.6rem;
        margin-top: 0.6rem;
    }

    .stat-item {
        padding: 0.6rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .timeline-header {
        margin-bottom: 20px;
    }

    .timeline-items {
        gap: 12px;
    }

    .timeline-card {
        padding: 14px;
    }

    .timeline-year {
        font-size: 0.7rem;
        padding: 2px 8px;
        margin-bottom: 6px;
    }

    .timeline-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .timeline-description {
        font-size: 0.75rem;
    }

    .values-header {
        margin-bottom: 18px;
    }

    .values-grid {
        gap: 10px;
    }

    .value-card {
        padding: 14px 10px;
    }

    .value-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }

        .value-icon i {
            font-size: 0.9rem;
        }

    .value-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .value-description {
        font-size: 0.7rem;
    }

    .gallery-header {
        margin-bottom: 25px;
    }

    .gallery-slide img {
        height: 180px;
    }

    .gallery-navigation {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .gallery-prev {
        left: 8px;
    }

    .gallery-next {
        right: 8px;
    }

    .gallery-dots {
        gap: 6px;
        margin-top: 18px;
    }

    .gallery-dot {
        width: 6px;
        height: 6px;
    }
}
