/* Custom CSS (css/style.css) */

/* General Styles */
:root {
    --primary-dark-blue: #0A1B2C; /* Biru gelap dominan untuk background */
    --secondary-blue: #1A344D;    /* Biru sedikit lebih terang untuk elemen */
    --accent-blue: #007bff;       /* Biru standar untuk link/tombol */
    --light-blue: #00BCD4;        /* Aksen biru terang/cyan */
    --white: #ffffff;
    --grey-text: #E0E0E0;         /* Teks abu-abu terang */
    --dark-text: #2c3e50;         /* Teks gelap untuk section biasa */
    --border-color: #3A5B7F;      /* Warna border untuk elemen gelap */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--grey-text); /* Default teks untuk background gelap */
    background-color: var(--primary-dark-blue); /* Background gelap keseluruhan */
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--light-blue); /* Link terang */
    transition: color 0.3s ease;
}

a:hover {
    color: var(--white);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px; /* Sedikit lebih kotak sesuai ref gambar */
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9em;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark-blue); /* Darker blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Navbar specific buttons */
.btn-nav {
    background-color: var(--light-blue); /* Warna Client Area */
    color: var(--primary-dark-blue);
    padding: 8px 18px;
    margin-left: 10px;
    border-radius: 50px; /* Bentuk kapsul untuk Client Area */
    font-weight: 700;
}

.btn-nav:hover {
    background-color: var(--white);
    color: var(--primary-dark-blue);
}

/* Hero Section specific buttons */
.btn-hero-primary {
    background-color: var(--light-blue);
    color: var(--primary-dark-blue);
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 700;
    margin-right: 15px;
}

.btn-hero-primary:hover {
    background-color: var(--white);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 700;
}

.btn-hero-secondary:hover {
    background-color: var(--white);
    color: var(--primary-dark-blue);
}


/* Section Titles */
.section-title {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white); /* Judul section putih untuk background gelap */
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-blue);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Header/Navbar */
.header {
    background-color: var(--secondary-blue); /* Background navbar lebih terang dari hero */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    font-family: 'Orbitron', sans-serif; /* Font digital untuk logo */
    font-size: 1.6em;
    font-weight: 700;
    color: var(--white); /* Logo warna putih */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar a {
    color: var(--grey-text);
    margin: 0 15px;
    font-weight: 500;
}

.navbar a:hover {
    color: var(--light-blue);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: var(--grey-text);
    padding: 15px 0; /* Menyesuaikan padding link navbar */
    margin: 0 15px;
    font-weight: 500;
    cursor: pointer;
}

.dropbtn:hover {
    color: var(--light-blue);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--secondary-blue);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    top: 100%; /* Agar dropdown muncul di bawah tombol */
    left: 15px; /* Sesuaikan posisi horizontal */
}

.dropdown-content a {
    color: var(--grey-text);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    margin: 0; /* Reset margin */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--primary-dark-blue);
    color: var(--light-blue);
}

.dropdown:hover .dropdown-content {
    display: block;
}


.nav-actions {
    margin-left: 20px;
}

.menu-toggle {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: var(--white);
}


/* Hero Section */
.hero-section {
    background-color: var(--primary-dark-blue); /* Background solid gelap */
    padding: 80px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white); /* Pastikan teks putih */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 55%; /* Kontrol lebar teks */
}

.hero-text h1 {
    font-family: 'Orbitron', sans-serif; /* Font digital untuk judul utama */
    font-size: 4.5em; /* Ukuran lebih besar */
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
    color: var(--white);
}

.hero-text h1 i {
    color: var(--light-blue); /* Warna ikon roket/server */
    margin-right: 15px;
}

.hero-text p {
    font-size: 1.3em; /* Ukuran paragraf sedang */
    margin-bottom: 40px;
    color: var(--grey-text); /* Teks sedikit abu-abu */
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-left: 50px; /* Jarak dari teks */
}

.hero-character-img {
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2; /* Agar di atas elemen abstrak */
    transform: scale(1.1); /* Sedikit membesar untuk efek */
}

/* Background graphics for hero section */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/abstract-digital-pattern.svg') no-repeat center center / cover; /* Pola digital abstrak */
    opacity: 0.05; /* Sangat transparan */
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 123, 255, 0.1), transparent 50%),
                radial-gradient(circle at 30% 90%, rgba(0, 188, 212, 0.1), transparent 50%); /* Efek gradien abstrak */
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

/* Supported Games Section */
.supported-games-section {
    padding: 60px 0;
    background-color: var(--secondary-blue); /* Background gelap */
}

.game-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.game-logo-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-logo-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(80%) brightness(1.5); /* Lebih cerah di background gelap */
    transition: filter 0.3s ease;
}

.game-logo-item:hover img {
    filter: grayscale(0%) brightness(1); /* Warna saat hover */
}

.game-logo-item span {
    font-weight: 600;
    color: var(--white); /* Teks putih */
    font-size: 1.1em;
}


/* Key Features Section (Previously Why Choose Us) */
.key-features-section {
    padding: 80px 0;
    background-color: var(--primary-dark-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: var(--secondary-blue); /* Latar belakang item fitur gelap */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color); /* Border samar */
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-item i {
    font-size: 3.5em;
    color: var(--light-blue); /* Ikon dengan warna terang */
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.7em;
    margin-bottom: 10px;
    color: var(--white); /* Judul fitur putih */
}

.feature-item p {
    font-size: 0.95em;
    color: var(--grey-text);
}

/* Minecraft CTA Section (Revised) */
.minecraft-cta-section {
    background-color: var(--primary-dark-blue);
    padding: 80px 0; /* Sedikit dikurangi padding atas bawah */
    position: relative;
    overflow: hidden;
    display: flex; /* Menggunakan Flexbox untuk tata letak */
    align-items: center; /* Mengatur item secara vertikal di tengah */
    justify-content: space-between; /* Memberi ruang antara background dan konten */
    text-align: left; /* Teks di dalam konten akan rata kiri */
    color: var(--white);

    /* Main background image for the section */
    background-image: url('../images/minecraft-cta-background-asset.png');
    background-size: cover; /* Memastikan gambar menutupi area */
    background-position: center;
    background-repeat: no-repeat;
    animation: slowZoom 10s infinite alternate ease-in-out;
}

/* Pseudo-element untuk dark overlay */
.minecraft-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0; /* Paling bawah */
}

/* Animasi Zoom Lambat */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.minecraft-cta-content {
    position: relative;
    z-index: 3; /* Teks paling atas */
    max-width: 50%; /* Lebar area teks */
    padding-left: 50px; /* Memberi jarak dari sisi kiri */
}

.minecraft-cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em; /* Ukuran font sedikit dikecilkan */
    margin-bottom: 15px;
    color: var(--white-blue);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.minecraft-cta-content p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--grey-text);
    margin-bottom: 20px;
}

.minecraft-cta-content .btn-primary {
    padding: 12px 30px;
    font-size: 1em;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
    color: var(--primary-dark-blue);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
    border: none;
}

.minecraft-cta-content .btn-primary:hover {
    background: linear-gradient(90deg, var(--electric-blue), var(--neon-green));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 140, 255, 0.4);
}

/* Gaming Balls Animation */
.gaming-ball {
    position: absolute;
    width: 80px; /* Ukuran bola dikecilkan */
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2; /* Di atas background overlay */
    opacity: 0.7;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); /* Efek cahaya dikurangi */
}

.gaming-ball img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gaming-ball-1 {
    top: 20%;
    left: auto; /* Hapus left, gunakan right */
    right: 10%;
    animation: floatMove 15s infinite alternate ease-in-out;
    animation-delay: 0s;
}

.gaming-ball-2 {
    bottom: 15%;
    right: auto; /* Hapus right, gunakan left */
    left: 20%;
    width: 90px; /* Ukuran sedikit berbeda */
    height: 90px;
    animation: floatMove 18s infinite alternate-reverse ease-in-out;
    animation-delay: 3s;
}

.gaming-ball-3 {
    top: 60%;
    left: 55%; /* Posisi sedikit diubah */
    transform: translate(-50%, -50%);
    width: 60px; /* Ukuran lebih kecil */
    height: 60px;
    animation: floatMove 12s infinite alternate ease-in-out;
    animation-delay: 6s;
}

/* Keyframe Animation for Floating Movement */
@keyframes floatMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -10px) rotate(3deg); }
    50% { transform: translate(0, 0) rotate(0deg); }
    75% { transform: translate(-15px, 10px) rotate(-3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}


/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--secondary-blue);
}

.price-toggle {
    text-align: center;
    margin-bottom: 50px;
    background-color: var(--primary-dark-blue); /* Background toggle gelap */
    display: inline-flex;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.toggle-btn {
    padding: 10px 25px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--grey-text); /* Teks tombol toggle */
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-btn.active {
    background-color: var(--accent-blue); /* Warna tombol aktif */
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.toggle-btn .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff5722; /* Merah oranye untuk badge "Hemat!" */
    color: var(--white);
    font-size: 0.7em;
    padding: 3px 8px;
    border-radius: 15px;
    transform: rotate(5deg);
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.pricing-card {
    background-color: var(--primary-dark-blue); /* Background kartu harga gelap */
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--light-blue); /* Aksen untuk paket unggulan */
}

.pricing-card h3 {
    font-size: 2.5em;
    color: var(--light-blue); /* Judul paket terang */
    margin-bottom: 10px;
}

.pricing-card .description {
    font-size: 1.1em;
    color: var(--grey-text);
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 4em;
    font-weight: 700;
    color: var(--white); /* Harga putih */
    margin-bottom: 25px;
    line-height: 1;
}

.pricing-card .price sup {
    font-size: 0.5em;
    vertical-align: super;
}

.pricing-card .price sub {
    font-size: 0.4em;
    vertical-align: baseline;
    color: var(--grey-text);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--grey-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card ul li i {
    color: var(--accent-blue);
    margin-right: 10px;
    font-size: 1.1em;
}

.pricing-card .btn {
    width: 100%;
    padding: 15px 0;
    border-radius: 5px; /* Tetap kotak */
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--primary-dark-blue);
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding-bottom: 20px;
}

.testimonial-card {
    flex: 0 0 450px;
    scroll-snap-align: start;
    background-color: var(--secondary-blue); /* Background testimonial gelap */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.testimonial-card:first-child {
    margin-left: auto;
}

.testimonial-card:last-child {
    margin-right: auto;
}


.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--light-blue); /* Border terang */
    box-shadow: 0 0 0 5px rgba(0, 188, 212, 0.2);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1em;
    color: var(--grey-text);
    margin-bottom: 15px;
}

.testimonial-card h4 {
    font-size: 1.3em;
    color: var(--white);
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 0.9em;
    color: var(--grey-text);
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #666;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--light-blue); /* Dot aktif terang */
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--secondary-blue);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 2em;
    margin-bottom: 25px;
    color: var(--white);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    color: var(--grey-text);
}

.contact-info p i {
    color: var(--light-blue);
    margin-right: 15px;
    font-size: 1.3em;
    width: 25px;
}

.contact-info .social-icons {
    margin-top: 30px;
}

.contact-info .social-icons a {
    font-size: 1.8em;
    margin-right: 20px;
    color: var(--grey-text);
    transition: color 0.3s ease;
}

.contact-info .social-icons a:hover {
    color: var(--light-blue);
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    background-color: var(--primary-dark-blue); /* Input background gelap */
    color: var(--white);
}

.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
    color: var(--grey-text);
    opacity: 0.7;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.contact-form form button {
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
    border-radius: 8px;
    background-color: var(--accent-blue); /* Tombol submit terang */
    color: var(--white);
}

.contact-form form button:hover {
    background-color: var(--primary-dark-blue);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Footer */
.footer {
    background-color: var(--primary-dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color); /* Border di atas footer */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--light-blue);
}

.footer-col p {
    font-size: 0.95em;
    line-height: 1.8;
    color: var(--grey-text);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--grey-text);
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

.footer-col .social-icons a {
    font-size: 1.5em;
    margin-right: 15px;
    color: var(--grey-text);
    transition: color 0.3s ease;
}

.footer-col .social-icons a:hover {
    color: var(--light-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9em;
    color: var(--grey-text);
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--secondary-blue);
        position: absolute;
        top: 80px;
        left: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        padding: 20px 0;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        margin: 10px 20px;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .dropdown .dropbtn {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
        margin: 10px 0;
    }

    .dropdown-content {
        position: static; /* Biar dropdown ikut aliran dokumen di mobile */
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background-color: var(--primary-dark-blue);
    }
    
    .dropdown-content a {
        padding-left: 40px; /* Indentasi untuk sub-menu */
    }

    .navbar a:last-child {
        border-bottom: none;
    }

    .nav-actions {
        display: flex;
        flex-direction: column;
        margin-top: 15px;
        margin-left: 0;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }

    .nav-actions .btn {
        margin: 5px auto;
        width: 80%;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        flex-direction: column; /* Stack konten di mobile */
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        order: 2; /* Pindah teks ke bawah gambar di mobile */
    }

    .hero-text h1 {
        font-size: 3em;
    }

    .hero-text p {
        font-size: 1.1em;
    }

    .hero-image-wrapper {
        padding-left: 0;
        margin-bottom: 30px;
        order: 1; /* Pindah gambar ke atas teks di mobile */
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 80%; /* Lebar penuh di mobile */
        margin: 0;
    }


    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .hero-section {
        padding: 60px 0;
        min-height: auto; /* Hilangkan min-height */
    }

    .hero-text h1 {
        font-size: 2.5em;
    }

    .hero-text p {
        font-size: 1em;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: scale(1);
    }

    .testimonial-card {
        flex: 0 0 90%;
    }

    .game-logo-item img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .header .logo {
        font-size: 1.2em;
    }
    .hero-text h1 {
        font-size: 2em;
    }
    .hero-text p {
        font-size: 0.9em;
    }
    .btn {
        padding: 10px 20px;
    }
    .pricing-card .price {
        font-size: 3em;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col ul {
        padding-left: 0;
    }
    .social-icons {
        justify-content: center; /* Pusatkan ikon di footer mobile */
    }
}