/* 
   =========================================================
   CSS UNTUK P4K EVNIKOM MATARAM
   =========================================================
*/

/* --- 1. VARIABEL & RESET --- */
:root {
    /* Color Palette */
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #1d4ed8;
    --accent-hover: #1e40af;
    --teal: #0891b2;
    --bg-color: #f8fafd;
    --white: #ffffff;
    --text-dark: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. KOMPONEN GLOBAL --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

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

/* --- 3. TOPBAR & HEADER --- */
.topbar {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left span, .topbar-right a {
    margin-right: 20px;
    color: #cbd5e1;
}

.topbar-right a:hover {
    color: var(--white);
}

.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.site-logo {
    width: 52px;
    max-width: 52px;
    max-height: 52px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background: transparent;
    flex-shrink: 0;
}

.logo-texts {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-highlight {
    color: var(--accent);
}

.logo-text {
    color: var(--primary);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

@media (max-width: 768px) {
    .site-logo { width: 44px; height: 44px; }
    .logo { font-size: 1.1rem; gap: 8px; }
}

/* --- 4. HERO SECTION (HOME) --- */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f8fafd 0%, #e0e7ff 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(29, 78, 216, 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image-wrap {
    position: relative;
}

.hero-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background-color: #d1d5db; /* placeholder */
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 30px;
    left: -30px;
}

.badge-2 {
    bottom: 30px;
    right: -30px;
    animation-delay: 1.5s;
}

.floating-badge i {
    font-size: 2rem;
    color: var(--teal);
}

.floating-badge h5 {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.floating-badge p {
    font-size: 0.8rem;
    color: var(--text-light);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- 5. KEUNGGULAN SECTION --- */
.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: 16px;
    background-color: var(--bg-color);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(29, 78, 216, 0.2);
    background-color: var(--white);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- 6. PRESTASI BANNER --- */
.achievement-banner {
    background-color: var(--primary);
    color: var(--white);
    padding: 0;
}

.achievement-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.achievement-content {
    padding: 80px 60px 80px 20px;
}

.achievement-content .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 20px;
}

.achievement-content > p {
    color: #cbd5e1;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.check-list {
    margin-bottom: 40px;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.check-list li i {
    color: var(--teal);
    font-size: 1.2rem;
}

.achievement-image {
    background-image: url('../img/galeri/Penyerahan sertifikat.png');
    background-color: var(--primary-light);
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* --- 7. KARTU PAKET & GRID --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.packages-grid.english {
    grid-template-columns: repeat(4, 1fr);
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-img {
    height: 200px;
    background-color: #e2e8f0;
    position: relative;
}

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

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(4px);
}

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

.package-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.package-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.package-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.package-materi {
    margin-bottom: 20px;
    flex: 1;
}

.package-materi h5 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-materi ul li {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.package-materi ul li i {
    color: var(--teal);
    margin-top: 4px;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.package-card .btn {
    width: 100%;
}

/* --- 8. TESTIMONI --- */
.testimonials {
    background-color: var(--primary);
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: #cbd5e1;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testi-stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testi-text {
    font-size: 1rem;
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testi-author h5 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.testi-author span {
    font-size: 0.85rem;
    color: var(--teal);
}

/* --- 9. CTA BOTTOM --- */
.cta-bottom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-bottom h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-bottom p {
    font-size: 1.2rem;
    color: #e0e7ff;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-actions .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-actions .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* --- 10. PAGE HERO (INNER PAGES) --- */
.page-hero {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    color: #94a3b8;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--teal);
}

/* --- 11. FOOTER --- */
.footer {
    background-color: #020617; /* Very dark blue */
    color: #cbd5e1;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-desc {
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 3px;
}

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

.footer-links a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #94a3b8;
}

.footer-contact i {
    color: var(--teal);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-link {
    color: #64748b;
    font-size: 0.8rem;
}

.admin-link:hover {
    color: var(--white);
}

/* --- 12. WHATSAPP FAB --- */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.wa-float:hover {
    transform: scale(1.1);
    color: white;
}

/* --- 13. TENTANG & KONTAK PAGE --- */
.about-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-grid {
    align-items: start;
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

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

/* --- 14. GALERI PAGE --- */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-overlay h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* --- 15. ADMIN STYLES --- */
.admin-body {
    background-color: #f1f5f9;
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background-color: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
}

.admin-brand {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.admin-nav {
    flex: 1;
    padding: 20px 0;
}

.admin-nav a {
    display: block;
    padding: 12px 20px;
    color: #cbd5e1;
    transition: var(--transition);
}

.admin-nav a:hover, .admin-nav a.active {
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-left: 4px solid var(--accent);
}

.admin-nav a i {
    width: 20px;
    margin-right: 10px;
}

.admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.admin-header {
    background: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.admin-content {
    padding: 30px;
    flex: 1;
    overflow-y: auto;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dash-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
}

.dash-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.dash-card-info h3 {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1;
}

.dash-card-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.admin-panel {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 20px;
    margin-bottom: 30px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th, .admin-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: var(--primary);
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-menunggu { background: #fef3c7; color: #d97706; }
.status-dikonfirmasi { background: #e0e7ff; color: #4f46e5; }
.status-aktif { background: #d1fae5; color: #059669; }
.status-selesai { background: #f1f5f9; color: #475569; }

/* Login Admin */
.login-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-danger {
    background-color: #fee2e2;
    color: #b91c1c;
}

.alert-success {
    background-color: #d1fae5;
    color: #059669;
}

/* --- 16. RESPONSIVE MEDIA QUERIES --- */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.8rem; }
    .packages-grid, .packages-grid.english { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .dashboard-cards { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile & Tablet (768px) */
@media (max-width: 768px) {
    .topbar { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: var(--shadow-md);
        display: none;
    }
    .nav-menu.active {
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .hero-inner, .achievement-inner, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-image { min-height: 300px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .admin-body { flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 15px; }
    .features-grid, .packages-grid, .packages-grid.english { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; }
    .gallery-grid { grid-template-columns: 1fr; }
    .dashboard-cards { grid-template-columns: 1fr; }
}
