/* ==========================================================================
   Styling Khusus Halaman About Us (css/about.css)
   VERSI FINAL: DESAIN ELEGAN, MODERN, PREMIUM & VIDEO-READY
   ========================================================================== */

/* --- 1. ABOUT HERO SECTION --- */
.about-hero {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, #fff5f8 0%, #f0f4ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    color: var(--dark-purple);
    font-size: 3.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-hero h1 span { color: var(--primary-pink); }

.about-hero p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- 2. ENTITY SHOWCASE (DATA SORCERERS & WOMAN HUB) --- */
.entity-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.entity-section.reverse {
    flex-direction: row-reverse;
}

.entity-content {
    flex: 1;
}

.entity-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.entity-logo-wrapper img {
    height: 75px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.08));
    transition: transform 0.3s ease;
}

.entity-logo-wrapper img:hover {
    transform: scale(1.05) rotate(-3deg);
}

.entity-title {
    margin: 0;
    font-size: 2.4rem;
    color: var(--dark-purple);
    font-family: 'Space Grotesk', sans-serif;
}

.entity-role {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.role-ds { background: rgba(138, 43, 226, 0.1); color: var(--secondary-purple); }
.role-wh { background: rgba(255, 20, 147, 0.1); color: var(--primary-pink); }

.entity-desc {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* List Styling */
.entity-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.entity-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Gambar & Video dengan Efek Offset & Shadow Premium */
.entity-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.entity-visual img, 
.entity-visual iframe, 
.entity-visual video {
    width: 100%;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.entity-visual:hover img,
.entity-visual:hover video {
    transform: translateY(-10px);
}

/* Dekorasi gradasi offset di belakang gambar/video */
.entity-visual::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 30px;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Frame khusus video agar dekorasi belakangnya pas ukurannya */
.visual-ds::before {
    background: linear-gradient(135deg, var(--secondary-purple), #4B0082);
    opacity: 0.15;
    transform: rotate(-4deg);
    max-width: 440px; /* Menyesuaikan max-width iframe 400px + inset 20px */
    margin: 0 auto;
}

.visual-wh::before {
    background: linear-gradient(135deg, var(--primary-pink), #FFB6C1);
    opacity: 0.15;
    transform: rotate(4deg);
}

.entity-visual:hover::before { transform: rotate(0deg) scale(1.02); opacity: 0.2; }


/* --- 3. SYNERGY SECTION --- */
.synergy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.synergy-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.synergy-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.2);
}

.synergy-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.synergy-card:hover .synergy-icon { transform: scale(1.1); }
.synergy-card h3 { color: var(--dark-purple); margin-bottom: 15px; font-size: 1.3rem; }
.synergy-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; margin: 0;}


/* --- 4. CONTACT CARDS --- */
.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    border: 2px solid transparent;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    min-width: 300px;
    flex: 1;
    max-width: 450px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
}

.contact-ds::after { background: var(--secondary-purple); }
.contact-wh::after { background: var(--primary-pink); }

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.contact-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-card-header img { height: 45px; object-fit: contain; }
.contact-card-header h4 { margin: 0; color: var(--dark-purple); font-size: 1.4rem; }

.contact-detail {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-detail i { color: var(--text-muted); width: 20px; }

.contact-btn-wrap { margin-top: 30px; }
.contact-btn-wrap .btn { width: 100%; }

/* --- 5. RESPONSIVE OPTIMIZATION --- */
@media (max-width: 992px) {
    .about-hero { padding: 140px 20px 80px; }
    .about-hero h1 { font-size: 2.8rem; }
    .entity-section, .entity-section.reverse { flex-direction: column; gap: 50px; text-align: center; }
    .entity-logo-wrapper { justify-content: center; }
    .entity-list li { justify-content: center; text-align: left; }
    
    /* Pastikan iframe video Instagram tidak membludak di HP */
    .entity-visual iframe, 
    .entity-visual video {
        max-width: 350px !important;
        height: 500px !important; 
    }
    
    .visual-ds::before { max-width: 390px; }
}

@media (max-width: 768px) {
    .synergy-grid { grid-template-columns: 1fr; }
    .contact-wrapper { flex-direction: column; align-items: center; }
    .contact-card { width: 100%; max-width: 100%; }
}