:root {
    --orange: #FF9F1C;
    --green: #2EC4B6;
    --dark: #121212;
    --light: #f3f3f3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Assistant', sans-serif; background: var(--light); color: var(--dark); overflow-x: hidden; scroll-behavior: smooth; }

.accent-orange { color: var(--orange); }
.accent-green { color: var(--green); }

/* Marquee */
.marquee { background: var(--dark); color: white; padding: 12px 0; overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
.marquee-content span { padding-right: 50px; font-size: 12px; font-weight: 600; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Header */
.header { background: #fff; padding: 20px 5%; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.1); }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.header-logo { font-weight: 700; font-size: 1.5rem; text-decoration: none; color: var(--dark); }
.header-menu { list-style: none; display: flex; gap: 20px; }
.header-menu a { text-decoration: none; color: var(--dark); font-size: 14px; font-weight: 600; }
.btn-chat { background: var(--green); color: white !important; padding: 8px 20px; border-radius: 50px; text-decoration: none; font-size: 14px; }

/* Hero */
.hero-banner { background: #fff; padding: 100px 5%; display: flex; justify-content: center; }
.hero-box { max-width: 600px; text-align: center; border: 1px solid var(--dark); padding: 50px; box-shadow: 10px 10px 0 var(--green); }
.hero-title { font-size: 3rem; margin-bottom: 20px; line-height: 1.1; }
.button-primary { background: var(--dark); color: white; padding: 15px 40px; text-decoration: none; display: inline-block; font-weight: 700; margin-top: 20px; }

/* Stats Bar */
.stats-bar { background: var(--dark); color: white; padding: 40px 0; }
.stats-container { display: flex; justify-content: space-around; max-width: 1000px; margin: 0 auto; }
.stat-item h3 { color: var(--green); font-size: 2rem; }
.stat-item p { font-size: 12px; text-transform: uppercase; opacity: 0.8; }

/* Sections */
.about-section, .packages-section, .portfolio-section, .contact-section { padding: 80px 5%; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; }

/* About Grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.badge { background: var(--orange); color: white; padding: 5px 15px; border-radius: 20px; font-size: 12px; }
.image-placeholder { background: #eee; height: 300px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #999; border: 1px solid #ddd; }

/* Package Cards */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.package-card { background: white; border: 1px solid #ddd; padding: 40px 20px; text-align: center; transition: 0.3s; }
.package-card.featured { border-color: var(--green); box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: scale(1.05); }
.package-card ul { list-style: none; margin: 20px 0; }
.package-card li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 14px; }
.btn-package { display: block; background: var(--dark); color: white; text-decoration: none; padding: 10px; margin-top: 20px; font-weight: 700; }

/* Carousel */
.carousel { overflow: hidden; }
.carousel-track { display: flex; gap: 20px; animation: carousel 20s linear infinite; }
.carousel-card { min-width: 250px; background: white; border: 1px solid #ddd; padding: 50px 20px; text-align: center; }

@keyframes carousel { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Contact Form */
.contact-box { background: white; border: 1px solid var(--dark); padding: 40px; box-shadow: 10px 10px 0 var(--orange); max-width: 700px; margin: 0 auto; }
.form-row { display: flex; gap: 15px; }
input, select, textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; font-family: inherit; }
.submit-btn { width: 100%; background: var(--dark); color: white; padding: 15px; border: none; font-weight: 700; cursor: pointer; }

/* Footer */
.footer { background: #fff; padding: 60px 5%; border-top: 1px solid #eee; text-align: center; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 800px; margin: 0 auto 30px; }
.footer-bottom { font-size: 12px; color: #999; }

/* Mobile Layout */
@media (max-width: 768px) {
    .header-menu, .about-grid, .form-row, .footer-grid { display: block; }
    .header-menu li { margin-bottom: 10px; }
    .stats-container { flex-wrap: wrap; gap: 20px; }
    .stat-item { width: 40%; }
}/* Mobile Menu Logic */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    transition: 0.3s;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .desktop-only { display: none; }

    .header-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 40px;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        box-shadow: -10px 0 20px rgba(0,0,0,0.05);
    }

    .header-menu.active {
        right: 0; /* Slide in */
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .header-menu li {
        margin: 15px 0;
        font-size: 18px;
    }

    /* Animate Hamburger to 'X' */
    .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}.hero-banner {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000; /* If video fails, background is black */
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Bottom Layer */
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Darkens video so text pops */
    z-index: 2; /* Middle Layer */
}

.hero-content {
    position: relative;
    z-index: 3; /* Top Layer */
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.hero-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 600px;
    text-align: center;
    border: 1px solid #121212;
    box-shadow: 10px 10px 0 var(--green);
}