 /* CSS Variables */
    :root {
        --primary-color: #20c997;
        --gray-50: #f8f9fa;
        --gray-100: #e9ecef;
        --gray-200: #dee2e6;
        --gray-600: #6c757d;
        --gray-700: #495057;
        --gray-800: #343a40;
        --light-bg: #f8f9fa;
    }

    /* Modern Hero Section with Split Layout */
    .modern-hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: linear-gradient(135deg, #20c997 0%, #017a6b 50%, #198754 100%);
    }

    .pelayanan-hero {
        background: linear-gradient(135deg, #20c997 0%, #017a6b 50%, #198754 100%);
    }

    /* Background Elements */
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .hero-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.5;
        animation: drift 30s ease-in-out infinite;
    }

    /* Floating Shapes Animation */
    .floating-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .shape-1 {
        width: 100px;
        height: 100px;
        top: 20%;
        left: 10%;
        animation: float-around 20s ease-in-out infinite;
        animation-delay: 0s;
    }

    .shape-2 {
        width: 60px;
        height: 60px;
        top: 60%;
        right: 15%;
        animation: float-around 25s ease-in-out infinite reverse;
        animation-delay: -5s;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
        top: 40%;
        left: 80%;
        animation: float-around 30s ease-in-out infinite;
        animation-delay: -10s;
    }

    @keyframes drift {
        0%, 100% { transform: translateX(0) translateY(0); }
        33% { transform: translateX(30px) translateY(-20px); }
        66% { transform: translateX(-20px) translateY(10px); }
    }

    @keyframes float-around {
        0%, 100% { 
            transform: translate(0, 0) rotate(0deg) scale(1);
            opacity: 0.3;
        }
        25% { 
            transform: translate(30px, -30px) rotate(90deg) scale(1.1);
            opacity: 0.5;
        }
        50% { 
            transform: translate(-20px, -50px) rotate(180deg) scale(0.9);
            opacity: 0.4;
        }
        75% { 
            transform: translate(-40px, 20px) rotate(270deg) scale(1.05);
            opacity: 0.6;
        }
    }

    @keyframes pulse-glow {
        0%, 100% {
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
            transform: scale(1);
        }
        50% {
            box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
            transform: scale(1.05);
        }
    }

    @keyframes shimmer {
        0%, 100% { background-position: -200% center; }
        50% { background-position: 200% center; }
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        width: 100%;
        padding: 2rem 0;
    }

    /* Split Layout Styles */
    .hero-text-content {
        padding-right: 2rem;
    }

    /* Hero Icon */
    .hero-icon {
        margin-bottom: 2rem;
    }

    .icon-wrapper {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulse-glow 3s ease-in-out infinite;
    }

    .icon-wrapper i {
        font-size: 2.5rem;
        color: white;
    }

    /* Hero Typography */
    .hero-title {
        font-size: 4rem;
        font-weight: 800;
        text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
        margin-bottom: 2rem;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }

    .text-gradient {
        background: linear-gradient(135deg, #ffffff 0%, #e8f7f4 50%, #d1f2e8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: shimmer 3s ease-in-out infinite;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        font-weight: 300;
        line-height: 1.7;
        text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
        margin-bottom: 2rem;
    }

    .text-white-75 {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    /* CTA Buttons */
    .hero-cta {
        margin-top: 2rem;
    }

    .btn {
        font-weight: 500;
        text-transform: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
        z-index: -1;
    }

    .btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-light {
        background: white;
        border: none;
        color: #43A047;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-light:hover {
        color: #2E7D32;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-outline-light {
        border: 2px solid rgba(255, 255, 255, 0.8);
        color: white;
        background: transparent;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-outline-light:hover {
        background: white;
        color: #43A047;
        border-color: white;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    }

    .hover-lift {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hover-lift:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    /* Glassmorphism Stats Cards */
    .hero-stats-grid {
        margin-top: 2rem;
        padding: 0;
    }

    .stats-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .stats-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .stats-card:hover::before {
        left: 100%;
    }

    .stats-card:hover {
        transform: translateY(-10px) scale(1.02);
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .glassmorphism {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stats-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        transition: all 0.3s ease;
    }

    .stats-card:hover .stats-icon {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    .stats-icon i {
        font-size: 1.8rem;
        color: white;
    }

    .stats-content {
        color: white;
    }

    .stats-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    }

    .stats-label {
        font-size: 1rem;
        font-weight: 400;
        opacity: 0.9;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    }

    /* Layout adjustments */
    .hero-text-content {
        max-width: 800px;
        margin: 0 auto;
        padding-top: 4rem;
    }

    .hero-stats-grid {
        margin-top: 2rem;
        padding: 0;
    }

    .hero-subtitle {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .hero-title {
            font-size: 3.5rem;
        }
        
        .stats-card {
            padding: 1.8rem 1.3rem;
        }
        
        .stats-number {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 992px) {
        .modern-hero-section {
            min-height: 80vh;
        }
        
        .hero-text-content {
            padding-right: 0;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .hero-stats-grid {
            padding-left: 0;
        }
        
        .hero-title {
            font-size: 3rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .stats-number {
            font-size: 2rem;
        }
        
        .icon-wrapper {
            width: 80px;
            height: 80px;
        }
        
        .icon-wrapper i {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        
        .modern-hero-section {
            min-height: 70vh;
        }
        
        .stats-card {
            padding: 1.5rem 1rem;
            margin-bottom: 1rem;
        }
        
        .stats-number {
            font-size: 1.8rem;
        }
        
        .stats-label {
            font-size: 0.9rem;
        }
        
        .stats-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 1rem;
        }
        
        .stats-icon i {
            font-size: 1.5rem;
        }
        
        .hero-cta .btn {
            display: block;
            width: 100%;
            margin-bottom: 1rem;
        }
        
        .hero-cta .btn:last-child {
            margin-bottom: 0;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
        }
        
        .stats-card {
            padding: 1.2rem 0.8rem;
        }
        
        .stats-number {
            font-size: 1.5rem;
        }
        
        .icon-wrapper {
            width: 70px;
            height: 70px;
        }
        
        .icon-wrapper i {
            font-size: 1.8rem;
        }
    }

    /* Services Section */
    .services-section {
        background: #f8f9fa;
    }

    .section-header {
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
        font-weight: 700;
        color: var(--gray-800);
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--gray-600);
    }

    /* Modern Card Design */
    .modern-card {
        background: white;
        border-radius: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border: 1px solid var(--gray-100);
    }

    .card-header-modern {
        background: linear-gradient(135deg, #43A047, #2E7D32);
        padding: 2rem;
        color: white;
    }

    .header-content {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .header-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .header-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
        color: white;
    }

    .header-subtitle {
        font-size: 0.9rem;
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
    }

    /* Modern Table Design */
    .modern-services-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
    }

    .modern-services-table thead th {
        background: var(--gray-50);
        color: var(--gray-800);
        font-weight: 600;
        padding: 1.5rem 1rem;
        text-align: left;
        border-bottom: 2px solid var(--gray-200);
        font-size: 0.9rem;
    }

    .modern-services-table tbody tr {
        border-bottom: 1px solid var(--gray-100);
        transition: all 0.3s ease;
    }

    .modern-services-table tbody tr:hover {
        background: var(--gray-50);
        transform: translateX(2px);
    }

    .modern-services-table td {
        padding: 1.5rem 1rem;
        vertical-align: top;
    }

    .number-cell {
        text-align: center;
        font-weight: 700;
        color: #43A047;
        font-size: 1.1rem;
    }

    .location-cell {
        font-weight: 600;
        color: var(--gray-800);
    }

    .service-list {
        margin: 0;
        padding-left: 1.2rem;
        list-style: none;
    }

    .service-list li {
        position: relative;
        margin-bottom: 0.5rem;
        color: var(--gray-700);
        line-height: 1.5;
    }

    .service-list li::before {
        content: '✓';
        position: absolute;
        left: -1.2rem;
        color: #43A047;
        font-weight: 700;
    }

    .schedule-info {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .schedule-item {
        display: flex;
        flex-direction: column;
        padding: 0.75rem;
        background: var(--gray-50);
        border-radius: 0.5rem;
        border-left: 3px solid #43A047;
    }

    .schedule-day {
        font-weight: 600;
        color: var(--gray-800);
        font-size: 0.9rem;
    }

    .schedule-time {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin-top: 0.25rem;
    }

    /* Responsive Design for Table */
    @media (max-width: 768px) {
        .header-content {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .modern-services-table {
            font-size: 0.85rem;
        }

        .modern-services-table td {
            padding: 1rem 0.75rem;
        }
    }

    @media (max-width: 576px) {
        .hero-content {
            padding: 2rem 0;
        }
    }

    /* Dynamic Service Styling */
    .service-number {
        display: inline-block;
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, #43A047, #2E7D32);
        color: white;
        border-radius: 50%;
        line-height: 30px;
        text-align: center;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .category-badge {
        margin-bottom: 0.5rem;
    }

    .service-info {
        width: 100%;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #43A047, #2E7D32);
        color: white;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .service-details {
        flex: 1;
    }

    .service-name {
        color: #495057;
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .service-description {
        color: #6c757d;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .service-location {
        margin-top: 0.5rem;
    }

    .schedule-info {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .schedule-text {
        color: #495057;
        font-weight: 500;
    }

    .no-services {
        padding: 2rem;
    }

    .service-stats {
        background: #f8f9fa;
        border-top: 1px solid #dee2e6;
    }

    .stat-item {
        padding: 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.8rem;
        color: #6c757d;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    /* Enhanced Badge Styling */
    .badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.65rem;
        border-radius: 0.375rem;
        font-weight: 500;
    }

    /* Category-specific badge colors */
    .bg-primary { background-color: #43A047 !important; }
    .bg-success { background-color: #28a745 !important; }
    .bg-danger { background-color: #dc3545 !important; }
    .bg-warning { background-color: #ffc107 !important; color: #212529 !important; }
    .bg-info { background-color: #17a2b8 !important; }
    .bg-secondary { background-color: #6c757d !important; }

    /* Animation for service rows */
    .service-row {
        animation: fadeInUp 0.6s ease-out;
        animation-fill-mode: both;
    }

    .service-row:nth-child(1) { animation-delay: 0.1s; }
    .service-row:nth-child(2) { animation-delay: 0.2s; }
    .service-row:nth-child(3) { animation-delay: 0.3s; }
    .service-row:nth-child(4) { animation-delay: 0.4s; }
    .service-row:nth-child(5) { animation-delay: 0.5s; }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive adjustments for dynamic content */
    @media (max-width: 768px) {
        .service-icon {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }

        .service-name {
            font-size: 0.95rem;
        }

        .service-description {
            font-size: 0.85rem;
        }

        .stat-number {
            font-size: 1.25rem;
        }
    }

/* ============================================================================
   KONTEN DARI home.css
   ============================================================================
   Kode di bawah ini dipindahkan dari file home.css
   ============================================================================ */

/**
 * ============================================================================
 * Visitor Page Stylesheet
 * ============================================================================
 * Contains styles for all visitor-facing pages including homepage,
 * news sections, services, and other public content.
 * ============================================================================ */

/* ============================================================================
   CSS Custom Properties (Variables) - from home.css
   ============================================================================ */
:root {
    /* Gradients */
    --hero-gradient: linear-gradient(135deg, rgba(0, 196, 167, 0.9), rgba(45, 75, 123, 0.8));
    
    /* Spacing */
    --section-spacing: 5rem;
    
    /* Effects */
    --card-hover-lift: -8px;
}

/* ============================================================================
   Hero Section - Modern Healthcare Design
   ============================================================================ */

/* Hero Container */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    height: 85vh;
    min-height: 600px;
    margin-top: -1.5rem;
    overflow: hidden;
    background: var(--hero-gradient);
}

/* Hero Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.static-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: var(--hero-gradient);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 85vh;
    text-align: center;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 2.5rem;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo-image {
    width: 120px;
    height: 120px;
    padding: 8px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.logo-image:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Hero Typography */
.hero-title {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.hero-btn {
    position: relative;
    min-width: 180px;
    padding: 1rem 2rem;
    border-radius: var(--radius-2xl);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hero-btn::before {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    content: '';
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Hero Button Variants */
.btn-light.hero-btn {
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-light.hero-btn:hover {
    border-color: var(--primary-color);
    background: var(--white);
    color: var(--primary-dark);
}

.btn-outline-light.hero-btn {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-outline-light.hero-btn:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--primary-color);
}

/* ============================================================================
   News Section
   ============================================================================ */

/* News Section Container */
.news-section {
    position: relative;
    padding: var(--section-spacing) 0;
    background: var(--light-bg);
}

.news-section::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(0, 196, 167, 0.05) 0%, transparent 100%);
    content: '';
}

/* Section Header */
.section-header {
    position: relative;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.section-badge .badge {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    background: var(--primary-light) !important;
    color: var(--primary-color) !important;
    font-size: 0.9rem;
    font-weight: 600;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-divider {
    width: 80px;
    height: 4px;
    margin: 2rem auto 0;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* News Grid */
.news-grid {
    margin-top: 3rem;
}

/* News Card */
.news-card {
    position: relative;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 7px 20px -3px rgba(0, 196, 167, 0.15),
                0 30px 40px -20px rgba(50, 50, 93, 0.25),
                0 0 10px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-card:hover {
    z-index: 10;
    border-color: var(--primary-color);
    transform: translateY(var(--card-hover-lift)) scale(1.05);
    box-shadow: 0 10px 30px -5px rgba(0, 196, 167, 0.2),
                0 45px 60px -25px rgba(50, 50, 93, 0.35),
                0 0 15px -10px rgba(0, 0, 0, 0.15);
}

/* News Image */
.news-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.02);
}

.news-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.news-date .badge {
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(0, 196, 167, 0.95) !important;
    color: var(--white) !important;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.news-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/10;
    background: var(--gray-100);
    color: var(--text-muted);
}

/* News Content */
.news-content {
    padding: 2rem;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.author-name {
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
}

.news-title {
    display: -webkit-box;
    margin-bottom: 1rem;
    overflow: hidden;
    color: var(--gray-800);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-excerpt {
    display: -webkit-box;
    margin-bottom: 1.5rem;
    overflow: hidden;
    color: var(--gray-600);
    line-height: 1.6;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* News Footer */
.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    gap: 0.75rem;
    color: #008a6f;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(4px);
}

/* ============================================================================
   Call-to-Action (CTA) Section
   ============================================================================ */

.cta-section {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
}

.cta-button {
    position: relative;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 25px rgba(0, 196, 167, 0.2);
    font-size: 1.1rem;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cta-button::before {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    content: '';
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    box-shadow: 0 20px 40px rgba(0, 196, 167, 0.3);
    transform: translateY(-3px);
}

/* ============================================================================
   Responsive Design - Mobile & Tablet
   ============================================================================ */

/* Tablet and Below (768px) */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
    }

    /* News Section */
    .news-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .news-content {
        padding: 1.5rem;
    }

    /* CTA Section */
    .cta-section {
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
        padding: 0.5rem 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile Devices (576px) */
@media (max-width: 576px) {
    /* Hero Logo */
    .logo-image {
        width: 80px;
        height: 80px;
    }

    /* News Content */
    .news-content {
        padding: 1.25rem;
    }
}

/* ============================================================================
   Services Section - from home.css
   ============================================================================ */

.services-section {
    position: relative;
    padding: var(--section-spacing) 0;
    background: #f8f9fa;
}

.services-section::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 196, 167, 0.2), transparent);
    content: '';
}

/* ============================================================================
   Info Cards - Unified Design for Contact Info
   ============================================================================ */

.info-cards-section {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Icon Container */
.info-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #fff;
    font-size: 2rem;
    position: relative;
}

.info-card-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Color Variants for Icon */
.info-card-primary .info-card-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.info-card-success .info-card-icon {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
}

.info-card-info .info-card-icon {
    background: linear-gradient(135deg, #0dcaf0 0%, #0aa2c0 100%);
}

/* Content Area */
.info-card-content {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.info-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    border-radius: 2px;
}

.info-card-primary .info-card-title::after {
    background: linear-gradient(90deg, #0d6efd, #0a58ca);
}

.info-card-success .info-card-title::after {
    background: linear-gradient(90deg, #198754, #146c43);
}

.info-card-info .info-card-title::after {
    background: linear-gradient(90deg, #0dcaf0, #0aa2c0);
}

.info-card-body {
    flex: 1;
}

/* Info Items */
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.2s ease;
    gap: 8px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item:hover {
    background: #f1f3f4;
    transform: translateX(4px);
}

.info-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    white-space: nowrap;
}

.info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    text-align: right;
}

.info-value.text-truncate {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Status Colors */
.status-open {
    color: #198754 !important;
    font-weight: 600;
}

.status-closed {
    color: #dc3545 !important;
    font-weight: 600;
}

/* Location Items - Centered */
.info-item.location-item {
    justify-content: flex-start;
    text-align: left;
}

.info-item.location-item i {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.info-item.location-item span {
    color: #495057;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .info-card {
        margin-bottom: 16px;
    }
    
    .info-card-icon {
        padding: 20px;
        font-size: 1.75rem;
    }
    
    .info-card-content {
        padding: 16px 20px 20px;
    }
}

@media (max-width: 767.98px) {
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .info-item:not(.location-item) .info-value {
        text-align: left;
        width: 100%;
    }
    
    .info-value.text-truncate {
        max-width: 100%;
    }
}

/* Service Card */
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 24px 20px 20px;
    border: 1px solid var(--gray-200, rgba(0, 0, 0, 0.08));
    border-radius: 16px;
    background: var(--white, #fff);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.service-card:focus-within {
    border-color: var(--primary-light, rgba(0, 196, 167, 0.3));
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
}

/* Service Icon */
.service-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 14px;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 0 6px rgba(0, 0, 0, 0.03);
    isolation: isolate;
}

.service-icon i {
    font-size: 1.6rem;
}

.service-icon::after {
    position: absolute;
    bottom: -12px;
    left: 50%;
    z-index: 1;
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.06);
    content: '';
    transform: translateX(-50%);
}

/* Service Content */
.service-title {
    position: relative;
    z-index: 3;
    margin-top: 10px;
    margin-bottom: 6px;
    color: var(--gray-800, #1f2937);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-description {
    position: relative;
    z-index: 3;
    margin-top: 6px;
    color: var(--gray-600, #4b5563);
    line-height: 1.65;
}

.service-description p {
    margin-bottom: 6px;
}

.service-description p:last-child {
    margin-bottom: 0;
}

.service-description strong {
    color: var(--gray-800, #1f2937);
    font-weight: 600;
}

/* ============================================================================
   Animation Classes
   ============================================================================ */

/* Fade-in Animation */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Elements with initial hidden state */
.news-card,
.service-card,
.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Staggered animation delays for news cards */
.news-card:nth-child(1) {
    transition-delay: 0.1s;
}

.news-card:nth-child(2) {
    transition-delay: 0.2s;
}

.news-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Staggered animation delays for service cards */
.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* ============================================================================
   Utility Components
   ============================================================================ */

/* Container Resets */
.container,
.container-fluid {
    padding-right: 0;
    padding-left: 0;
}

/* Admin Access Floating Button */
.admin-access-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    cursor: pointer;
    visibility: hidden;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.admin-access-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.admin-access-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

/* ============================================================================
   AKHIR KONTEN DARI home.css
   ============================================================================ */

/* ============================================================================
   KONTEN DARI kontak.css
   ============================================================================
   Kode di bawah ini dipindahkan dari file kontak.css
   ============================================================================ */

/* Modern Hero Section - Contact Page */
.modern-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43cbff 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.modern-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.modern-hero-section .container {
    position: relative;
    z-index: 2;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-around 20s infinite linear;
    z-index: 1;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
    animation-name: drift;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
    animation-name: float-around;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 35s;
    animation-name: drift;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 30%;
    animation-delay: -15s;
    animation-duration: 28s;
    animation-name: float-around;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}

@keyframes float-around {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(90deg); }
    50% { transform: translate(-30px, -20px) rotate(180deg); }
    75% { transform: translate(20px, 40px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Hero Content */
.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff, #e0f7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Glassmorphism Stats */
.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-item:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-item:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.8); }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section { 
    padding: 4rem 0; 
    background: #f8fafc; 
}

.contact-card { 
    border-radius: 20px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hover-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

/* Operating Hours Styling */
.operating-hours-container .d-flex {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: rgba(248, 250, 252, 0.5);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.operating-hours-container .d-flex:hover {
    background: rgba(79, 172, 254, 0.1);
    border-left-color: #4facfe;
    transform: translateX(5px);
}

.operating-hours-container .text-success {
    color: #10b981 !important;
    font-weight: 600;
}

.operating-hours-container .text-danger {
    color: #ef4444 !important;
    font-weight: 600;
}

.operating-hours-container .text-muted {
    color: #64748b !important;
    font-weight: 500;
}

.day-label {
    min-width: 120px;
    display: flex;
    align-items: center;
}

.time-label {
    font-size: 0.95rem;
    text-align: right;
    min-width: 120px;
}

/* Social Media Cards */
.social-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    transition: left 0.6s ease;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.social-content {
    display: flex;
    align-items: center;
    gap: 16px;
    color: inherit;
    position: relative;
    z-index: 1;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    transition: all 0.3s ease;
}

.social-info h6 {
    margin: 0;
    color: #1e293b;
    font-weight: 600;
}

.social-info small {
    color: #64748b;
}

.social-arrow {
    color: #94a3b8;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

/* Social Icon Gradients */
.facebook .social-icon {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
}

.instagram .social-icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tiktok .social-icon {
    background: #000000;
}

.youtube .social-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-card:hover .social-arrow {
    color: #4facfe;
    transform: translateX(5px);
}

/* Icon Backgrounds */
.rounded-circle.bg-success { 
    background: linear-gradient(135deg, #10b981, #059669) !important; 
}
.rounded-circle.bg-primary { 
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important; 
}
.rounded-circle.bg-info { 
    background: linear-gradient(135deg, #06b6d4, #0891b2) !important; 
}

.rounded-circle i { 
    color: #ffffff !important; 
}

/* Responsive Design - Contact Page */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .modern-hero-section {
        min-height: 80vh;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .modern-hero-section {
        min-height: 70vh;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-cta .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.2rem;
    }
}

/* ============================================================================
   AKHIR KONTEN DARI kontak.css
   ============================================================================ */
/* ============================================================================
   KONTEN DARI dokumentasi/index.blade.php
   ============================================================================
   Kode di bawah ini dipindahkan dari file dokumentasi/index.blade.php
   ============================================================================ */

    /* Modern Hero Section */
    .modern-hero-section {
        position: relative;
        min-height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #5f27cd 100%);
        overflow: hidden;
        display: flex;
        align-items: center;
        color: white;
    }

    .modern-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1);
        z-index: 1;
    }

    .modern-hero-section .container {
        position: relative;
        z-index: 2;
    }

    /* Floating Shapes */
    .floating-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        animation: float-around 20s infinite linear;
        z-index: 1;
    }

    .shape-1 {
        width: 150px;
        height: 150px;
        top: 15%;
        left: 10%;
        animation-delay: 0s;
        animation-duration: 25s;
        animation-name: drift;
    }

    .shape-2 {
        width: 100px;
        height: 100px;
        top: 60%;
        right: 15%;
        animation-delay: -5s;
        animation-duration: 30s;
        animation-name: float-around;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
        bottom: 20%;
        left: 20%;
        animation-delay: -10s;
        animation-duration: 35s;
        animation-name: drift;
    }

    .shape-4 {
        width: 120px;
        height: 120px;
        top: 40%;
        right: 30%;
        animation-delay: -15s;
        animation-duration: 28s;
        animation-name: float-around;
    }

    @keyframes drift {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(50px, -50px) rotate(120deg); }
        66% { transform: translate(-20px, 30px) rotate(240deg); }
    }

    @keyframes float-around {
        0% { transform: translate(0, 0) rotate(0deg); }
        25% { transform: translate(30px, -40px) rotate(90deg); }
        50% { transform: translate(-30px, -20px) rotate(180deg); }
        75% { transform: translate(20px, 40px) rotate(270deg); }
        100% { transform: translate(0, 0) rotate(360deg); }
    }

    /* Hero Content */
    .hero-content {
        padding: 2rem 0;
    }

    .hero-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .gradient-text {
        background: linear-gradient(135deg, #ffffff, #e0f7ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.6;
        opacity: 0.9;
        max-width: 500px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .hero-cta .btn {
        padding: 1rem 2.5rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn-primary {
        background: linear-gradient(135deg, #667eea, #764ba2);
        border: none;
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    }

    .btn-outline-light {
        border: 2px solid rgba(255, 255, 255, 0.8);
        color: white;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: white;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    }

    /* Glassmorphism Stats */
    .stat-item {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .stat-item::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
    }

    .stat-item:hover::before {
        opacity: 1;
        transform: rotate(45deg) translate(50%, 50%);
    }

    .stat-item:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem auto;
        font-size: 1.5rem;
        color: white;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .stat-item:hover .icon-wrapper {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
        animation: pulse-glow 2s ease-in-out infinite;
    }

    @keyframes pulse-glow {
        0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
        50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.8); }
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .stat-label {
        font-size: 1rem;
        opacity: 0.9;
        margin-bottom: 0;
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='grid' width='20' height='20' patternUnits='userSpaceOnUse'><path d='M 20 0 L 0 0 0 20' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/></pattern></defs><rect width='100' height='100' fill='url(%23grid)'/></svg>');
        opacity: 0.5;
        animation: drift 30s ease-in-out infinite;
    }

    /* Filter Section */
    .filter-section {
        background: #f8fafc;
    }

    .filter-btn {
        border: 2px solid #667eea;
        color: #667eea;
        background: transparent;
        transition: all 0.3s ease;
        border-radius: 25px;
        padding: 0.75rem 1.5rem;
        font-weight: 600;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .hero-title {
            font-size: 3rem;
        }
        
        .stat-item {
            padding: 1.5rem 1rem;
        }
    }

    @media (max-width: 992px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .stat-number {
            font-size: 2rem;
        }
        
        .modern-hero-section {
            min-height: 80vh;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
        }
        
        .modern-hero-section {
            min-height: 70vh;
        }
        
        .stat-item {
            padding: 1.5rem 1rem;
            margin-bottom: 1rem;
        }
        
        .stat-number {
            font-size: 1.8rem;
        }
        
        .hero-cta .btn {
            display: block;
            width: 100%;
            margin-bottom: 1rem;
        }
        
        .hero-cta .btn:last-child {
            margin-bottom: 0;
        }

        .filter-btn {
            margin-bottom: 0.5rem;
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 1.8rem;
        }
        
        .hero-subtitle {
            font-size: 0.95rem;
        }
        
        .stat-item {
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 1.5rem;
        }
        
        .icon-wrapper {
            width: 60px;
            height: 60px;
        }
        
        .icon-wrapper i {
            font-size: 1.2rem;
        }
    }

    /* Modern Dokumentasi Cards */
    .dokumentasi-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 25px;
        overflow: hidden;
        background: white;
        border: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .dokumentasi-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        z-index: 1;
    }

    .dokumentasi-card:hover::before {
        transform: scaleX(1);
    }

    .dokumentasi-card:hover {
        transform: translateY(-20px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }
    
    .dokumentasi-card .card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 2rem;
    }
    
    .dokumentasi-card .card-footer {
        margin-top: auto;
    }
    
    .dokumentasi-image-container {
        position: relative;
        overflow: hidden;
        background: #f8f9fa;
        min-height: 200px;
        max-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dokumentasi-image {
        transition: all 0.4s ease;
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 400px;
        object-fit: contain;
        object-position: center;
        opacity: 0;
    }

    .dokumentasi-card:hover .dokumentasi-image {
        transform: scale(1.1);
    }
    
    .dokumentasi-image.loaded {
        opacity: 1;
    }

    /* Modern Badge Styling */
    .badge.bg-primary {
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
    }

    .badge.bg-success {
        background: linear-gradient(135deg, #11998e, #38ef7d) !important;
    }

    .badge.bg-warning {
        background: linear-gradient(135deg, #f093fb, #f5576c) !important;
        color: white !important;
    }

    .badge.bg-info {
        background: linear-gradient(135deg, #4facfe, #00f2fe) !important;
    }

    /* File Viewer Styles */
    .file-viewer-container {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 1rem;
        border: 1px solid #dee2e6;
        min-height: 200px;
        max-height: 400px;
        display: flex;
        flex-direction: column;
    }
    
    .file-frame {
        width: 100%;
        height: 300px;
        border: none;
        border-radius: 8px;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        flex: 1;
    }
    
    .text-frame {
        height: 250px;
        font-family: 'Courier New', monospace;
        background: #ffffff;
        flex: 1;
    }
    
    .file-preview-header {
        background: #e9ecef;
        padding: 0.75rem 1rem;
        border-radius: 6px;
        margin-bottom: 0.75rem;
        font-weight: 500;
        color: #495057;
        border: 1px solid #dee2e6;
    }
    
    .generic-file-preview {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .file-icon-container {
        margin-bottom: 1rem;
    }
    
    .file-name {
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 0.5rem;
        word-break: break-word;
    }
    
    .file-type {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .pdf-viewer, .office-viewer, .text-viewer {
        position: relative;
    }
    
    .file-viewer-embed {
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 500px;
        }
    }

    /* Empty State */
    .empty-state {
        padding: 3rem 2rem;
    }
    
    .empty-state i {
        opacity: 0.5;
    }
        border-radius: 25px;
        padding: 2.5rem 1.5rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .stat-item:hover {
        transform: translateY(-15px) scale(1.05);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        transition: all 0.3s ease;
    }

    .stat-item:hover .stat-icon {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    .stat-icon i {
        font-size: 1.5rem;
        color: white;
    }

    .stat-number {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    }

    .stat-label {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0;
        font-weight: 400;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    /* Hero CTA */
    .hero-cta {
        margin-top: 3rem;
    }

    /* Buttons */
    .btn-light {
        background: white;
        border: none;
        color: #764ba2;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .btn-light::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.5s ease;
    }

    .btn-light:hover::before {
        left: 100%;
    }

    .btn-light:hover {
        color: #5f27cd;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-outline-light {
        border: 2px solid rgba(255, 255, 255, 0.8);
        color: white;
        background: transparent;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-outline-light:hover {
        background: white;
        color: #764ba2;
        border-color: white;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    }

    .hover-lift {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hover-lift:hover {
        transform: translateY(-5px);
    }

    /* Animations */
    @keyframes drift {
        0%, 100% { transform: translateX(0) translateY(0); }
        33% { transform: translateX(30px) translateY(-20px); }
        66% { transform: translateX(-20px) translateY(10px); }
    }

    @keyframes float-around {
        0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
        25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
        50% { transform: translateY(0px) translateX(20px) rotate(180deg); }
        75% { transform: translateY(10px) translateX(-5px) rotate(270deg); }
    }

    @keyframes pulse-glow {
        0%, 100% { 
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
            transform: scale(1);
        }
        50% { 
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
            transform: scale(1.05);
        }
    }

    @keyframes shimmer {
        0%, 100% { filter: brightness(1); }
        50% { filter: brightness(1.2); }
    }

    /* Documentation Section Modern Styling */
    .documentation-section {
        background: #f8f9fa;
        position: relative;
    }

    .section-header .badge {
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
    }

    .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .stat-label {
        font-size: 1rem;
        opacity: 0.9;
        margin-bottom: 0;
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    /* Filter Section */
    .filter-container {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .filter-btn {
        border-radius: 25px;
        padding: 0.5rem 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .filter-btn.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-color: transparent;
    }
    
    .filter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    /* Dokumentasi Cards */
    .dokumentasi-card {
        transition: all 0.3s ease;
        border-radius: 15px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .dokumentasi-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .dokumentasi-image-container {
        position: relative;
        overflow: hidden;
        background: #f8f9fa;
        min-height: 200px;
        max-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dokumentasi-image {
        transition: transform 0.3s ease, opacity 0.3s ease;
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 400px;
        object-fit: contain;
        object-position: center;
        opacity: 0;
    }
    
    .dokumentasi-image.loaded {
        opacity: 1;
    }
    
    .dokumentasi-image-placeholder {
        min-height: 200px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #dee2e6;
    }
    
    .placeholder-content {
        text-align: center;
        padding: 2rem;
    }
    
    .dokumentasi-card:hover .dokumentasi-image {
        transform: scale(1.02);
    }
    
    .card-title {
        color: #2c3e50;
        line-height: 1.4;
    }
    
    .card-text {
        line-height: 1.6;
    }
    
    /* Badges */
    .badge {
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    /* Buttons */
    .btn-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        border-radius: 10px;
        padding: 12px 24px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    }
    
    /* Empty State */
    .empty-state {
        padding: 3rem 2rem;
    }
    
    .empty-state i {
        opacity: 0.5;
    }

    /* File Viewer Styles */
    .file-viewer-container {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 1rem;
        border: 1px solid #dee2e6;
        min-height: 200px;
        max-height: 400px;
        display: flex;
        flex-direction: column;
    }
    
    .file-frame {
        width: 100%;
        height: 300px;
        border: none;
        border-radius: 8px;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        flex: 1;
    }
    
    .text-frame {
        height: 250px;
        font-family: 'Courier New', monospace;
        background: #ffffff;
        flex: 1;
    }
    
    .file-preview-header {
        background: #e9ecef;
        padding: 0.75rem 1rem;
        border-radius: 6px;
        margin-bottom: 0.75rem;
        font-weight: 500;
        color: #495057;
        border: 1px solid #dee2e6;
    }
    
    .generic-file-preview {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .file-icon-container {
        margin-bottom: 1rem;
    }
    
    .file-name {
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 0.5rem;
        word-break: break-word;
    }
    
    .file-type {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .pdf-viewer, .office-viewer, .text-viewer {
        position: relative;
    }
    
    .file-viewer-embed {
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 500px;
        }
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .card {
            margin-bottom: 1rem;
        }
        
        .dokumentasi-badge {
            font-size: 0.75rem;
            padding: 0.25rem 0.5rem;
        }
        
        .file-viewer-container {
            max-height: 280px;
        }
        
        .file-frame {
            height: 200px;
        }
        
        .text-frame {
            height: 180px;
        }
        
        .dokumentasi-image-container {
            max-height: 280px;
            min-height: 180px;
        }
        
        .dokumentasi-image {
            max-height: 280px;
        }
        
        .filter-buttons {
            justify-content: center;
        }
        
        .filter-btn {
            font-size: 0.875rem;
            padding: 0.4rem 0.8rem;
        }
    }
    
    @media (min-width: 992px) {
        .file-viewer-container {
            max-height: 420px;
        }
        
        .file-frame {
            height: 320px;
        }
        
        .text-frame {
            height: 300px;
        }
        
        .dokumentasi-image-container {
            max-height: 420px;
        }
        
        .dokumentasi-image {
            max-height: 420px;
        }
    }
    
    @media (min-width: 1200px) {
        .file-viewer-container {
            max-height: 400px;
        }
        
        .file-frame {
            height: 300px;
        }
        
        .text-frame {
            height: 280px;
        }
    }

    /* Modern Dokumentasi Cards */
    .dokumentasi-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 25px;
        overflow: hidden;
        background: white;
        border: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .dokumentasi-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        z-index: 1;
    }

    .dokumentasi-card:hover::before {
        transform: scaleX(1);
    }

    .dokumentasi-card:hover {
        transform: translateY(-20px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }
    
    .dokumentasi-card .card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 2rem;
    }
    
    .dokumentasi-card .card-footer {
        margin-top: auto;
    }
    
    .dokumentasi-image-container {
        position: relative;
        overflow: hidden;
        background: #f8f9fa;
        min-height: 200px;
        max-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dokumentasi-image {
        transition: all 0.4s ease;
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 400px;
        object-fit: contain;
        object-position: center;
        opacity: 0;
    }

    .dokumentasi-card:hover .dokumentasi-image {
        transform: scale(1.1);
    }
    
    .dokumentasi-image.loaded {
        opacity: 1;
    }

    /* Modern Badge Styling */
    .badge.bg-primary {
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
    }

    .badge.bg-success {
        background: linear-gradient(135deg, #11998e, #38ef7d) !important;
    }

    .badge.bg-warning {
        background: linear-gradient(135deg, #f093fb, #f5576c) !important;
        color: white !important;
    }

    .badge.bg-info {
        background: linear-gradient(135deg, #4facfe, #00f2fe) !important;
    }

    /* Modern Filter Buttons */
    .filter-btn {
        border: 2px solid #667eea;
        color: #667eea;
        background: transparent;
        transition: all 0.3s ease;
        border-radius: 25px;
        padding: 0.75rem 1.5rem;
        font-weight: 600;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    }

    /* Enhanced Responsive Design */
    @media (max-width: 1200px) {
        .hero-title {
            font-size: 3.2rem;
        }
        
        .stat-item {
            padding: 2rem 1rem;
        }
    }

    @media (max-width: 992px) {
        .hero-title {
            font-size: 2.8rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .stat-number {
            font-size: 2.2rem;
        }
        
        .modern-hero-section {
            min-height: 80vh;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .modern-hero-section {
            min-height: 70vh;
        }
        
        .stat-item {
            padding: 1.5rem 1rem;
            margin-bottom: 1rem;
        }
        
        .stat-number {
            font-size: 1.8rem;
        }
        
        .section-title {
            font-size: 2.2rem;
        }
        
        .dokumentasi-card:hover {
            transform: translateY(-10px);
        }
        
        .hero-cta .btn {
            display: block;
            width: 100%;
            margin-bottom: 1rem;
        }
        
        .hero-cta .btn:last-child {
            margin-bottom: 0;
        }

        .filter-btn {
            margin-bottom: 0.5rem;
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 1.8rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
        }
        
        .stat-item {
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 1.5rem;
        }
        
        .icon-wrapper {
            width: 70px;
            height: 70px;
        }
        
        .icon-wrapper i {
            font-size: 1.8rem;
        }
        
        .dokumentasi-card {
            margin-bottom: 1.5rem;
        }
        
        .filter-btn {
            margin-bottom: 0.5rem;
        }
    }


/* ============================================================================
   TAMBAHAN CSS DARI JS (dokumentasi/index.blade.php)
   ============================================================================ */

        .animate-in {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }
        
        /* Overriding .dokumentasi-card for animation initial state */
        .dokumentasi-card {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        @keyframes fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        .btn.loading {
            pointer-events: none;
            position: relative;
        }

        .btn.loading::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            margin: auto;
            border: 2px solid transparent;
            border-top-color: currentColor;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Enhanced hover effects */
        .stat-item:hover .icon-wrapper {
            animation: pulse-glow 2s ease-in-out infinite;
        }
        
        .floating-shape:hover {
            animation-play-state: paused;
            transform: scale(1.1);
        }

/* Modern Hero Section */
.modern-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #43A047 0%, #1B5E20 50%, #2E7D32 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.modern-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.modern-hero-section .container {
    position: relative;
    z-index: 2;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-around 20s infinite linear;
    z-index: 1;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
    animation-name: drift;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
    animation-name: float-around;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 35s;
    animation-name: drift;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 30%;
    animation-delay: -15s;
    animation-duration: 28s;
    animation-name: float-around;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}

@keyframes float-around {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(90deg); }
    50% { transform: translate(-30px, -20px) rotate(180deg); }
    75% { transform: translate(20px, 40px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Hero Content */
.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff, #e8f5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #43A047, #1B5E20);
    border: none;
    box-shadow: 0 10px 25px rgba(67, 160, 71, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(67, 160, 71, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Glassmorphism Stats */
.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-item:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-item:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.8); }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    animation: drift 30s ease-in-out infinite;
}

/* Filter Section */
.filter-section {
    background: #f8fafc;
}

.filter-btn {
    border: 2px solid #43A047;
    color: #43A047;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #43A047, #1B5E20);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 160, 71, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .modern-hero-section {
        min-height: 80vh;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .modern-hero-section {
        min-height: 70vh;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-cta .btn:last-child {
        margin-bottom: 0;
    }

    .filter-btn {
        margin-bottom: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.2rem;
    }
}

/* Modern Dokumentasi Cards */
.dokumentasi-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    overflow: hidden;
    background: white;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.dokumentasi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #43A047, #1B5E20);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.dokumentasi-card:hover::before {
    transform: scaleX(1);
}

.dokumentasi-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.dokumentasi-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.dokumentasi-card .card-footer {
    margin-top: auto;
}

.dokumentasi-image-container {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    min-height: 200px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dokumentasi-image {
    transition: all 0.4s ease;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    opacity: 0;
}

.dokumentasi-card:hover .dokumentasi-image {
    transform: scale(1.1);
}

.dokumentasi-image.loaded {
    opacity: 1;
}

/* Modern Badge Styling */
.badge.bg-primary {
    background: linear-gradient(135deg, #43A047, #1B5E20) !important;
}

.badge.bg-success {
    background: linear-gradient(135deg, #11998e, #38ef7d) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
    color: white !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #66BB6A, #A5D6A7) !important;
}

/* File Viewer Styles */
.file-viewer-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #dee2e6;
    min-height: 200px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
}

.file-frame {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1;
}

.text-frame {
    height: 250px;
    font-family: 'Courier New', monospace;
    background: #ffffff;
    flex: 1;
}

.file-preview-header {
    background: #e9ecef;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #495057;
    border: 1px solid #dee2e6;
}

.generic-file-preview {
    text-align: center;
    padding: 2rem 1rem;
}

.file-icon-container {
    margin-bottom: 1rem;
}

.file-name {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    word-break: break-word;
}

.file-type {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pdf-viewer, .office-viewer, .text-viewer {
    position: relative;
}

.file-viewer-embed {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Empty State */
.empty-state {
    padding: 3rem 2rem;
}

.empty-state i {
    opacity: 0.5;
}
    border-radius: 25px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero CTA */
.hero-cta {
    margin-top: 3rem;
}

/* Buttons */
.btn-light {
    background: white;
    border: none;
    color: #1B5E20;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-light:hover::before {
    left: 100%;
}

.btn-light:hover {
    color: #2E7D32;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #1B5E20;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Animations */
@keyframes drift {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(30px) translateY(-20px); }
    66% { transform: translateX(-20px) translateY(10px); }
}

@keyframes float-around {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
    50% { transform: translateY(0px) translateX(20px) rotate(180deg); }
    75% { transform: translateY(10px) translateX(-5px) rotate(270deg); }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Documentation Section Modern Styling */
.documentation-section {
    background: #f8f9fa;
    position: relative;
}

.section-header .badge {
    background: linear-gradient(135deg, #43A047, #1B5E20) !important;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Filter Section */
.filter-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: linear-gradient(135deg, #43A047 0%, #1B5E20 100%);
    color: white;
    border-color: transparent;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 160, 71, 0.3);
}

/* Dokumentasi Cards */
.dokumentasi-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dokumentasi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dokumentasi-image-container {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    min-height: 200px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dokumentasi-image {
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    opacity: 0;
}

.dokumentasi-image.loaded {
    opacity: 1;
}

.dokumentasi-image-placeholder {
    min-height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #dee2e6;
}

.placeholder-content {
    text-align: center;
    padding: 2rem;
}

.dokumentasi-card:hover .dokumentasi-image {
    transform: scale(1.02);
}

.card-title {
    color: #2c3e50;
    line-height: 1.4;
}

.card-text {
    line-height: 1.6;
}

/* Badges */
.badge {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #43A047 0%, #1B5E20 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 160, 71, 0.3);
}

/* Empty State */
.empty-state {
    padding: 3rem 2rem;
}

.empty-state i {
    opacity: 0.5;
}

/* File Viewer Styles */
.file-viewer-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #dee2e6;
    min-height: 200px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
}

.file-frame {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1;
}

.text-frame {
    height: 250px;
    font-family: 'Courier New', monospace;
    background: #ffffff;
    flex: 1;
}

.file-preview-header {
    background: #e9ecef;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #495057;
    border: 1px solid #dee2e6;
}

.generic-file-preview {
    text-align: center;
    padding: 2rem 1rem;
}

.file-icon-container {
    margin-bottom: 1rem;
}

.file-name {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    word-break: break-word;
}

.file-type {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pdf-viewer, .office-viewer, .text-viewer {
    position: relative;
}

.file-viewer-embed {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
    
    .dokumentasi-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .file-viewer-container {
        max-height: 280px;
    }
    
    .file-frame {
        height: 200px;
    }
    
    .text-frame {
        height: 180px;
    }
    
    .dokumentasi-image-container {
        max-height: 280px;
        min-height: 180px;
    }
    
    .dokumentasi-image {
        max-height: 280px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.875rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (min-width: 992px) {
    .file-viewer-container {
        max-height: 420px;
    }
    
    .file-frame {
        height: 320px;
    }
    
    .text-frame {
        height: 300px;
    }
    
    .dokumentasi-image-container {
        max-height: 420px;
    }
    
    .dokumentasi-image {
        max-height: 420px;
    }
}

@media (min-width: 1200px) {
    .file-viewer-container {
        max-height: 400px;
    }
    
    .file-frame {
        height: 300px;
    }
    
    .text-frame {
        height: 280px;
    }
}

/* Modern Dokumentasi Cards */
.dokumentasi-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    overflow: hidden;
    background: white;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.dokumentasi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #43A047, #1B5E20);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.dokumentasi-card:hover::before {
    transform: scaleX(1);
}

.dokumentasi-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.dokumentasi-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.dokumentasi-card .card-footer {
    margin-top: auto;
}

.dokumentasi-image-container {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    min-height: 200px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dokumentasi-image {
    transition: all 0.4s ease;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    opacity: 0;
}

.dokumentasi-card:hover .dokumentasi-image {
    transform: scale(1.1);
}

.dokumentasi-image.loaded {
    opacity: 1;
}

/* Modern Badge Styling */
.badge.bg-primary {
    background: linear-gradient(135deg, #43A047, #1B5E20) !important;
}

.badge.bg-success {
    background: linear-gradient(135deg, #11998e, #38ef7d) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
    color: white !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #66BB6A, #A5D6A7) !important;
}

/* Modern Filter Buttons */
.filter-btn {
    border: 2px solid #43A047;
    color: #43A047;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #43A047, #1B5E20);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 160, 71, 0.3);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .modern-hero-section {
        min-height: 80vh;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .modern-hero-section {
        min-height: 70vh;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .dokumentasi-card:hover {
        transform: translateY(-10px);
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-cta .btn:last-child {
        margin-bottom: 0;
    }

    .filter-btn {
        margin-bottom: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .dokumentasi-card {
        margin-bottom: 1.5rem;
    }
    
    .filter-btn {
        margin-bottom: 0.5rem;
    }
}

/* Additional CSS animations */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.dokumentasi-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.btn.loading {
    pointer-events: none;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced hover effects */
.stat-item:hover .icon-wrapper {
    animation: pulse-glow 2s ease-in-out infinite;
}

.floating-shape:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}

/* Social Media Section Styles */
.social-card {
    height: 100%;
    transition: all 0.3s ease;
}

.social-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.social-content {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    color: white;
}

.social-content:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Brand Colors */
.social-content.facebook .social-icon {
    background: linear-gradient(135deg, #1877F2, #0d5cb8);
    box-shadow: 0 8px 16px rgba(24, 119, 242, 0.3);
}

.social-content.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 16px rgba(220, 39, 67, 0.3);
}

.social-content.tiktok .social-icon {
    background: #000000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.social-content.youtube .social-icon {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.3);
}

.social-info h6 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.social-info small {
    color: #6c757d;
    font-size: 0.85rem;
}

.social-arrow {
    margin-top: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    transition: all 0.3s ease;
}

.social-content:hover .social-arrow {
    background: #43A047;
    color: white;
    transform: translateX(5px);
}


/* Informasi Puskesmas Specific Styles */

/* Vision Mission Values */
.vision-section, .mission-section, .values-section {
    position: relative;
}

.section-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.visi-icon { background: linear-gradient(135deg, #43A047, #1B5E20); }
.misi-icon { background: linear-gradient(135deg, #11998e, #38ef7d); }
.nilai-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }

.vision-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border-left: 5px solid #43A047;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vision-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    font-style: italic;
    margin: 0;
}

.mission-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mission-number {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.mission-text {
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-letter {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: -webkit-linear-gradient(135deg, #43A047, #1B5E20);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-title {
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Pustu Cards */
.pustu-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.pustu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pustu-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.pustu-number {
    background: linear-gradient(135deg, #43A047, #1B5E20);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    box-shadow: 0 4px 10px rgba(67, 160, 71, 0.3);
}

.pustu-title {
    margin: 0;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.pustu-staff {
    padding: 1.5rem;
}

.staff-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.staff-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #495057;
}

.staff-list li:last-child {
    margin-bottom: 0;
}

.staff-list li i {
    width: 25px;
    margin-right: 0.5rem;
}

/* Border Cards (Batas Wilayah) */
.border-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.border-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.border-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #43A047;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.border-card:hover .border-icon {
    background: linear-gradient(135deg, #43A047, #1B5E20);
    color: white;
}

/* Tables */
.table-hover tbody tr:hover {
    background-color: rgba(67, 160, 71, 0.05);
}

.leadership-table th, .demographic-table th, .staff-table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    color: #495057;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}


/* Informasi Puskesmas Hero Section */
.hero-pelayanan {
    background: linear-gradient(135deg, #43A047 0%, #1B5E20 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-pelayanan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><defs><pattern id=%22grid%22 width=%2210%22 height=%2210%22 patternUnits=%22userSpaceOnUse%22><path d=%22M 10 0 L 0 0 0 10%22 fill=%22none%22 stroke=%22rgba(255,255,255,0.1)%22 stroke-width=%220.5%22/></pattern></defs><rect width=%22100%22 height=%22100%22 fill=%22url(%23grid)%22/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

/* Map Container */
.map-container {
    position: relative;
    padding: 1rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Info Highlight */
.info-highlight {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid #43A047;
}

.highlight-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed #dee2e6;
    padding-bottom: 0.75rem;
}

.highlight-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.highlight-item .label {
    font-weight: 600;
    color: #495057;
}

.highlight-item .value {
    color: #43A047;
    font-weight: 700;
}



/* ============================================================================
   KONTEN DARI docum.css
   ============================================================================
   Kode di bawah ini dipindahkan dari file docum.css
   ============================================================================ */

/* Modern Hero Section */
.modern-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #43A047 0%, #1B5E20 50%, #2E7D32 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.modern-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.modern-hero-section .container {
    position: relative;
    z-index: 2;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-around 20s infinite linear;
    z-index: 1;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
    animation-name: drift;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
    animation-name: float-around;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 35s;
    animation-name: drift;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 30%;
    animation-delay: -15s;
    animation-duration: 28s;
    animation-name: float-around;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}

@keyframes float-around {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(90deg); }
    50% { transform: translate(-30px, -20px) rotate(180deg); }
    75% { transform: translate(20px, 40px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Hero Content */
.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff, #e8f5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #43A047, #1B5E20);
    border: none;
    box-shadow: 0 10px 25px rgba(67, 160, 71, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(67, 160, 71, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Glassmorphism Stats */
.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-item:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-item:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.8); }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    animation: drift 30s ease-in-out infinite;
}

/* Filter Section */
.filter-section {
    background: #f8fafc;
}

.filter-btn {
    border: 2px solid #43A047;
    color: #43A047;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #43A047, #1B5E20);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 160, 71, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .modern-hero-section {
        min-height: 80vh;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .modern-hero-section {
        min-height: 70vh;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-cta .btn:last-child {
        margin-bottom: 0;
    }

    .filter-btn {
        margin-bottom: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.2rem;
    }
}

/* Modern Dokumentasi Cards */
.dokumentasi-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    overflow: hidden;
    background: white;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.dokumentasi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #43A047, #1B5E20);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.dokumentasi-card:hover::before {
    transform: scaleX(1);
}

.dokumentasi-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.dokumentasi-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.dokumentasi-card .card-footer {
    margin-top: auto;
}

.dokumentasi-image-container {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    min-height: 200px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dokumentasi-image {
    transition: all 0.4s ease;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    opacity: 0;
}

.dokumentasi-card:hover .dokumentasi-image {
    transform: scale(1.1);
}

.dokumentasi-image.loaded {
    opacity: 1;
}

/* Modern Badge Styling */
.badge.bg-primary {
    background: linear-gradient(135deg, #43A047, #1B5E20) !important;
}

.badge.bg-success {
    background: linear-gradient(135deg, #11998e, #38ef7d) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
    color: white !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #66BB6A, #A5D6A7) !important;
}

/* File Viewer Styles */
.file-viewer-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #dee2e6;
    min-height: 200px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
}

.file-frame {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1;
}

.text-frame {
    height: 250px;
    font-family: 'Courier New', monospace;
    background: #ffffff;
    flex: 1;
}

.file-preview-header {
    background: #e9ecef;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #495057;
    border: 1px solid #dee2e6;
}

.generic-file-preview {
    text-align: center;
    padding: 2rem 1rem;
}

.file-icon-container {
    margin-bottom: 1rem;
}

.file-name {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    word-break: break-word;
}

.file-type {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pdf-viewer, .office-viewer, .text-viewer {
    position: relative;
}

.file-viewer-embed {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Empty State */
.empty-state {
    padding: 3rem 2rem;
}

.empty-state i {
    opacity: 0.5;
}
    border-radius: 25px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero CTA */
.hero-cta {
    margin-top: 3rem;
}

/* Buttons */
.btn-light {
    background: white;
    border: none;
    color: #1B5E20;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-light:hover::before {
    left: 100%;
}

.btn-light:hover {
    color: #2E7D32;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #1B5E20;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Animations */
@keyframes drift {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(30px) translateY(-20px); }
    66% { transform: translateX(-20px) translateY(10px); }
}

@keyframes float-around {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
    50% { transform: translateY(0px) translateX(20px) rotate(180deg); }
    75% { transform: translateY(10px) translateX(-5px) rotate(270deg); }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Documentation Section Modern Styling */
.documentation-section {
    background: #f8f9fa;
    position: relative;
}

.section-header .badge {
    background: linear-gradient(135deg, #43A047, #1B5E20) !important;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Filter Section */
.filter-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: linear-gradient(135deg, #43A047 0%, #1B5E20 100%);
    color: white;
    border-color: transparent;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 160, 71, 0.3);
}

/* Dokumentasi Cards */
.dokumentasi-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dokumentasi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dokumentasi-image-container {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    min-height: 200px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dokumentasi-image {
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    opacity: 0;
}

.dokumentasi-image.loaded {
    opacity: 1;
}

.dokumentasi-image-placeholder {
    min-height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #dee2e6;
}

.placeholder-content {
    text-align: center;
    padding: 2rem;
}

.dokumentasi-card:hover .dokumentasi-image {
    transform: scale(1.02);
}

.card-title {
    color: #2c3e50;
    line-height: 1.4;
}

.card-text {
    line-height: 1.6;
}

/* Badges */
.badge {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #43A047 0%, #1B5E20 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 160, 71, 0.3);
}

/* Empty State */
.empty-state {
    padding: 3rem 2rem;
}

.empty-state i {
    opacity: 0.5;
}

/* File Viewer Styles */
.file-viewer-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #dee2e6;
    min-height: 200px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
}

.file-frame {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1;
}

.text-frame {
    height: 250px;
    font-family: 'Courier New', monospace;
    background: #ffffff;
    flex: 1;
}

.file-preview-header {
    background: #e9ecef;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #495057;
    border: 1px solid #dee2e6;
}

.generic-file-preview {
    text-align: center;
    padding: 2rem 1rem;
}

.file-icon-container {
    margin-bottom: 1rem;
}

.file-name {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    word-break: break-word;
}

.file-type {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pdf-viewer, .office-viewer, .text-viewer {
    position: relative;
}

.file-viewer-embed {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
    
    .dokumentasi-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .file-viewer-container {
        max-height: 280px;
    }
    
    .file-frame {
        height: 200px;
    }
    
    .text-frame {
        height: 180px;
    }
    
    .dokumentasi-image-container {
        max-height: 280px;
        min-height: 180px;
    }
    
    .dokumentasi-image {
        max-height: 280px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.875rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (min-width: 992px) {
    .file-viewer-container {
        max-height: 420px;
    }
    
    .file-frame {
        height: 320px;
    }
    
    .text-frame {
        height: 300px;
    }
    
    .dokumentasi-image-container {
        max-height: 420px;
    }
    
    .dokumentasi-image {
        max-height: 420px;
    }
}

@media (min-width: 1200px) {
    .file-viewer-container {
        max-height: 400px;
    }
    
    .file-frame {
        height: 300px;
    }
    
    .text-frame {
        height: 280px;
    }
}

/* Modern Dokumentasi Cards */
.dokumentasi-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    overflow: hidden;
    background: white;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.dokumentasi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #43A047, #1B5E20);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.dokumentasi-card:hover::before {
    transform: scaleX(1);
}

.dokumentasi-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.dokumentasi-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.dokumentasi-card .card-footer {
    margin-top: auto;
}

.dokumentasi-image-container {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    min-height: 200px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dokumentasi-image {
    transition: all 0.4s ease;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    opacity: 0;
}

.dokumentasi-card:hover .dokumentasi-image {
    transform: scale(1.1);
}

.dokumentasi-image.loaded {
    opacity: 1;
}

/* Modern Badge Styling */
.badge.bg-primary {
    background: linear-gradient(135deg, #43A047, #1B5E20) !important;
}

.badge.bg-success {
    background: linear-gradient(135deg, #11998e, #38ef7d) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
    color: white !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #66BB6A, #A5D6A7) !important;
}

/* Modern Filter Buttons */
.filter-btn {
    border: 2px solid #43A047;
    color: #43A047;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #43A047, #1B5E20);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 160, 71, 0.3);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .modern-hero-section {
        min-height: 80vh;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .modern-hero-section {
        min-height: 70vh;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .dokumentasi-card:hover {
        transform: translateY(-10px);
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-cta .btn:last-child {
        margin-bottom: 0;
    }

    .filter-btn {
        margin-bottom: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .dokumentasi-card {
        margin-bottom: 1.5rem;
    }
    
    .filter-btn {
        margin-bottom: 0.5rem;
    }
}

/* Additional CSS animations */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.dokumentasi-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.btn.loading {
    pointer-events: none;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced hover effects */
.stat-item:hover .icon-wrapper {
    animation: pulse-glow 2s ease-in-out infinite;
}

.floating-shape:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}

/* Social Media Section Styles */
.social-card {
    height: 100%;
    transition: all 0.3s ease;
}

.social-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.social-content {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    color: white;
}

.social-content:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Brand Colors */
.social-content.facebook .social-icon {
    background: linear-gradient(135deg, #1877F2, #0d5cb8);
    box-shadow: 0 8px 16px rgba(24, 119, 242, 0.3);
}

.social-content.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 16px rgba(220, 39, 67, 0.3);
}

.social-content.tiktok .social-icon {
    background: #000000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.social-content.youtube .social-icon {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.3);
}

.social-info h6 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.social-info small {
    color: #6c757d;
    font-size: 0.85rem;
}

.social-arrow {
    margin-top: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    transition: all 0.3s ease;
}

.social-content:hover .social-arrow {
    background: #43A047;
    color: white;
    transform: translateX(5px);
}


/* Informasi Puskesmas Specific Styles */

/* Vision Mission Values */
.vision-section, .mission-section, .values-section {
    position: relative;
}

.section-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.visi-icon { background: linear-gradient(135deg, #43A047, #1B5E20); }
.misi-icon { background: linear-gradient(135deg, #11998e, #38ef7d); }
.nilai-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }

.vision-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border-left: 5px solid #43A047;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vision-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    font-style: italic;
    margin: 0;
}

.mission-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mission-number {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.mission-text {
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-letter {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: -webkit-linear-gradient(135deg, #43A047, #1B5E20);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-title {
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Pustu Cards */
.pustu-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.pustu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pustu-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.pustu-number {
    background: linear-gradient(135deg, #43A047, #1B5E20);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    box-shadow: 0 4px 10px rgba(67, 160, 71, 0.3);
}

.pustu-title {
    margin: 0;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.pustu-staff {
    padding: 1.5rem;
}

.staff-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.staff-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #495057;
}

.staff-list li:last-child {
    margin-bottom: 0;
}

.staff-list li i {
    width: 25px;
    margin-right: 0.5rem;
}

/* Border Cards (Batas Wilayah) */
.border-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.border-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.border-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #43A047;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.border-card:hover .border-icon {
    background: linear-gradient(135deg, #43A047, #1B5E20);
    color: white;
}

/* Tables */
.table-hover tbody tr:hover {
    background-color: rgba(67, 160, 71, 0.05);
}

.leadership-table th, .demographic-table th, .staff-table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    color: #495057;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}


/* Informasi Puskesmas Hero Section */
.hero-pelayanan {
    background: linear-gradient(135deg, #43A047 0%, #1B5E20 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-pelayanan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><defs><pattern id=%22grid%22 width=%2210%22 height=%2210%22 patternUnits=%22userSpaceOnUse%22><path d=%22M 10 0 L 0 0 0 10%22 fill=%22none%22 stroke=%22rgba(255,255,255,0.1)%22 stroke-width=%220.5%22/></pattern></defs><rect width=%22100%22 height=%22100%22 fill=%22url(%23grid)%22/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

/* Map Container */
.map-container {
    position: relative;
    padding: 1rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Info Highlight */
.info-highlight {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid #43A047;
}

.highlight-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed #dee2e6;
    padding-bottom: 0.75rem;
}

.highlight-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.highlight-item .label {
    font-weight: 600;
    color: #495057;
}

.highlight-item .value {
    color: #43A047;
    font-weight: 700;
}


