/* 
 * HIMABISDIG - Universal Ekosistem CSS
 * CSS ini digunakan untuk semua halaman ekosistem (1-6)
 * Jangan ubah tampilan - hanya extract dari inline style
 */

/* ===== ANIMASI KEYFRAMES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ===== INTERSECTION OBSERVER CLASSES ===== */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    animation: fadeIn 2s ease-out;
}

/* CONTAINER HERO - DESKTOP */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8%;
    padding-left: 30%;
    animation: slideInFromRight 1.2s ease-out 0.3s both;
}

.hero-content {
    color: white;
    text-align: right;
    width: 100%;
    max-width: none;
    padding-right: 2%;
    overflow: visible;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    padding: 8px 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out 0.6s both;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
    line-height: 1.1;
    color: white;
    text-align: right;
    width: 100%;
    word-wrap: break-word;
    letter-spacing: -1px;
    animation: fadeInUp 1.2s ease-out 0.8s both;
    transition: all 0.3s ease;
}

.hero-title:hover {
    transform: translateY(-2px);
    text-shadow: 0 6px 25px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.0rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    font-weight: 400;
    text-align: right;
    width: 100%;
    word-wrap: break-word;
    hyphens: auto;
    text-align: justify;
    text-align-last: right;
    max-width: none; 
    padding-right: 0; 
    margin-right: 0;
    transform: scaleX(1.3);
    transform-origin: right center;
    letter-spacing: 0.3px;
    word-spacing: 0.8px;
    animation: fadeInUp 1.2s ease-out 1s both;
}

/* ===== MOBILE DESCRIPTION SECTION ===== */
.mobile-description {
    display: none;
    background: #fff;
    padding: 40px 20px;
    margin: 0;
}

.mobile-description .container {
    max-width: 100%;
    padding: 0 15px;
}

.mobile-description-content {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.mobile-description h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.mobile-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    text-align: justify;
    text-indent: 20px;
}

/* ===== SECTION STYLING ===== */
.section-white {
    background: #fff;
    padding: 80px 0;
}

.section-gray {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.section-title:hover {
    transform: translateY(-2px);
}

.section-title .blue-text {
    color: #0A2463 !important;
    font-weight: 800;
    transition: all 0.3s ease;
}

.section-title .blue-text:hover {
    color: #083a57 !important;
    text-shadow: 0 2px 8px rgba(10, 36, 99, 0.3);
}

.section-title .highlight {
    color: #ff6b35;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== VISION MISSION CARDS ===== */
.vision-mission-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: scaleIn 0.8s ease-out both;
}

.vision-mission-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.vision-mission-card h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.vision-mission-card:hover h3 {
    color: #e55a2b;
    transform: translateX(5px);
}

.vision-mission-card h3 i {
    margin-right: 15px;
    font-size: 2rem;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.vision-mission-card:hover h3 i {
    transform: scale(1.1) rotate(5deg);
    color: #f7931e;
}

.vision-mission-card p, .vision-mission-card ul {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.vision-mission-card:hover p,
.vision-mission-card:hover ul {
    color: #333;
}

.vision-mission-card ul li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.vision-mission-card:hover ul li {
    transform: translateX(3px);
}

/* ===== STRUKTUR KEPENGURUSAN ===== */
.struktur-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.org-chart {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Level 1 - Ketua Ekosistem */
.level-1 {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
}

/* Level 2 - Sekretaris Ekosistem */
.level-2 {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
}

.level-2::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
    border-radius: 2px;
    animation: fadeIn 1s ease-out 0.5s both;
}

/* Level 3 - Staff Ekosistem */
.level-3 {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.level-3::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
    border-radius: 2px;
    animation: fadeIn 1s ease-out 0.7s both;
}

.level-3::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(to right, #ff6b35, #f7931e);
    border-radius: 2px;
    animation: slideInFromLeft 1s ease-out 0.9s both;
}

/* ===== PENGURUS CARD ===== */
.pengurus-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    min-width: 220px;
    max-width: 250px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    margin-bottom: 20px;
    animation: bounceIn 0.8s ease-out both;
}

.pengurus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 20px;
    z-index: -1;
    margin: -3px;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

.pengurus-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 35px 70px rgba(255, 107, 53, 0.4);
    animation: glow 2s ease-in-out infinite;
}

/* Foto pengurus */
.pengurus-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pengurus-photo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.5);
}

.pengurus-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.pengurus-photo:hover img {
    transform: scale(1.1);
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.photo-placeholder:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.5);
}

.photo-placeholder i {
    animation: pulse 2s ease-in-out infinite;
}

/* Nama dan Posisi */
.pengurus-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.pengurus-card:hover .pengurus-name {
    color: #ff6b35;
    transform: translateY(-2px);
}

.pengurus-position {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.pengurus-card:hover .pengurus-position {
    color: #555;
}

.position-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.position-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.pengurus-card:hover .position-badge {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.pengurus-card:hover .position-badge::before {
    left: 100%;
    animation: shimmer 1s ease-in-out;
}

/* SPECIAL STYLING UNTUK KETUA */
.ketua-card {
    transform: scale(1.05);
    border: 4px solid #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    animation: bounceIn 1s ease-out 0.3s both, glow 3s ease-in-out 1s infinite;
}

.ketua-card::before {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    margin: -4px;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.ketua-card:hover {
    transform: scale(1.08) translateY(-20px);
    box-shadow: 0 40px 80px rgba(255, 107, 53, 0.4);
}

.ketua-card .position-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    font-weight: 700;
    padding: 8px 20px;
    animation: pulse 2s ease-in-out infinite;
}

/* Contact info - FIX KONFLIK DENGAN FOOTER */
/* Gunakan selector lebih spesifik supaya tidak nabrak footer */
.pengurus-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    transition: all 0.3s ease;
}

.pengurus-card:hover .pengurus-contact {
    border-top-color: #ff6b35;
}

.pengurus-card .pengurus-contact .contact-item {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pengurus-card .pengurus-contact .contact-item:hover {
    color: #ff6b35;
    transform: translateX(3px);
}

.pengurus-card .pengurus-contact .contact-item i {
    margin-right: 8px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.pengurus-card .pengurus-contact .contact-item:hover i {
    transform: scale(1.2);
    color: #f7931e;
}

/* ===== STAGGERED ANIMATIONS ===== */
.level-1 .pengurus-card {
    animation-delay: 0.2s;
}

.level-2 .pengurus-card {
    animation-delay: 0.4s;
}

.level-3 .pengurus-card:nth-child(1) {
    animation-delay: 0.6s;
}

.level-3 .pengurus-card:nth-child(2) {
    animation-delay: 0.8s;
}

.level-3 .pengurus-card:nth-child(3) {
    animation-delay: 1s;
}

.level-3 .pengurus-card:nth-child(4) {
    animation-delay: 1.2s;
}

.vision-mission-card:nth-child(1) {
    animation-delay: 0.2s;
}

.vision-mission-card:nth-child(2) {
    animation-delay: 0.4s;
}

/* ===== RESPONSIVE DESIGN - DESKTOP ===== */
@media (max-width: 1400px) {
    .hero-section {
        background-size: cover;
        min-height: 400px;
    }
    
    .hero-container {
        padding-left: 25%;
        padding-right: 6%;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        transform: scaleX(1.25);
        letter-spacing: 0.4px;
        word-spacing: 0.8px;
    }
}

@media (max-width: 1200px) {
    .hero-section {
        background-size: cover;
        min-height: 350px;
    }
    
    .hero-container {
        padding-left: 20%;
        padding-right: 5%;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        transform: scaleX(1.2);
        letter-spacing: 0.3px;
        word-spacing: 0.6px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        background-size: cover;
        min-height: 300px;
    }
    
    .hero-container {
        padding-left: 15%;
        padding-right: 5%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        transform: scaleX(1.15);
        letter-spacing: 0.2px;
        word-spacing: 0.4px;
    }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    .hero-section {
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        height: auto;
        min-height: 200px;
        max-height: 300px;
        width: 100%;
        padding: 20px 15px;
        margin: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: fadeIn 1.2s ease-out;
    }
    
    .hero-container {
        display: flex;
        position: static;
        top: auto;
        left: auto;
        transform: none;
        padding: 20px 15px;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        animation: scaleIn 1s ease-out 0.5s both;
    }
    
    .hero-content {
        text-align: center;
        color: white;
        width: 100%;
        max-width: none;
    }
    
    .hero-title {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 0 3px 10px rgba(0,0,0,0.5);
        line-height: 1.1;
        letter-spacing: -0.5px;
        color: white;
        white-space: pre-line;
        text-align: center;
        display: block;
        width: 100%;
        animation: fadeInUp 1s ease-out 0.8s both;
    }
    
    .hero-subtitle {
        display: none;
    }

    .mobile-description {
        display: block;
        animation: fadeInUp 0.8s ease-out 0.3s both;
    }

    .section-white,
    .section-gray,
    .struktur-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .vision-mission-card {
        padding: 25px 20px;
        margin-bottom: 20px;
        animation: slideInFromLeft 0.8s ease-out both;
    }

    .vision-mission-card:nth-child(even) {
        animation: slideInFromRight 0.8s ease-out both;
    }

    .vision-mission-card h3 {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
    }

    .vision-mission-card h3 i {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 2.5rem;
    }

    .vision-mission-card p,
    .vision-mission-card ul {
        font-size: 0.95rem;
        text-align: justify;
    }

    .org-chart {
        padding: 20px 10px;
    }

    .level-1,
    .level-2,
    .level-3 {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .level-2::before,
    .level-3::before,
    .level-3::after {
        display: none;
    }

    .pengurus-card {
        min-width: 280px;
        max-width: 320px;
        margin: 0 auto 25px;
        padding: 20px 15px;
    }

    .ketua-card {
        transform: scale(1);
        border: 3px solid #ff6b35;
        animation: bounceIn 0.8s ease-out 0.3s both, pulse 3s ease-in-out 1s infinite;
    }

    .pengurus-photo,
    .photo-placeholder {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .pengurus-name {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .pengurus-position {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .position-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .pengurus-contact {
        margin-top: 12px;
        padding-top: 12px;
    }

    .pengurus-card .pengurus-contact .contact-item {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        background-size: contain;
        background-position: center center;
        height: auto;
        min-height: 150px;
        max-height: 250px;
        width: 100%;
        padding: 15px 10px;
        margin: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-container {
        padding: 15px 10px;
        width: 100%;
        position: static;
        transform: none;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        display: none;
    }

    .mobile-description {
        padding: 30px 15px;
    }

    .mobile-description h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .mobile-description p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-indent: 15px;
    }

    .section-white,
    .section-gray,
    .struktur-section {
        padding: 40px 0;
    }

    .section-header {
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .vision-mission-card {
        padding: 20px 15px;
    }

    .vision-mission-card h3 {
        font-size: 1.2rem;
    }

    .vision-mission-card h3 i {
        font-size: 2rem;
    }

    .pengurus-card {
        min-width: 260px;
        max-width: 300px;
        padding: 18px 12px;
    }

    .pengurus-photo,
    .photo-placeholder {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    .pengurus-name {
        font-size: 1rem;
    }

    .pengurus-position {
        font-size: 0.8rem;
    }

    .org-chart {
        padding: 15px 5px;
    }
}

@media (max-width: 375px) {
    .hero-section {
        background-size: contain;
        background-position: center center;
        height: auto;
        min-height: 120px;
        max-height: 200px;
        width: 100%;
        padding: 10px 8px;
        margin: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-container {
        padding: 10px 8px;
        width: 100%;
        position: static;
        transform: none;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        display: none;
    }
    
    .mobile-description {
        padding: 25px 10px;
    }
    
    .mobile-description h2 {
        font-size: 1.4rem;
    }
    
    .mobile-description p {
        font-size: 0.85rem;
    }
}

/* ===== DESKTOP BESAR ===== */
@media (min-width: 1600px) {
    .hero-section {
        background-size: cover;
        min-height: 500px;
    }
    
    .hero-container {
        padding-left: 35%;
        padding-right: 6%;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.7;
        transform: scaleX(1.4);
    }
}

@media (min-width: 1920px) {
    .hero-section {
        background-size: cover;
        min-height: 600px;
    }
    
    .hero-container {
        padding-left: 40%;
        padding-right: 5%;
    }
    
    .hero-title {
        font-size: 5.5rem;
        letter-spacing: -2px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.8;
        transform: scaleX(1.5);
    }
}

@media (min-width: 2560px) {
    .hero-section {
        background-size: cover;
        min-height: 700px;
    }
    
    .hero-container {
        padding-left: 45%;
        padding-right: 8%;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        transform: scaleX(1.6);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== RIPPLE EFFECT ===== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleAnimation 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}