/* GLOBAL RESETS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    border-bottom: 1px solid #333;
    
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

nav.visible {
    transform: translateY(0);
}

.nav-logo {
    height: 70px;
    width: auto;
    transition: transform 0.3s;
}

.nav-logo:hover { transform: scale(1.05); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-nav {
    background: #fff;
    color: #000 !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
}

/* --- FIXED VIDEO BACKGROUND --- */
#hero-video {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -10;
    object-fit: cover;
}

.hero-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -9;
}

/* --- VIDEO CONTEXT WRAPPER --- */
#video-context-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100px; 
}

/* SECTION 1: HERO (LOGO ONLY) */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-center-logo img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

/* Scroll Arrow Animation */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgba(255,255,255,0.7);
    animation: fadeInArrow 2s ease-in forwards;
    animation-delay: 2s;
    opacity: 0;
}

@keyframes fadeInArrow {
    to { opacity: 1; transform: translateX(-50%) translateY(10px); }
}

/* SECTION 2: INTRO TEXT */
#intro-text {
    min-height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 1;
}

.intro-content {
    text-align: center;
    padding: 2rem;
    background: transparent; 
    backdrop-filter: none;
}

.intro-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

/* --- MUTE BUTTON --- */
#muteBtn {
    position: sticky;
    bottom: 30px; 
    left: 30px;
    margin-left: 30px; 
    
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    float: left;
}
#muteBtn:hover { background: rgba(255,255,255,0.4); }

/* --- BUTTONS --- */
.btn-main, .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.btn-main { background-color: #ffffff; color: #000000; }
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255,255,255,0.3); }

.btn-outline { border: 2px solid #ffffff; color: #ffffff; }
.btn-outline:hover { background: #fff; color: #000; transform: translateY(-3px); }

/* --- MAIN CONTENT SECTIONS --- */
section { 
    padding: 4rem 10%;
    background: #121212;
    position: relative;
    z-index: 10; 
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
    padding-bottom: 10px;
}

/* TABS */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.tab-btn {
    background: #333; color: #fff; border: none;
    padding: 10px 20px; cursor: pointer;
    font-size: 1.2rem; border-radius: 5px; transition: 0.3s;
}
.tab-btn.active { background: #fff; color: #000; }

/* ACCORDION */
.accordion {
    background-color: #1e1e1e; color: #fff; cursor: pointer;
    padding: 18px; width: 100%; text-align: left;
    border: none; outline: none; transition: 0.4s;
    font-size: 1.2rem; border-bottom: 1px solid #333;
    display: flex; justify-content: space-between; align-items: center;
}
.active-accordion, .accordion:hover { background-color: #333; }

.panel {
    padding: 0; background-color: #121212;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* CAROUSEL */
.carousel-wrapper {
    position: relative; display: flex;
    align-items: center; padding: 10px 0;
}
.carousel {
    display: flex; gap: 15px; overflow-x: auto;
    padding: 20px 40px; scroll-behavior: smooth;
    scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel img {
    height: 300px; width: auto; 
    border-radius: 8px; cursor: pointer; transition: transform 0.3s;
}
.carousel img:hover { transform: scale(1.05); }

.scroll-btn {
    position: absolute; background: rgba(255,255,255,0.9);
    color: #000; border: none; width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer; z-index: 10;
    display: flex; justify-content: center; align-items: center;
    font-size: 1rem; transition: 0.2s; opacity: 0.7;
}
.scroll-btn:hover { opacity: 1; transform: scale(1.1); }
.scroll-btn.left { left: 10px; }
.scroll-btn.right { right: 10px; }

/* LIGHTBOX */
.lightbox {
    display: none; position: fixed; z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
    justify-content: center; align-items: center;
    animation: fadeIn 0.3s;
}
.lightbox-content {
    max-width: 85%; max-height: 85%;
    border-radius: 5px; box-shadow: 0 0 30px rgba(0,0,0,1);
}
.close-btn {
    position: absolute; top: 20px; right: 30px;
    color: #fff; font-size: 40px; cursor: pointer; z-index: 2002;
}
.lb-prev, .lb-next {
    cursor: pointer; position: absolute; top: 50%;
    width: auto; padding: 16px; margin-top: -50px;
    color: white; font-weight: bold; font-size: 30px;
    transition: 0.6s ease; border-radius: 0 3px 3px 0;
    user-select: none; z-index: 2001;
}
.lb-next { right: 0; border-radius: 3px 0 0 3px; }
.lb-prev { left: 0; border-radius: 3px 0 0 3px; }
.lb-prev:hover, .lb-next:hover { background-color: rgba(0,0,0,0.8); }

/* --- PRICING (SQUISHED VERSION) --- */
.pricing-content { display: none; gap: 2rem; flex-wrap: wrap; }
.pricing-content.active { display: flex; }

#pricing { padding-bottom: 2rem; }
#policies { padding-top: 2rem; }

.calculator-box {
    flex: 1; background: #1e1e1e; padding: 1.5rem; /* Reduced padding */
    border-radius: 15px; min-width: 300px;
}

/* Package Descriptions */
.package-details {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 1rem; /* Reduced margin */
    padding-left: 1.2rem;
    list-style-type: disc;
}
.package-details li { margin-bottom: 0.2rem; }

/* Addon Descriptions */
.addon-desc {
    display: block;
    font-size: 0.75rem; /* Smaller font */
    color: #888;
    margin-left: 35px;
    margin-top: -8px; /* Tighter to checkbox */
    margin-bottom: 10px; /* Reduced space between items */
    line-height: 1.3;
    font-style: italic;
}

/* Range Slider Spacing */
.range-wrapper {
    margin-bottom: 1.5rem; /* Reduced from 3rem */
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

/* Total Box */
.total-box {
    margin-top: 1rem;
    padding: 1rem;
    background: #1a1a1a;
    border: 2px solid #444;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.total-box h4 {
    margin-bottom: 0;
    font-size: 1rem;
    color: #ddd;
}
.animated-price {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.styled-input, .styled-select {
    width: 100%; padding: 10px 15px; border-radius: 25px;
    border: 2px solid #333; background: #2a2a2a; color: #fff;
    margin-bottom: 0.5rem; font-size: 0.9rem;
}
.custom-checkbox {
    display: block; position: relative; padding-left: 35px;
    margin-bottom: 8px; /* Reduced margin */
    cursor: pointer;
    font-size: 0.95rem;
}
.custom-checkbox input { position: absolute; opacity: 0; }
.checkmark {
    position: absolute; top: 0; left: 0; height: 20px; width: 20px;
    background-color: #2a2a2a; border-radius: 50%;
    border: 2px solid #555;
}
.custom-checkbox input:checked ~ .checkmark { background-color: #fff; border-color: #fff; }
.styled-slider {
    -webkit-appearance: none; width: 100%; height: 8px;
    background: #333; border-radius: 5px; outline: none; margin: 10px 0;
}
.styled-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 25px; height: 25px;
    border-radius: 50%; background: #fff; cursor: pointer;
}
.bundle-box { flex: 1; background: #1e1e1e; padding: 2rem; border-radius: 15px; }
.bundle-card {
    background: #2a2a2a; padding: 1.5rem; margin-bottom: 1rem;
    border-radius: 10px; border-left: 5px solid #fff; transition: transform 0.3s;
}
.bundle-card:hover { transform: translateX(10px); }

/* --- ABOUT SECTION --- */
.about-container {
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    text-align: left;
    background: #1e1e1e; 
    padding: 3rem; 
    border-radius: 15px;
}

.about-text {
    flex: 1; 
    padding-right: 2rem;
}

.about-actions { flex-shrink: 0; }

.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.policy-card { background: #1e1e1e; padding: 2rem; border-radius: 15px; }

@media (max-width: 768px) {
    .pricing-content, .policy-grid { flex-direction: column; }
    .about-container { flex-direction: column; text-align: center; }
    .about-text { padding-right: 0; margin-bottom: 1.5rem; }
    #intro-text h1 { font-size: 2.5rem; }
    #muteBtn { left: 20px; bottom: 20px; }
}