      * {
        font-family: "Poppins", sans-serif;
      }

      /* Header Style */
      .top-header {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        padding: 30px 0;
        color: white;
      }

      .logo-section {
        display: flex;
        align-items: center;
        gap: 20px;
      }

      .logo-section img {
        width: 80px;
        height: auto;
      }

      .header-title h1 {
        font-size: 28px;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
      }

      .header-title p {
        font-size: 16px;
        margin: 0;
        opacity: 0.9;
      }

      /* Navigation Menu with Submenu */
      .navbar {
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 0;
      }

      .navbar-nav .nav-link {
        color: #333;
        font-weight: 500;
        padding: 18px 20px !important;
        transition: all 0.3s;
      }

      .navbar-nav .nav-link:hover {
        color: #2a5298;
        background-color: #f8f9fa;
      }

      .navbar-nav .nav-link.active {
        color: #2a5298;
        border-bottom: 3px solid #2a5298;
      }

      /* Submenu Styling */
      .dropdown-menu {
        border: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 10px 0;
      }

      .dropdown-item {
        padding: 10px 20px;
        transition: all 0.3s;
      }

      .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #2a5298;
        padding-left: 25px;
      }

      /* Multi-level Dropdown */
      .dropdown-submenu {
        position: relative;
      }

      .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
        display: none;
      }

      .dropdown-submenu:hover > .dropdown-menu {
        display: block;
      }

      .dropdown-item.dropdown-toggle::after {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
      }

      /* Swiper Slider Styling */
      .hero-swiper {
        width: 100%;
        height: 600px;
      }

      .hero-swiper .swiper-slide {
        position: relative;
        background-size: cover;
        background-position: center;
      }

      .hero-swiper .swiper-slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
      }

      .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        z-index: 10;
        width: 80%;
        max-width: 900px;
      }

      .slide-content h2 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      .slide-content p {
        font-size: 20px;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      }

      .swiper-button-next,
      .swiper-button-prev {
        color: white;
        background: rgba(255, 255, 255, 0.2);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        transition: all 0.3s;
      }

      .swiper-button-next:hover,
      .swiper-button-prev:hover {
        background: rgba(255, 255, 255, 0.4);
      }

      .swiper-button-next::after,
      .swiper-button-prev::after {
        font-size: 20px;
      }

      .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: white;
        opacity: 0.5;
      }

      .swiper-pagination-bullet-active {
        opacity: 1;
        background: #2a5298;
      }

      /* Section Title */
      .section-title {
        text-align: center;
        margin-bottom: 50px;
      }

      .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1e3c72;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
      }

      .section-title h2:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        border-radius: 2px;
      }

      /* Layanan Cards */
      .layanan-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
        height: 100%;
        border: 1px solid #f0f0f0;
      }

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

      .layanan-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .layanan-icon i {
        font-size: 36px;
        color: white;
      }

      .layanan-card h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
      }

      .layanan-card p {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
      }

      /* Profil Section */
      .profil-section {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        padding: 80px 0;
      }

      .profil-content {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .profil-img {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      }

      .profil-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* Staff Swiper Slider */
      .staff-swiper {
        padding: 20px 0 50px 0;
      }

      .staff-card {
        background: white;
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
        height: 100%;
      }

      .staff-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      }

      .staff-card img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
        border: 5px solid #f0f0f0;
      }

      .staff-card h6 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
      }

      .staff-card p {
        color: #666;
        font-size: 14px;
        margin-bottom: 15px;
      }

      .staff-card .social-links a {
        display: inline-block;
        width: 35px;
        height: 35px;
        background: #f8f9fa;
        border-radius: 50%;
        line-height: 35px;
        margin: 0 5px;
        color: #666;
        transition: all 0.3s;
      }

      .staff-card .social-links a:hover {
        background: #2a5298;
        color: white;
      }

      /* Berita Cards */
      .berita-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
        height: 100%;
      }

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

      .berita-img {
        height: 200px;
        overflow: hidden;
      }

      .berita-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
      }

      .berita-card:hover .berita-img img {
        transform: scale(1.1);
      }

      .berita-content {
        padding: 20px;
      }

      .berita-date {
        color: #2a5298;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 10px;
      }

      .berita-content h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
      }

      .berita-content p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
      }

      .btn-read-more {
        color: #2a5298;
        font-weight: 500;
        text-decoration: none;
      }

      .btn-read-more:hover {
        color: #1e3c72;
      }

      /* Link Terkait */
      .link-card {
        background: white;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
        text-decoration: none;
        display: block;
        height: 100%;
      }

      .link-card:hover {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        color: white;
        transform: translateY(-5px);
      }

      .link-card img {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
        object-fit: contain;
      }

      .link-card p {
        margin: 0;
        font-weight: 500;
        color: #333;
      }

      .link-card:hover p {
        color: white;
      }

      /* Footer */
      .footer {
        background: #1a1a2e;
        color: white;
        padding: 50px 0 20px;
      }

      .footer h5 {
        font-weight: 600;
        margin-bottom: 20px;
      }

      .footer ul {
        list-style: none;
        padding: 0;
      }

      .footer ul li {
        margin-bottom: 10px;
      }

      .footer ul li a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
      }

      .footer ul li a:hover {
        color: white;
      }

      .social-icons a {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        margin-right: 10px;
        color: white;
        transition: all 0.3s;
      }

      .social-icons a:hover {
        background: #2a5298;
        transform: translateY(-3px);
      }

      .section-padding {
        padding: 80px 0;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .hero-swiper {
          height: 400px;
        }

        .slide-content h2 {
          font-size: 32px;
        }

        .slide-content p {
          font-size: 16px;
        }
      }
      /* Pengaduan & Agenda Section */
      .info-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      }

      .info-card {
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
      }

      .info-card h4 {
        font-size: 22px;
        font-weight: 700;
        color: #1e3c72;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .info-card h4 i {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
      }

      /* Stats Cards */
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 25px;
      }

      .stat-box {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 20px;
        border-radius: 15px;
        color: white;
        text-align: center;
      }

      .stat-box h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 5px;
      }

      .stat-box p {
        font-size: 13px;
        margin: 0;
        opacity: 0.9;
      }

      .stat-box.green {
        background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
      }

      .stat-box.orange {
        background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
      }

      .stat-box.blue {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      }

      /* Pengaduan List */
      .pengaduan-list-item {
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s;
      }

      .pengaduan-list-item:last-child {
        border-bottom: none;
      }

      .pengaduan-list-item:hover {
        background: #f8f9fa;
        padding-left: 20px;
      }

      .pengaduan-list-item .header {
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin-bottom: 8px;
      }

      .pengaduan-list-item h6 {
        font-size: 15px;
        font-weight: 600;
        color: #333;
        margin: 0;
        flex: 1;
      }

      .pengaduan-list-item .meta {
        font-size: 12px;
        color: #666;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
      }

      .pengaduan-list-item .meta span {
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .pengaduan-list-item .meta i {
        color: #667eea;
      }

      .badge-pengaduan {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        white-space: nowrap;
      }

      .badge-baru {
        background: #e3f2fd;
        color: #1976d2;
      }

      .badge-proses {
        background: #fff3e0;
        color: #f57c00;
      }

      .badge-selesai {
        background: #e8f5e9;
        color: #388e3c;
      }

      /* Agenda List */
      .agenda-list-item {
        display: flex;
        gap: 15px;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s;
      }

      .agenda-list-item:last-child {
        border-bottom: none;
      }

      .agenda-list-item:hover {
        background: #f8f9fa;
      }

      .agenda-date-mini {
        min-width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        flex-shrink: 0;
      }

      .agenda-date-mini .day {
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
      }

      .agenda-date-mini .month {
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
      }

      .agenda-info {
        flex: 1;
      }

      .agenda-info h6 {
        font-size: 15px;
        font-weight: 600;
        color: #333;
        margin: 0 0 8px 0;
      }

      .agenda-info .meta {
        font-size: 12px;
        color: #666;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
      }

      .agenda-info .meta span {
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .agenda-info .meta i {
        color: #667eea;
      }

      .btn-link-custom {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s;
      }

      .btn-link-custom:hover {
        color: #764ba2;
        gap: 10px;
      }

      .quick-action-btn {
        width: 100%;
        padding: 12px;
        border-radius: 10px;
        border: 2px solid #667eea;
        background: white;
        color: #667eea;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s;
        cursor: pointer;
      }

      .quick-action-btn:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-color: transparent;
      }

      .empty-state {
        text-align: center;
        padding: 30px;
        color: #999;
      }

      .empty-state i {
        font-size: 48px;
        margin-bottom: 15px;
        opacity: 0.3;
      }

      /* Galeri Section */
      .galeri-section {
        padding: 80px 0;
        background: white;
      }

      .galeri-tabs {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
        flex-wrap: wrap;
      }

      .galeri-tab {
        background: white;
        border: 2px solid #e0e0e0;
        padding: 12px 35px;
        border-radius: 50px;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .galeri-tab:hover {
        border-color: #667eea;
        color: #667eea;
        transform: translateY(-2px);
      }

      .galeri-tab.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-color: transparent;
      }

      .galeri-tab i {
        font-size: 16px;
      }

      /* Photo Gallery Grid */
      .photo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
      }

      .photo-item {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        cursor: pointer;
        height: 250px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
      }

      .photo-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      }

      .photo-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }

      .photo-item:hover img {
        transform: scale(1.1);
      }

      .photo-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.8) 0%,
          transparent 100%
        );
        padding: 20px;
        transform: translateY(100%);
        transition: transform 0.3s;
      }

      .photo-item:hover .photo-overlay {
        transform: translateY(0);
      }

      .photo-overlay h6 {
        color: white;
        font-size: 15px;
        font-weight: 600;
        margin: 0 0 5px 0;
      }

      .photo-overlay .meta {
        color: rgba(255, 255, 255, 0.8);
        font-size: 12px;
        display: flex;
        gap: 15px;
      }

      .photo-overlay .meta i {
        margin-right: 5px;
      }

      .zoom-icon {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s;
        color: #667eea;
      }

      .photo-item:hover .zoom-icon {
        opacity: 1;
      }

      /* Video Gallery Grid */
      .video-grid {
        display: none;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 25px;
      }

      .video-grid.active {
        display: grid;
      }

      .video-item {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
        background: #000;
      }

      .video-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      }

      .video-thumbnail {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
      }

      .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }

      .video-item:hover .video-thumbnail img {
        transform: scale(1.1);
      }

      .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
      }

      .play-button i {
        font-size: 28px;
        color: #667eea;
        margin-left: 5px;
      }

      .video-item:hover .play-button {
        transform: translate(-50%, -50%) scale(1.1);
        background: white;
      }

      .video-duration {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 4px 10px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 600;
      }

      .video-info {
        padding: 20px;
        background: white;
      }

      .video-info h6 {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin: 0 0 10px 0;
        line-height: 1.4;
      }

      .video-meta {
        display: flex;
        gap: 15px;
        color: #666;
        font-size: 13px;
        flex-wrap: wrap;
      }

      .video-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .video-meta i {
        color: #667eea;
      }

      /* Featured Section */
      .featured-media {
        margin-bottom: 40px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      }

      .featured-content {
        position: relative;
        height: 450px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      }

      .featured-content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .featured-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 40px;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.9) 0%,
          transparent 100%
        );
        color: white;
      }

      .featured-overlay .badge {
        background: #667eea;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 10px;
        display: inline-block;
      }

      .featured-overlay h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
      }

      .featured-overlay p {
        font-size: 16px;
        opacity: 0.9;
        margin-bottom: 0;
      }

      /* Load More */
      .load-more-btn {
        text-align: center;
        margin-top: 40px;
      }

      .load-more-btn button {
        padding: 14px 40px;
        background: white;
        border: 2px solid #667eea;
        border-radius: 50px;
        color: #667eea;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
      }

      .load-more-btn button:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-color: transparent;
      }

      /* Lightbox Modal */
      .lightbox-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9999;
        justify-content: center;
        align-items: center;
      }

      .lightbox-modal.active {
        display: flex;
      }

      .lightbox-content {
        max-width: 90%;
        max-height: 90%;
        position: relative;
      }

      .lightbox-content img {
        max-width: 100%;
        max-height: 90vh;
        object-fit: contain;
      }

      .lightbox-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: white;
        font-size: 24px;
        transition: all 0.3s;
      }

      .lightbox-close:hover {
        background: rgba(255, 255, 255, 0.3);
      }

      @media (max-width: 768px) {
        .photo-grid {
          grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
          gap: 15px;
        }

        .video-grid {
          grid-template-columns: 1fr;
        }

        .featured-content {
          height: 300px;
        }

        .featured-overlay h3 {
          font-size: 24px;
        }
      }

/* ==================== ARTICLE DETAIL PAGE ==================== */
.article-header {
  margin-bottom: 30px;
}

.article-category {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.article-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e3c72;
  line-height: 1.3;
  margin-bottom: 25px;
}

.article-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 15px;
}

.meta-item i {
  color: #667eea;
  font-size: 16px;
}

.meta-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
}

.meta-author strong {
  color: #333;
  font-size: 15px;
}

.meta-author small {
  color: #999;
  font-size: 13px;
}

.featured-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  margin: 30px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.article-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.article-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
  text-align: justify;
}

.article-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1e3c72;
  margin: 40px 0 20px;
}

.article-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: #2a5298;
  margin: 30px 0 15px;
}

.article-content ul,
.article-content ol {
  margin: 25px 0;
  padding-left: 30px;
}

.article-content li {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

.article-content blockquote {
  background: #f8f9fa;
  border-left: 5px solid #667eea;
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 10px;
}

.article-content blockquote p {
  font-size: 18px;
  font-style: italic;
  color: #555;
  margin: 0;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Share Section */
.share-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.share-section h5 {
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  padding: 12px 25px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  font-size: 14px;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.copy {
  background: #6c757d;
}

/* Article Tags */
.article-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

/* Author Box */
.author-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px;
  border-radius: 20px;
  color: white;
  margin-bottom: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.author-box img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.author-info p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 15px;
  line-height: 1.6;
}

.author-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  margin-right: 10px;
  transition: all 0.3s;
}

.author-social a:hover {
  background: white;
  color: #667eea;
}

/* Comments Section */
.comments-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.comments-section h4 {
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 30px;
}

.comment-item {
  padding: 25px 0;
  border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}

.comment-info h6 {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  font-size: 15px;
}

.comment-date {
  font-size: 13px;
  color: #999;
}

.comment-text {
  color: #666;
  line-height: 1.6;
  margin-left: 65px;
  font-size: 15px;
}

.comment-reply {
  color: #667eea;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-left: 65px;
  display: inline-block;
  margin-top: 10px;
  transition: all 0.3s;
}

.comment-reply:hover {
  color: #764ba2;
}

.comment-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.comment-form h5 {
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 20px;
}

.comment-form .form-control {
  border-radius: 10px;
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.comment-form .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Related Posts */
.related-posts {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.related-posts h4 {
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 30px;
}

.related-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
  display: block;
  text-decoration: none;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s;
}

.related-card:hover img {
  transform: scale(1.1);
}

.related-content {
  padding: 20px;
}

.related-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.related-date {
  font-size: 13px;
  color: #999;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.back-to-top i {
  font-size: 18px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 15px;
  color: #999;
}

.empty-state i {
  font-size: 80px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.empty-state h4 {
  color: #666;
  margin-bottom: 10px;
}

/* ==================== BREADCRUMB SPECIFIC ==================== */
.breadcrumb {
  background: transparent;
  padding: 20px 0;
}

.breadcrumb-item a {
  color: #667eea;
  text-decoration: none;
  transition: all 0.3s;
}

.breadcrumb-item a:hover {
  color: #764ba2;
}

.breadcrumb-item.active {
  color: #666;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #999;
}

/* ==================== RESPONSIVE FOR ARTICLE DETAIL ==================== */
@media (max-width: 768px) {
  .article-title {
    font-size: 28px;
  }

  .featured-image {
    height: 300px;
  }

  .article-content {
    padding: 25px;
  }

  .article-content p,
  .article-content li {
    font-size: 15px;
  }

  .article-meta {
    gap: 15px;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    width: 100%;
    justify-content: center;
  }

  .comment-text,
  .comment-reply {
    margin-left: 0;
    margin-top: 10px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

      /* Page Header */
      .page-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 80px 0 60px;
        color: white;
        position: relative;
        overflow: hidden;
      }

      .page-header::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
      }

      .page-header h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
      }

      .breadcrumb {
        background: transparent;
        padding: 20px 0;        
      }

      .breadcrumb-item a {
        color: #667eea;
        text-decoration: none;
      }

      .breadcrumb-item.active {
        color: #666
      }

      .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.6);
      }

      .breadcrumb-item+.breadcrumb-item::before {
          float: left;
          padding-right: var(--bs-breadcrumb-item-padding-x);
          color: var(--bs-breadcrumb-divider-color);
          content: var(--bs-breadcrumb-divider, "/");
      }      
      /* Content Section */
      .content-section {
        padding: 40px 0 80px;
      }

      /* Featured News */
      .featured-news {
        position: relative;
        height: 500px;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 50px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
      }

      .featured-news img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .featured-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 50px;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.9) 0%,
          transparent 100%
        );
        color: white;
      }

      .featured-badge {
        background: #ff4757;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 13px;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 15px;
      }

      .featured-overlay h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.3;
      }

      .featured-meta {
        display: flex;
        gap: 25px;
        font-size: 14px;
        opacity: 0.9;
        flex-wrap: wrap;
      }

      .featured-meta span {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      /* Filter Tabs */
      .filter-tabs {
        display: flex;
        gap: 15px;
        margin-bottom: 40px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .filter-tab {
        background: white;
        border: 2px solid #e0e0e0;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        transition: all 0.3s;
      }

      .filter-tab:hover {
        border-color: #667eea;
        color: #667eea;
        transform: translateY(-2px);
      }

      .filter-tab.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-color: transparent;
      }

      /* Search & Sort */
      .search-sort-bar {
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        margin-bottom: 40px;
      }

      .search-box {
        position: relative;
      }

      .search-box input {
        width: 100%;
        padding: 12px 20px 12px 50px;
        border: 2px solid #e0e0e0;
        border-radius: 50px;
        transition: all 0.3s;
      }

      .search-box input:focus {
        border-color: #667eea;
        outline: none;
      }

      .search-box i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
      }

      /* News Card */
      .news-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
        height: 100%;
        display: flex;
        flex-direction: column;
      }

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

      .news-image {
        position: relative;
        height: 220px;
        overflow: hidden;
      }

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

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

      .news-category {
        position: absolute;
        top: 15px;
        left: 15px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
      }

      .news-content {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }

      .news-date {
        color: #999;
        font-size: 13px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .news-title {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin-bottom: 12px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .news-excerpt {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex: 1;
      }

      .news-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
      }

      .news-author {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #666;
      }

      .news-author img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
      }

      .read-more {
        color: #667eea;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s;
      }

      .read-more:hover {
        gap: 12px;
      }

      /* Pagination */
      .custom-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 50px;
      }

      .page-btn {
        width: 45px;
        height: 45px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        background: white;
        color: #666;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .page-btn:hover {
        border-color: #667eea;
        color: #667eea;
      }

      .page-btn.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-color: transparent;
      }

      /* Sidebar */
      .sidebar-widget {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
      }

      .sidebar-widget h5 {
        font-weight: 700;
        color: #1e3c72;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 3px solid #667eea;
      }

      .popular-post {
        display: flex;
        gap: 15px;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s;
      }

      .popular-post:last-child {
        border-bottom: none;
      }

      .popular-post:hover {
        padding-left: 10px;
      }

      .popular-post img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 10px;
      }

      .popular-post-content h6 {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        line-height: 1.4;
      }

      .popular-post-date {
        font-size: 12px;
        color: #999;
      }

      .category-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s;
      }

      .category-item:last-child {
        border-bottom: none;
      }

      .category-item:hover {
        padding-left: 10px;
        color: #667eea;
      }

      .category-item a {
        color: #666;
        text-decoration: none;
        font-weight: 500;
      }

      .category-count {
        background: #f0f0f0;
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 12px;
        font-weight: 600;
        color: #666;
      }

      .tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .tag {
        background: #f8f9fa;
        padding: 8px 18px;
        border-radius: 20px;
        font-size: 13px;
        color: #666;
        text-decoration: none;
        transition: all 0.3s;
      }

      .tag:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
      }

      /* Footer */
      .footer {
        background: #1a1a2e;
        color: white;
        padding: 50px 0 20px;
      }

      @media (max-width: 768px) {
        .featured-news {
          height: 350px;
        }

        .featured-overlay h2 {
          font-size: 24px;
        }

        .page-header h1 {
          font-size: 32px;
        }
      }

/* ==================== FORM PENGADUAN PAGE ==================== */

/* Page Title */
.page-title {
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1e3c72;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-title p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Alert Box */
.alert-box {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 5px solid #ffc107;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 3px 15px rgba(255, 193, 7, 0.15);
}

.alert-box h6 {
  font-weight: 700;
  color: #856404;
  margin-bottom: 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-box h6 i {
  font-size: 20px;
}

.alert-box ul {
  margin: 0;
  padding-left: 25px;
  color: #856404;
}

.alert-box ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

/* Form Card */
.form-card {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

/* Form Labels */
.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-size: 15px;
  display: block;
}

.required {
  color: #dc3545;
  font-weight: 700;
  font-size: 16px;
}

/* Form Controls */
.form-control,
.form-select {
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  padding: 14px 20px;
  transition: all 0.3s;
  font-size: 15px;
  width: 100%;
  background: white;
}

.form-control:focus,
.form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15);
  outline: none;
}

.form-control:hover,
.form-select:hover {
  border-color: #c0c0c0;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
}

.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Form Text / Helper Text */
.form-text {
  color: #999;
  font-size: 13px;
  margin-top: 8px;
  display: block;
}

.form-text i {
  margin-right: 5px;
}

/* Invalid Feedback */
.invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 13px;
  margin-top: 8px;
  font-weight: 500;
}

/* Character Counter */
.char-counter {
  text-align: right;
  color: #999;
  font-size: 13px;
  margin-top: 8px;
  font-weight: 500;
}

/* File Upload Wrapper */
.file-upload-wrapper {
  border: 3px dashed #e0e0e0;
  border-radius: 15px;
  padding: 50px 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  background: #f8f9fa;
}

.file-upload-wrapper:hover {
  border-color: #667eea;
  background: #f0f4ff;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-icon {
  font-size: 56px;
  color: #667eea;
  margin-bottom: 20px;
  pointer-events: none;
}

.file-upload-text {
  pointer-events: none;
}

.file-upload-text strong {
  color: #333;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.file-upload-text small {
  color: #999;
  font-size: 14px;
}

.file-list {
  margin-top: 20px;
}

.file-list .file-item {
  background: #f8f9fa;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.file-list .file-item .file-name {
  color: #333;
  font-weight: 500;
}

.file-list .file-item .remove-file {
  color: #dc3545;
  cursor: pointer;
  font-size: 18px;
}

/* Buttons */
.btn-reset {
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  color: #666;
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.btn-reset:hover {
  background: #e0e0e0;
  border-color: #ccc;
  color: #333;
  transform: translateY(-2px);
}

.btn-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  padding: 14px 45px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-submit:active {
  transform: translateY(-1px);
}

/* Info Box */
.info-box {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.info-box h5 {
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 30px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s;
}

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

.info-item:hover {
  padding-left: 10px;
}

.info-item i {
  font-size: 28px;
  color: #667eea;
  flex-shrink: 0;
  margin-top: 3px;
}

.info-item-text {
  flex: 1;
}

.info-item-text strong {
  display: block;
  color: #333;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.info-item-text p {
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* Stats Box */
.stats-box {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.stats-box h5 {
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 25px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.stat-item {
  text-align: center;
  padding: 25px 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  transition: all 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 38px;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* reCAPTCHA Container */
.g-recaptcha {
  display: inline-block;
}

/* Quick Action Links */
.stats-box a.btn {
  transition: all 0.3s;
}

.stats-box a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Loading State */
.wire-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Success Message */
.success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-left: 5px solid #28a745;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  color: #155724;
}

.success-message h5 {
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.success-message p {
  margin: 0;
  line-height: 1.6;
}

/* Error Message */
.error-message {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border-left: 5px solid #dc3545;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  color: #721c24;
}

.error-message h5 {
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.error-message ul {
  margin: 10px 0 0 0;
  padding-left: 25px;
}

.error-message ul li {
  margin-bottom: 5px;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 992px) {
  .form-card {
    padding: 35px;
  }

  .stats-box {
    padding: 30px;
  }

  .info-box {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-title h1 {
    font-size: 32px;
  }

  .page-title p {
    font-size: 16px;
  }

  .form-card {
    padding: 25px;
    margin-bottom: 30px;
  }

  .alert-box {
    padding: 20px;
  }

  .alert-box h6 {
    font-size: 16px;
  }

  .alert-box ul li {
    font-size: 14px;
  }

  .form-control,
  .form-select {
    padding: 12px 15px;
    font-size: 14px;
  }

  .file-upload-wrapper {
    padding: 35px 20px;
  }

  .file-upload-icon {
    font-size: 42px;
  }

  .file-upload-text strong {
    font-size: 16px;
  }

  .btn-reset,
  .btn-submit {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .btn-reset {
    margin-right: 0 !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .info-box,
  .stats-box {
    padding: 25px;
  }

  .info-box h5,
  .stats-box h5 {
    font-size: 18px;
  }

  .info-item {
    gap: 15px;
  }

  .info-item i {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .page-title h1 {
    font-size: 26px;
  }

  .page-title p {
    font-size: 14px;
  }

  .form-card {
    padding: 20px;
  }

  .alert-box {
    padding: 15px;
  }

  .file-upload-wrapper {
    padding: 25px 15px;
  }

  .char-counter {
    font-size: 12px;
  }

  .form-text {
    font-size: 12px;
  }

  .info-box,
  .stats-box {
    padding: 20px;
  }
}

/* ==================== ANIMATIONS ==================== */

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

[data-aos="fade-up"] {
  animation: fadeInUp 0.6s ease-out;
}

/* Form Field Focus Animation */
.form-control:focus,
.form-select:focus {
  animation: inputFocus 0.3s ease-out;
}

@keyframes inputFocus {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

/* File Upload Pulse Animation */
.file-upload-wrapper:hover .file-upload-icon {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Button Click Animation */
.btn-submit:active,
.btn-reset:active {
  animation: buttonClick 0.2s ease-out;
}

@keyframes buttonClick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Disabled State */
.btn-submit:disabled,
.btn-reset:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Focus Visible for Accessibility */
.form-control:focus-visible,
.form-select:focus-visible,
.btn-submit:focus-visible,
.btn-reset:focus-visible {
  outline: 3px solid rgba(102, 126, 234, 0.5);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .btn-reset,
  .btn-submit,
  .stats-box:last-child {
    display: none !important;
  }

  .form-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .page-title,
  .alert-box,
  .info-box {
    break-inside: avoid;
  }
}


/* Statistics Cards */
.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border-left: 5px solid #667eea;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.stat-card.info {
  border-left-color: #17a2b8;
}

.stat-card.warning {
  border-left-color: #ffc107;
}

.stat-card.success {
  border-left-color: #28a745;
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.stat-card.info .stat-icon {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.stat-card.warning .stat-icon {
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

.stat-card.success .stat-icon {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}

.stat-icon i {
  font-size: 32px;
  color: white;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #333;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Filter Bar */
.filter-bar {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.filter-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.filter-tab {
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.filter-tab:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
}

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

.search-box {
  position: relative;
}

.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
}

.search-box input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s;
  font-size: 15px;
}

.search-box input:focus {
  border-color: #667eea;
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15);
}

.filter-bar .form-select {
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.filter-bar .form-select:focus {
  border-color: #667eea;
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15);
}

/* Pengaduan Card */
.pengaduan-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  transition: all 0.3s;
  border-left: 5px solid #667eea;
}

.pengaduan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.pengaduan-card.status-baru {
  border-left-color: #17a2b8;
}

.pengaduan-card.status-proses {
  border-left-color: #ffc107;
}

.pengaduan-card.status-selesai {
  border-left-color: #28a745;
}

.pengaduan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pengaduan-id {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: #667eea;
  font-size: 16px;
  background: #f0f4ff;
  padding: 8px 15px;
  border-radius: 8px;
}

.status-badge {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.status-baru {
  background: #d1ecf1;
  color: #0c5460;
}

.status-badge.status-proses {
  background: #fff3cd;
  color: #856404;
}

.status-badge.status-selesai {
  background: #d4edda;
  color: #155724;
}

.pengaduan-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.pengaduan-excerpt {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.pengaduan-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.pengaduan-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.pengaduan-meta i {
  color: #667eea;
  font-size: 14px;
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 14px;
}

.btn-detail:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  color: white;
}

.btn-detail i {
  transition: transform 0.3s;
}

.btn-detail:hover i {
  transform: translateX(5px);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 100px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.empty-state i {
  font-size: 100px;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.empty-state h4 {
  font-size: 28px;
  font-weight: 700;
  color: #666;
  margin-bottom: 15px;
}

.empty-state p {
  font-size: 16px;
  color: #999;
  max-width: 500px;
  margin: 0 auto;
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-item {
  list-style: none;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0 15px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  color: #666;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.page-link:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Loading State */
.wire-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .page-header p {
    font-size: 16px;
  }

  .page-header .btn-light {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }

  .stats-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 25px;
  }

  .filter-bar {
    padding: 20px;
  }

  .filter-tabs {
    flex-direction: column;
  }

  .filter-tab {
    width: 100%;
    justify-content: center;
  }

  .pengaduan-card {
    padding: 25px;
  }

  .pengaduan-title {
    font-size: 20px;
  }

  .pengaduan-meta {
    gap: 15px;
  }

  .pengaduan-meta span {
    font-size: 13px;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 8px;
  }

  .page-link {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .filter-bar .form-select,
  .search-box input {
    font-size: 14px;
    padding: 12px 15px;
  }

  .search-box input {
    padding-left: 45px;
  }

  .pengaduan-card {
    padding: 20px;
  }

  .pengaduan-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .pengaduan-title {
    font-size: 18px;
  }

  .pengaduan-excerpt {
    font-size: 14px;
  }

  .btn-detail {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== ANIMATIONS ==================== */

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

[data-aos="fade-up"] {
  animation: fadeInUp 0.6s ease-out;
}

/* Card Hover Animation */
.pengaduan-card:hover {
  animation: cardHover 0.3s ease-out;
}

@keyframes cardHover {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.form-control-cari {
display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
}

/* ==================== GALERI INDEX PAGE ==================== */

/* Stats Cards untuk Galeri */
.galeri-section .stats-cards,
.content-section .stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.galeri-section .stat-card,
.content-section .stat-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border-left: 5px solid #667eea;
}

.galeri-section .stat-card:hover,
.content-section .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.galeri-section .stat-card.info,
.content-section .stat-card.info {
  border-left-color: #17a2b8;
}

.galeri-section .stat-card.warning,
.content-section .stat-card.warning {
  border-left-color: #ffc107;
}

.galeri-section .stat-card.success,
.content-section .stat-card.success {
  border-left-color: #28a745;
}

.galeri-section .stat-icon,
.content-section .stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.galeri-section .stat-card.info .stat-icon,
.content-section .stat-card.info .stat-icon {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.galeri-section .stat-card.warning .stat-icon,
.content-section .stat-card.warning .stat-icon {
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

.galeri-section .stat-card.success .stat-icon,
.content-section .stat-card.success .stat-icon {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}

.galeri-section .stat-icon i,
.content-section .stat-icon i {
  font-size: 32px;
  color: white;
}

.galeri-section .stat-number,
.content-section .stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #333;
  margin-bottom: 8px;
  line-height: 1;
}

.galeri-section .stat-label,
.content-section .stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Filter Bar */
.filter-bar {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

/* Photo Item with Link */
.photo-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.photo-item a:hover {
  text-decoration: none;
}

/* Video Grid Active State */
.video-grid.active {
  display: grid;
}

/* Empty State Enhancement */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 100px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.empty-state i {
  font-size: 100px;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.empty-state h4 {
  font-size: 28px;
  font-weight: 700;
  color: #666;
  margin-bottom: 15px;
}

.empty-state p {
  font-size: 16px;
  color: #999;
  max-width: 500px;
  margin: 0 auto;
}

/* Video Modal Enhancements */
.modal-xl {
  max-width: 1200px;
}

.modal-content {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
  cursor: pointer;
  transition: all 0.3s;
}

.video-thumbnail:hover {
  transform: scale(1.02);
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.15);
  background: rgba(255, 255, 255, 1);
}

/* Photo Overlay Link Style */
.photo-overlay h6 a {
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.photo-overlay h6 a:hover {
  text-decoration: underline;
}

/* Pagination Enhancement */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination-wrapper .pagination {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-wrapper .page-item {
  list-style: none;
}

.pagination-wrapper .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0 15px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  color: #666;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination-wrapper .page-link:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
}

.pagination-wrapper .page-item.active .page-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.pagination-wrapper .page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Loading State for Livewire */
[wire\:loading] {
  opacity: 0.6;
  pointer-events: none;
}

/* Tab Transition */
.galeri-tab {
  transition: all 0.3s ease;
}

.photo-grid,
.video-grid {
  animation: fadeIn 0.5s ease-in-out;
}

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

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 25px;
  }

  .stat-number {
    font-size: 36px;
  }

  .filter-bar {
    padding: 20px;
  }

  .galeri-tabs {
    flex-direction: column;
  }

  .galeri-tab {
    width: 100%;
    justify-content: center;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .photo-item {
    height: 200px;
  }

  .empty-state {
    padding: 60px 20px;
  }

  .empty-state i {
    font-size: 70px;
  }

  .empty-state h4 {
    font-size: 22px;
  }

  .modal-xl {
    max-width: 95%;
    margin: 10px;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 28px;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-icon i {
    font-size: 28px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 13px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .photo-item {
    height: 150px;
  }

  .pagination-wrapper .page-link {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ==================== PRINT STYLES ==================== */

@media print {
  .page-header,
  .filter-bar,
  .pagination-wrapper {
    display: none !important;
  }

  .photo-grid,
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .photo-overlay,
  .zoom-icon,
  .play-button {
    display: none !important;
  }
}
/* Photo Overlay dengan Link Support */
.photo-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  height: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.photo-item > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.photo-item:hover img {
  transform: scale(1.1);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.photo-item:hover .photo-overlay {
  transform: translateY(0);
}

.photo-overlay h6 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.photo-overlay .meta {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.photo-overlay .meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.photo-overlay .meta i {
  font-size: 12px;
}

.zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  color: #667eea;
  z-index: 2;
}

.photo-item:hover .zoom-icon {
  opacity: 1;
}
/* ==================== DOKUMEN TABLE STYLE ==================== */

/* Kategori Section */
.kategori-section {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

/* Kategori Header */
.kategori-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 25px 30px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.kategori-title {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.kategori-title i {
  font-size: 28px;
}

.kategori-title h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  flex: 1;
}

.kategori-count {
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Table Responsive */
.table-responsive {
  overflow-x: auto;
}

/* Dokumen Table */
.dokumen-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.dokumen-table thead {
  background: #f8f9fa;
}

.dokumen-table thead th {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 13px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e0e0e0;
  white-space: nowrap;
}

.dokumen-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.dokumen-table tbody tr:hover {
  background: #f8f9fa;
}

.dokumen-table tbody tr:last-child {
  border-bottom: none;
}

.dokumen-table tbody td {
  padding: 20px;
  font-size: 14px;
  color: #666;
  vertical-align: middle;
}

/* File Badge */
.file-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.file-badge i {
  font-size: 14px;
}

.file-badge-pdf {
  background: #fff0f0;
  color: #dc3545;
}

.file-badge-doc,
.file-badge-docx {
  background: #e6f2ff;
  color: #0066cc;
}

.file-badge-xls,
.file-badge-xlsx {
  background: #e6f9f0;
  color: #28a745;
}

.file-badge-ppt,
.file-badge-pptx {
  background: #fff3e6;
  color: #ff6b35;
}

/* Dokumen Info */
.dokumen-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dokumen-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  display: block;
}

.dokumen-desc {
  color: #999;
  font-size: 13px;
  line-height: 1.5;
  display: block;
}

/* Button Group Action */
.btn-group-action {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.btn-action {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.btn-download-small {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-download-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-preview-small {
  background: #f8f9fa;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-preview-small:hover {
  background: #667eea;
  color: white;
}

.btn-action:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 100px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.empty-state i {
  font-size: 100px;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.empty-state h4 {
  font-size: 28px;
  font-weight: 700;
  color: #666;
  margin-bottom: 15px;
}

.empty-state p {
  font-size: 16px;
  color: #999;
  max-width: 500px;
  margin: 0 auto;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 992px) {
  .kategori-title h3 {
    font-size: 20px;
  }

  .kategori-title i {
    font-size: 24px;
  }

  .dokumen-table thead th {
    padding: 15px;
    font-size: 12px;
  }

  .dokumen-table tbody td {
    padding: 15px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .kategori-header {
    padding: 20px;
  }

  .kategori-title {
    flex-wrap: wrap;
  }

  .kategori-title h3 {
    font-size: 18px;
    width: 100%;
  }

  .kategori-count {
    font-size: 12px;
    padding: 4px 12px;
  }

  /* Mobile: Hide less important columns */
  .dokumen-table thead th:nth-child(6),
  .dokumen-table tbody td:nth-child(6) {
    display: none;
  }

  .dokumen-table thead th,
  .dokumen-table tbody td {
    padding: 12px 10px;
    font-size: 12px;
  }

  .dokumen-name {
    font-size: 14px;
  }

  .dokumen-desc {
    font-size: 12px;
  }

  .btn-action {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }

  .btn-group-action {
    gap: 6px;
  }
}

@media (max-width: 576px) {
  /* Very small screens: Show only essential info */
  .dokumen-table thead th:nth-child(5),
  .dokumen-table tbody td:nth-child(5) {
    display: none;
  }

  .kategori-header {
    padding: 15px;
  }

  .kategori-title i {
    font-size: 20px;
  }

  .kategori-title h3 {
    font-size: 16px;
  }

  .dokumen-table thead th,
  .dokumen-table tbody td {
    padding: 10px 8px;
  }

  .file-badge {
    padding: 4px 8px;
    font-size: 10px;
  }

  .file-badge i {
    font-size: 12px;
  }
}

/* ==================== ANIMATIONS ==================== */

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kategori-section {
  animation: slideDown 0.5s ease-out;
}

.dokumen-table tbody tr {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Loading State */
[wire\:loading] {
  opacity: 0.6;
  pointer-events: none;
}
/* ==================== MODAL PREVIEW STYLING ==================== */

/* Modal Backdrop */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

/* Modal Dialog */
.modal-dialog {
  max-width: 1200px;
}

.modal-xl {
  max-width: 1400px;
}

/* Modal Content */
.modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Modal Header */
.modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 25px 30px;
  border-bottom: none;
}

.modal-title-wrapper {
  flex: 1;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  color: white;
}

.modal-title i {
  font-size: 24px;
}

.modal-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.modal-subtitle .badge {
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.modal-subtitle .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s;
}

.modal-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
  padding: 40px;
  max-height: 70vh;
  overflow-y: auto;
  background: #f8f9fa;
}

.document-preview {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
  color: #333;
  font-size: 15px;
}

.document-preview h1,
.document-preview h2,
.document-preview h3,
.document-preview h4,
.document-preview h5,
.document-preview h6 {
  color: #1e3c72;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.document-preview h1 {
  font-size: 28px;
}

.document-preview h2 {
  font-size: 24px;
}

.document-preview h3 {
  font-size: 20px;
}

.document-preview p {
  margin-bottom: 15px;
  text-align: justify;
}

.document-preview ul,
.document-preview ol {
  margin: 15px 0;
  padding-left: 30px;
}

.document-preview li {
  margin-bottom: 8px;
}

.document-preview strong {
  color: #1e3c72;
  font-weight: 600;
}

.document-preview em {
  font-style: italic;
  color: #666;
}

.document-preview a {
  color: #667eea;
  text-decoration: underline;
}

.document-preview a:hover {
  color: #764ba2;
}

.document-preview blockquote {
  border-left: 4px solid #667eea;
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: #666;
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 0 10px 10px 0;
}

.document-preview table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.document-preview table th,
.document-preview table td {
  border: 1px solid #e0e0e0;
  padding: 12px;
  text-align: left;
}

.document-preview table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
}

.document-preview table tr:hover {
  background: #f8f9fa;
}

.document-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.document-preview code {
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: #dc3545;
  font-size: 14px;
}

.document-preview pre {
  background: #2d2d2d;
  color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 20px 0;
}

.document-preview pre code {
  background: none;
  color: inherit;
  padding: 0;
}

/* Custom Scrollbar for Modal Body */
.modal-body::-webkit-scrollbar {
  width: 10px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Modal Footer */
.modal-footer {
  padding: 20px 30px;
  border-top: 1px solid #e0e0e0;
  background: white;
}

.modal-footer .btn {
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s;
}

.modal-footer .btn-secondary {
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  color: #666;
}

.modal-footer .btn-secondary:hover {
  background: #e0e0e0;
  border-color: #ccc;
  color: #333;
}

.modal-footer .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
}

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

/* Modal Animation */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: scale(0.9);
}

.modal.show .modal-dialog {
  transform: scale(1);
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
  .modal-xl {
    max-width: 95%;
    margin: 10px auto;
  }
}

@media (max-width: 768px) {
  .modal-dialog {
    max-width: 95%;
    margin: 10px auto;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-title {
    font-size: 18px;
  }

  .modal-title i {
    font-size: 20px;
  }

  .modal-body {
    padding: 25px 20px;
  }

  .document-preview {
    padding: 25px;
    font-size: 14px;
  }

  .document-preview h1 {
    font-size: 24px;
  }

  .document-preview h2 {
    font-size: 20px;
  }

  .document-preview h3 {
    font-size: 18px;
  }

  .modal-footer {
    padding: 15px 20px;
    flex-direction: column;
    gap: 10px;
  }

  .modal-footer .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .modal-title-wrapper {
    padding-right: 30px;
  }

  .modal-subtitle {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .document-preview {
    padding: 20px;
  }

  .modal-body {
    max-height: 60vh;
  }
}

/* Fix for Livewire modal issues */
.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* Ensure z-index is correct */
.modal {
  z-index: 1055;
}

.modal-backdrop {
  z-index: 1050;
}

/* Fix for multiple modals */
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-backdrop + .modal-backdrop {
  display: none;
}
/* ==================== CONTACT PAGE ==================== */

/* Contact Info Cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.contact-info-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border-top: 4px solid #667eea;
}

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

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s;
}

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

.contact-icon i {
  font-size: 32px;
  color: white;
}

.contact-info-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.contact-info-card a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-info-card a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.contact-form-header i {
  font-size: 48px;
  color: #667eea;
  margin-bottom: 15px;
}

.contact-form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.contact-form-header p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* Form Elements */
.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-size: 14px;
  display: block;
}

.required {
  color: #dc3545;
  font-weight: 700;
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  padding: 14px 20px;
  transition: all 0.3s;
  font-size: 14px;
  width: 100%;
}

.form-control:focus,
.form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15);
  outline: none;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
}

.char-counter {
  text-align: right;
  color: #999;
  font-size: 13px;
  margin-top: 5px;
}

/* Submit Button */
.btn-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Map Container */
.map-container {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Social Media Card */
.social-media-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.social-media-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 14px;
}

.social-link i {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
}

.social-link.facebook {
  background: #e7f3ff;
  color: #1877f2;
}

.social-link.facebook i {
  background: #1877f2;
}

.social-link.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-link.twitter {
  background: #e8f5fd;
  color: #1da1f2;
}

.social-link.twitter i {
  background: #1da1f2;
}

.social-link.twitter:hover {
  background: #1da1f2;
  color: white;
}

.social-link.instagram {
  background: #fce4ec;
  color: #e4405f;
}

.social-link.instagram i {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-link.youtube {
  background: #ffebee;
  color: #ff0000;
}

.social-link.youtube i {
  background: #ff0000;
}

.social-link.youtube:hover {
  background: #ff0000;
  color: white;
}

/* Quick Links Card */
.quick-links-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.quick-links-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

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

.quick-links-list li {
  margin-bottom: 12px;
}

.quick-links-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: all 0.3s;
  background: #f8f9fa;
}

.quick-links-list a i {
  color: #667eea;
  font-size: 12px;
}

.quick-links-list a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateX(5px);
}

.quick-links-list a:hover i {
  color: white;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-card {
    padding: 30px 20px;
  }

  .contact-icon {
    width: 70px;
    height: 70px;
  }

  .contact-icon i {
    font-size: 28px;
  }

  .contact-form-card {
    padding: 30px 25px;
  }

  .contact-form-header h3 {
    font-size: 24px;
  }

  .contact-form-header i {
    font-size: 40px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .contact-info-card {
    padding: 25px 20px;
  }

  .contact-form-card {
    padding: 25px 20px;
  }

  .btn-submit {
    width: 100%;
    padding: 14px 30px;
  }
}

/* ==================== ANIMATIONS ==================== */

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

.contact-info-card,
.contact-form-card,
.social-media-card,
.quick-links-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading State */
[wire\:loading] {
  opacity: 0.6;
  pointer-events: none;
}
/* ==================== LAYANAN PAGE ==================== */

/* Search Bar Layanan */
.search-bar-layanan {
  max-width: 700px;
  margin: 0 auto 50px;
  position: relative;
  background: white;
  border-radius: 50px;
  padding: 8px 60px 8px 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.search-icon {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 20px;
}

.search-input-layanan {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 15px 0;
  color: #333;
}

.search-input-layanan::placeholder {
  color: #999;
}

.clear-search {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #f8f9fa;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  color: #666;
}

.clear-search:hover {
  background: #e0e0e0;
  color: #333;
}

/* Layanan Grid */
.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Layanan Card */
.layanan-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

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

/* Layanan Image */
.layanan-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.layanan-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.layanan-placeholder i {
  font-size: 80px;
  color: white;
  opacity: 0.8;
}

/* Layanan Overlay */
.layanan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: all 0.3s;
}

.layanan-card:hover .layanan-overlay {
  opacity: 1;
}

.btn-detail-layanan {
  background: white;
  color: #667eea;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  transform: translateY(20px);
}

.layanan-card:hover .btn-detail-layanan {
  transform: translateY(0);
}

.btn-detail-layanan:hover {
  background: #667eea;
  color: white;
}

/* Layanan Content */
.layanan-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.layanan-icon-small {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.layanan-icon-small i {
  font-size: 28px;
  color: white;
}

.layanan-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.layanan-title a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.layanan-title a:hover {
  color: #667eea;
}

.layanan-description {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.layanan-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.layanan-link:hover {
  color: #764ba2;
  gap: 8px;
}

/* ==================== LAYANAN DETAIL PAGE ==================== */

/* Layanan Detail Card */
.layanan-detail-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

/* Featured Image */
.layanan-featured-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.layanan-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layanan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Detail Content */
.layanan-detail-content {
  padding: 40px;
}

/* Detail Header */
.detail-header {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon i {
  font-size: 38px;
  color: white;
}

.detail-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1e3c72;
  margin-bottom: 10px;
}

.detail-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Detail Description */
.detail-description {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
}

.detail-description h3,
.detail-description h4,
.detail-description h5 {
  color: #1e3c72;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.detail-description p {
  margin-bottom: 15px;
}

.detail-description ul,
.detail-description ol {
  margin: 15px 0;
  padding-left: 30px;
}

.detail-description li {
  margin-bottom: 10px;
}

/* Features Grid */
.detail-features {
  background: #f8f9fa;
  padding: 35px;
  border-radius: 15px;
  margin-bottom: 35px;
}

.detail-features h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 25px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
}

.feature-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* CTA Buttons */
.detail-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 16px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
}

.btn-cta-secondary {
  background: white;
  border: 2px solid #667eea;
  color: #667eea;
}

.btn-cta-secondary:hover {
  background: #667eea;
  color: white;
}

/* Info Box Layanan */
.info-box-layanan {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.info-box-layanan h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.info-list .info-item {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-list .info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-list .info-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.info-list .info-item strong {
  display: block;
  color: #333;
  margin-bottom: 5px;
  font-size: 14px;
}

.info-list .info-item p {
  color: #666;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* Related Layanan Box */
.related-layanan-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.related-layanan-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.related-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  background: #f8f9fa;
  margin-bottom: 15px;
}

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

.related-item:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: translateX(5px);
}

.related-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.related-icon i {
  font-size: 22px;
  color: #667eea;
}

.related-item:hover .related-icon i {
  color: #667eea;
}

.related-info {
  flex: 1;
}

.related-info h5 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.related-item:hover .related-info h5 {
  color: white;
}

.related-info p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.related-item:hover .related-info p {
  color: rgba(255, 255, 255, 0.9);
}

.related-item > i {
  color: #999;
  font-size: 16px;
}

.related-item:hover > i {
  color: white;
}

/* Help Box */
.help-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.help-icon {
  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 20px;
}

.help-icon i {
  font-size: 36px;
  color: white;
}

.help-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.help-box p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.95;
}

.btn-help {
  background: white;
  color: #667eea;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.btn-help:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #667eea;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
  .layanan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .search-bar-layanan {
    padding: 8px 50px 8px 50px;
  }

  .search-input-layanan {
    font-size: 14px;
    padding: 12px 0;
  }

  .layanan-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .layanan-image {
    height: 200px;
  }

  .layanan-content {
    padding: 25px;
  }

  .layanan-featured-image {
    height: 300px;
  }

  .layanan-detail-content {
    padding: 30px 25px;
  }

  .detail-header {
    flex-direction: column;
    gap: 20px;
  }

  .detail-header h2 {
    font-size: 26px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .detail-cta {
    flex-direction: column;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .layanan-image {
    height: 180px;
  }

  .layanan-icon-small {
    width: 50px;
    height: 50px;
  }

  .layanan-icon-small i {
    font-size: 24px;
  }

  .layanan-title {
    font-size: 18px;
  }

  .detail-icon {
    width: 70px;
    height: 70px;
  }

  .detail-icon i {
    font-size: 32px;
  }

  .detail-header h2 {
    font-size: 22px;
  }

  .detail-features {
    padding: 25px 20px;
  }
}

/* ==================== ANIMATIONS ==================== */

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

.layanan-card {
  animation: fadeInUp 0.6s ease-out;
}
/* ==================== AGENDA PAGE ==================== */

/* View Mode Tabs */
.view-mode-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.view-tab {
  padding: 14px 28px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.view-tab:hover {
  border-color: #667eea;
  color: #667eea;
}

.view-tab.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  color: white;
}

/* Agenda Grid */
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Agenda Card */
.agenda-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  position: relative;
}

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

.agenda-card.past-event {
  opacity: 0.7;
}

/* Date Badge */
.agenda-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 70px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  text-align: center;
  color: white;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
}

.date-day {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
}

.date-month {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.date-year {
  font-size: 11px;
  opacity: 0.9;
}

/* Status Badge */
.status-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.status-badge.today {
  background: #ffc107;
  color: #fff;
}

.status-badge.completed {
  background: #28a745;
  color: #fff;
}

.status-badge.upcoming {
  background: #667eea;
  color: #fff;
}

/* Agenda Image */
.agenda-image {
  height: 220px;
  overflow: hidden;
}

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

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

/* Agenda Content */
.agenda-content {
  padding: 120px 25px 25px 25px;
  margin-top: -80px;
}

.agenda-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.agenda-title a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.agenda-title a:hover {
  color: #667eea;
}

.agenda-description {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Agenda Meta */
.agenda-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
}

.meta-item i {
  width: 18px;
  color: #667eea;
  font-size: 14px;
}

/* Button Detail Agenda */
.btn-detail-agenda {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-detail-agenda:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  color: white;
}

/* ==================== AGENDA DETAIL PAGE ==================== */

/* Agenda Detail Card */
.agenda-detail-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

/* Featured Image */
.agenda-featured-image {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.agenda-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agenda-status-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.agenda-status-overlay.today {
  background: #ffc107;
  color: #fff;
}

.agenda-status-overlay.completed {
  background: #28a745;
  color: #fff;
}

.agenda-status-overlay.upcoming {
  background: #667eea;
  color: #fff;
}

/* Agenda Detail Content */
.agenda-detail-content {
  padding: 40px;
}

.agenda-detail-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1e3c72;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Event Info Grid */
.event-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.event-info-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s;
}

.event-info-item:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.event-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-icon i {
  font-size: 22px;
  color: white;
}

.event-text strong {
  display: block;
  color: #999;
  font-size: 13px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-text p {
  color: #333;
  font-weight: 600;
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

/* Event Description */
.event-description {
  margin-bottom: 35px;
}

.event-description h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.description-content {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  line-height: 1.8;
  color: #444;
  font-size: 15px;
}

/* Event Actions */
.event-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-action {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-action.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

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

.btn-action.secondary {
  background: white;
  border: 2px solid #667eea;
  color: #667eea;
}

.btn-action.secondary:hover {
  background: #667eea;
  color: white;
}

.btn-action.tertiary {
  background: #f8f9fa;
  color: #666;
}

.btn-action.tertiary:hover {
  background: #e0e0e0;
  color: #333;
}

/* Countdown Card */
.countdown-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  text-align: center;
}

.countdown-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-display {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 30px;
  border-radius: 15px;
  color: white;
}

.countdown-display.today {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.countdown-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-icon i {
  font-size: 28px;
  animation: pulse 2s ease-in-out infinite;
}

.countdown-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.countdown-text p {
  font-size: 14px;
  opacity: 0.95;
  margin: 0;
}

.countdown-number {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.countdown-label {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.countdown-detail {
  font-size: 14px;
  opacity: 0.95;
}

/* Info Box Agenda */
.info-box-agenda {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.info-box-agenda h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.contact-info-list .contact-item {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-list .contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-list .contact-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.contact-info-list .contact-item strong {
  display: block;
  color: #999;
  margin-bottom: 5px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-list .contact-item p {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* Related Agenda Box */
.related-agenda-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.related-agenda-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.related-agenda-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  background: #f8f9fa;
  margin-bottom: 15px;
}

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

.related-agenda-item:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: translateX(5px);
}

.related-date-mini {
  width: 55px;
  height: 60px;
  background: white;
  border-radius: 10px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.mini-day {
  font-size: 22px;
  font-weight: 800;
  color: #667eea;
  line-height: 1;
}

.mini-month {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
}

.related-info {
  flex: 1;
}

.related-info h5 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.3;
}

.related-agenda-item:hover .related-info h5 {
  color: white;
}

.related-info p {
  font-size: 12px;
  color: #666;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.related-agenda-item:hover .related-info p {
  color: rgba(255, 255, 255, 0.9);
}

.related-agenda-item > i {
  color: #999;
  font-size: 16px;
}

.related-agenda-item:hover > i {
  color: white;
}

/* ==================== ANIMATIONS ==================== */

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
  .agenda-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .view-mode-tabs {
    flex-direction: column;
  }

  .view-tab {
    width: 100%;
    justify-content: center;
  }

  .agenda-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .agenda-image {
    height: 200px;
  }

  .agenda-content {
    padding: 100px 20px 20px 20px;
  }

  .agenda-featured-image {
    height: 300px;
  }

  .agenda-detail-content {
    padding: 30px 25px;
  }

  .agenda-detail-content h2 {
    font-size: 26px;
  }

  .event-info-item {
    padding: 20px;
  }

  .event-actions {
    flex-direction: column;
  }

  .btn-action {
    width: 100%;
    justify-content: center;
  }

  .countdown-number {
    font-size: 56px;
  }
}

@media (max-width: 576px) {
  .agenda-date-badge {
    width: 60px;
    height: 70px;
    top: 15px;
    left: 15px;
  }

  .date-day {
    font-size: 24px;
  }

  .date-month {
    font-size: 11px;
  }

  .status-badge {
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .agenda-title {
    font-size: 18px;
  }

  .agenda-detail-content h2 {
    font-size: 22px;
  }

  .event-icon {
    width: 45px;
    height: 45px;
  }

  .event-icon i {
    font-size: 20px;
  }

  .countdown-display.today {
    flex-direction: column;
    text-align: center;
  }
}
/* ==================== STAFF GRID SIMPLE (4 KOLOM) ==================== */

.staff-grid-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Staff Card Simple */
.staff-card-simple {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.staff-card-simple:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.staff-card-simple a {
  text-decoration: none;
  color: inherit;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.staff-card-simple img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid #f0f0f0;
  transition: all 0.3s;
}

.staff-card-simple:hover img {
  border-color: #667eea;
  transform: scale(1.05);
}

.staff-card-simple h6 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: all 0.3s;
}

.staff-card-simple:hover h6 {
  color: #667eea;
}

.staff-position {
  font-size: 14px;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 8px;
}

.staff-bidang {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
  flex: 1;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #667eea;
  color: white;
  transform: translateY(-3px);
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
  .staff-grid-simple {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .staff-grid-simple {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .staff-card-simple {
    padding: 25px 15px;
  }

  .staff-card-simple img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .staff-grid-simple {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .staff-card-simple h6 {
    font-size: 16px;
  }
}

/* ==================== ANIMATIONS ==================== */

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

.staff-card-simple {
  animation: fadeInUp 0.6s ease-out;
}
/* ==================== STRUKTUR ORGANISASI PAGE ==================== */

/* Organizational Chart Container */
.org-chart-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
}

/* Org Level 1 - Top Level */
.org-level-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

/* Org Card */
.org-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.3s;
  min-width: 280px;
  border: 3px solid transparent;
}

.org-card.kepala {
  border-color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.org-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.org-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Org Photo */
.org-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #667eea;
  flex-shrink: 0;
}

.org-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Org Info */
.org-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.3;
}

.org-position {
  font-size: 13px;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 3px;
}

.org-bidang {
  font-size: 12px;
  color: #999;
  margin-bottom: 3px;
}

.org-nip {
  font-size: 11px;
  color: #999;
  margin: 0;
}

/* Org Connector */
.org-connector {
  width: 3px;
  height: 40px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  margin: 15px 0;
}

.org-connector-small {
  width: 2px;
  height: 30px;
  background: #e0e0e0;
  margin: 10px auto;
}

/* Org Level 2 */
.org-level-2 {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.org-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Org Level 3 */
.org-level-3 {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

/* Small Org Card */
.org-card-small {
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  max-width: 200px;
}

.org-card-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.org-card-small .org-link {
  flex-direction: column;
  text-align: center;
}

.org-photo-small {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e0e0e0;
  margin: 0 auto 10px;
}

.org-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.org-info-small h5 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 3px;
  line-height: 1.3;
}

.org-info-small p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* ==================== PEGAWAI GRID VIEW ==================== */

.pegawai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Pegawai Card */
.pegawai-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

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

/* Pegawai Photo */
.pegawai-photo {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.pegawai-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.pegawai-card:hover .pegawai-photo img {
  transform: scale(1.1);
}

/* Pegawai Overlay */
.pegawai-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: all 0.3s;
}

.pegawai-card:hover .pegawai-overlay {
  opacity: 1;
}

.btn-view-profile {
  background: white;
  color: #667eea;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(20px);
}

.pegawai-card:hover .btn-view-profile {
  transform: translateY(0);
}

.btn-view-profile:hover {
  background: #667eea;
  color: white;
}

/* Pegawai Info */
.pegawai-info {
  padding: 25px;
  text-align: center;
}

.pegawai-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
}

.pegawai-position {
  font-size: 14px;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 8px;
}

.pegawai-bidang {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.pegawai-nip {
  font-size: 12px;
  color: #999;
  margin-bottom: 15px;
}

/* Pegawai Social */
.pegawai-social {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.pegawai-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}

.pegawai-social a:hover {
  background: #667eea;
  color: white;
  transform: translateY(-3px);
}

/* ==================== PROFILE DETAIL PAGE ==================== */

/* Profile Card */
.profile-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.profile-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 30px;
  text-align: center;
  color: white;
}

.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.3);
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.profile-position {
  font-size: 16px;
  margin-bottom: 5px;
  opacity: 0.95;
}

.profile-bidang {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* Profile Quick Info */
.profile-quick-info {
  padding: 30px;
}

.quick-info-item {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}

.quick-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.quick-info-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.quick-info-item strong {
  display: block;
  color: #999;
  margin-bottom: 5px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-info-item p {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* Profile Social */
.profile-social {
  padding: 30px;
  border-top: 1px solid #f0f0f0;
}

.profile-social h4 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.social-links-profile {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link-item {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: all 0.3s;
}

.social-link-item.facebook {
  background: #1877f2;
}

.social-link-item.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-item.twitter {
  background: #1da1f2;
}

.social-link-item.youtube {
  background: #ff0000;
}

.social-link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Detail Card */
.detail-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.detail-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

/* Detail Grid */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.detail-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
}

.detail-item.full-width {
  grid-column: 1 / -1;
}

.detail-item strong {
  display: block;
  color: #999;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-item p {
  color: #333;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

/* Org Relation */
.org-relation {
  margin-bottom: 30px;
}

.org-relation:last-child {
  margin-bottom: 0;
}

.org-relation h5 {
  font-size: 16px;
  font-weight: 700;
  color: #666;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

/* Relation Card */
.relation-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.relation-card:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: translateX(5px);
}

.relation-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  flex-shrink: 0;
}

.relation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.relation-info {
  flex: 1;
}

.relation-info h6 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.relation-card:hover .relation-info h6 {
  color: white;
}

.relation-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.relation-card:hover .relation-info p {
  color: rgba(255, 255, 255, 0.9);
}

.relation-card > i {
  color: #999;
  font-size: 18px;
}

.relation-card:hover > i {
  color: white;
}

/* Relation Grid */
.relation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.relation-card-small {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.relation-card-small:hover {
  background: #667eea;
  transform: translateY(-3px);
}

.relation-photo-small {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
  flex-shrink: 0;
}

.relation-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.relation-info-small h6 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 3px;
  line-height: 1.3;
}

.relation-card-small:hover .relation-info-small h6 {
  color: white;
}

.relation-info-small p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.relation-card-small:hover .relation-info-small p {
  color: rgba(255, 255, 255, 0.9);
}

/* Back Button */
.btn-back {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  background: #f8f9fa;
  color: #666;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-back:hover {
  background: #667eea;
  color: white;
  transform: translateY(-3px);
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
  .pegawai-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .org-level-2 {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .pegawai-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .org-chart-container {
    padding: 30px 20px;
  }

  .org-card {
    min-width: 250px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pegawai-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .org-level-2 {
    flex-direction: column;
    align-items: center;
  }

  .org-card {
    min-width: auto;
    width: 100%;
  }

  .org-link {
    flex-direction: column;
    text-align: center;
  }

  .org-photo {
    margin: 0 auto 15px;
  }

  .profile-header {
    padding: 30px 20px;
  }

  .profile-photo {
    width: 120px;
    height: 120px;
  }

  .detail-card {
    padding: 25px 20px;
  }

  .relation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .org-card-small {
    max-width: none;
    width: 100%;
  }

  .org-level-3 {
    flex-direction: column;
    width: 100%;
  }

  .social-links-profile {
    justify-content: center;
  }
}
/* ==================== VISI MISI PAGE ==================== */

/* Section Title */
.section-title-vm {
  font-size: 36px;
  font-weight: 800;
  color: #1e3c72;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title-vm::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* ==================== VISI SECTION ==================== */

.visi-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 50px;
  border-radius: 30px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.visi-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.visi-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.visi-icon i {
  font-size: 48px;
  color: white;
}

.visi-section .section-title-vm {
  color: white;
  margin-bottom: 50px;
}

.visi-section .section-title-vm::after {
  background: rgba(255, 255, 255, 0.5);
}

.visi-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.visi-content p {
  font-size: 24px;
  line-height: 1.8;
  color: white;
  text-align: center;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quote-mark-top,
.quote-mark-bottom {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.3);
}

.quote-mark-top {
  text-align: left;
  margin-bottom: 20px;
}

.quote-mark-bottom {
  text-align: right;
  margin-top: 20px;
}

/* ==================== MISI SECTION ==================== */

.misi-section {
  margin-bottom: 60px;
}

.misi-header {
  text-align: center;
  margin-bottom: 50px;
}

.misi-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.misi-icon i {
  font-size: 48px;
  color: white;
}

/* Misi Grid */
.misi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Misi Card */
.misi-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.misi-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.misi-card:hover::before {
  transform: scaleY(1);
}

.misi-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Misi Number */
.misi-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s;
}

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

.misi-number span {
  font-size: 32px;
  font-weight: 800;
  color: white;
}

/* Misi Content */
.misi-content-card {
  flex: 1;
}

.misi-content-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 12px;
  line-height: 1.4;
}

.misi-content-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* Misi Decoration */
.misi-decoration {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
  transition: all 0.3s;
}

.misi-card:hover .misi-decoration {
  opacity: 1;
  transform: scale(1.2);
}

.misi-decoration i {
  font-size: 30px;
  color: #28a745;
}

/* ==================== VALUES SECTION ==================== */

.values-section {
  background: #f8f9fa;
  padding: 60px 50px;
  border-radius: 30px;
}

.values-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1e3c72;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Value Card */
.value-card {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

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

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s;
}

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

.value-icon i {
  font-size: 36px;
  color: white;
}

.value-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .visi-section {
    padding: 50px 40px;
  }

  .visi-content {
    padding: 40px 30px;
  }

  .visi-content p {
    font-size: 20px;
  }

  .values-section {
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .section-title-vm {
    font-size: 28px;
  }

  .visi-section {
    padding: 40px 25px;
  }

  .visi-icon,
  .misi-icon {
    width: 80px;
    height: 80px;
  }

  .visi-icon i,
  .misi-icon i {
    font-size: 36px;
  }

  .visi-content {
    padding: 30px 25px;
  }

  .visi-content p {
    font-size: 18px;
  }

  .quote-mark-top,
  .quote-mark-bottom {
    font-size: 40px;
  }

  .misi-card {
    flex-direction: column;
    padding: 30px 25px;
  }

  .misi-number {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .misi-number span {
    font-size: 28px;
  }

  .misi-content-card {
    text-align: center;
  }

  .misi-decoration {
    display: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .values-section {
    padding: 40px 25px;
  }
}

@media (max-width: 576px) {
  .section-title-vm {
    font-size: 24px;
  }

  .visi-section {
    padding: 30px 20px;
  }

  .visi-content {
    padding: 25px 20px;
  }

  .visi-content p {
    font-size: 16px;
  }

  .misi-card {
    padding: 25px 20px;
  }

  .misi-content-card h4 {
    font-size: 18px;
  }

  .misi-content-card p {
    font-size: 14px;
  }

  .value-card {
    padding: 30px 20px;
  }
}

/* ==================== ANIMATIONS ==================== */

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

.visi-section,
.misi-section,
.values-section {
  animation: fadeInUp 0.8s ease-out;
}

/* Pulse Animation for Icons */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.visi-icon,
.misi-icon {
  animation: pulse 3s ease-in-out infinite;
}
/* ==================== TUGAS FUNGSI SINGLE PAGE ==================== */

/* TF Single Card */
.tf-single-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

/* TF Single Thumb */
.tf-single-thumb {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.tf-single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tf-single-card:hover .tf-single-thumb img {
  transform: scale(1.05);
}

.tf-single-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.tf-single-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #667eea;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* TF Single Content */
.tf-single-content {
  padding: 50px;
}

/* TF Single Header */
.tf-single-header {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 3px solid #f0f0f0;
}

.tf-single-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.tf-single-icon i {
  font-size: 42px;
  color: white;
}

.tf-single-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1e3c72;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.tf-subtitle {
  font-size: 16px;
  color: #667eea;
  font-weight: 600;
  margin: 0;
}

/* TF Single Body */
.tf-single-body {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 40px;
}

.tf-single-body h3,
.tf-single-body h4,
.tf-single-body h5 {
  color: #1e3c72;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.tf-single-body h3 {
  font-size: 24px;
}

.tf-single-body h4 {
  font-size: 20px;
}

.tf-single-body h5 {
  font-size: 18px;
}

.tf-single-body p {
  margin-bottom: 20px;
}

.tf-single-body ul,
.tf-single-body ol {
  margin: 20px 0;
  padding-left: 30px;
}

.tf-single-body li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.tf-single-body strong {
  color: #1e3c72;
  font-weight: 700;
}

/* TF Info Card Bottom */
.tf-info-card-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 20px;
  border: 2px solid rgba(102, 126, 234, 0.1);
}

.tf-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.tf-info-icon-bottom {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tf-info-icon-bottom i {
  font-size: 28px;
  color: white;
}

.tf-info-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
  margin: 5px 0 8px 0;
}

.tf-info-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* TF Single CTA */
.tf-single-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cta-tf,
.btn-secondary-tf {
  padding: 16px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.btn-cta-tf {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-cta-tf:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  color: white;
}

.btn-secondary-tf {
  background: white;
  border: 2px solid #667eea;
  color: #667eea;
}

.btn-secondary-tf:hover {
  background: #667eea;
  color: white;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
  .tf-info-card-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .tf-single-thumb {
    height: 350px;
  }

  .tf-single-content {
    padding: 40px 35px;
  }

  .tf-single-header {
    flex-direction: column;
    text-align: center;
  }

  .tf-single-icon {
    margin: 0 auto;
  }

  .tf-single-header h2 {
    font-size: 30px;
  }

  .tf-info-card-bottom {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .tf-single-thumb {
    height: 300px;
  }

  .tf-single-overlay {
    padding: 30px 25px;
  }

  .tf-single-badge {
    padding: 12px 20px;
    font-size: 14px;
  }

  .tf-single-content {
    padding: 35px 25px;
  }

  .tf-single-icon {
    width: 75px;
    height: 75px;
  }

  .tf-single-icon i {
    font-size: 36px;
  }

  .tf-single-header h2 {
    font-size: 26px;
  }

  .tf-subtitle {
    font-size: 14px;
  }

  .tf-single-body {
    font-size: 15px;
  }

  .tf-info-card-bottom {
    padding: 25px 20px;
  }

  .tf-info-icon-bottom {
    width: 50px;
    height: 50px;
  }

  .tf-info-icon-bottom i {
    font-size: 24px;
  }

  .tf-info-item h5 {
    font-size: 16px;
  }

  .tf-single-cta {
    flex-direction: column;
  }

  .btn-cta-tf,
  .btn-secondary-tf {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .tf-single-thumb {
    height: 250px;
  }

  .tf-single-content {
    padding: 30px 20px;
  }

  .tf-single-header h2 {
    font-size: 22px;
  }

  .tf-single-body {
    font-size: 14px;
  }

  .tf-single-body h3 {
    font-size: 20px;
  }

  .tf-single-body h4 {
    font-size: 18px;
  }

  .tf-info-card-bottom {
    padding: 20px 15px;
  }

  .tf-info-item {
    flex-direction: column;
    text-align: center;
  }

  .tf-info-icon-bottom {
    margin: 0 auto;
  }
}

/* ==================== ANIMATIONS ==================== */

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

.tf-single-card {
  animation: fadeInUp 0.8s ease-out;
}

/* Pulse Animation for Icon */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.tf-single-icon {
  animation: pulse 3s ease-in-out infinite;
}
/* ==================== TENTANG KAMI PAGE ==================== */

/* About Card */
.about-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

/* About Image Section */
.about-image-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.about-card:hover .about-image-container img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 50px;
}

.about-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 35px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 20px;
  color: #1e3c72;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

/* About Content Section */
.about-content-section {
  padding: 50px;
}

/* About Main Content */
.about-main-content {
  margin-bottom: 30px;
}

.about-header {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 3px solid #f0f0f0;
}

.about-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.about-icon i {
  font-size: 42px;
  color: white;
}

.about-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1e3c72;
  margin: 5px 0 10px 0;
  line-height: 1.3;
}

.about-subtitle {
  font-size: 16px;
  color: #667eea;
  font-weight: 600;
  margin: 0;
}

/* About Description */
.about-description {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.about-description h3,
.about-description h4,
.about-description h5 {
  color: #1e3c72;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-description h3 {
  font-size: 24px;
}

.about-description h4 {
  font-size: 20px;
}

.about-description h5 {
  font-size: 18px;
}

.about-description p {
  margin-bottom: 20px;
}

.about-description ul,
.about-description ol {
  margin: 20px 0;
  padding-left: 30px;
}

.about-description li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.about-description strong {
  color: #1e3c72;
  font-weight: 700;
}

/* About Info Box */
.about-info-box,
.about-social-box,
.about-links-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.about-info-box h4,
.about-social-box h4,
.about-links-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

/* About Info List */
.about-info-list .about-info-item {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}

.about-info-list .about-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-info-list .about-info-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.about-info-list .about-info-item strong {
  display: block;
  color: #999;
  margin-bottom: 5px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-info-list .about-info-item p {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

.about-info-list .about-info-item a {
  color: #667eea;
  text-decoration: none;
  transition: all 0.3s;
}

.about-info-list .about-info-item a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* About Social Links */
.about-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 14px;
}

.about-social-link i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.about-social-link.facebook {
  background: #e7f3ff;
  color: #1877f2;
}

.about-social-link.facebook i {
  background: #1877f2;
}

.about-social-link.facebook:hover {
  background: #1877f2;
  color: white;
}

.about-social-link.twitter {
  background: #e8f5fd;
  color: #1da1f2;
}

.about-social-link.twitter i {
  background: #1da1f2;
}

.about-social-link.twitter:hover {
  background: #1da1f2;
  color: white;
}

.about-social-link.instagram {
  background: #fce4ec;
  color: #e4405f;
}

.about-social-link.instagram i {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.about-social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.about-social-link.youtube {
  background: #ffebee;
  color: #ff0000;
}

.about-social-link.youtube i {
  background: #ff0000;
}

.about-social-link.youtube:hover {
  background: #ff0000;
  color: white;
}

/* About Quick Links */
.about-quick-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-quick-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: #666;
  font-weight: 600;
  font-size: 14px;
  background: #f8f9fa;
  transition: all 0.3s;
}

.about-quick-links a i {
  color: #667eea;
  font-size: 16px;
  width: 20px;
}

.about-quick-links a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateX(5px);
}

.about-quick-links a:hover i {
  color: white;
}

/* About Stats Section */
.about-stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.about-stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.about-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

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

.about-stat-icon i {
  font-size: 36px;
  color: white;
}

.about-stat-card h3 {
  font-size: 42px;
  font-weight: 800;
  color: #1e3c72;
  margin-bottom: 10px;
  line-height: 1;
}

.about-stat-card p {
  font-size: 15px;
  color: #666;
  font-weight: 600;
  margin: 0;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
  .about-stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-image-section {
    height: 400px;
  }

  .about-content-section {
    padding: 40px 35px;
  }

  .about-header {
    flex-direction: column;
    text-align: center;
  }

  .about-icon {
    margin: 0 auto;
  }

  .about-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .about-image-section {
    height: 350px;
  }

  .about-image-overlay {
    padding: 30px 25px;
  }

  .about-badge {
    padding: 15px 25px;
    font-size: 16px;
  }

  .about-content-section {
    padding: 35px 25px;
  }

  .about-icon {
    width: 75px;
    height: 75px;
  }

  .about-icon i {
    font-size: 36px;
  }

  .about-header h2 {
    font-size: 26px;
  }

  .about-subtitle {
    font-size: 14px;
  }

  .about-description {
    font-size: 15px;
  }

  .about-info-box,
  .about-social-box,
  .about-links-box {
    padding: 25px 20px;
  }

  .about-stats-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .about-image-section {
    height: 300px;
  }

  .about-badge {
    font-size: 14px;
    padding: 12px 20px;
  }

  .about-content-section {
    padding: 30px 20px;
  }

  .about-header h2 {
    font-size: 22px;
  }

  .about-description {
    font-size: 14px;
  }

  .about-stat-card {
    padding: 30px 20px;
  }

  .about-stat-card h3 {
    font-size: 36px;
  }
}

/* ==================== ANIMATIONS ==================== */

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

.about-card {
  animation: fadeInUp 0.8s ease-out;
}

/* Pulse Animation for Icons */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.about-icon,
.about-stat-icon {
  animation: pulse 3s ease-in-out infinite;
}
/* ==================== FOOTER FIX - ALL TEXT WHITE ==================== */

.footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-title {
  color: white !important;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: white !important;
  transform: translateX(5px);
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact i {
  color: white !important;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2) !important;
  margin: 40px 0 30px;
}

.footer-copyright,
.footer-visitor {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px;
  margin: 0;
}

.footer-visitor strong {
  color: white !important;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s;
  font-size: 16px;
}

.social-icons a:hover {
  background: white;
  color: #1e3c72 !important;
  transform: translateY(-5px);
}
/* ==================== BIDANG PAGE ==================== */

/* Bidang Stats */
.bidang-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.bidang-stat-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s;
}

.bidang-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bidang-stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bidang-stat-icon.success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.bidang-stat-icon i {
  font-size: 36px;
  color: white;
}

.bidang-stat-info h3 {
  font-size: 42px;
  font-weight: 800;
  color: #1e3c72;
  margin: 0 0 5px 0;
  line-height: 1;
}

.bidang-stat-info p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Bidang Search */
.bidang-search {
  margin-bottom: 40px;
}

.search-box-bidang {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-box-bidang i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
}

.search-box-bidang input {
  width: 100%;
  padding: 18px 20px 18px 55px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 16px;
  transition: all 0.3s;
}

.search-box-bidang input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

/* Bidang Grid */
.bidang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Bidang Card */
.bidang-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

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

/* Bidang Image */
.bidang-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.bidang-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bidang-placeholder i {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.3);
}

.bidang-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.bidang-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #667eea;
}

/* Bidang Content */
.bidang-content {
  padding: 30px;
}

.bidang-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 12px;
  line-height: 1.3;
}

.bidang-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-bidang-detail {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-bidang-detail:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
  color: white;
}

/* ==================== BIDANG DETAIL PAGE ==================== */

/* Bidang Detail Header */
.bidang-detail-header {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.bidang-detail-image {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}

.bidang-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bidang-detail-info {
  display: flex;
  align-items: center;
  gap: 25px;
}

.bidang-detail-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bidang-detail-icon i {
  font-size: 42px;
  color: white;
}

.bidang-detail-info h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1e3c72;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.bidang-detail-meta {
  display: flex;
  gap: 20px;
}

.meta-item {
  font-size: 15px;
  color: #666;
  font-weight: 600;
}

/* Description Card */
.bidang-description-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.bidang-description-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 20px;
}

.bidang-description-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin: 0;
}

/* Pegawai Section */
.bidang-pegawai-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.section-title-bidang {
  font-size: 24px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  padding: 0 12px;
}

.staff-nip {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1200px) {
  .bidang-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .bidang-stats {
    grid-template-columns: 1fr;
  }

  .bidang-grid {
    grid-template-columns: 1fr;
  }

  .bidang-detail-info {
    flex-direction: column;
    text-align: center;
  }

  .bidang-detail-icon {
    margin: 0 auto;
  }

  .bidang-detail-meta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .bidang-stat-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .bidang-stat-icon {
    width: 70px;
    height: 70px;
  }

  .bidang-stat-icon i {
    font-size: 32px;
  }

  .bidang-stat-info h3 {
    font-size: 36px;
  }

  .search-box-bidang {
    max-width: 100%;
  }

  .bidang-content {
    padding: 25px 20px;
  }

  .bidang-detail-header,
  .bidang-description-card,
  .bidang-pegawai-section {
    padding: 30px 25px;
  }

  .bidang-detail-info h2 {
    font-size: 26px;
  }
}
