/* ============================================
   ABOUT SECTION - PROFESSIONAL & CLEAN
   ============================================ */

.about-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22, 101, 52, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Image Column */
.about-image-column {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

/* Floating Badge */
.about-badge-floating {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(22, 101, 52, 0.4);
    display: flex;
    align-items: center;
    gap: 18px;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #4ade80;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-text strong {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.badge-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Content Column */
.about-content-column {
    position: relative;
}

/* Section Header */
.section-header {
    margin-bottom: 35px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 2px solid rgba(22, 101, 52, 0.2);
    border-radius: 50px;
    color: #166534;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 0;
}

/* About Text */
.about-text {
    margin-bottom: 40px;
}

.about-text p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: #1e293b;
    font-weight: 700;
}

/* Internal Links */
.internal-link {
    color: #166534;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.internal-link:hover {
    color: #15803d;
    border-bottom-color: #4ade80;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    border-color: #166534;
    background: #f0fdf4;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(22, 101, 52, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.feature-icon.green {
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    color: #166534;
}

.feature-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
    color: #3b82f6;
}

.feature-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
    color: #f97316;
}

.feature-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    color: #8b5cf6;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(22, 101, 52, 0.25);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #4ade80;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* CTA Buttons */
.about-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(22, 101, 52, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(22, 101, 52, 0.4);
}

.btn-primary-large i {
    font-size: 19px;
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: transparent;
    color: #166534;
    text-decoration: none;
    border: 2px solid #166534;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: #166534;
    color: #fff;
    transform: translateY(-3px);
}

.btn-secondary-large i {
    font-size: 19px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .about-layout {
        gap: 50px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-column {
        order: 1;
    }
    
    .about-content-column {
        order: 2;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }
    
    .about-badge-floating {
        bottom: 20px;
        left: 20px;
        padding: 18px 24px;
    }
    
    .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .badge-text strong {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .about-feature {
        padding: 18px;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    .feature-content h3 {
        font-size: 15px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
    
    .about-stats {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .about-badge-floating {
        padding: 14px 18px;
    }
    
    .badge-text strong {
        font-size: 20px;
    }
    
    .badge-text span {
        font-size: 11px;
    }
}
