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

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Image Section */
.about-image-container {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(82, 124, 13, 0.2) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #527c0d 0%, #3d5e0a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 32px;
    font-weight: 800;
    color: #527c0d;
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Decorative Elements */
.decorative-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #527c0d;
    border-radius: 50%;
}

.dot-1 {
    top: -10px;
    left: -10px;
    animation: pulse 2s ease-in-out infinite;
}

.dot-2 {
    top: 50px;
    left: -30px;
    width: 15px;
    height: 15px;
    background: #3d5e0a;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.decorative-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border: 3px solid #527c0d;
    border-radius: 20px;
    opacity: 0.2;
    transform: rotate(15deg);
}

/* Content Section */
.about-content-container {
    padding: 0 20px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.label-line {
    width: 50px;
    height: 2px;
    background: #527c0d;
}

.label-text {
    font-size: 14px;
    font-weight: 700;
    color: #527c0d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

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

/* Features Grid */
.features-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(82, 124, 13, 0.1) 0%, rgba(82, 124, 13, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #527c0d;
    font-size: 24px;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

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

/* CTA Section */
.about-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #527c0d 0%, #3d5e0a 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(82, 124, 13, 0.3);
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #527c0d;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link i {
    width: 45px;
    height: 45px;
    background: rgba(82, 124, 13, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-link:hover {
    gap: 15px;
}

.contact-link:hover i {
    background: #527c0d;
    color: #fff;
}

/* Background Shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #527c0d;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #3d5e0a;
    bottom: -100px;
    left: -100px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .about-wrapper {
        gap: 60px;
    }
    
    .main-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .modern-about-section {
        padding: 80px 0;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .main-image {
        height: 400px;
    }
    
    .floating-badge {
        right: 20px;
        bottom: 20px;
        padding: 20px;
        gap: 15px;
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .badge-number {
        font-size: 28px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-btn,
    .contact-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-image {
        height: 350px;
    }
    
    .floating-badge {
        padding: 15px;
        right: 10px;
        bottom: 10px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px;
    }
}
