/* About Section Modern Styles - Redesigned */

.about-section-modern {
    padding: 120px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.about-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(178, 120, 25, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

.about-section-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(178, 120, 25, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.about-section-modern .container {
    position: relative;
    z-index: 1;
}

/* Image Wrapper - New Design */
.about-image-wrapper {
    position: relative;
    padding: 0;
}

.about-image-main {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(178, 120, 25, 0.25);
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.about-image-wrapper:hover .about-image-main {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 40px 100px rgba(178, 120, 25, 0.35);
}

.about-image-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(178, 120, 25, 0.1) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image-wrapper:hover .about-image-main::before {
    opacity: 1;
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover .about-image-main img {
    transform: scale(1.1);
}

.about-image-overlay {
    display: none;
}

/* Decoration Elements - New Style */
.about-image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    z-index: 1;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(178, 120, 25, 0.15) 0%, rgba(178, 120, 25, 0.05) 100%);
    animation: float 8s ease-in-out infinite;
}

.decoration-circle-1 {
    width: 150px;
    height: 150px;
    top: 5%;
    right: -8%;
    animation-delay: 0s;
}

.decoration-circle-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: -8%;
    animation-delay: 2.5s;
}

.decoration-circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 5%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-30px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(20px) rotate(240deg) scale(0.9);
    }
}

/* About Stats - Redesigned */
.about-stats {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(178, 120, 25, 0.2);
    border: 2px solid rgba(178, 120, 25, 0.15);
    z-index: 3;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(10px);
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 140px;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b27819 0%, #d4902a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(178, 120, 25, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(178, 120, 25, 0.4);
}

.stat-content h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

/* Content Wrapper - New Design */
.about-content-wrapper {
    padding: 40px 0;
    position: relative;
}

.section-label {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.label-text {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(178, 120, 25, 0.12) 0%, rgba(178, 120, 25, 0.08) 100%);
    color: #b27819;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(178, 120, 25, 0.2);
    position: relative;
    overflow: hidden;
}

.label-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.section-label:hover .label-text::before {
    left: 100%;
}

.about-title {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
}

.title-line {
    display: block;
    position: relative;
}

.title-line-accent {
    color: #b27819;
    position: relative;
    display: inline-block;
}

.title-line-accent::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #b27819 0%, rgba(178, 120, 25, 0.3) 100%);
    border-radius: 3px;
    z-index: -1;
}

.about-description {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
}

.about-description p {
    margin-bottom: 18px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* Features - Redesigned */
.about-features {
    margin-bottom: 45px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(178, 120, 25, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #b27819 0%, #d4902a 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:hover {
    transform: translateY(-8px) translateX(5px);
    box-shadow: 0 15px 40px rgba(178, 120, 25, 0.2);
    border-color: rgba(178, 120, 25, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #b27819 0%, #d4902a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(178, 120, 25, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(178, 120, 25, 0.4);
}

.feature-text h5 {
    margin: 0 0 10px 0;
    font-size: 17px;
    font-weight: 700;
    color: #2a2a2a;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-text h5 {
    color: #b27819;
}

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

/* Action Buttons - Enhanced */
.about-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-about-primary,
.btn-about-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-about-primary {
    background: linear-gradient(135deg, #b27819 0%, #d4902a 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(178, 120, 25, 0.3);
}

.btn-about-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-about-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(178, 120, 25, 0.4);
    color: #fff;
}

.btn-about-secondary {
    background: transparent;
    color: #b27819;
    border-color: #b27819;
    border-width: 2px;
}

.btn-about-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b27819 0%, #d4902a 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-about-secondary:hover::before {
    left: 0;
}

.btn-about-secondary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(178, 120, 25, 0.3);
    border-color: #b27819;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-section-modern {
        padding: 80px 0;
    }

    .about-title {
        font-size: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 30px;
        animation: none;
        opacity: 1;
        transform: none;
    }

    .about-image-main {
        transform: none;
    }

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

@media (max-width: 767px) {
    .about-section-modern {
        padding: 60px 0;
    }

    .about-image-wrapper {
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 32px;
    }

    .title-line-accent::after {
        width: 80px;
        height: 4px;
    }

    .about-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .about-features {
        gap: 18px;
    }

    .feature-item {
        padding: 20px;
    }

    .about-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 35px;
    }

    .decoration-circle {
        display: none;
    }

    .about-stats {
        padding: 20px;
        gap: 15px;
    }

    .stat-item {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 575px) {
    .about-title {
        font-size: 28px;
    }

    .stat-item {
        min-width: 100%;
    }

    .about-stats {
        flex-direction: column;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
