/* About Us Section */
.about-us {
    padding: 6rem 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.about-us-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 3rem;
}

.about-link {
    display: inline-block;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: var(--color-primary-dark);
}

.about-headline {
    font-size: 3.5rem;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-family);
}

.about-image-container {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.about-hero-image {
    max-width: 1000px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-stats {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-item .stat-number {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: lowercase;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-icon-green {
    color: var(--color-success);
}

.stat-icon-orange {
    color: var(--color-accent);
}

.stat-icon-yellow {
    color: var(--color-warning);
}

.about-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.diamond {
    position: absolute;
    width: 60px;
    height: 60px;
    transform: rotate(45deg);
    border-radius: 8px;
    animation: about-float 6s ease-in-out infinite;
}

.diamond-orange {
    background: linear-gradient(135deg, var(--color-accent), #ff8c42);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.diamond-green {
    background: linear-gradient(135deg, var(--color-accent), #ff8c42);
    box-shadow: 0 8px 25px rgba(47, 158, 68, 0.3);
}

.diamond-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.diamond-2 {
    top: 20%;
    right: 8%;
    animation-delay: 1.5s;
}

.diamond-3 {
    bottom: 25%;
    left: 3%;
    animation-delay: 3s;
}

.diamond-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 4.5s;
}

.photo-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: about-float 8s ease-in-out infinite;
    border: 2px solid var(--color-border);
}

.photo-card-1 {
    top: 15%;
    right: 2%;
    animation-delay: 0.5s;
    transform: rotate(15deg);
}

.photo-card-2 {
    top: 60%;
    left: 1%;
    animation-delay: 2s;
    transform: rotate(-10deg);
}

.photo-card-3 {
    bottom: 20%;
    right: 12%;
    animation-delay: 3.5s;
    transform: rotate(8deg);
}

.photo-card-4 {
    top: 40%;
    left: 8%;
    animation-delay: 5s;
    transform: rotate(-12deg);
}

.photo-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

@keyframes about-float {
    0%, 100% {
        transform: translateY(0px) rotate(45deg);
    }
    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

@media (max-width: 1024px) {
    .about-headline {
        font-size: 2.5rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .stat-item {
        min-width: auto;
    }

    .stat-item .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 1.25rem;
    }

    .diamond {
        width: 50px;
        height: 50px;
    }

    .photo-card {
        width: 60px;
        height: 60px;
    }

    .photo-placeholder {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .about-headline {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem 1rem;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .stat-item .stat-label {
        font-size: 0.9rem;
    }

    .stat-icon {
        font-size: 1rem;
    }

    .diamond {
        width: 40px;
        height: 40px;
    }

    .photo-card {
        width: 50px;
        height: 50px;
    }

    .photo-placeholder {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .about-headline {
        font-size: 1.75rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 0.75rem;
    }

    .stat-item .stat-number {
        font-size: 1.75rem;
    }

    .stat-item .stat-label {
        font-size: 0.85rem;
    }

    .stat-icon {
        font-size: 0.9rem;
    }

    .diamond {
        width: 35px;
        height: 35px;
    }

    .photo-card {
        width: 45px;
        height: 45px;
    }

    .photo-placeholder {
        width: 20px;
        height: 20px;
    }
}

