/* ========================
   Empowering Section Styles
   ======================== */

.empowering-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Background pattern */
.empowering-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F7941D' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 0;
}

.empowering-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}

.empowering-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.empowering-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.empowering-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.empowering-content {
    display: flex;
    align-items: stretch;
    gap: 40px;
    margin-top: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.empowering-text {
    flex: 1.2;
    padding: 40px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.empowering-text:hover {
    transform: translateY(0);
}

/* Decorative element */
.empowering-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: rgba(247, 148, 29, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.empowering-text::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: rgba(247, 148, 29, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.empowering-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.empowering-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.empowering-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--neutral-800);
    margin-bottom: 30px;
}

.empowering-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.empowering-feature {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: var(--neutral-800);
    padding: 10px 0;
    position: relative;
    transition: transform 0.3s ease;
}

.empowering-feature:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

.empowering-feature::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F7941D'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.empowering-image {
    flex: 0.8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
}

.empowering-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.empowering-image:hover .empowering-image-main {
    transform: scale(1.02);
}

.empowering-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.stat-label {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(247, 148, 29, 0.3);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(51, 51, 51, 0.3);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .empowering-title {
        font-size: 2.5rem;
    }
    
    .empowering-content {
        gap: 40px;
    }
    
    .empowering-subtitle {
        font-size: 1.6rem;
    }
    
    .empowering-description {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .empowering-section {
        padding: 80px 0;
    }
    
    .empowering-title {
        font-size: 2.2rem;
    }
    
    .empowering-content {
        flex-direction: column;
        gap: 0;
    }
    
    .empowering-text {
        width: 100%;
        padding: 40px;
    }
    
    .empowering-image {
        width: 100%;
        min-height: 300px;
    }
    
    .empowering-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .empowering-section {
        padding: 60px 0;
    }
    
    .empowering-container {
        padding: 0 20px;
    }
    
    .empowering-header {
        margin-bottom: 40px;
    }
    
    .empowering-title {
        font-size: 2rem;
    }
    
    .empowering-title::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }
    
    .empowering-text {
        padding: 30px;
    }
    
    .empowering-subtitle {
        font-size: 1.5rem;
    }
    
    .empowering-features {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 10px);
        min-width: 150px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .empowering-section {
        padding: 50px 0;
    }
    
    .empowering-container {
        padding: 0 15px;
    }
    
    .empowering-header {
        margin-bottom: 30px;
    }
    
    .empowering-title {
        font-size: 1.8rem;
    }
    
    .empowering-subtitle {
        font-size: 1.4rem;
    }
    
    .empowering-description {
        font-size: 0.95rem;
    }
    
    .empowering-feature {
        font-size: 0.95rem;
    }
    
    .empowering-feature::before {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    
    .stat-item {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
