/* CSS Variables & Global Styles */
:root {
    /* Theme 3: OTT MEGA 2.0 (Violet/Purple) */
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --primary: #8c52ff;
    --secondary: #6a00ff;
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --accent-gradient: linear-gradient(135deg, #8c52ff, #00c6ff);
    --card-border: rgba(255, 255, 255, 0.1);
    --glow: 0 0 35px rgba(140, 82, 255, 0.4);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Pattern */
/* Background Pattern removed from global body */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background: rgba(5, 2, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: -10px;
}

.logo i {
    display: none;
    /* Deprecated */
}

.nav-logo-icon {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(217, 0, 255, 0.5));
}

.logo span {
    color: #ffffff;
}

.logo .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}


.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 100px 0 100px;
    /* Reduced from 160px to 100px */
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
    /* Ensure robust background */
}

/* Grid Pattern for Hero Only */
/* Grid Pattern Removed */
.hero::before {
    display: none;
}

/* Corner Glow Effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, rgba(217, 0, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(0, 204, 255, 0.1) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    /* Bring content above grid and glow */
}

/* Decorative Plus Icons */
.hero-plus-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.5rem;
    font-weight: 300;
    z-index: 1;
    animation: blink 4s infinite ease-in-out;
}

.hero-star {
    position: absolute;
    color: #ffd700;
    /* Gold color for stars */
    font-size: 1.2rem;
    z-index: 1;
    opacity: 0.8;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    animation: twinkle 3s infinite ease-in-out alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.2) rotate(15deg);
    }

}

@keyframes blink {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    max-width: 600px;
}

.hero-text .badge {
    display: none;
}

.badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 0, 204, 0.15);
    border: 1px solid rgba(255, 0, 204, 0.5);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #ff5de3;
    margin-bottom: 20px;
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.6);
    animation: float 4s ease-in-out infinite;
}

.badge i {
    margin-right: 5px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 540px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: #130a1c;
    border: 1px solid rgba(255, 0, 204, 0.2);
    padding: 12px 30px 12px 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 35px rgba(255, 0, 204, 0.5);
    animation: float 3s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 0, 255, 0.3);
    border-color: #ff00cc;
    animation-play-state: paused;
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: white;
    margin-right: 15px;
    box-shadow: 0 0 15px rgba(217, 0, 255, 0.5);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text strong {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.btn-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.glowing-circle {
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
    box-shadow: none;
}

.glowing-circle::before {
    content: '';
    position: absolute;
    top: 50px;
    /* Offset dot */
    left: 85%;
    width: 8px;
    height: 8px;
    background: #d900ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #d900ff, 0 0 20px #d900ff;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Features */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(20, 10, 30, 0.5));
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    /* Centered as per new style typically */
    transition: 0.3s;
    border: 1px solid var(--card-border);
}

.feature-card:hover {
    border-color: #ff00cc;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 204, 0.2);
}

.feature-card:hover .icon-box {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.4);
    transform: scale(1.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 20px;
    /* Center icon */
    transition: all 0.3s ease;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Skeleton Loader */
.skeleton-card {
    height: 450px;
    border-radius: 24px;
    background: var(--bg-card);
    /* Dark background similar to plan cards */
    border: 1px solid var(--card-border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.skeleton-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

/* Shimmer Effect on Blocks */
.skeleton-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shimmer 1.5s infinite;
}

.title-block {
    width: 40%;
    height: 20px;
}

.subtitle-block {
    width: 70%;
    height: 20px;
    margin-bottom: 20px;
}

.content-block {
    width: 100%;
    flex-grow: 1;
    /* Fills remaining space */
    border-radius: 16px;
}

.btn-block {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    margin-top: auto;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Plans Section */
.plans {
    padding: 80px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-content: center;
}

.plan-card {
    background: linear-gradient(145deg, #3d1f4d, #2d1a3d);
    border: 2px solid rgba(255, 102, 179, 0.6);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    border-color: #ff66b3;
    box-shadow: 0 0 40px rgba(255, 102, 179, 0.4);
    transform: translateY(-5px) scale(1.03);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.plan-header h3 {
    font-size: 1.3rem;
}

.duration {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.duration-select {
    font-size: 0.75rem;
    background: rgba(255, 0, 204, 0.1);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 700;
    border: 1px solid rgba(255, 0, 204, 0.3);
    outline: none;
    cursor: pointer;
    font-family: var(--font-main);
    transition: 0.3s;
}

.duration-select:hover,
.duration-select:focus {
    background: #ff00cc;
    border-color: white;
    box-shadow: 0 0 10px rgba(255, 0, 204, 0.5);
}

.duration-select option {
    background: #180a29;
    color: white;
}

.price-box {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    /* Lighter grey for better visibility on dark bg */
    font-size: 1rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.discount-badge {
    display: inline-block;
    background: #ff66b3;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(255, 102, 179, 0.5);
}

.plan-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: white;
    display: flex;
    align-items: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.plan-features li i {
    color: #00ff88;
    /* Green checkmark */
    margin-right: 10px;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.buy-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff66b3 0%, #ff3399 100%);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 102, 179, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.buy-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 30px rgba(255, 102, 179, 0.6);
}

.buy-btn:hover::before {
    left: 100%;
}

.disclaimer {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Align top */
    gap: 0px;
    flex-wrap: wrap;
    /* Fallback */
    margin-top: 50px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 40px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff007f;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.step-item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 250px;
}

.step-connector {
    padding-top: 25px;
    /* Align with icon center approximately */
    color: var(--text-muted);
    opacity: 0.3;
    font-size: 0.8rem;
}

/* Help Section */
.help-section {
    padding: 60px 0;
}

.help-card {
    background: #181024;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.help-card h2 {
    margin-bottom: 10px;
}

.help-card p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 220px;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-btn i {
    font-size: 2rem;
    margin-right: 15px;
}

.instagram i {
    color: #E1306C;
}

.whatsapp i {
    color: #25D366;
}

.btn-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-info strong {
    font-size: 0.95rem;
    font-weight: 600;
}


/* Customer Details Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Darker backdrop */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #180a29;
    /* Match your card bg */
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    border: 1px solid rgba(217, 0, 255, 0.2);
    box-shadow: 0 0 40px rgba(217, 0, 255, 0.2);
    text-align: left;
    position: relative;
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #b3b3b3;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #d900ff;
    background: rgba(255, 255, 255, 0.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    opacity: 0.7;
}

.modal-close:hover {
    opacity: 1;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #ff00cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-submit:hover {
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
}



/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 20px;
    font-size: 0.9rem;
    background: #020105;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 250px;
}

.footer-links h4,
.footer-legal h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-legal p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-legal .small-text {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Track Order */
.track-order {
    padding: 80px 0;
    background: linear-gradient(0deg, rgba(20, 10, 30, 0.5), transparent);
}

.track-form-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
}

.track-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.track-form input {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-main);
}

.track-form input:focus {
    border-color: var(--primary);
}

.track-form button {
    justify-content: center;
    cursor: pointer;
    border: none;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {

    /* Reorder Sections for Mobile */
    .main-content-flow {
        display: flex;
        flex-direction: column;
    }

    #plans {
        order: -1;
    }

    /* Compact Mobile Navbar */
    .navbar {
        padding: 10px 0 !important;
    }

    .logo {
        font-size: 1.2rem !important;
    }

    .nav-logo-icon {
        height: 30px !important;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-visual {
        display: none;
    }

    .hero-text {
        margin-bottom: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* simple hide for now, would need JS toggle */
    }

    .mobile-toggle {
        display: block;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p,
    .footer-legal p {
        margin: 0 auto 10px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }


    .step-connector {
        transform: rotate(90deg);
        margin: -20px 0 10px;
        padding: 0;
    }

    /* Compact Mobile Product Cards */
    .plans {
        padding: 40px 0 !important;
    }

    .plans-grid {
        gap: 15px !important;
    }

    .plan-card {
        padding: 20px 15px !important;
        border-radius: 16px !important;
    }

    .plan-header {
        margin-bottom: 12px !important;
    }

    .plan-header h3 {
        font-size: 1.1rem !important;
    }

    .duration {
        font-size: 0.65rem !important;
        padding: 3px 6px !important;
    }

    .price-box {
        margin-bottom: 12px !important;
    }

    .original-price {
        font-size: 0.85rem !important;
    }

    .current-price {
        font-size: 1.8rem !important;
    }

    .discount-badge {
        font-size: 0.7rem !important;
        padding: 3px 10px !important;
        margin-bottom: 15px !important;
    }

    .plan-features {
        margin-bottom: 15px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .plan-features li {
        margin-bottom: 0 !important;
        font-size: 0.8rem !important;
    }

    .plan-features li i {
        font-size: 0.75rem !important;
        margin-right: 6px !important;
    }

    .buy-btn {
        padding: 10px !important;
        font-size: 0.95rem !important;
        margin-bottom: 10px !important;
    }

    .disclaimer {
        font-size: 0.6rem !important;
    }
}


/* Customer Details Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Darker backdrop */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #180a29;
    /* Match your card bg */
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    border: 1px solid rgba(217, 0, 255, 0.2);
    box-shadow: 0 0 40px rgba(217, 0, 255, 0.2);
    text-align: left;
    position: relative;
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #b3b3b3;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #d900ff;
    background: rgba(255, 255, 255, 0.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    opacity: 0.7;
}

.modal-close:hover {
    opacity: 1;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #ff00cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-submit:hover {
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
}

/* --- New Checkout Modal Styles (Premium Secure Theme) --- */

.checkout-modal {
    max-width: 850px !important;
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    background: #0f0518;
    /* Deep dark base */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(132, 0, 255, 0.25);
}

.checkout-container {
    display: flex;
    width: 100%;
}

/* Left Side: Summary (Gradient & Glass) */
.checkout-summary {
    width: 40%;
    background: linear-gradient(160deg, #1f0b36 0%, #0d0417 100%);
    padding: 35px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Decorative Glow on Summary */
.checkout-summary::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 204, 0.15), transparent 70%);
    pointer-events: none;
}

.checkout-summary h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

/* Product Card in Summary */
.summary-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: auto;
    /* Push content down */
    position: relative;
    z-index: 2;
}

.product-badge {
    display: inline-block;
    background: rgba(217, 0, 255, 0.15);
    color: #e066ff;
    border: 1px solid rgba(217, 0, 255, 0.3);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-details h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.summary-price-box {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.summary-original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
}

.summary-current-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    /* Green for trust/price? or keep white */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.summary-discount {
    background: #00ff88;
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    vertical-align: top;
    position: relative;
    top: -5px;
}

/* Trust Badges in Summary */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: #aaa;
    text-align: center;
}

.trust-item i {
    font-size: 1.2rem;
    color: #00ff88;
    /* Secure Green */
}

/* Feature List in Summary */
.summary-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.summary-item i {
    color: #ff00cc;
    width: 20px;
    text-align: center;
}

/* Right Side: Form */
/* Right Side: Form (Secure Look) */
.checkout-form-section {
    width: 60%;
    padding: 35px 50px;
    position: relative;
    background: #130a1c;
    /* Dark form bg */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Close button positioning for split modal */
.checkout-modal .modal-close {
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-modal .modal-close:hover {
    background: #ff007f;
    color: white;
    border-color: #ff007f;
    transform: rotate(90deg);
}

.checkout-form-section .modal-header {
    text-align: left;
    margin-bottom: 30px;
}

.checkout-form-section .modal-header h2 {
    text-align: left;
    margin-bottom: 8px;
    font-size: 1.8rem;
    background: linear-gradient(90deg, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-form-section .modal-header p {
    color: #888;
    font-size: 0.9rem;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #e0e0e0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #8c52ff;
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-control:focus {
    border-color: #8c52ff;
    background: rgba(140, 82, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(140, 82, 255, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.2);
    outline: none;
}

.form-hint {
    display: block;
    color: #ff3366;
    /* Warning color */
    font-size: 0.8rem;
    margin-top: 6px;
    display: none;
    /* Hidden by default */
}

/* Glowing Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #8c52ff 0%, #6a00ff 100%);
    border-radius: 50px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(132, 0, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(132, 0, 255, 0.5);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit i {
    margin-right: 10px;
}

.terms-text {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.terms-text i {
    color: #00ff88;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-container {
        flex-direction: column;
    }

    .checkout-summary,
    .checkout-form-section {
        width: 100%;
    }

    .checkout-summary {
        padding: 15px !important;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .checkout-summary h2 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }

    .product-badge {
        font-size: 0.6rem !important;
        padding: 3px 8px !important;
        margin-bottom: 12px !important;
    }

    .summary-price-box {
        margin-bottom: 15px !important;
    }

    .summary-original-price {
        font-size: 0.85rem !important;
    }

    .summary-current-price {
        font-size: 1.6rem !important;
    }

    .summary-discount {
        font-size: 0.7rem !important;
        padding: 2px 6px !important;
    }

    #modalProductFeatures {
        margin-top: 12px !important;
        margin-bottom: 12px !important;
    }

    #modalProductFeatures ul {
        gap: 6px !important;
        font-size: 0.75rem !important;
    }

    .summary-features {
        display: none !important;
    }

    .checkout-form-section {
        padding: 15px 20px !important;
    }

    .checkout-form-section .modal-header {
        margin-bottom: 15px !important;
    }

    .checkout-form-section .modal-header h2 {
        font-size: 1.1rem !important;
        margin-bottom: 3px !important;
    }

    .checkout-form-section .modal-header p {
        font-size: 0.75rem !important;
    }

    .form-group {
        margin-bottom: 12px !important;
    }

    .form-group label {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }

    .form-control {
        padding: 10px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }

    .btn-submit {
        padding: 12px !important;
        font-size: 1rem !important;
        margin-top: 15px !important;
    }

    .terms-text {
        font-size: 0.65rem !important;
        margin-top: 10px !important;
    }

    .checkout-modal {
        overflow-y: auto;
        max-height: 95vh !important;
        flex-direction: column;
    }

    .modal-content.checkout-modal {
        width: 95% !important;
        max-width: 95% !important;
        padding: 0 !important;
    }
}

/* New Orbit Animation Styles */
.orbit-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: rotateCircle 60s linear infinite;
}

.orbit-container {
    position: relative;
    width: 380px;
    height: 380px;
    animation: rotateOrbit 25s linear infinite;
}

.orbit-item {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #1a0b2e;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 204, 0.3);
    box-shadow: 0 0 20px rgba(217, 0, 255, 0.3);
    animation: counterRotate 25s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-item:hover {
    border-color: #d900ff;
    box-shadow: 0 0 30px rgba(217, 0, 255, 0.6);
    z-index: 10;
    cursor: pointer;
}

/* Positioning Items on the circle */
.item-1 {
    top: -35px;
    left: 50%;
    margin-left: -35px;
}

.item-2 {
    top: 50%;
    right: -35px;
    margin-top: -35px;
}

.item-3 {
    bottom: -35px;
    left: 50%;
    margin-left: -35px;
}

.item-4 {
    top: 50%;
    left: -35px;
    margin-top: -35px;
}

.orbit-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.center-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.pulse-circle {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(217, 0, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.4;
    }
}

/* Center Content Styling */
.center-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
}

.center-icon {
    font-size: 2.5rem;
    color: #ffd700;
    /* Gold */
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    margin-bottom: 5px;
    animation: float 3s ease-in-out infinite;
}

.center-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    /* Increased size */
    background: linear-gradient(45deg, #fff, #ffd700);
    background-clip: text;
    /* Standard property */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}



/* Updated positioning for 6 items */
.item-1 {
    top: -35px;
    left: 50%;
    margin-left: -35px;
    margin-top: 0;
    right: auto;
    bottom: auto;
}

.item-2 {
    top: 60px;
    right: auto;
    left: 319.5px;
    margin-top: 0;
    margin-left: 0;
}

.item-3 {
    top: 250px;
    right: auto;
    left: 319.5px;
    margin-top: 0;
    margin-left: 0;
    bottom: auto;
}

.item-4 {
    top: 345px;
    left: 50%;
    margin-left: -35px;
    margin-top: 0;
    bottom: auto;
}

.item-5 {
    top: 250px;
    left: -9.5px;
    margin-top: 0;
    margin-left: 0;
    bottom: auto;
}

.item-6 {
    top: 60px;
    left: -9.5px;
    margin-top: 0;
    margin-left: 0;
    bottom: auto;
}


/* Mobile Animation Fix */
/* Mobile Layout Refactor: Clean Stack Text -> Visual -> Button */
@media (max-width: 768px) {

    .brand-section,
    .hero-plus-icon {
        display: none !important;
    }

    .hero {
        padding-top: 80px !important;
        /* Reduced from 100px */
        padding-bottom: 80px !important;
        height: auto !important;
        min-height: auto;
        /* Allow content to dictate height */
    }

    .container.hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 5px !important;
        /* Reduced from 80px inline */
        padding-bottom: 40px;
        position: relative;
    }

    /* Unwrap hero-text to reorder children freely */
    .hero-text {
        display: contents !important;
    }

    /* 1. Badge (Top) */
    .hero-text .badge {
        order: 1;
        display: inline-flex !important;
        align-items: center;
        margin-bottom: 15px;
        position: static;
        width: auto;
    }

    .hero-text .badge i {
        margin-right: 5px;
    }

    /* 2. Headline */
    .hero h1 {
        order: 2;
        width: 100%;
        text-align: center;
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
        text-shadow: none;
        padding: 0 15px;
    }

    /* 3. Subtitle (Description) */
    .hero-text p {
        order: 3;
        display: block !important;
        width: 100%;
        text-align: center;
        font-size: 1.1rem !important;
        color: #ccc !important;
        margin-bottom: 25px !important;
        padding: 0 15px;
        line-height: 1.5 !important;
    }

    /* 4. CTA Button Group */
    .hero-btns {
        order: 4;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 30px !important;
    }

    .hero-text .cta-button {
        position: relative !important;
        transform: none !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 350px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 16px 20px;
        background: linear-gradient(135deg, #8c52ff, #6a00ff);
        box-shadow: 0 10px 30px rgba(140, 82, 255, 0.4);
        border-radius: 50px;
        z-index: 10;
        text-align: center;
        text-decoration: none;
    }

    .hero-text .cta-button .btn-title {
        font-size: 1.1rem !important;
        font-weight: 800;
        text-transform: uppercase;
        display: block;
        line-height: 1.2;
        color: white;
    }

    .hero-text .cta-button .btn-sub {
        font-size: 0.85rem !important;
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Hide any interfering visual elements on mobile if they break the flow */
    .hero-visual,
    .hero-floating-side {
        display: none !important;
    }
}

/* --- New Sections: Reviews & FAQ (Added by Update) --- */

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #130a1c;
    /* Slightly alternate background */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    transition: 0.3s;
}

.review-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    transition: 0.3s;
}

.faq-item:hover {
    background: linear-gradient(145deg, #2a1240, #1e0d2e);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item h3 {
    margin-bottom: 10px;
    color: white;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Support CTA */
.support-cta {
    background: linear-gradient(180deg, var(--bg-dark), #1d0f2b);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Marquee Animation */
.logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    gap: 80px;
    /* Space between items */
    /* If we duplicate content, we animate to -50% */
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

/* Pause on hover */
.logo-marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    cursor: default;
}

.marquee-content span:hover {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(140, 82, 255, 0.6);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* --- UI ENHANCEMENTS for OTT MEGA 2.0 --- */

/* 1. Glassmorphic Navbar */
.navbar {
    background: rgba(5, 5, 5, 0.8) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* 2. Premium Product Cards (Glassmorphism & Glow) */
.plan-card {
    background: rgba(20, 20, 20, 0.6) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease !important;
    border-radius: 20px !important;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 10px 40px rgba(140, 82, 255, 0.25) !important;
    /* Purple glow */
}

/* 3. Modern Gradient Text */
.section-title {
    background: linear-gradient(120deg, #fff, #b3b3b3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

/* 4. Enhanced Buttons */
.buy-btn {
    background: var(--primary) !important;
    box-shadow: 0 0 20px rgba(140, 82, 255, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.buy-btn:hover {
    background: #7a3ee6 !important;
    /* Slightly darker purple on hover */
    box-shadow: 0 0 30px rgba(140, 82, 255, 0.6) !important;
}

/* 5. Features Section Pop */
.feature-card {
    background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(30, 30, 30, 1) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.feature-card:hover {
    background: linear-gradient(180deg, rgba(25, 25, 25, 1) 0%, rgba(40, 40, 40, 1) 100%) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.icon-box {
    background: rgba(140, 82, 255, 0.1) !important;
    /* Purple tint */
    color: var(--primary) !important;
}

/* 6. Section Dividers */
.underline {
    background: linear-gradient(90deg, transparent, var(--primary), transparent) !important;
    height: 3px !important;
    border-radius: 2px;
}


/* --- HERO UI SUPERCHARGE (Next-Gen) --- */

/* 1. Dynamic Background Spotlight */
.hero {
    background: radial-gradient(circle at 50% 30%, rgba(20, 0, 40, 1) 0%, rgba(5, 5, 5, 1) 50%, #000 100%) !important;
}

/* 2. Headline Typography */
.hero h1 {
    font-weight: 800 !important;
    letter-spacing: -1px !important;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 30%, #a0a0a0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(140, 82, 255, 0.3));
    margin-bottom: 25px !important;
}

.hero h1 .text-gradient {
    background: linear-gradient(90deg, #8c52ff, #00c6ff, #8c52ff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s linear infinite;
}

@keyframes gradientText {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* 3. Subtext Polish */
.hero p {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    color: #ccc !important;
    font-weight: 300 !important;
    max-width: 600px !important;
    margin-bottom: 40px !important;
}

/* 4. Button Glow & Shimmer */
.hero .cta-button {
    background: linear-gradient(135deg, #8c52ff, #6a00ff) !important;
    box-shadow: 0 0 25px rgba(140, 82, 255, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.hero .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(140, 82, 255, 0.8) !important;
}

/* Outline Button */
.hero .cta-button.outline {
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.hero .cta-button.outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: white !important;
}

/* 5. Trust Badge Polish */
.hero .trust-row span {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem !important;
    transition: 0.3s;
}

.hero .trust-row span:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}


/* --- ULTIMATE HERO UPGRADE --- */

/* 1. Breathing Background Glow */
@keyframes breatheGlow {
    0% {
        background: radial-gradient(circle at 50% 50%, rgba(140, 82, 255, 0.15) 0%, rgba(5, 5, 5, 1) 60%);
    }

    50% {
        background: radial-gradient(circle at 50% 50%, rgba(140, 82, 255, 0.25) 0%, rgba(5, 5, 5, 1) 70%);
    }

    100% {
        background: radial-gradient(circle at 50% 50%, rgba(140, 82, 255, 0.15) 0%, rgba(5, 5, 5, 1) 60%);
    }
}

.hero {
    animation: breatheGlow 6s infinite ease-in-out !important;
}

/* 2. Floating Text Container */
@keyframes floatUp {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-text {
    animation: floatUp 5s infinite ease-in-out;
}

/* 3. Massive Headline with Stroke */
.hero h1 {
    font-size: 4rem !important;
    /* Bigger! */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* 4. Background Particles (Simulated via box-shadow) */
.hero::before {
    display: block !important;
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: transparent;
    box-shadow:
        10vw 20vh #8c52ff,
        30vw 40vh #00c6ff,
        70vw 10vh #ff00cc,
        90vw 80vh #8c52ff,
        20vw 80vh #00c6ff,
        50vw 50vh #ffffff;
    border-radius: 50%;
    animation: particlesMove 20s linear infinite;
    opacity: 0.4;
    z-index: 1;
}

@keyframes particlesMove {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* 5. Shimmer Button Effect */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}


/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    /* High z-index to stay on top */
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: floatBtn 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background-color: #20b858;
}

@keyframes floatBtn {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}


/* --- HERO SIDE VISUALS (FLOATING 3D CARDS) --- */
.hero {
    position: relative;
    /* Ensure absolute children are relative to hero */
}

.hero-floating-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* Centered vertically relative to hero */
    width: 250px;
    height: 400px;
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through */
    /* Check screen size later */
}

.left-side-visuals {
    left: 5%;
}

.right-side-visuals {
    right: 5%;
}

.float-card {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatGeneric 6s ease-in-out infinite;
    /* Glassmorphism base */
    backdrop-filter: blur(10px);
    background: rgba(20, 20, 20, 0.6);
}

.float-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Individual Card Positioning & Delays */

/* LEFT SIDE */
.card-1 {
    top: 0;
    left: 20px;
    width: 120px;
    height: 120px;
    transform: rotate(-15deg);
    z-index: 2;
    animation-delay: 0s;
}

.card-2 {
    top: 100px;
    left: 80px;
    width: 90px;
    height: 90px;
    transform: rotate(10deg);
    z-index: 1;
    animation-delay: 1.5s;
    filter: blur(1px);
    /* Slight depth */
}

.card-3 {
    top: 200px;
    left: 10px;
    width: 110px;
    height: 110px;
    transform: rotate(-5deg);
    z-index: 3;
    animation-delay: 0.5s;
    border-color: rgba(140, 82, 255, 0.3);
    /* Purple hint */
}

/* RIGHT SIDE */
.card-4 {
    top: 20px;
    right: 30px;
    width: 110px;
    height: 110px;
    transform: rotate(15deg);
    z-index: 2;
    animation-delay: 2s;
}

.card-5 {
    top: 120px;
    right: 90px;
    width: 100px;
    height: 100px;
    transform: rotate(-10deg);
    z-index: 1;
    animation-delay: 0.8s;
    filter: blur(1px);
}

.card-6 {
    top: 220px;
    right: 20px;
    width: 120px;
    height: 120px;
    transform: rotate(5deg);
    z-index: 3;
    animation-delay: 1.2s;
    border-color: rgba(0, 198, 255, 0.3);
    /* Blue hint */
}

@keyframes floatGeneric {
    0% {
        transform: translateY(0px) rotate(var(--r, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(var(--r, 0deg));
    }

    100% {
        transform: translateY(0px) rotate(var(--r, 0deg));
    }
}

/* Mobile: Hide floating elements to clean up UI */
@media (max-width: 1200px) {
    .hero-floating-side {
        display: none;
    }
}


/* --- MOBILE FIXES FOR HERO --- */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
        overflow: hidden;
        /* Prevent horizontal scroll from effects */
    }

    /* Fix Headline Size on Mobile */
    .hero h1 {
        font-size: 2.2rem !important;
        /* Scale down drastically */
        margin-bottom: 15px !important;
    }

    .hero h1 span {
        font-size: 2.2rem !important;
        /* Scale specific lines */
        margin-bottom: 0px !important;
    }

    /* Scale 'at the' */
    .hero h1 span:nth-child(3) {
        font-size: 1rem !important;
        margin: 5px 0 !important;
    }

    /* Scale 'BEST PRICE' gradient text */
    .hero h1 .text-gradient {
        font-size: 3rem !important;
        letter-spacing: -1px !important;
    }

    /* Fix Subtitle */
    .hero p {
        font-size: 0.95rem !important;
        max-width: 90% !important;
        margin-bottom: 25px !important;
        line-height: 1.5 !important;
    }

    /* Fix Buttons Layout */
    .hero-btns {
        gap: 15px;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
        margin-top: 20px;
        /* Add extra spacing above buttons */
    }

    .hero .cta-button {
        width: 100% !important;
    }

    /* Hide Complex Background Effects on Mobile to Clean UI */
    .hero-floating-side {
        display: none !important;
    }

    /* Ensure Logo Marquee fits */
    .logo-marquee {
        padding: 15px 0 !important;
    }

    .marquee-content span {
        font-size: 1rem !important;
        gap: 40px !important;
    }
}

. m a r q u e e - c o n t e n t    {
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 / *   C e n t e r   i m a g e s   v e r t i c a l l y   * /             g a p :    6 0 p x ;
                 / *   A d j u s t   g a p   f o r   i m a g e s   * /     
}

         . m a r q u e e - c o n t e n t   i m g    {
                 h e i g h t :    4 5 p x ;
                 / *   C o n s i s t e n t   h e i g h t   * /             w i d t h :    a u t o ;
                 b o r d e r - r a d i u s :    8 p x ;
                 / *   S o f t e n   e d g e s   f o r   J P G s   * /             o p a c i t y :    0 . 7 ;
                 f i l t e r :    g r a y s c a l e ( 3 0 % ) ;
                 / *   B l e n d   b e t t e r   w i t h   d a r k   t h e m e   * /             t r a n s i t i o n :    a l l   0 . 3 s   e a s e ;
                 o b j e c t - f i t :    c o n t a i n ;
         
}

         . m a r q u e e - c o n t e n t   i m g : h o v e r    {
                 o p a c i t y :    1 ;
                 f i l t e r :    g r a y s c a l e ( 0 % ) ;
                 t r a n s f o r m :    s c a l e ( 1 . 1 ) ;
                 b o x - s h a d o w :    0   0   1 5 p x   r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 2 ) ;
         
}

     