/* WHO WE ARE SECTION - PREMIUM DESIGN */

.who-we-are-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.who-we-are-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Two-column layout */
.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* VIDEO COLUMN */
.who-we-are-video-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-we-are-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideInLeft 0.8s ease-out;
}

.who-we-are-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

/* Floating cards over video */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.floating-card-primary {
    width: 140px;
    height: 140px;
    top: 30px;
    left: 30px;
    animation-name: slideInDown;
    animation-delay: 0.3s;
}

.floating-card-secondary {
    width: 140px;
    height: 140px;
    bottom: 30px;
    right: 30px;
    animation-name: slideInUp;
    animation-delay: 0.5s;
}

.floating-card-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #c41e3a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.floating-card-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2a4a;
    letter-spacing: 0.5px;
}

/* TEXT COLUMN */
.who-we-are-text-wrapper {
    display: flex;
    flex-direction: column;
}

.who-we-are-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #c41e3a;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 50px;
    width: fit-content;
    animation: fadeIn 0.8s ease-out;
}

.who-we-are-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    color: #1a2a4a;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.who-we-are-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5f7f;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.who-we-are-description:nth-of-type(2) {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.who-we-are-description:nth-of-type(3) {
    animation: fadeIn 0.8s ease-out 0.5s both;
}

/* Metrics section */
.who-we-are-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.metric-item:nth-child(1) {
    animation-delay: 0.6s;
}

.metric-item:nth-child(2) {
    animation-delay: 0.7s;
}

.metric-item:nth-child(3) {
    animation-delay: 0.8s;
}

.metric-value {
    font-size: 2.8rem;
    font-weight: 900;
    color: #c41e3a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2a4a;
    letter-spacing: 0.3px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translate(-40px, -40px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate(40px, 40px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE DESIGN */

@media (max-width: 1200px) {
    .who-we-are-title {
        font-size: 2.8rem;
    }

    .who-we-are-metrics {
        gap: 1.5rem;
    }

    .metric-value {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .who-we-are-title {
        font-size: 2.4rem;
    }

    .who-we-are-description {
        font-size: 1rem;
    }

    .floating-card-primary,
    .floating-card-secondary {
        width: 120px;
        height: 120px;
        padding: 1rem;
    }

    .floating-card-number {
        font-size: 2rem;
    }

    .floating-card-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 4rem 1.5rem;
    }

    .who-we-are-title {
        font-size: 2rem;
    }

    .who-we-are-description {
        font-size: 0.95rem;
    }

    .who-we-are-metrics {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .metric-value {
        font-size: 2rem;
    }

    .metric-label {
        font-size: 0.9rem;
    }

    .floating-card-primary,
    .floating-card-secondary {
        width: 100px;
        height: 100px;
    }

    .floating-card-number {
        font-size: 1.6rem;
    }

    .floating-card-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .who-we-are-section {
        padding: 3rem 1rem;
    }

    .who-we-are-title {
        font-size: 1.7rem;
    }

    .who-we-are-label {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        padding: 0.4rem 1rem;
    }

    .who-we-are-description {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .who-we-are-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .metric-value {
        font-size: 1.8rem;
    }

    .metric-label {
        font-size: 0.85rem;
    }

    .floating-card-primary {
        top: 15px;
        left: 15px;
    }

    .floating-card-secondary {
        bottom: 15px;
        right: 15px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .who-we-are-section {
        background: linear-gradient(135deg, #0f1419 0%, #1a2a3a 100%);
    }

    .floating-card {
        background: #1a2a3a;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .who-we-are-label {
        color: #ff4d6d;
        background: rgba(255, 77, 109, 0.15);
    }

    .who-we-are-title,
    .floating-card-label,
    .metric-label {
        color: #f5f5f5;
    }

    .who-we-are-description {
        color: #d0d0d0;
    }

    .floating-card-number,
    .metric-value {
        color: #ff4d6d;
    }
}

:root[data-theme="dark"] .who-we-are-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a2a3a 100%);
}

:root[data-theme="dark"] .floating-card {
    background: #1a2a3a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

:root[data-theme="dark"] .who-we-are-label {
    color: #ff4d6d;
    background: rgba(255, 77, 109, 0.15);
}

:root[data-theme="dark"] .who-we-are-title,
:root[data-theme="dark"] .floating-card-label,
:root[data-theme="dark"] .metric-label {
    color: #f5f5f5;
}

:root[data-theme="dark"] .who-we-are-description {
    color: #d0d0d0;
}

:root[data-theme="dark"] .floating-card-number,
:root[data-theme="dark"] .metric-value {
    color: #ff4d6d;
}
