/* ===== ABOUT US SECTION - FIXED STYLES ===== */

/* Section Base */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9F9F9 100%);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4AF37;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #B8860B);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #121212;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Content Grid - FIXED ALIGNMENT */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start; /* Changed from default to align items at top */
}

/* Stats Grid - COMPACT FOR MOBILE */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #B8860B);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* BLACK TEXT FOR STATS - FIXED */
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #121212; /* Changed from gradient to solid black */
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Mission Card */
.mission-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 35px;
    border: 1px solid #F0F0F0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mission-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: #121212;
    margin: 0;
}

.mission-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    color: #121212;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

/* Values Accordion */
.values-accordion {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.accordion-item {
    border-bottom: 1px solid #F0F0F0;
    background: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item.active {
    background: #FAFAFA;
}

.accordion-header {
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.accordion-header:hover {
    background: #F8F8F8;
}

.accordion-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header:hover .accordion-icon {
    transform: scale(1.1);
}

.accordion-header h4 {
    font-size: 1.1rem;
    color: #121212;
    margin: 0;
    flex: 1;
    transition: color 0.3s;
}

.accordion-header:hover h4 {
    color: #D4AF37;
}

.accordion-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}

.toggle-line {
    position: absolute;
    background: #121212;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-line:first-child {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.toggle-line:last-child {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.accordion-item.active .toggle-line {
    background: #D4AF37;
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    padding: 0 25px 22px;
    max-height: 500px;
}

.accordion-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.value-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.9rem;
}

.value-features li span {
    color: #D4AF37;
    font-weight: bold;
}

/* Responsive Design - FIXED MOBILE VIEW */
@media (max-width: 992px) {
    .about-content {
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    /* SINGLE COLUMN FOR MOBILE */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* COMPACT STATS FOR MOBILE */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    /* SMALLER STATS ON MOBILE */
    .stat-number {
        font-size: 1.5rem; /* Reduced from 2.2rem */
        font-weight: 700;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.8rem; /* Reduced from 0.9rem */
        line-height: 1.2;
    }
    
    /* COMPACT MISSION CARD */
    .mission-card {
        padding: 25px;
    }
    
    .mission-header {
        margin-bottom: 15px;
    }
    
    .mission-icon {
        width: 45px;
        height: 45px;
    }
    
    .mission-card h3 {
        font-size: 1.3rem;
    }
    
    .mission-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    /* COMPACT ACCORDION */
    .accordion-header {
        padding: 18px 20px;
    }
    
    .accordion-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .accordion-header h4 {
        font-size: 1rem;
    }
    
    .accordion-content {
        padding: 0 20px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 20px 18px;
    }
    
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* EVEN MORE COMPACT FOR SMALL MOBILE */
    .stats-grid {
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px 12px;
    }
    
    .stat-number {
        font-size: 1.4rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .accordion-header {
        padding: 15px 18px;
    }
    
    .accordion-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .accordion-header h4 {
        font-size: 0.95rem;
    }
    
    .accordion-content p,
    .value-features li {
        font-size: 0.9rem;
    }
}

/* SMALL MOBILE - EXTRA COMPACT */
@media (max-width: 360px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-card {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Animation classes */
.reveal-up {
    opacity: 1;
    visibility: visible;
}

.reveal-left {
    transform: translateX(-30px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
    transform: translateX(30px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Performance optimization */
@media (prefers-reduced-motion: reduce) {
    .reveal-left,
    .reveal-right,
    .reveal-up,
    .accordion-content,
    .stat-card,
    .mission-card {
        transition: none !important;
        transform: none !important;
    }
}