/* 
 * IPTV Premium Main Stylesheet 
 * Follows modern CSS architecture (no tailwind config) 
 */

:root {
    /* Color Palette */
    --bg-dark: #0f111a;
    --bg-darker: #090a0f;
    --primary-neon: #00f0ff;
    --primary-glow: rgba(0, 240, 255, 0.4);
    --secondary-neon: #7000ff;
    --secondary-glow: rgba(112, 0, 255, 0.4);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --white: #ffffff;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(16px);
    
    /* Typography */
    --font-heading: 'Inter', 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-neon);
}

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

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Components */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-glow);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-neon);
    color: var(--bg-darker);
}

.neon-btn {
    box-shadow: 0 0 15px var(--primary-glow);
}

.neon-btn:hover {
    box-shadow: 0 0 25px var(--primary-glow);
    background: var(--white);
    color: var(--bg-darker);
}

.glass-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    color: var(--white);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-block {
    display: block;
    width: 100%;
}

.neon-text {
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.glass-header {
    background: rgba(15, 17, 26, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.site-header.scrolled {
    padding: 15px 0;
    background: rgba(9, 10, 15, 0.9);
}

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

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* Glassmorphic Hover Effect */
.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 240, 255, 0.08); /* Cyan tint */
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu li a:hover::before,
.nav-menu li.current-menu-item a::before {
    opacity: 1;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: #00F0FF;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}

/* Glowing Bottom Line */
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #00F0FF;
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.8);
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
    width: 40%;
}

.menu-toggle {
    display: none;
    background: transparent;
    color: var(--white);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: #00F0FF;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.blob-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.blob-1 {
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: var(--secondary-neon);
}

.blob-2 {
    bottom: -10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: var(--primary-neon);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    min-width: 200px;
}

.stat-item h4 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-neon);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
section {
    padding: 100px 0;
}

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

.section-desc {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-neon);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Premium Bento Grid Categories */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 260px) auto;
    gap: 25px;
    margin-top: 4rem;
}

.bento-card {
    position: relative;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 35px 30px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 260px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 24px;
    transition: all 0.5s ease;
    z-index: 3;
    pointer-events: none;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.15);
}

.bento-card:hover::after {
    border-color: rgba(0, 240, 255, 0.4);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 3;
    grid-row: span 1;
}

.bento-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(15, 17, 26, 0.95) 0%, rgba(15, 17, 26, 0.4) 50%, rgba(15, 17, 26, 0.1) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.bento-card:hover .bento-overlay {
    background: linear-gradient(to top, rgba(15, 17, 26, 0.95) 0%, rgba(15, 17, 26, 0.2) 60%, rgba(0, 240, 255, 0.1) 100%);
}

.bento-content {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    margin-top: auto;
}

.bento-card:hover .bento-content {
    transform: translateY(-5px);
}

.bento-badge {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary-neon) !important;
    text-shadow: none;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
}

.bento-card:hover .bento-badge {
    background: var(--primary-neon) !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    border-color: var(--primary-neon);
}

.bento-card:hover .bento-badge i {
    color: #000 !important;
}

.bento-content h3 {
    margin-bottom: 8px;
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    transition: color 0.3s ease;
}

.bento-card:hover .bento-content h3 {
    color: var(--primary-neon);
    text-shadow: 0 2px 15px rgba(0, 240, 255, 0.3);
}

.bento-content p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.8);
    margin: 0;
}

/* Pricing Section */
.row-alt {
    background-color: var(--bg-darker);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
    padding-top: 25px; /* Space for plan-tag badge */
}

.pricing-grid.new-pricing-layout {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-grid.new-pricing-layout.two-cards-layout {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.save-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-neon);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 10px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

/* New Pricing Cards CSS (Ultra Premium Glassmorphism) */
.new-card {
    background: rgba(15, 17, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible; /* Allow plan-tag badge to stick out */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.new-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.premium-card {
    border: 2px solid var(--primary-neon);
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.05) 0%, rgba(15, 17, 26, 0.8) 100%);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.15);
    transform: scale(1.05);
    z-index: 10;
}

.premium-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.3);
}

.plan-tag {
    background: var(--primary-neon);
    color: #000;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 800;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.popular-badge {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--primary-neon);
    font-weight: 900;
    direction: ltr;
    display: inline-block;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.price .value {
    transition: opacity 0.15s ease-in-out;
}

.price .currency {
    font-size: 1.6rem;
    vertical-align: top;
    margin-right: 2px;
    color: #fff;
    text-shadow: none;
}

.price .period {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-shadow: none;
}

/* Segmented Control for Screens */
.screens-selector {
    text-align: center;
    margin: 15px 0 30px 0;
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.screens-selector span {
    display: block;
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.screen-btns {
    display: flex;
    justify-content: center;
    background: #000;
    border-radius: 30px;
    padding: 5px;
    gap: 0;
}

.screen-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
}

.screen-btn:hover {
    color: #fff;
}

.screen-btn.active {
    background: var(--primary-neon);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.plan-features li {
    padding: 16px 0;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    font-size: 0.9rem;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-neon) !important;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.text-start {
    text-align: left;
}

.text-danger {
    color: var(--primary-neon) !important;
}

.text-success {
    color: #00b67a !important; /* Keep Trustpilot green */
}

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

.btn-red {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.btn-red:hover {
    background: var(--primary-neon);
    color: #000;
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.premium-card .btn-red {
    background: var(--primary-neon);
    color: #000;
    border: none;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.premium-card .btn-red:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.secure-payment {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge i {
    font-size: 1rem;
}

/* Devices */
.devices-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.device-item {
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.device-item:hover {
    opacity: 1;
}

.device-item i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary-neon);
}

/* Footer */
.site-footer {
    background: #06070a;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-title {
    font-size: 1.8rem;
    color: var(--primary-neon);
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-menu-list {
    list-style: none;
}

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

.footer-menu-list a {
    color: var(--text-muted);
}

.footer-menu-list a:hover {
    color: var(--primary-neon);
}

.contact-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.contact-info li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.contact-info i {
    color: var(--primary-neon);
    margin-left: 10px;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid var(--glass-border);
}

.social-icon:hover {
    background: var(--primary-neon);
    color: var(--bg-darker);
    border-color: var(--primary-neon);
}

.site-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Page Fallback Styles */
.default-page-content {
    padding: 150px 0;
    min-height: 60vh;
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    .popular-plan {
        transform: scale(1);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }
    .bento-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-menu.active {
        display: flex;
    }
    .header-cta {
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-actions {
        flex-direction: column;
        padding: 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-large, .bento-wide, .bento-card {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }
}

/* Why Choose Us Section - HARBA Glassmorphism */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: rgba(15, 17, 26, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(0, 240, 255, 0.05);
}

.why-number {
    position: absolute;
    left: 20px;
    bottom: -25px;
    font-size: 8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #fff;
    opacity: 0.03;
    line-height: 1;
    z-index: -1;
    pointer-events: none;
    transition: all 0.4s ease;
    margin: 0;
}

.why-card:hover .why-number {
    opacity: 0.08;
    color: var(--primary-neon);
    transform: scale(1.05);
}

.why-line {
    display: none;
}

.why-icon {
    width: 65px;
    height: 65px;
    background: rgba(0, 240, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1);
    transition: all 0.4s ease;
}

.why-icon i {
    font-size: 1.8rem !important;
    color: var(--primary-neon) !important;
    text-shadow: none;
}

.why-card:hover .why-icon {
    background: var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.why-card:hover .why-icon i {
    color: #000 !important;
}

.why-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.why-card:hover .why-title {
    color: var(--primary-neon);
}

.why-desc {
    color: #999;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .why-number {
        font-size: 1.5rem;
    }
}

/* Trustpilot Reviews Section */
.tp-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    direction: ltr; /* Force LTR for the infinite scroll track */
}

.tp-carousel-wrapper::before,
.tp-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.tp-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.tp-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

.tp-grid {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scroll-marquee 45s linear infinite;
}

.tp-grid:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7.5px)); }
}

/* Premium Glassmorphic Testimonial Cards */
.tp-card {
    background: rgba(15, 17, 26, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 25px;
    width: 330px;
    min-width: 330px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    direction: ltr;
    white-space: normal;
    position: relative;
    overflow: hidden;
}

.tp-card::before {
    content: '\f10d'; /* FontAwesome Quote */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.02);
    transition: all 0.4s ease;
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}

.tp-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.tp-card:hover::before {
    color: rgba(0, 240, 255, 0.05);
    transform: scale(1.1) rotate(-5deg);
}

.tp-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.tp-card-stars {
    display: flex;
    gap: 3px;
}

.tp-card-stars i {
    background-color: #00b67a !important;
    color: #fff !important;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 2px;
}

.tp-verified {
    color: #00b67a !important;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 182, 122, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.tp-card-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.tp-card-desc {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.tp-card-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    position: relative;
    z-index: 2;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.tp-avatar {
    width: 45px;
    height: 45px;
    background: transparent !important;
    border: 2px solid rgba(0, 240, 255, 0.3);
    color: var(--primary-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
    transition: all 0.3s;
}

.tp-card:hover .tp-avatar {
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    background: rgba(0, 240, 255, 0.1) !important;
}

.tp-user-info {
    text-align: left;
}

.tp-user-info h5 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.tp-user-info span {
    color: #888;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .tp-badge {
        flex-direction: column;
        gap: 10px !important;
        border-radius: 20px !important;
        padding: 20px !important;
    }
    .tp-badge div[style*="width: 1px"] {
        width: 100% !important;
        height: 1px !important;
    }
}

/* Articles Section */
.article-card {
    transition: transform 0.3s ease-in-out, border-color 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #ff3333;
}

.article-card .article-img img {
    transition: transform 0.5s ease;
}

.article-card:hover .article-img img {
    transform: scale(1.05);
}

.article-btn {
    transition: color 0.3s;
}

.article-btn:hover {
    color: #ff3333 !important;
}

.article-btn i {
    transition: transform 0.3s;
}

.article-btn:hover i {
    transform: translateX(-5px); /* Move left in RTL */
}

.btn-outline-custom {
    padding: 12px 30px; 
    font-weight: 700; 
    border-radius: 30px; 
    background: transparent; 
    border: 1px solid #333; 
    color: #fff; 
    transition: all 0.3s; 
    display: inline-block;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #000;
}

/* Custom Premium FAQ Section */
.faq-premium-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.faq-left-col {
    flex: 0 0 35%;
    position: sticky;
    top: 100px;
}

.faq-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.faq-main-desc {
    color: #999;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.faq-contact-box p {
    color: #777;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.faq-contact-link {
    color: #ff3333;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    transition: color 0.3s, gap 0.3s;
}

.faq-contact-link:hover {
    color: #fff;
    gap: 12px;
}

.faq-right-col {
    flex: 1;
}

.faq-accordion-custom .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-accordion-custom .faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-accordion-custom summary {
    display: flex;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    list-style: none; /* remove default arrow */
}

.faq-accordion-custom summary::-webkit-details-marker {
    display: none; /* remove Safari default arrow */
}

.faq-q-number {
    color: #ff3333;
    font-weight: 800;
    font-size: 1.1rem;
    flex: 0 0 50px;
    font-family: var(--font-heading);
}

.faq-q-text {
    flex: 1;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-right: 20px;
}

.faq-q-icon {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.7rem;
    transition: all 0.3s;
}

.faq-item[open] .faq-q-icon {
    border-color: #ff3333;
    color: #ff3333;
}

.faq-q-icon .fa-minus {
    display: none;
}
.faq-item[open] .faq-q-icon .fa-plus {
    display: none;
}
.faq-item[open] .faq-q-icon .fa-minus {
    display: block;
}

.faq-a-content {
    padding-bottom: 25px;
    padding-right: 70px;
    color: #888;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .faq-premium-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .faq-left-col {
        position: relative;
        top: 0;
        text-align: center !important;
    }
    .faq-main-title {
        font-size: 2rem;
    }
}

/* Final CTA Section */
.final-cta-card {
    background: linear-gradient(145deg, #0a0a0a, #020202);
    border: 1px solid rgba(255, 51, 51, 0.1);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 51, 51, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-subtitle {
    color: #ff3333;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
}

.cta-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
}

.cta-desc {
    color: #999;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn-glow {
    box-shadow: 0 0 25px rgba(255, 51, 51, 0.4);
    padding: 16px 40px !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
}

.cta-btn-glow:hover {
    box-shadow: 0 0 40px rgba(255, 51, 51, 0.6);
}

.cta-btn-wa {
    padding: 16px 40px !important;
    font-size: 1.1rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: #fff !important;
}

.cta-btn-wa:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 768px) {
    .final-cta-card {
        padding: 50px 20px;
    }
    .cta-title {
        font-size: 2.2rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
}

/* ============================================= */
/* GLOBAL THEME OVERRIDE (RED TO CYAN #00F0FF)   */
/* ============================================= */

/* Red texts & hardcoded CSS overrides */
.text-danger, 
.tp-card-stars, 
.faq-q-number, 
.cta-subtitle, 
.article-category, 
.faq-contact-link,
.faq-item[open] .faq-q-icon, 
.article-btn:hover {
    color: #00F0FF !important;
}

/* Red Backgrounds, glows, and borders overrides */
.faq-item[open] .faq-q-icon,
.article-card:hover {
    border-color: #00F0FF !important;
}

.final-cta-card {
    border-color: rgba(0, 240, 255, 0.2) !important;
}
.final-cta-card::before {
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.05) 0%, transparent 60%) !important;
}

.cta-btn-glow {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4) !important;
    background: #00F0FF !important;
    color: #000 !important;
}
.cta-btn-glow:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.6) !important;
}

/* Specific component overrides */
.tp-logo i, .tp-verified {
    color: #00b67a !important; /* Keep Trustpilot green */
}

/* Override inline styling securely */
[style*="color: #ff3333"] {
    color: #00F0FF !important;
}

[style*="background: #ff3333"] {
    background: #00F0FF !important;
}

/* Pricing specific red overrides */
.premium-card {
    border-color: #00F0FF !important;
}

.premium-card:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1) !important;
}

.plan-tag {
    background: #00F0FF !important;
    color: #000 !important;
}

.screen-btn.active {
    background: #00F0FF !important;
    border-color: #00F0FF !important;
    color: #000 !important;
}

/* SMART HOVER EFFECT: The Cyan highlight jumps to whatever card is being hovered! */
/* 1. Reset all buttons to dim standard glass styling first */
.pricing-grid.new-pricing-layout .btn-red {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: none !important;
}

/* 2. By default (if mouse isn't hovering any cards), the Premium button is lit up */
.pricing-grid.new-pricing-layout .premium-card .btn-red {
    background: #00F0FF !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4) !important;
}

/* 3. But if ANY card inside the grid is hovered, we turn OFF the Premium button's default light... */
.pricing-grid.new-pricing-layout:hover .premium-card:not(:hover) .btn-red {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}

/* 4. ...And we turn ON the light for whichever card the mouse is actually hovering right now! */
.pricing-grid.new-pricing-layout .new-card:hover .btn-red {
    background: #00F0FF !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5) !important;
    transform: scale(1.05) !important;
}

/* ========================================= */
/* GLOBAL MOBILE RESPONSIVENESS OVERRIDES   */
/* ========================================= */

@media (max-width: 991px) {
    /* Mobile Pricing Horizon Swipe */
    .pricing-grid.new-pricing-layout,
    .pricing-grid.new-pricing-layout.two-cards-layout {
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-top: 25px; /* Space for plan-tag badge */
        padding-bottom: 25px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .pricing-grid.new-pricing-layout::-webkit-scrollbar {
        display: none;
    }

    .pricing-grid.new-pricing-layout .new-card {
        min-width: 85vw;
        max-width: 85vw;
        flex: 0 0 auto;
        scroll-snap-align: center;
        margin: 0;
        overflow: visible; /* Allow badge to show */
    }
    
    .premium-card {
        transform: scale(1) !important;
    }
    .premium-card:hover {
        transform: translateY(-5px) scale(1) !important;
    }
    
    /* Why Choose Us Fixes */
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    /* Hero Section Fixes */
    .hero-title {
        font-size: 2.1rem !important;
        line-height: 1.3 !important;
    }
    .section-title {
        font-size: 1.8rem !important;
    }
    
    /* Bento Grid (Stacks vertically on phone) */
    .bento-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
    }
    .bento-card {
        min-height: auto !important;
        padding: 30px 20px !important;
    }
    .bento-content {
        margin-top: 40px;
    }
    .bento-content h3 {
        font-size: 1.5rem !important;
    }
    .bento-badge {
        font-size: 0.75rem !important;
        margin-bottom: 15px !important;
        z-index: 10;
        position: relative;
    }

    /* Why Choose Us (1 Column) */
    .why-grid {
        grid-template-columns: 1fr !important;
    }
    .why-card {
        padding: 30px 20px !important;
        text-align: center !important;
    }
    .why-icon {
        margin: 0 auto 20px auto !important;
    }
    .why-number {
        font-size: 5rem !important;
        bottom: -10px !important;
    }

    /* Testimonials Marquee adjustment */
    .tp-card {
        width: 280px !important;
        min-width: 280px !important;
        padding: 20px 15px !important;
    }
    .tp-card::before {
        font-size: 4rem !important;
    }
    
    /* Final CTA adjustment */
    .final-cta-title {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    /* Very Small Mobile Fixes */
    .pricing-card {
        padding: 30px 15px !important;
    }
    .price {
        font-size: 2.8rem !important;
    }
    .screen-btns {
        flex-wrap: wrap; /* prevents overlap if screen is tiny */
        border-radius: 12px !important;
        padding: 10px !important;
    }
    .screen-btn {
        padding: 8px 15px !important;
        font-size: 1rem !important;
        border-radius: 8px !important;
    }
    .tp-card-user {
        flex-wrap: wrap;
    }
}

/* ========================================= */
/* EXTRA PREMIUM TOUCHES & ANIMATIONS       */
/* ========================================= */

/* Mobile Swipe Hint Animation */
.mobile-swipe-hint {
    display: none;
}

@media (max-width: 991px) {
    .mobile-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #00F0FF;
        font-size: 0.95rem;
        margin-bottom: 20px;
        animation: pulseHint 2s infinite ease-in-out;
    }
    .mobile-swipe-hint i {
        animation: swipeMotion 2s infinite ease-in-out;
    }
}

@keyframes pulseHint {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; text-shadow: 0 0 10px rgba(0, 240, 255, 0.4); }
}

@keyframes swipeMotion {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Screen Selector Modernization */
.screens-selector {
    background: rgba(10, 10, 15, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.pricing-card:hover .screens-selector {
    background: rgba(0, 240, 255, 0.03);
    border-color: rgba(0, 240, 255, 0.1);
}
.screen-btns {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px;
    padding: 5px !important;
}
.screen-btn {
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.screen-btn.active {
    background: #00F0FF !important;
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3) !important;
    transform: scale(1.05); /* iOS dynamic pop */
}

/* Feature List Interactive Hover */
.plan-features li {
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
}
.plan-features li:hover {
    transform: translateX(-5px); /* RTL slide right */
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}
.plan-features li:hover i {
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
    transform: scale(1.3) rotate(5deg);
}

/* Clean Popular Badge - No Animation, Calm & Premium */
.popular-badge {
    position: relative;
    overflow: hidden;
    background: rgba(0, 240, 255, 0.06) !important;
    border: 1px solid rgba(0, 240, 255, 0.15) !important;
    border-radius: 30px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}
.pricing-card:hover .popular-badge {
    background: rgba(0, 240, 255, 0.1) !important;
    border-color: rgba(0, 240, 255, 0.3) !important;
}

/* Calm Glowing Hover for Premium Card */
.premium-card {
    position: relative;
    transition: all 0.4s ease;
}

.premium-card:hover {
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.3), 0 0 70px rgba(0, 240, 255, 0.1) !important;
    border-color: rgba(0, 240, 255, 0.8) !important;
    transform: translateY(-5px) scale(1.02) !important;
}

/* Fix "Premium Choice" Badge Visibility */
.plan-tag {
    z-index: 50 !important;
    line-height: normal !important;
    white-space: nowrap !important;
    padding: 10px 25px !important;
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.4) !important;
}
