/* ========================================
   ABOUT PAGE STYLES
   Стилі для сторінки "Про нас"
   ======================================== */

/* Mission Cards */
.mission-card {
    background: var(--bg-3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-card .values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-card .values-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.mission-card .values-list li:last-child {
    margin-bottom: 0;
}

.mission-card .values-list li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Stats Grid */
.stats-grid .stat-item {
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(65, 197, 117, 0.2);
}

.stats-grid .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stats-grid .stat-item h2 {
    color: var(--theme-3);
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-grid .stat-item h4 {
    color: var(--header);
    font-weight: 600;
}

.stats-grid .stat-item p {
    color: var(--text-color);
    margin: 0;
    font-size: 15px;
}

/* Store Gallery Section */
.store-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.store-gallery-item img {
    border-radius: 20px;
    transition: transform 0.5s ease;
    height: 400px;
    object-fit: cover;
}

.store-gallery-item:hover img {
    transform: scale(1.05);
}

/* Social Responsibility Section */
.social-responsibility-section {
    background: var(--bg-3);
}

.support-badge {
    background: linear-gradient(135deg, var(--theme-3), var(--theme-4));
    border-radius: 15px;
    color: var(--white);
}

.support-badge .icon {
    color: var(--white);
    opacity: 0.9;
}

.support-badge h5,
.support-badge p {
    color: var(--white);
    margin: 0;
}

.responsibility-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Generators Section */
.generators-section .values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.generators-section .values-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.generators-section .values-list li:last-child {
    margin-bottom: 0;
}

.generators-section .values-list li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.generators-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Video Section */
.video-section {
    margin: 0;
    padding: 0;
}

.video-wrapper {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Partners Section - brand slider */
.brand-section .brand-image img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-section .brand-image:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Archive Pages Styles (для видалення inline стилів) */
/* Archive Header */
.archive-header {
    background: linear-gradient(135deg, var(--header) 0%, var(--theme-3) 100%);
    color: var(--white);
    padding: 60px 0;
}

.archive-header .page-title {
    margin-bottom: 0;
    color: var(--white);
}

.archive-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* Archive Cards */
.promo-card .discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    margin: 15px;
    background-color: var(--theme-3);
    color: var(--header);
    padding: 8px 12px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(65, 197, 117, 0.3);
}

.promo-card .promo-image {
    height: 200px;
    overflow: hidden;
}

.promo-card .card-body .btn {
    background-color: var(--theme-3);
    color: var(--header);
    border: none;
}

.promo-card .card-body .btn:hover {
    background-color: var(--theme-4);
    color: var(--white);
}

/* Store Cards */
.store-card .store-image {
    height: 200px;
    overflow: hidden;
}

.store-card .card-body .btn {
    background-color: var(--theme-3);
    color: var(--header);
    border: none;
}

.store-card .card-body .btn:hover {
    background-color: var(--theme-4);
    color: var(--white);
}

/* Vacancy Cards */
.vacancy-card {
    border-left: 4px solid var(--theme-3) !important;
}

.vacancy-card .card-body .btn {
    background-color: var(--theme-3);
    color: var(--header);
    border: none;
    font-weight: 600;
}

.vacancy-card .card-body .btn:hover {
    background-color: var(--theme-4);
    color: var(--white);
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--bg-3);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filters-sidebar .filter-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--header);
    margin-bottom: 15px;
}

.filters-sidebar .form-select {
    border: 2px solid rgba(65, 197, 117, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.filters-sidebar .form-select:focus {
    border-color: var(--theme-3);
    box-shadow: 0 0 0 0.2rem rgba(65, 197, 117, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
    .mission-card {
        margin-bottom: 30px;
    }
    
    .store-gallery-item img {
        height: 300px;
    }
    
    .video-wrapper {
        height: 350px;
    }
    
    .generators-section .order-lg-1,
    .generators-section .order-lg-2 {
        order: 0;
    }
}

@media (max-width: 767px) {
    .archive-header {
        padding: 40px 0;
    }
    
    .archive-header .page-title {
        font-size: 28px;
    }
    
    .store-gallery-item img {
        height: 250px;
    }
    
    .video-wrapper {
        height: 300px;
    }
    
    .support-badge .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .filters-sidebar {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .promo-card .discount-badge {
        width: 50px;
        height: 50px;
        font-size: 11px;
        margin: 10px;
    }
    
    .vacancy-card .card-body .btn {
        width: 100%;
        margin-top: 15px;
    }
}

/* ========================================
   HR CONTACT SECTION (Vacancies Page)
   ======================================== */

.hr-contact-wrapper {
    background: linear-gradient(135deg, rgba(65, 197, 117, 0.05) 0%, rgba(121, 185, 0, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
}

.hr-contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hr-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hr-contact-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.hr-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--theme-3), var(--theme-4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(65, 197, 117, 0.3);
}

.hr-content h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--header);
    margin-bottom: 15px;
}

.hr-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hr-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.hr-detail-item i {
    color: var(--theme-3);
    font-size: 18px;
    width: 20px;
}

.hr-detail-item span {
    font-weight: 600;
    color: #666;
    min-width: 80px;
}

.hr-detail-item a {
    color: var(--header);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hr-detail-item a:hover {
    color: var(--theme-3);
}

/* ========================================
   LEGAL ADDRESS SECTION (Contact Page)
   ======================================== */

.legal-address-section {
    background: linear-gradient(135deg, rgba(12, 44, 28, 0.03) 0%, rgba(65, 197, 117, 0.03) 100%);
    padding: 50px 0;
    border-radius: 20px;
}

.legal-info-card {
    background: #fff;
    border-left: 5px solid var(--theme-3);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.legal-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    border-left-color: var(--theme-4);
}

.legal-info-card .card-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 0;
}

.legal-info-card .card-content p {
    margin-bottom: 0;
    line-height: 1.8;
}

/* ========================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   ======================================== */

@media (max-width: 991px) {
    .hr-contact-wrapper {
        padding: 30px 20px;
    }
    
    .hr-contact-card {
        padding: 25px;
    }
    
    .hr-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 28px;
    }
    
    .hr-content h5 {
        font-size: 18px;
    }
    
    .legal-info-card {
        padding: 30px 25px;
    }
    
    .legal-info-card .card-header h4 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .hr-contact-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hr-details {
        align-items: center;
    }
    
    .hr-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .hr-detail-item span {
        min-width: auto;
    }
    
    .legal-info-card {
        padding: 25px 20px;
    }
    
    .legal-info-card .card-content p {
        font-size: 15px;
    }
}

/* ========================================
   CONTACT PAGE IMAGE
   ======================================== */

.contact-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(65, 197, 117, 0.1) 0%, rgba(121, 185, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.contact-image-box:hover::before {
    opacity: 1;
}

.contact-image {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .contact-image-box {
        margin-top: 30px;
    }
    
    .contact-image {
        max-height: 450px;
    }
}

@media (max-width: 767px) {
    .contact-image {
        max-height: 350px;
    }
}

