/* Revolutionary About Section Styles */

.about-revolution-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.about-revolution-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 100px;
    background: linear-gradient(135deg, rgba(178, 131, 97, 0.15) 0%, rgba(178, 131, 97, 0.05) 100%);
    top: -50px;
    left: -25%;
    transform: rotate(-2deg);
    z-index: 0;
    pointer-events: none;
}

.about-content-wrap {
    position: relative;
    z-index: 1;
    padding-right: 40px;
}

.about-heading {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    color: #333;
    line-height: 1.2;
}

.about-heading-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.about-heading-highlight::after {
    content: '';
    position: absolute;
    height: 12px;
    width: 100%;
    bottom: 5px;
    left: 0;
    background-color: rgba(178, 131, 97, 0.15);
    z-index: -1;
}

.about-subheading {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 25px;
}

.about-text {
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    min-width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: white;
}

.about-feature-text {
    font-size: 15px;
    font-weight: 500;
    color: #444;
    margin-top: 4px;
}

.about-cta {
    margin-top: 35px;
}

.about-cta .btn {
    margin-right: 15px;
}

.about-cta .text-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.about-cta .text-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.about-cta .text-link:hover {
    color: #333;
}

.about-cta .text-link:hover i {
    transform: translateX(4px);
}

.about-image-wrap {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
    margin-top: 90px;
}

.about-floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 3;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-card-1 {
    bottom: -30px;
    right: -20px;
}

.about-card-2 {
    top: -20px;
    left: -20px;
}

.about-card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-card-text {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.about-card-subtext {
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
}

.about-pattern {
    position: absolute;
    z-index: 0;
    opacity: 0.3;
}

.about-pattern-1 {
    bottom: -50px;
    right: 10%;
    width: 150px;
    height: 150px;
    background-color: rgba(178, 131, 97, 0.15);
    border-radius: 50%;
}

.about-pattern-2 {
    top: 20%;
    right: -80px;
    width: 200px;
    height: 200px;
    border: 30px solid rgba(178, 131, 97, 0.1);
    border-radius: 50%;
}

/* Animations */
.about-content-wrap,
.about-image-wrap,
.about-features,
.about-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 991px) {
    .about-revolution-section {
        padding: 70px 0;
    }
    
    .about-content-wrap {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .about-heading {
        font-size: 2.2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrap {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .about-revolution-section {
        padding: 50px 0;
    }
    
    .about-heading {
        font-size: 1.8rem;
    }
    
    .about-floating-card {
        max-width: 180px;
        padding: 15px;
    }
    
    .about-card-1 {
        bottom: -20px;
        right: 0;
    }
    
    .about-card-2 {
        top: -15px;
        left: 0;
    }
}
