* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #0a0a0f;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- Styles for navigation menu --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    transition: background 0.3s ease;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff4dff;
    text-decoration: none;
}

/* Language Toggle - New Fixed Position */
.fixed-lang-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    align-items: center;
    border: 1px solid #4ecbff;
    border-radius: 20px;
    overflow: hidden;
}

.fixed-lang-toggle a {
    padding: 5px 15px;
    text-decoration: none;
    color: #4ecbff;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.fixed-lang-toggle a.active {
    background: #4ecbff;
    color: #0a0a0f;
}

.fixed-lang-toggle a:hover:not(.active) {
    background: rgba(78, 203, 255, 0.2);
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.navbar-menu a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: #4ecbff;
}

.menu-toggle {
    display: none; /* Hide by default on desktop */
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: block; /* Show the toggle button on mobile */
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Hide the menu off-screen */
        width: 70%;
        height: 100vh;
        background: #1a1a25;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }
    
    .navbar-menu.active {
        right: 0; /* Slide the menu in when 'active' class is added */
    }
}

/* --- Existing styles --- */
header {
    height: 100vh;
    background: url("https://arleta.site/interactivelink/2141/Landing-Page_1_Image.jpg") no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(20, 5, 35, 0.7); /* violet overlay */
    z-index: 1;
}

header .content {
    z-index: 2;
    max-width: 800px;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff4dff;
    animation: neon-glow 3s infinite alternate;
}

@keyframes neon-glow {
    0% { text-shadow: 0 0 5px #ff4dff, 0 0 10px #ff4dff; }
    50% { text-shadow: 0 0 15px #4ecbff, 0 0 25px #4ecbff; }
    100% { text-shadow: 0 0 5px #ff4dff, 0 0 10px #ff4dff; }
}

header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #eaeaea;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #ff4dff, #4ecbff, #ff9f40);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 20px rgba(255, 77, 255, 0.6);
}

.btn-link {
    padding: 12px 30px;
    background: linear-gradient(90deg, #ff4dff, #4ecbff, #ff9f40);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(78, 203, 255, 0.8);
}

section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

section#how-it-works,
section#why-choose-us,
section#sample-music,
section#packages,
section#success-stories,
section#business-impact {
    padding-top: 100px; /* Adjust for fixed navbar */
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4ecbff;
}

section p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ddd;
}

.lang-en, .lang-bm {
    display: none;
}

.lang-en.active, .lang-bm.active {
    display: block;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 77, 255, 0.5);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.package-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff4dff;
    box-shadow: 0 10px 40px rgba(255, 77, 255, 0.3);
}

.package-card h3 {
    font-size: 1.8rem;
    color: #4ecbff;
    margin-bottom: 10px;
}

.package-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff9f40;
    margin-bottom: 20px;
    display: block;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #ccc;
}

.package-card ul li::before {
    content: '✓';
    color: #4ecbff;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.package-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.package-card.highlight {
    border-color: #ff4dff;
    background: rgba(255, 77, 255, 0.1);
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 10px 50px rgba(255, 77, 255, 0.4);
}

.package-card.highlight::before {
    content: 'Paling Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4dff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

footer {
    background: #0d0d15;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    position: relative;
    z-index: 2;
}

/* Floating particle effect */
.particle {
    position: fixed;
    bottom: 0;
    background: radial-gradient(circle, #ff4dff, transparent);
    border-radius: 50%;
    opacity: 0.7;
    animation: float-up 4s linear forwards;
    z-index: 0;
    pointer-events: none;
}

@keyframes float-up {
    0% { transform: translateY(0) scale(1); opacity: 0.8; }
    100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

/* New section for sample music */
.sample-music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.audio-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audio-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ff4dff;
}

.audio-card p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
}

.audio-card iframe {
    width: 100%;
    height: 90px;
    border: none;
    border-radius: 10px;
}