/* ===========================
   WHY CHOOSE US - why-choose.css
   =========================== */

.why-choose-us {
    background: white;
    padding: 80px 0;
}

.main-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* ===========================
   ДВІ КОЛОНКИ
   =========================== */

.two-column-layout {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    align-items: stretch;
}

.left-column,
.right-column {
    flex: 1;
}

/* ===========================
   ІНФОРМАЦІЙНА КАРТКА
   =========================== */

.info-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-header h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.info-header p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ===========================
   СПИСОК ПЕРЕВАГ
   =========================== */

.advantages-list {
    display: grid;
    gap: 25px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(5px);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: rgba(145, 208, 114, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    background: rgba(145, 208, 114, 0.2);
}

.advantage-text h4 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.advantage-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===========================
   РОЗДІЛЬНИК КОНТЕНТУ
   =========================== */

.content-divider {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
}

.content-divider h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* ===========================
   ФОТО ГАЛЕРЕЯ
   =========================== */

.photo-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.photo-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.photo-large {
    flex: 0 0 auto;
    height: 340px;
}

.photo-small {
    flex: 1;
    min-height: 180px;
}

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

.photo-item:hover img {
    transform: scale(1.05);
}

/* ===========================
   ОВЕРЛЕЙ НА ФОТО
   =========================== */

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.95), rgba(44, 62, 80, 0.7));
    padding: 20px;
    color: white;
}

.photo-small .photo-overlay {
    padding: 15px;
}

.photo-overlay h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: white;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.photo-small .photo-overlay h4 {
    font-size: 1rem;
}

.photo-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.photo-small .photo-overlay p {
    font-size: 12px;
}

/* ===========================
   АДАПТИВНІСТЬ
   =========================== */

@media (max-width: 1024px) {
    .two-column-layout {
        flex-direction: column;
    }

    .photo-large {
        height: 300px;
    }

    .photo-small {
        min-height: 200px;
    }
}

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

    .two-column-layout {
        gap: 40px;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .info-header h3 {
        font-size: 1.75rem;
    }

    .advantage-item {
        gap: 15px;
    }

    .advantage-icon {
        width: 45px;
        height: 45px;
    }

    .photo-large {
        height: 250px;
    }

    .photo-small {
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.75rem;
    }

    .info-header h3 {
        font-size: 1.5rem;
    }

    .content-divider h3 {
        font-size: 1.25rem;
    }

    .advantage-item {
        gap: 12px;
    }

    .advantage-icon {
        width: 40px;
        height: 40px;
    }

    .advantage-text h4 {
        font-size: 1rem;
    }

    .photo-large {
        height: 220px;
    }

    .photo-small {
        min-height: 160px;
    }

    .photo-overlay h4 {
        font-size: 1rem;
    }

    .photo-overlay p {
        font-size: 12px;
    }
}