* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #eee;
    color: #222;
}

/* =========================
   SAYAP & LAYOUT UTAMA
========================= */
.side {
    position: fixed;
    top: 0;
    width: 120px;
    height: 100vh;
    background: linear-gradient(#0aa, #077);
    z-index: 1;
}
.side.left { left: 0; }
.side.right { right: 0; }

/* Container Utama */
.container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}


/* =========================
   HEADER & FILTERS
========================= */
.header {
    background: teal;
    color: white;
    padding: 0px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: #f5f5f5;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Pastikan container menjadi patokan */
.containerheader {
    position: relative;
    width: 100%;
    min-height: 120px; /* Sesuaikan tinggi header Anda */
}


/* Gambar dibuat melayang dan memenuhi container */
.image1, .image2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Agar gambar tidak gepeng */
    z-index: 1; /* Di lapisan bawah */
}

/* Teks dan menu diletakkan di atas gambar */
.text-overlay {
    position: relative;
    z-index: 3; /* Di atas gambar */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px; /* Jarak konten dari tepi */
    color: white; /* Agar teks terbaca di atas gambar */
}

/* Pengaturan Teks */
.brand-text h1 {
  margin: 0;
   /*  font-size: 5vw;  5% dari lebar viewport */
  font-size: 4vw; 
}
.brand-text p {
  margin: 0;
    font-size: 2vw;
}

.footer {
    background: teal;
    color: white;
    padding: 10px;
    text-align: center;
   position: fixed;
   bottom: 0;
   width:100%;
   max-width:960px;
   height:60px;
}
/* ========================= */

/* =========================
   VIDEO CARD (BAGIAN ATAS)
========================= */
.card {
    background: white;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd; /* Garis pembatas di mobile */
}

/* Container Utama */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; 
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Tambahkan ini agar wrapper bisa menangkap sentuhan di HP */
    cursor: pointer;
    touch-action: manipulation;
}

.video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important; 
    height: 100% !important; 
    border: none;
    /* Turunkan z-index agar tidak menutupi tombol */
    z-index: 1; 
}

.play-btn {
    position: absolute;
    /* Pastikan z-index lebih tinggi dari video-frame */
    z-index: 10;
    /* Hilangkan pointer-events: none jika Anda ingin tombol ini bisa diklik langsung */
    pointer-events: auto; 
    
    /* Ukuran yang lebih proporsional untuk jempol di HP */
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Membuat Segitiga Play */
.play-btn::after {
    content: "";
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #000;
    margin-left: 5px;
}

/* Optimasi untuk layar kecil */
@media (max-width: 768px) {
    .play-btn {
        width: 60px;
        height: 60px;
    }
    .play-btn::after {
        border-width: 10px 0 10px 16px;
    }
}


/* Efek Hover pada Wrapper (Mempengaruhi Tombol) */
.video-wrapper:hover .play-btn {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.4);
    border-color: #fff;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

/* Animasi Denyut (Pulse) */
.play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Pengaturan Iframe */
.video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important; 
    height: 100% !important; 
    border: none;
    z-index: 10;
}




.video-wrapper iframe, .video-wrapper video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 3;
}

/* Area Teks di Bawah Video */
.card-body {
    padding: 20px; /* Memberi ruang agar teks tidak menempel ke pinggir layar */
    background: #fff;
}
.judul {
    font-size: 1.3rem; /* Sedikit lebih besar */
    font-weight: 800;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: block;
}

.waktu {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
    display: block;
    border-bottom: 1px solid #eee; /* Garis tipis pemisah */
    padding-bottom: 10px;
}

.deskripsi {
    font-size: 1rem;
    color: #444;
    line-height: 1.6; /* Jarak antar baris agar mudah dibaca di HP */
    text-align: justify; /* Membuat teks rata kanan-kiri agar rapi */
    margin-top: 5px;
}


/* =========================
   CARD DATA KONTEN
========================= */

.formedit {
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-auto-rows: auto;
  gap: 1.5rem;
  position: relative;
  margin: 0.5rem auto;
  padding: 20px;
  will-change: height;
}
.cardedit {
    display: flex;
    flex-direction: column;
    height: 100%; /* Memastikan kartu mengisi ruang grid */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}



/* =========================
   GRID KONTEN (REPEATER)
========================= */
.konten {
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  grid-auto-rows: auto;
  gap: 1.5rem;
  position: relative;
  margin: 2rem auto;
  padding: 0;
  will-change: height;
}
.daftar {
    display: flex;
    flex-direction: column;
    height: 100%; /* Memastikan kartu mengisi ruang grid */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

/* 3. Link di dalam kartu: Agar area klik memenuhi seluruh kartu */
.daftar a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%; /* Penting agar konten di dalamnya bisa diatur flex */
    color: black;
    text-decoration: none;
}

/* 4. Pengaturan Gambar */
.daftar img {
    width: 100%;
    aspect-ratio: 16 / 9; /* Memastikan semua thumbnail punya ukuran kotak yang sama */
    object-fit: cover;
    display: block;
}

/* 5. Konten Teks di dalam kartu */
.daftar .judul {
    font-size: 1.1rem; /* Ukuran lebih kecil untuk list */
    margin: 15px 15px 5px 15px;
    /* Batasi judul maksimal 2 baris */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.daftar .waktu {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin: 0 15px 10px 15px;
    width: fit-content; /* Tombol tidak memenuhi lebar kartu */
    min-height: auto;
}

.daftar .Deskripsi {
    font-size: 0.9rem;
    margin: 0 15px 15px 15px;
    flex-grow: 1; /* MENARIK DESKRIPSI agar mengisi ruang sisa sehingga tinggi kartu sama */
    /* Batasi deskripsi maksimal 3 baris agar rapi */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.search-container {
    margin:1em auto;
  position: relative; /* Anchor for absolute positioning */
  width: 90%;
  z-index: 1;
}

.search-icon {
  position: absolute;
  left: 10px;        /* Spacing from left edge */
  top: 50%;          /* Center vertically */
  transform: translateY(-50%);
  color: #888;
}

.search-input {
  width: 100%;
  padding: 10px 10px 10px 35px; /* Extra left padding for the icon */
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
/* =========================
   MENU AKUN
========================= */

.user-menu-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 20px;
}

#userIcon {
    color: #333;
}

/* Sembunyikan menu secara default */
.dropdown-menu {
    position: absolute;
    right: 0;
    top: 110%; /* Sedikit lebih rendah agar ada jarak dari icon */
    background-color: #00796b;
    min-width: 160px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    
    /* PENTING: Untuk Animasi */
    opacity: 0;            /* Awalnya transparan */
    visibility: hidden;    /* Tidak bisa diklik saat sembunyi */
    transform: translateY(-10px); /* Posisi awal sedikit di atas */
    transition: all 0.3s ease;   /* Durasi animasi 0.3 detik */
}

/* Class ini akan ditambahkan melalui JavaScript saat diklik */
.dropdown-menu.show {
    opacity: 1;            /* Muncul perlahan */
    visibility: visible;   /* Bisa diklik */
    transform: translateY(0);    /* Kembali ke posisi normal */
}
.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Efek highlight saat disentuh */
}


/* Class untuk menampilkan menu via JS */
.show {
    display: block;
}

/* =========================
   FORMULIR
========================= */
.txtbox {
    width: 100%;
    background: #f6f6f6;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 5px 5px 5px 5px;
    margin: 5px 5px 15px 5px;
    color: #191414;
    font-size: 1em;
    font-weight: 400;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

.txtbox:focus {
    background: #ffffff;
    border-color: #1DB954;
    box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1);
}
.lblbox {
    display: block;
    font-size: 1em;
    font-weight: 600;
    color:rgba(0,0,0,0.5);
    margin-top: 5px;
    margin-bottom: 2px;
}

.form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1DB954, #1ed760);
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #727272;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #191414;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #191414;
    font-weight: 500;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d9d9d9;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: #1DB954;
    border-color: #1DB954;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    opacity: 1;
}

.forgot-link {
    color: #1DB954;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.forgot-link:hover {
    color: #1ed760;
}

/* Login Button */
.form-btn {
    width: 100%;
    background: #1DB954;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    margin-bottom: 24px;
    transition: all 0.2s ease;
    overflow: hidden;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-btn:hover {
    background: #1ed760;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
}

.form-btn:active {
    transform: translateY(0);
}

.form-btn:disabled {
    background: #a7a7a7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-text {
    transition: opacity 0.2s ease;
}

.btn-loader {
    position: absolute;
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.grid { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
        .grid th, .grid td { border: 1px solid #ccc; padding: 8px; text-align: left; }
.loader-dot:nth-child(2) { animation-delay: 0.16s; }
.loader-dot:nth-child(3) { animation-delay: 0.32s; }

@keyframes dotPulse {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.form-btn.loading .btn-text {
    opacity: 0;
}

.form-btn.loading .btn-loader {
    opacity: 1;
}

/* Divider */
.divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e1e1;
}

.divider span {
    background: #ffffff;
    color: #727272;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.social-btn {
    width: 100%;
    background: #ffffff;
    color: #191414;
    border: 1px solid #d9d9d9;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
    min-height: 44px;
}

.social-btn:hover {
    border-color: #191414;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-btn:active {
    transform: translateY(0);
}

.apple-btn {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.apple-btn:hover {
    background: #333333;
    border-color: #333333;
}

/* Signup Link */
.signup-link {
    text-align: center;
}

.signup-link p {
    color: #727272;
    font-size: 14px;
}

.signup-link a {
    color: #1DB954;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.signup-link a:hover {
    color: #1ed760;
    text-decoration: underline;
}
.konfirm-btn {
	box-shadow: 0px 1px 0px 0px #fff6af;
	background:linear-gradient(to bottom, #ffec64 5%, #ffab23 100%);
	background-color:#ffec64;
	border-radius:6px;
	border:1px solid #ffaa22;
	display:inline-block;
	cursor:pointer;
	color:#333333;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffee66;
    font-size: 12px;
}
.konfirm-btn:hover {
	background:linear-gradient(to bottom, #ffab23 5%, #ffec64 100%);
	background-color:#c1fa89;
}
  
.konfirm-btn:disabled {
    background: #a7a7a7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Error States */
.error-message {
    color: #e22134;
    font-size: 12px;
    font-weight: 500;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-group.error input {
    border-color: #e22134;
    background: #fef7f7;
}

.form-group.error input:focus {
    box-shadow: 0 0 0 3px rgba(226, 33, 52, 0.1);
}

.btn-base {
    padding: 2px 20px;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1em;
}
/* 1. Tambah (Warna Hijau/Sukses) */
    .btnTambah {
    background-color: #28a745;
    color: #ffffff;
}
.btnTambah:hover {
    background-color: #218838;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btnTambah:active {
    background-color: #1e7e34;
    transform: translateY(1px);
}
/* 2. Edit (Warna Biru/Informasi) */
.btnEdit {
    background-color: #17a2b8;
    color: #ffffff;
}
.btnEdit:hover {
    background-color: #138496;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btnEdit:active {
    background-color: #117a8b;
    transform: translateY(1px);
}
/* 3. Hapus (Warna Merah/Bahaya) */
.btnHapus {
    background-color: #dc3545;
    color: #ffffff;
}
.btnHapus:hover {
    background-color: #c82333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btnHapus:active {
    background-color: #bd2130;
    transform: translateY(1px);
}
/* 4. Simpan (Warna Biru Tua/Primary) */
.btnSimpan {
    background-color: #007bff;
    color: #ffffff;
}
.btnSimpan:hover {
    background-color: #0069d9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btnSimpan:active {
    background-color: #0062cc;
    transform: translateY(1px);
}
/* 5. Batal (Warna Abu-abu/Secondary) */
.btnBatal {
    background-color: #6c757d;
    color: #ffffff;
}
.btnBatal:hover {
    background-color: #5a6268;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btnBatal:active {
    background-color: #545b62;
    transform: translateY(1px);
}
/* 6. cari  */
.btnCari {
    background-color: #d08104;
    color: #ffffff;
}
.btnCari:hover {
    background-color: #d08104;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btnCari:active {
    background-color: #d08104;
    transform: translateY(1px);
}

/* =========================
   NOTIF
========================= */
.alert {
  padding: 20px;
  border-radius: 4px; /* Rounded corners */
  margin-bottom: 15px; /* Adds space below the alert */
}

.info {
  background-color: #e7f3fe; /* Light blue background */
  border: 1px solid #2196F3; /* Blue border */
  color: #2196F3; /* Blue text color */
}

.warning {
  background-color: #ffffe0; /* Light yellow background */
  border: 1px solid #ffeb3b; /* Yellow border */
  color: #ff9800; /* Orange text color */
}


/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 32px 20px;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.3s ease;
}

.success-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.success-icon {
    margin: 0 auto 16px;
    animation: successScale 0.5s ease-out;
}

@keyframes successScale {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-message h3 {
    color: #191414;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.success-message p {
    color: #727272;
    font-size: 14px;
}

/* =========================
   GRIDVIEW
========================= */

/* Gaya Utama GridView */
.GridViewModern {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #ddd;
    min-width: 600px; /* Menjaga agar kolom tidak terlalu berhimpit di mobile */
}

/* Gaya Header (Abu-abu seperti gambar) */
.GridHeader {
    background-color: #888 !important; /* Warna abu-abu sesuai gambar */
    color: white !important;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}

.GridHeader th {
    padding: 12px 15px;
    border: 1px solid #ccc;
}

/* Gaya Baris (Row) */
.GridRow td, .GridAltRow td {
    padding: 10px 15px;
    border: 1px solid #eee;
    color: #333;
    font-size: 14px;
    vertical-align: middle;
}

/* Baris Selang-seling */
.GridAltRow {
    background-color: #fafafa;
}

/* Efek Hover pada Baris (Serasi dengan Pager Oranye) */
.GridViewModern tr:hover {
    background-color: #fff3ed !important; /* Oranye sangat muda */
    transition: background 0.2s;
}

/* Styling Tombol Link (Pilih | Hapus) */
.GridViewModern a {
    color: #0044cc;
    text-decoration: none;
    font-weight: 600;
}

.GridViewModern a:hover {
    text-decoration: underline;
    color: #ff752d; /* Berubah jadi oranye saat hover */
}

/* --- CSS PAGER (Sudah Diperbarui) --- */
.GridPager table {
    margin-top: 15px !important;
    border-spacing: 5px !important;
    border-collapse: separate !important;
}

.GridPager a, .GridPager span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.GridPager a { background-color: #fff; color: #333; }
.GridPager a:hover { background-color: #d4cc6a !important; color: #000; border-color: #999; }
.GridPager span { background-color: #ff752d !important; color: #fff !important; border: 1px solid #cc5f24; }

.GridPager td {
    padding: 0;
}

/* Ukuran khusus untuk Ikon FontAwesome agar tidak terlalu kecil */
.GridPager i {
    font-size: 14px;
}

/* =========================
   LOG GOGL
========================= */

.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.login-container h2 {
    margin-bottom: 20px;
    color: #333;
}


/* =========================
   MEDIA HP
========================= */
@media (max-width: 767px) {
    .container {
       width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden;
    }
    .side { display: none; }
    .card .card {margin: 0;border-radius: 0;width: 100%; }
    .card-body {
        padding: 15px; /* Sedikit lebih kecil di HP tapi tetap ada jarak */
    }
    .brand-text h1 {
        margin: 0;
        /*  font-size: 5vw;  5% dari lebar viewport */
        font-size: 7vw; 
        }
        .brand-text p {
        margin: 0;
            font-size: 4vw;
       }


    .judul {
        font-size: 1.15rem;
    }
    .deskripsi {
        font-size: 0.95rem;
    }
.image1 {
    display: none;
}
.image2 {
    display: block;
}
}
/* RESPONSIVE: Penyesuaian Mobile */
@media screen and (max-width: 480px) {
    .GridPager a, 
    .GridPager span {
        min-width: 35px;
        height: 35px;
        font-size: 12px;
        border-radius: 8px;
    }
    .GridPager i {
        font-size: 12px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    body {
        padding: 16px;
    }
    
    .form-card {
        padding: 32px 24px;
        border-radius: 12px;
    }
    
    .form-header h1 {
        font-size: 1.5rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* Logika Responsive (Menampilkan salah satu gambar) */
@media (max-width: 768px) {
    .image1 { display: none; }
    .image2 { display: block; }
}

@media (min-width: 769px) {
    .image1 { display: block; }
    .image2 { display: none; }
}
