/* --- Design Tokens --- */
:root {
    --primary: #0a2540;
    /* Deep Vibrant Blue */
    --primary-light: #183f6b;
    --accent: #ff6b00;
    /* Energetic Orange */
    --accent-hover: #e05e00;
    --bg-main: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-main: #2d3748;
    --text-muted: #718096;
    --border-light: #e2e8f0;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--accent);
}

.highlight-blue {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

/* --- Typography --- */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(255, 107, 0, 0.39);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white;
}

.btn-full {
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-col .logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-col .logo-container .logo {
    filter: brightness(0) invert(1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 55px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    padding: 220px 0 160px;
    background: url('hero_bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    /* Light overlay to ensure text readability */
    backdrop-filter: blur(2px);
    z-index: 0;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(10, 37, 64, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.hero-features i {
    color: var(--accent);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* --- Features Section --- */
.features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background: white;
    border-color: var(--border-light);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--accent);
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.highlight-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.highlight-card:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: transparent;
}

.highlight-card h3,
.highlight-card p {
    color: white;
}

.highlight-card .icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* --- Experience / SEO Section --- */
.experience-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-image {
    position: relative;
    border-radius: 20px;
}

.experience-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
    animation: slideUpFade 1s ease forwards 0.5s;
}

.experience-badge i {
    color: #ffd700;
    /* Gold star */
    font-size: 1.5rem;
}

.experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.experience-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.experience-list {
    margin-top: 2rem;
}

.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 1.05rem;
}

.experience-list i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .experience-container {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 20px;
    }
}

/* --- Entertainment / OTT Section --- */
.entertainment-section {
    padding: 100px 0;
    background: #0a2540;
    color: white;
    overflow: hidden;
}

.entertainment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.entertainment-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.entertainment-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.entertainment-list {
    list-style: none;
    margin-bottom: 2rem;
}

.entertainment-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.entertainment-list i {
    color: #ffb703;
    margin-top: 5px;
}

.ott-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ott-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: var(--transition);
}

.ott-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.css-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    opacity: 0.8;
    transition: var(--transition);
}

.ott-box:hover .css-logo {
    opacity: 1;
    transform: scale(1.05);
}

/* JioHotstar */
.jio-logo strong {
    font-weight: 800;
    margin-right: 2px;
}

.jio-logo span {
    font-weight: 300;
}

/* Sony LIV */
.sony-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1;
}

.sony-logo span {
    font-size: 0.6rem;
    letter-spacing: 2px;
    margin-bottom: -2px;
}

.sony-logo strong {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffb703;
    /* Sony yellow */
}

/* ZEE5 */
.zee-logo strong {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #b565d6;
    /* Zee5 purple */
}

/* Amazon Prime */
.amazon-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.amazon-logo i {
    font-size: 2rem;
    color: #00a8e1;
    /* Amazon blue */
}

.amazon-logo span {
    font-size: 1rem;
    font-weight: 600;
}

.entertainment-image {
    position: relative;
    border-radius: 20px;
    height: 100%;
}

.entertainment-image img {
    width: 100%;
    height: 88%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: block;
}

.live-badge {
    position: absolute;
    top: -57px;
    left: -3px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1rem;
    animation: float 4s ease-in-out infinite;
}

.live-badge .dot {
    width: 10px;
    height: 10px;
    background: #ff3b30;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3b30;
    animation: pulse 1.5s infinite;
}

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

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .entertainment-container {
        grid-template-columns: 1fr;
    }

    .live-badge {
        left: 20px;
    }
}

/* --- Plans Section --- */
.plans {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-light);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.premium {
    background: linear-gradient(180deg, #183f6b 0%, #0a2540 100%);
    color: white;
    border: none;
}

.premium h3,
.premium .plan-price {
    color: white;
}

.premium .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

.premium .plan-features i {
    color: var(--accent);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.premium .plan-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.premium .plan-price span {
    color: rgba(255, 255, 255, 0.7);
}

.ott-apps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.ott-badge {
    background: rgba(10, 37, 64, 0.1);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.premium .ott-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* OTT Brand Colors */
.ott-badge.ott-jio {
    background: #004d99;
    color: white;
    border: 1px solid #005ce6;
}

.ott-badge.ott-sony {
    background: #fca311;
    color: #14213d;
    font-weight: 700;
    border: 1px solid #f9a03f;
}

.ott-badge.ott-zee {
    background: #6a00ff;
    color: white;
    border: 1px solid #8c00ff;
}

.ott-badge.ott-amazon {
    background: #232f3e;
    color: #00a8e1;
    border: 1px solid #232f3e;
}

.premium .ott-badge.ott-jio {
    background: #005ce6;
    color: white;
    border: none;
}

.premium .ott-badge.ott-sony {
    background: #ffb703;
    color: #000;
    border: none;
}

.premium .ott-badge.ott-zee {
    background: #8c00ff;
    color: white;
    border: none;
}

.premium .ott-badge.ott-amazon {
    background: #000000;
    color: #00a8e1;
    border: 1px solid #333;
}

.plan-features {
    margin-bottom: 2.5rem;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.plan-features i {
    color: #25D366;
    /* Green check */
}

.plan-features .disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.plan-features .disabled i {
    color: #f56565;
}

.guarantee-banner {
    margin-top: 4rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px dashed var(--accent);
    color: var(--primary);
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* --- Contact Form Section --- */
.contact-form-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
}

/* --- Footer --- */
.footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--accent);
    margin-top: 5px;
}

.contact-info a:hover {
    color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.meta-compliance {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .popular {
        transform: scale(1);
    }

    .popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 900px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
    display: flex;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20b858;
    color: white;
}

@media (max-width: 768px) {
    .nav-links,
    .navbar .btn-whatsapp {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Animations Trigger Class */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}