/* 
 * HIMABISDIG - About Page Styles (PREMIUM MODERN VERSION)
 * Inspired by Home Page Design
 * Created: November 2025
 */

/* ===== ABOUT-SPECIFIC CSS VARIABLES ===== */
:root {
    /* Colors */
    --about-primary: #0A2463;
    --about-primary-light: #3E92CC;
    --about-primary-dark: #071A4A;
    --about-secondary: #F7931E;
    --about-secondary-light: #FFA500;
    --text-dark: #0f172a;
    --text-body: #475569;
    --text-light: #64748b;
    --border: #e2e8f0;
    --bg-light: #f8fafc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--about-primary), var(--about-primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--about-secondary), var(--about-secondary-light));
    --gradient-hero: linear-gradient(135deg, rgba(10, 36, 99, 0.85), rgba(62, 146, 204, 0.75));
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

/* ===== HERO SECTION ===== */
/* .about-hero-section {
    /* position: relative;
    /* background: var(--about-primary-dark); */
    /* background-size: cover;
    padding: 10rem 0 8rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden; 
} */

.about-hero-section {
    position: relative;
    background: url("{% static 'images/berita.jpg' %}") no-repeat center center;
    background-size: cover;
    aspect-ratio: 1920 / 700; /* menjaga rasio sesuai foto */
    width: 100%;
    margin-top: 0;       /* pastikan tidak ada jarak ke header */
    padding: 0;          /* hapus padding bawaan */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: var(--gradient-hero); */
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    opacity: 0.4;
    z-index: 2;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-badge i {
    color: var(--about-secondary);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== PROFILE SECTION ===== */
.profile-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.1), rgba(62, 146, 204, 0.1));
    border-radius: 50px;
    color: var(--about-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.section-badge i {
    color: var(--about-secondary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-text {
    font-size: 1.0625rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Feature List */
.feature-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--about-primary-light);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
}

.feature-text h5 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.feature-text p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 1.5rem;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10, 36, 99, 0.15);
    border-color: var(--about-primary-light);
}

.stat-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 1.25rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--about-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    cursor: pointer;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--about-primary-light);
}

.gallery-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.gallery-caption {
    padding: 1.5rem;
    text-align: center;
    border-top: 2px solid var(--border);
}

.gallery-caption h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.gallery-caption p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== VISI MISI SECTION ===== */
.visi-misi-section {
    padding: 6rem 0;
    background: #ffffff;
}

.visi-misi-box {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: 3rem;
    border-radius: 2rem;
    border: 2px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.visi-misi-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.visi-misi-content {
    line-height: 1.8;
    color: var(--text-body);
    font-size: 1.0625rem;
}

.visi-misi-content h3,
.visi-misi-content h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.visi-misi-content h3 {
    font-size: 1.75rem;
}

.visi-misi-content h4 {
    font-size: 1.5rem;
}

.visi-misi-content ul,
.visi-misi-content ol {
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.visi-misi-content li {
    margin-bottom: 0.875rem;
    color: var(--text-body);
}

/* ===== SAMBUTAN SECTION ===== */
.sambutan-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.ketua-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 2rem;
    border: 2px solid var(--border);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ketua-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--about-primary-light);
}

.ketua-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

.ketua-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--about-primary);
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.3);
}

.ketua-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ketua-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    border: 4px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ketua-info {
    padding-top: 1rem;
}

.ketua-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ketua-role {
    font-size: 1.125rem;
    color: var(--about-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ketua-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.ketua-social a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.1), rgba(62, 146, 204, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--about-primary);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.ketua-social a:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 36, 99, 0.3);
}

.sambutan-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 2rem;
    border: 2px solid var(--border);
    position: relative;
    line-height: 1.8;
    color: var(--text-body);
    font-size: 1.0625rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.sambutan-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2rem 0 0 2rem;
}

.quote-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* ===== PENGURUS SECTION ===== */
.pengurus-section {
    padding: 6rem 0;
    background: #ffffff;
}

.pengurus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pengurus-card {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pengurus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--about-primary-light);
}

.pengurus-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
}

.pengurus-image {
    width: 100%;
    height: 100%;
}

.pengurus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pengurus-card:hover .pengurus-image img {
    transform: scale(1.1);
}

.pengurus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pengurus-card:hover .pengurus-overlay {
    opacity: 1;
}

.pengurus-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.pengurus-info {
    padding: 1.5rem;
    text-align: center;
    border-top: 2px solid var(--border);
}

.pengurus-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pengurus-position {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== BUTTONS ===== */
.btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.3);
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 36, 99, 0.4);
    color: #ffffff;
}

/* ===== CTA SECTION WITH BACKGROUND IMAGE ===== */
.cta-section {
    padding: 1.5rem 0;
    background: transparent;
}

.cta-box {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1.25rem;
    padding: 2rem 2.5rem;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    min-height: 180px;
    display: flex;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    display: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-left: 1rem;
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}

.cta-title .text-warning {
    color: var(--about-secondary) !important;
    font-style: italic;
}

.cta-text {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    color: rgba(255, 255, 255, 1);
    line-height: 1.45;
    margin-bottom: 0.875rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.cta-button-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.75rem;
}

.btn-cta-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    background: var(--about-secondary);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 12px rgba(247, 147, 30, 0.4);
    border: none;
    text-transform: capitalize;
}

.btn-cta-contact:hover {
    background: var(--about-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 147, 30, 0.6);
    color: #ffffff;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10000;
}

.lightbox-slides {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.lightbox-slide {
    display: none;
    flex-direction: column;
    align-items: center;
}

.lightbox-slide.active {
    display: flex;
}

.lightbox-slide img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 1rem;
}

.lightbox-caption {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2rem;
    border-radius: 0 0 1rem 1rem;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10001;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199.98px) {
    .pengurus-grid,
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .about-hero-section {
        padding: 8rem 0 6rem;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .profile-section,
    .gallery-section,
    .visi-misi-section,
    .sambutan-section,
    .pengurus-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .pengurus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-section {
        padding: 1.5rem 0;
    }
    
    .cta-box {
        padding: 1.75rem 2rem;
        min-height: 160px;
        text-align: center;
    }
    
    .cta-content {
        padding-left: 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-text {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    
    .cta-button-wrapper {
        justify-content: center;
    }
    
    .btn-cta-contact {
        padding: 0.5rem 1.5rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero-section {
        padding: 7rem 0 5rem;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .profile-section,
    .gallery-section,
    .visi-misi-section,
    .sambutan-section,
    .pengurus-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-showcase,
    .gallery-grid,
    .pengurus-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-list {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .visi-misi-box,
    .sambutan-content {
        padding: 2rem;
    }
    
    .ketua-image-wrapper {
        width: 160px;
        height: 160px;
    }
    
    .cta-section {
        padding: 1.25rem 0;
    }
    
    .cta-box {
        padding: 1.5rem 1.5rem;
        min-height: 145px;
        text-align: center;
        border-radius: 1rem;
    }
    
    .cta-content {
        padding-left: 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
        line-height: 1.35;
    }
    
    .cta-text {
        font-size: 0.75rem;
        margin-bottom: 0.625rem;
        line-height: 1.4;
    }
    
    .cta-button-wrapper {
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .btn-cta-contact {
        padding: 0.5rem 1.375rem;
        font-size: 0.8125rem;
        width: auto;
        max-width: 200px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.625rem 1.25rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .gallery-image,
    .pengurus-image-wrapper {
        height: 220px;
    }
    
    .ketua-image-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .ketua-name {
        font-size: 1.25rem;
    }
    
    .cta-section {
        padding: 1rem 0;
    }
    
    .cta-box {
        padding: 1.25rem 1rem;
        min-height: 130px;
        border-radius: 1rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        line-height: 1.35;
    }
    
    .cta-text {
        font-size: 0.6875rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .cta-button-wrapper {
        margin-top: 0.5rem;
    }
    
    .btn-cta-contact {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
        width: auto;
        max-width: 180px;
    }
}