/* ============================================ */
/* ABOUT SECTION */
/* ============================================ */

.about-section {
    background: linear-gradient(180deg, rgba(19, 47, 76, 0.5) 0%, rgba(10, 25, 41, 0.9) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 4rem auto 0;
}

/* ============================================ */
/* ABOUT CONTENT (LEFT SIDE) */
/* ============================================ */

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--cream);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* ============================================ */
/* VALUE CARDS */
/* ============================================ */

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.15), rgba(212, 175, 55, 0.1));
    border: 2px solid rgba(25, 118, 210, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--logo-blue), var(--gold-accent));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleY(1);
}

.value-card:hover {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.25), rgba(212, 175, 55, 0.15));
    border-color: var(--logo-blue);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.3);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
    transition: all 0.3s ease;
}

.value-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value-card p {
    font-size: 1rem;
    color: var(--soft-gold);
    line-height: 1.7;
    margin: 0;
}

/* ============================================ */
/* ABOUT IMAGE CONTAINER (RIGHT SIDE) */
/* FULL HEIGHT - NO BORDERS - IMMERSIVE */
/* ============================================ */

.about-image-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Remove all borders and make it edge-to-edge */
.about-image-wrapper {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

/* ============================================ */
/* STATIC IMAGE - FULL HEIGHT */
/* ============================================ */

.about-static-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-image-wrapper:hover .about-static-image {
    opacity: 0;
}

/* ============================================ */
/* VIDEO - FULL HEIGHT */
/* ============================================ */

.about-hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.about-image-wrapper:hover .about-hover-video {
    opacity: 1;
}

/* ============================================ */
/* HOVER PLAY INDICATOR */
/* ============================================ */

.hover-play-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(10, 25, 41, 0.9);
    border: 1px solid var(--gold-accent);
    border-radius: 50px;
    color: var(--gold-accent);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
    opacity: 1;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hover-play-indicator i {
    font-size: 1.5rem;
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

.about-image-wrapper:hover .hover-play-indicator {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
}

/* ============================================ */
/* RESPONSIVE ABOUT SECTION */
/* ============================================ */

@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image-wrapper {
        height: 600px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .about-image-wrapper {
        height: 500px;
    }
    
    .about-content p {
        font-size: 1.05rem;
    }
    
    .value-card {
        padding: 1.8rem 1.3rem;
    }
    
    .value-card h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .about-image-wrapper {
        height: 450px;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .value-card {
        padding: 1.5rem 1.2rem;
    }
    
    .value-card i {
        font-size: 2rem;
    }
    
    .value-card h4 {
        font-size: 1.2rem;
    }
    
    .hover-play-indicator {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    .hover-play-indicator span {
        display: none;
    }
    
    .hover-play-indicator i {
        font-size: 1.8rem;
    }
}