.sec-five {
    padding: 120px 0 100px 0;
    background-color: var(--bg-main) !important; 
    color: var(--text-main); 
    width: 100%;
    overflow: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.sec-five__container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* სექციის ხუთი ჰედერი */
.sec-five__header {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.sec-five__subtitle {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-subtitle) !important; 
    margin-bottom: 12px;
}

.sec-five__title {
    font-family: 'BPG_Header', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-heading); 
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
}

/* გარე ინფრასტრუქტურის სია */
.outdoor-block {
    width: 100%;
}

.outdoor-list {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    list-style: none;
    display: block;
}

.outdoor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-color); 
    transition: border-color 0.3s ease;
}

.outdoor-item:hover {
    border-color: var(--text-subtitle); 
}

.outdoor-name {
    font-family: 'Arial_Geo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-heading); 
    letter-spacing: 0.3px;
    transition: color 0.4s ease;
}

.outdoor-time {
    font-family: 'Arial_Geo', sans-serif;
    font-size: 15px;
    color: var(--text-muted); 
    text-align: right;
    transition: color 0.4s ease;
}

/* 📱 რესპონსივი მობილურისთვის */
@media screen and (max-width: 768px) {
    .sec-five {
        padding: 80px 0 60px 0;
    }
    
    .sec-five__container {
        gap: 40px;
    }

    .outdoor-list {
        padding: 0 24px;
    }

    .outdoor-item {
        padding: 18px 0;
    }

    .outdoor-name { font-size: 15px; }
    .outdoor-time { font-size: 14px; }
}