/* Global Styles from Moto TV Pro Design */
:root {
    /* DARK GREEN & NEON THEME */
    --primary: #1ED760;
    /* Ultra Bright Neon Green */
    --primary-light: #1ED760;
    --primary-dark: #059669;
    --primary-rgb: 30, 215, 96;
    --secondary: #047857;
    /* Deep rich green */
    --secondary-rgb: 4, 120, 87;
    --dark-bg: #000000;
    /* Extremely dark green-tinted black */
    --card-bg: #040d07;
    /* Very deep dark green card */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
}

/* Navbar Premium Look */
.navbar {
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0 !important;
    margin: 0 15px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

/* Hero Section Remastered */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero-bg-clear-tv.png') center right / cover no-repeat;
    opacity: 1;
    z-index: -2;
    /* Optional slight dark gradient only at the left so text is readable */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%), url('hero-bg-clear-tv.png');
}

@keyframes zoomEffect {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed heavy shadows so the image stays 100% crystal clear */
    background: transparent;
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    /* Pure Bright White, NO gradient, NO blur */
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: #FFFFFF;
        /* Pure Bright White, NO gradient, NO blur */
        letter-spacing: -1px;
    }
}

/* Buttons */
.btn-glow {
    background: var(--primary) !important;
    color: #000 !important; /* Forces Black Text */
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(30, 215, 96, 0.4);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.btn-glow:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 215, 96, 0.6);
    color: #000 !important;
}

.btn-outline-glow {
    background: var(--primary) !important; /* Solid Green for visibility */
    border: 2px solid var(--primary) !important;
    color: #000 !important; /* Forces Black Text */
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-glow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Features Band */
.features-band {
    background: #0f0f0f;
    border-bottom: 1px solid #222;
    padding: 30px 0;
}

.features-band p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

/* Services Cards */
.service-card {
    background: #040d07;
    /* Crisp solid dark color */
    border: 1px solid #081c11;
    /* Sharp visible border */
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #1ED760;
    /* Sharp Cyan border on hover */
    box-shadow: 0 10px 25px rgba(30, 215, 96, 0.15);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

/* Showcase Section */
.showcase-section {
    background: linear-gradient(to bottom, var(--dark-bg), #0f0f0f);
}

.poster-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    cursor: pointer;
}

.poster-card img {
    width: 100%;
    height: auto;
    display: block;
}

.poster-card:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Pricing Plans */
/* CLEAN LIGHT CARD STYLE */
.plan-card {
    background: #f8f9fa !important;
    /* Solid Light Gray / Off-White */
    border: 1px solid #e0e0e0 !important;
    border-radius: 16px !important;
    padding: 30px 20px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

.plan-card:hover {
    transform: translateY(-8px) !important;
    background: #ffffff !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary) !important;
}

.plan-card.popular {
    border: 2px solid var(--primary) !important;
    background: #ffffff !important;
}

.plan-card h3 {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #111 !important;
    /* Sharp Black Text */
    margin-bottom: 5px !important;
    text-transform: uppercase !important;
}

.price-tag {
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    color: #000 !important;
    /* Sharp Black Price */
    margin: 15px 0 !important;
}

.price-tag span {
    font-size: 1rem !important;
    color: #777 !important;
}

.feature-list li {
    color: #444 !important;
    /* Dark Gray Features */
    font-weight: 500 !important;
}

.feature-list {
    margin: 20px 0;
    padding: 20px 0;
    list-style: none;
    text-align: left;
    border-top: 1px solid #1a1a1a;
}

.feature-list li {
    margin-bottom: 8px;
    color: #999;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.feature-list i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 0.9rem;
}

.badge-pro-solid {
    background: var(--primary);
    color: #000;
    font-weight: 800;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Accordion FAQ */
.faq-item {
    background: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-button {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-button:hover {
    background: #222;
}

.faq-content {
    padding: 0 20px 20px;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: #000;
    color: #666;
    padding: 60px 0 30px;
    border-top: 1px solid #222;
}

footer a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #fff;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, #f43f5e, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: #e0e0e0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-header {
    padding-top: 120px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, rgba(20, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
}

.navbar {
    background: rgba(0, 0, 0, 0.95);

    transition: all 0.3s;
    border-bottom: 1px solid #333;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero-bg-clear-tv.png') center right / cover no-repeat;
    opacity: 1;
    z-index: -2;
    /* Optional slight dark gradient only at the left so text is readable */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%), url('hero-bg-clear-tv.png');
}





@keyframes pulseBg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.logo-img {
    max-width: 280px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 30px rgba(var(--primary-rgb), 0.5));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    /* Pure Bright White, NO gradient, NO blur */
    letter-spacing: -1px;
}

.hero p.lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #ccc;
    font-weight: 400;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(30, 215, 96, 0.4);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.btn-glow:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 215, 96, 0.6);
    color: #fff;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: #FFFFFF;
        /* Pure Bright White, NO gradient, NO blur */
        letter-spacing: -1px;
    }

    .logo-img {
        max-width: 200px;
    }

    .btn-glow,
    .btn-outline-glow {
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }

    .d-flex.gap-3.justify-content-center {
        flex-direction: column;
    }
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);

        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
    }

    .navbar-nav .nav-link {
        color: #000000 !important;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary) !important;
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 5;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.btn-outline-glow {
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50px;
    padding: 16px 45px;
    font-weight: 600;
    color: #ffffff !important;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-glow:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
    color: white;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(20, 0, 0, 0.8);
    color: var(--primary-light);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.card {
    background: #111111;
    color: #ffffff;
    border: 1px solid #333;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.3);
}

footer {
    background: #000000;
    border-top: 1px solid #333;
    padding: 50px 0;
}

/* Content Showcase Pro Styles */
.showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.3);
    border-color: rgba(var(--primary-rgb), 0.5);
}

.card-image {
    position: relative;
    padding-top: 150%;
    /* 2:3 Aspect Ratio for poster look */
    overflow: hidden;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-card:hover .card-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 4rem;
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.8));
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-card:hover .play-icon {
    transform: scale(1);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8) 50%, transparent);
    z-index: 2;
}

.fw-800 {
    font-weight: 800;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Pro Cinematic Utilities */
.text-pro {
    color: #1ED760;
    font-weight: 800;
}

.bg-pro-badge {
    background: #040d07 !important;
    border: 1px solid #1ED760 !important;
    color: #1ED760 !important;
    box-shadow: none;
}

.icon-pro {
    color: #1ED760 !important;
}

.badge-pro-solid {
    background: #1ED760 !important;
    color: white !important;
    box-shadow: none;
}


/* Hero Floating Posters */
@keyframes floatUp {
    0% {
        transform: translateY(0px) rotate(2deg);
    }

    50% {
        transform: translateY(-20px) rotate(4deg);
    }

    100% {
        transform: translateY(0px) rotate(2deg);
    }
}

@keyframes floatDown {
    0% {
        transform: translateY(0px) rotate(-3deg);
    }

    50% {
        transform: translateY(20px) rotate(-1deg);
    }

    100% {
        transform: translateY(0px) rotate(-3deg);
    }
}

@keyframes floatCenter {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

.hero-posters-grid {
    position: relative;
    width: 100%;
    height: 550px;
    margin-top: 50px;
}

.floating-poster {
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 25px rgba(30, 215, 96, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: cover;
}

.floating-poster:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 1), 0 0 40px rgba(30, 215, 96, 0.5);
    z-index: 10 !important;
    border-color: rgba(30, 215, 96, 0.8);
    cursor: pointer;
}

.poster-1 {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 200px;
    animation: floatUp 6s ease-in-out infinite;
    z-index: 3;
}

.poster-2 {
    position: absolute;
    top: 140px;
    right: 220px;
    width: 240px;
    animation: floatCenter 5s ease-in-out infinite;
    z-index: 5;
}

.poster-3 {
    position: absolute;
    top: 300px;
    right: 60px;
    width: 210px;
    animation: floatDown 7s ease-in-out infinite;
    z-index: 4;
}


/* Text Shine Animation for Hero H1 */
@keyframes textShine {
    to {
        background-position: 200% center;
    }
}