/* 
   City Club IPTV - Premium Light Theme 
   Font: Poppins (Headers) + Montserrat (Body)
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Poppins:wght@500;600;700;800&display=swap');

:root {
    /* Premium Palette */
    --primary: #FF6B00;
    /* Vibrant Orange */
    --secondary: #0056D2;
    /* Trust Blue */
    --dark: #1A1A1A;
    --text-body: #4A4A4A;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --border: #E5E5E5;

    /* Variables */
    --header-height: 80px;
    --radius: 12px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #e65a00);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #0046b0);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 86, 210, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* Footer Logo Specific */
footer .logo img,
footer img[alt*="Logo"],
footer img[src*="logo"] {
    max-height: 60px !important;
    width: auto;
    display: block;
    margin: 0 auto 20px;
}

.btn-gradient-orange {
    background: linear-gradient(337deg, #ff00eb 0%, #06f 100%);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 85, 0, 0.4);
    border: none;
}

.btn-gradient-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.6);
    color: var(--white);
}

.status-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Header & Nav --- */
header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    padding: 10px 0;
}

.logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* mix-blend-mode removed for cleaner look */
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    position: relative;
    padding: 25px 0;
    /* Increase clickable area vertically */
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: var(--text-body);
    font-weight: 400;
    font-size: 0.9rem;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-content a:last-child {
    border: none;
}

.dropdown-content a:hover {
    background: #f9f9f9;
    color: var(--primary);
    padding-left: 30px;
}

/* --- Hero Section --- */
#hero {
    height: 100vh;
    /* Static background removed for slider */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px;
    /* Counteract header padding for full bleed */
    padding-top: 80px;
    background-color: #000;
    /* Fallback */
    overflow: hidden;
}

/* Slider Logic */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    /* Smooth 1.5s cross-fade */
}

.slide.active {
    opacity: 1;
}

/* Overlay for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5));
    z-index: 1;
    /* Above slider, below content */
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Topmost */
    color: var(--white);
    max-width: 900px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Features (Glass Cards) --- */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.glass-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: 0.3s;
    text-align: center;
    box-shadow: var(--shadow);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .glass-card {
        padding: 24px 18px !important;
        text-align: left !important;
    }

    .glass-card h3 {
        font-size: 1.1rem !important;
    }
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.gl-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.gl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(31, 38, 135, 0.15);
    border-color: var(--primary);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

.glass-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* --- Channels & Categories --- */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.channel-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.channel-card:hover {
    transform: translateY(-5px);
}

.card-thumb {
    height: 160px;
    overflow: hidden;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.channel-card:hover .card-thumb img {
    transform: scale(1.05);
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
}

.channel-list li {
    font-size: 0.9rem;
    padding: 5px 0;
    border-bottom: 1px solid #f5f5f5;
}

/* --- Plans (Equal Height) --- */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
    /* Crucial for equal height */
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
}

.plan-header h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-header .price {
    font-size: 3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.plan-features {
    flex-grow: 1;
    /* Pushes button to bottom */
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* --- Testimonials (Horizontal on PC, Slider on Mobile) --- */
.reviews-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.review-card {
    flex: 0 0 100%;
    /* Mobile: 1 card width */
    min-width: 300px;
    scroll-snap-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
}

@media (min-width: 992px) {
    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* Desktop: 3 cols side-by-side */
        overflow: visible;
    }

    .review-card {
        flex: auto;
    }
}

.review-stars {
    color: #FFC107;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 20px;
}

.reviewer-name {
    font-weight: 700;
    color: var(--dark);
}

/* --- Support/Contact Grid --- */
.support-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.support-sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input,
textarea,
select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
    background: #FAFAFA;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

/* --- WhatsApp Widget --- */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px !important;
    right: auto !important;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row !important;
}

.notification-bubble {
    background: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    animation: bounce 2s infinite;
}

.notification-bubble::after {
    content: '';
    position: absolute;
    right: auto;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 8px 8px 0;
    border-style: solid;
    border-color: transparent var(--white) transparent transparent;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* --- Mobile Responsive --- */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    margin-left: 15px;
}

/* Tablet & Mobile Adjustments */
@media (max-width: 992px) {

    .glass-grid,
    .grid-3,
    .support-container,
    .form-grid {
        grid-template-columns: 1fr;
        /* Stack everything */
    }
}

@media (max-width: 992px) {

    /* 1. Global Reset & Overflow */
    body,
    html {
        overflow-x: hidden !important;
        position: relative !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .container {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    /* 2. Header & Nav */
    /* ── Mobile Nav ── */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border-top: 2px solid var(--primary);
        display: none;
        text-align: left;
        z-index: 99999;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu ul {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        padding: 8px 0 !important;
    }

    .nav-menu ul li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu ul li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px !important;
        font-size: 1rem !important;
        font-weight: 600;
        color: var(--dark) !important;
        width: 100% !important;
        border-bottom: none !important;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: #fff8f4;
        color: var(--primary) !important;
    }

    /* Mobile Dropdown — hidden by default, shown on .mob-open */
    .nav-menu .dropdown .dropdown-content {
        display: none !important;
        position: static !important;
        box-shadow: none !important;
        background: #f9f9f9 !important;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 0 !important;
        min-width: 100% !important;
        width: 100% !important;
        flex-direction: column !important;
    }

    .nav-menu .dropdown.mob-open .dropdown-content {
        display: flex !important;
    }

    /* Hide the 2-column layout on mobile — stack everything */
    .nav-menu .dropdown-wide {
        flex-direction: column !important;
        min-width: 100% !important;
    }

    .nav-menu .dropdown-col {
        border-right: none !important;
        border-bottom: 1px solid #eee;
        padding: 8px 0 !important;
    }

    .nav-menu .dropdown-heading {
        display: block;
        padding: 8px 24px 4px;
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--primary);
    }

    .nav-menu .dropdown-content a {
        padding: 10px 24px !important;
        font-size: 0.9rem !important;
        font-weight: 500;
        color: #444 !important;
        border-bottom: 1px solid #f0f0f0 !important;
        display: flex !important;
        align-items: center;
        gap: 8px;
    }

    .nav-menu .dropdown-content a:last-child {
        border-bottom: none !important;
    }

    .nav-menu .dropdown-content a:hover {
        background: #fff3eb !important;
        color: var(--primary) !important;
    }

    /* Rotate chevron when open */
    .nav-menu .dropdown.mob-open>a .fa-chevron-down {
        transform: rotate(180deg);
    }

    .nav-menu .dropdown>a .fa-chevron-down {
        transition: transform 0.25s;
    }

    .mobile-toggle {
        display: flex !important;
    }

    .header-actions .btn {
        padding: 8px 15px !important;
        font-size: 0.8rem !important;
    }

    .mobile-hide {
        display: block !important;
    }

    /* 3. Hero Section Fixes */
    #hero {
        padding-top: 100px !important;
        height: auto !important;
        min-height: 60vh !important;
        /* Adjusted for better phone fit */
        padding-bottom: 50px !important;
        text-align: center !important;
    }

    .hero-content {
        margin: 0 auto !important;
        width: 100% !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 30px !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 !important;
    }

    /* 4. Force Vertical Stack on Rows/Grids (NOT footer or regions — those have own responsive) */
    .pricing-grid,
    .support-container,
    .form-grid,
    .glass-grid,
    .grid-3,
    .channel-grid,
    .row,
    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* 5. Image Scaling — standard images only, NOT carousel or logo images */
    .channel-card img,
    .card-thumb img,
    .hero-slider img,
    footer img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    /* 6. Card & Widget Fixes */
    .pricing-card,
    .glass-card,
    .channel-card,
    .review-card {
        max-width: 100% !important;
        margin-bottom: 0 !important;
        width: 100% !important;
    }

    .pricing-card {
        margin-bottom: 20px !important;
    }

    .reviews-grid {
        display: flex !important;
        overflow-x: auto !important;
        flex-direction: row !important;
        /* Keep slider for reviews */
        scroll-snap-type: x mandatory;
        gap: 20px !important;
        padding-bottom: 20px;
    }

    .review-card {
        min-width: 85vw !important;
        flex: 0 0 85vw !important;
    }

    .whatsapp-widget {
        bottom: 20px !important;
        left: 20px !important;
        right: auto !important;
        flex-direction: row !important;
        align-items: center !important;
    }

    .whatsapp-btn {
        width: 55px !important;
        height: 55px !important;
        font-size: 28px !important;
    }

    .notification-bubble {
        display: none !important;
    }
}

/* --- Tawk.to Visibility Fixes --- */
/* Ensure widget is always on top (Z-Index War Winner) */
div[class*="tawk-"],
iframe[title*="chat"],
.tawk-min-container {
    z-index: 2147483647 !important;
    /* Maximum possible Z-Index */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
}

/* Specific fix for the Tawk container if ID changes */
#tawk-1jgsoqlue {
    z-index: 2147483647 !important;
}

/* Prevent parent clipping */
body,
html {
    overflow-x: hidden;
    /* Standard setting, but ensure no overflow-y hides it */
}

/* Fix for potential container conflicts */
.widget-visible {
    display: block !important;
}

/* Ensure it's not hidden on specific screen sizes unless intended */
@media print {
    #tawk-1jgsoqlue {
        display: none !important;
    }
}

/* Mobile: WhatsApp stays bottom-left */
@media (max-width: 992px) {
    .whatsapp-widget {
        bottom: 20px !important;
        left: 20px !important;
        right: auto !important;
        flex-direction: row !important;
        align-items: center !important;
    }
}

/* HERO TRUST BADGES */

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #fff;
}

/* DEVICE ICONS */

.hero-devices {
    margin-top: 20px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0.8;
}

/* LIVE COUNTER */

.live-counter {
    margin-top: 20px;
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
}

/* MOBILE HERO + BADGES FIX */
@media (max-width:768px) {
    #hero {
        margin-top: 0;
        padding-top: 140px;
        height: auto;
        min-height: 90vh;
    }

    .hero-trust {
        gap: 8px;
    }

    .trust-badge {
        font-size: 11px;
    }

    .hero-devices {
        font-size: 18px;
    }
}

/* =====================================================
   TRUST BAR - 6 SIGNALS  (desktop-first, no nesting)
   ===================================================== */
.trust-bar-section {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    text-align: center;
    align-items: center;
}

.trust-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-body);
    padding: 8px 4px;
}

.trust-bar-item i {
    font-size: 1.4rem;
    color: var(--secondary);
}

@media (max-width: 1100px) {
    .trust-bar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 10px 0;
    }
}

@media (max-width: 540px) {
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* =====================================================
   ABOUT - 6-CARD GLASS GRID (desktop-first)
   ===================================================== */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .glass-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .glass-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   INDIAN REGIONS GRID (desktop-first)
   ===================================================== */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

@media (min-width: 961px) {
    .regions-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.region-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.region-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.region-flag {
    display: block !important;
    width: 64px !important;
    height: 43px !important;
    max-width: 64px !important;
    min-width: unset !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    margin: 0 auto 14px auto !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.region-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.region-card p {
    font-size: 0.78rem;
    color: #888;
    line-height: 1.4;
}

@media (max-width: 960px) {
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .region-card {
        padding: 20px 12px;
    }
}

/* =====================================================
   MOVIE CAROUSEL (desktop-first)
   ===================================================== */
#movie-carousel {
    background: #0a0a0a;
    padding: 60px 0 50px;
    overflow: hidden;
    width: 100%;
    min-height: 0;
    display: block;
}

.carousel-header {
    text-align: center;
    padding: 0 20px 10px;
}

.carousel-header h2 {
    color: #fff;
    margin-bottom: 8px;
}

.carousel-header p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
}

.carousel-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.ctab {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    outline: none;
}

.ctab.active,
.ctab:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.carousel-track-wrap {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    position: relative;
    height: 340px;
}

.carousel-track-wrap:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 18px;
    padding: 16px 40px 20px;
    will-change: transform;
    user-select: none;
    height: 100%;
    align-items: flex-start;
}

.movie-card {
    flex: 0 0 200px;
    width: 200px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.movie-card-fallback {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.movie-card-label {
    display: none;
}

/* =====================================================
   FULL FOOTER (desktop-first, dark theme)
   ===================================================== */
.site-footer {
    background: #0d0d0d;
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 20px;
    margin-top: 4px;
}

.footer-brand img {
    max-height: 50px !important;
    width: auto !important;
    margin: 0 0 16px 0 !important;
    display: block !important;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-col h5 {
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.85rem;
    transition: color 0.2s, padding-left 0.2s;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-cta-link {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.footer-contact {
    margin-top: 16px;
}

.footer-seo {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.32);
    line-height: 1.85;
}

.footer-seo a {
    color: rgba(255, 255, 255, 0.48);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-seo strong {
    color: rgba(255, 255, 255, 0.52);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.78rem;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* =====================================================
   COMPREHENSIVE RESPONSIVE — Desktop, Tablet, Phone
   ===================================================== */

/* === LARGE DESKTOP (1400px+) === */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .regions-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

/* === DESKTOP (993px – 1399px) — already handled by base rules === */
@media (min-width: 993px) {

    /* Trust bar always 6-col */
    .trust-bar-grid {
        grid-template-columns: repeat(6, 1fr) !important;
    }

    /* Regions always 4-col */
    .regions-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        display: grid !important;
    }

    /* Footer always 5-col on desktop */
    .footer-grid {
        grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr !important;
        display: grid !important;
    }

    /* About glass-grid always 3-col */
    .glass-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        display: grid !important;
    }

    /* Pricing row */
    .pricing-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

    /* Nav visible */
    .nav-menu {
        display: flex !important;
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }

    .nav-menu ul {
        flex-direction: row !important;
    }

    .mobile-toggle {
        display: none !important;
    }

    .mobile-hide {
        display: inline-block !important;
    }
}

/* === TABLET (768px – 992px) === */
@media (max-width: 992px) and (min-width: 768px) {
    .hero-content h1 {
        font-size: 1.9rem !important;
    }

    .hero-content p {
        font-size: 1rem !important;
    }

    .trust-bar-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .glass-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
    }

    .channel-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px !important;
    }

    .footer-brand {
        grid-column: 1 / -1 !important;
    }

    .pricing-card {
        min-width: 45% !important;
    }

    .section-padding {
        padding: 70px 0 !important;
    }
}

/* === MOBILE (max 767px) === */
@media (max-width: 767px) {

    /* Typography scale down */
    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 0.85rem !important;
    }

    .hero-content h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
    }

    /* Trust bar 2-col on phone */
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 12px 0 !important;
    }

    .trust-bar-item {
        font-size: 0.7rem !important;
    }

    .trust-bar-item i {
        font-size: 1.1rem !important;
    }

    /* Regions 2-col on phone */
    .regions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .region-card {
        padding: 18px 10px !important;
    }

    .region-flag {
        width: 48px !important;
        height: 32px !important;
    }

    .region-card h4 {
        font-size: 0.85rem !important;
    }

    .region-card p {
        font-size: 0.7rem !important;
    }

    /* About cards 1-col */
    .glass-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .glass-card {
        padding: 28px 20px !important;
    }

    /* Channel grid 1-col */
    .channel-grid {
        grid-template-columns: 1fr !important;
    }

    /* Pricing 1-col */
    .pricing-card {
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .pricing-card.popular {
        transform: scale(1) !important;
    }

    .plan-header .price {
        font-size: 2.5rem !important;
    }

    /* Devices grid 1-col */
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Section padding reduced */
    .section-padding {
        padding: 50px 0 !important;
    }

    .container {
        padding: 0 16px !important;
    }

    /* Carousel smaller on phone */
    .carousel-tabs {
        gap: 6px !important;
    }

    .ctab {
        padding: 6px 14px !important;
        font-size: 0.75rem !important;
    }

    /* Footer 1-col */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .footer-brand img {
        max-height: 40px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px !important;
    }

    .footer-bottom-links {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    .footer-seo {
        font-size: 0.72rem !important;
    }

    .site-footer {
        padding: 40px 0 0 !important;
    }

    /* Support/FAQ 1-col */
    .support-container {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Reviews horizontal scroll */
    .reviews-grid {
        display: flex !important;
        overflow-x: auto !important;
        flex-direction: row !important;
        scroll-snap-type: x mandatory !important;
    }

    .review-card {
        min-width: 88vw !important;
        flex: 0 0 88vw !important;
        scroll-snap-align: center !important;
    }

    /* WhatsApp widget on phone */
    .whatsapp-widget {
        bottom: 16px !important;
        left: 16px !important;
        gap: 10px !important;
    }

    .whatsapp-btn {
        width: 52px !important;
        height: 52px !important;
        font-size: 26px !important;
    }

    .notification-bubble {
        display: none !important;
    }

    /* Header action button smaller */
    .header-actions .btn {
        padding: 8px 14px !important;
        font-size: 0.72rem !important;
    }
}

/* === SMALL PHONES (max 380px) === */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.3rem !important;
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .region-card {
        padding: 14px 8px !important;
    }

    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* =====================================================
   SEO LANDING PAGE HERO
   ===================================================== */
.seo-page-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #16213e 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seo-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 60% 40%, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.seo-page-hero h3 {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.seo-page-hero h1 {
    color: #fff;
    font-size: 2.4rem;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 20px;
}

.seo-page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .seo-page-hero {
        padding: 130px 20px 60px;
    }

    .seo-page-hero h1 {
        font-size: 1.6rem;
    }

    .seo-page-hero p {
        font-size: 0.9rem;
    }
}

/* =====================================================
   DROPDOWN — wider for more links
   ===================================================== */
.dropdown-content {
    min-width: 260px;
    max-height: 420px;
    overflow-y: auto;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* =====================================================
   WIDE TWO-COLUMN CHANNELS DROPDOWN
   ===================================================== */
.dropdown-wide {
    min-width: 480px !important;
    display: none;
    flex-direction: row !important;
    gap: 0 !important;
    padding: 8px 0 !important;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}

.dropdown:hover .dropdown-wide {
    display: flex !important;
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-col {
    flex: 1;
    padding: 8px 0;
    border-right: 1px solid #f0f0f0;
}

.dropdown-col:last-child {
    border-right: none;
}

.dropdown-heading {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    padding: 8px 25px 6px;
    pointer-events: none;
}

.dropdown-wide a {
    padding: 9px 25px !important;
    font-size: 0.85rem !important;
}

/* Locations dropdown flag images — never override */
.dropdown-content a img {
    width: 16px !important;
    height: 11px !important;
    display: inline !important;
    margin: 0 8px 0 0 !important;
    vertical-align: middle !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
}

/* Footer 5-column on wide screens */
@media (min-width: 993px) {
    .footer-grid {
        grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr !important;
        gap: 36px !important;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
    }

    .footer-brand {
        grid-column: 1 / -1 !important;
    }

    .dropdown-wide {
        min-width: 300px !important;
        flex-direction: column !important;
    }

    .dropdown-col {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =====================================================
   NEW: SEO PAGE V2 HERO (used by all channel/country pages)
   ===================================================== */
.seo-hero-v2 {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: #07070f;
}

.seo-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(255, 107, 0, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(0, 86, 210, 0.10) 0%, transparent 55%);
    pointer-events: none;
}

.seo-hero-v2 .container {
    position: relative;
    z-index: 2;
}

.seo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.35);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.seo-hero-v2 h1 {
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.18;
    max-width: 820px;
    margin: 0 auto 20px;
}

.seo-hero-sub {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.seo-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.25s;
    display: inline-block;
}

.btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-lg {
    padding: 18px 46px !important;
    font-size: 1rem !important;
}

.seo-stats-row {
    display: flex;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
}

.seo-stat {
    flex: 1;
    padding: 18px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.seo-stat:last-child {
    border-right: none;
}

.seo-stat strong {
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.seo-stat span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* =====================================================
   NEW: SEO CONTENT LAYOUT (2-col: main + sticky sidebar)
   ===================================================== */
.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
}

.seo-main-col h2 {
    font-size: 1.8rem;
    margin-bottom: 22px;
    line-height: 1.3;
}

.seo-main-col p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: var(--text-body);
}

.sticky-side-card {
    position: sticky;
    top: 100px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.side-card-header {
    background: linear-gradient(135deg, var(--dark), #2a2a3e);
    padding: 22px 28px;
}

.side-card-header h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.sticky-side-card .plan-features {
    padding: 24px 28px 0;
    margin-bottom: 20px;
}

.sticky-side-card .btn {
    display: block;
    margin: 0 28px 10px;
    text-align: center;
    width: calc(100% - 56px);
}

.side-trust {
    padding: 0 28px 22px;
}

/* =====================================================
   NEW: CHANNEL TAGS (pill badges for channels listed)
   ===================================================== */
.channel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.ch-tag {
    background: rgba(0, 86, 210, 0.07);
    border: 1px solid rgba(0, 86, 210, 0.18);
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 50px;
    transition: 0.2s;
    font-family: 'Poppins', sans-serif;
}

.ch-tag:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.internal-links-bar {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 0.82rem;
}

.internal-links-bar a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* =====================================================
   NEW: FAQ LIST (clean accordion-style)
   ===================================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s, border-color 0.25s;
}

.faq-item:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
    border-color: var(--primary);
}

.faq-q {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.4;
}

.faq-a {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-body);
    margin: 0;
}

/* =====================================================
   NEW: CTA DARK BAND (bottom of channel/country pages)
   ===================================================== */
.cta-dark-band {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-dark-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.cta-dark-band .container {
    position: relative;
    z-index: 2;
}

.cta-dark-band h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 14px;
}

.cta-dark-band p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 32px;
    font-size: 1rem;
    line-height: 1.7;
}

/* =====================================================
   NEW: 3D POSTER CARDS (for movie/channel posters)
   ===================================================== */
.poster-3d-wrap {
    perspective: 900px;
    display: inline-block;
}

.poster-3d {
    width: 200px;
    height: 290px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    cursor: pointer;
}

.poster-3d:hover {
    transform: rotateY(-12deg) rotateX(4deg) scale(1.07);
    box-shadow:
        16px 20px 50px rgba(0, 0, 0, 0.55),
        -4px 0 20px rgba(255, 107, 0, 0.2);
}

.poster-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.poster-3d-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.04) 40%,
            rgba(0, 0, 0, 0.1) 100%);
    border-radius: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.poster-3d:hover .poster-3d-shine {
    opacity: 1;
}

.poster-3d-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 28px 10px 10px;
    text-align: center;
    line-height: 1.3;
}

/* movie-card 3D removed — cards use inline styles */
.movie-card:hover {
    transform: rotateY(-10deg) rotateX(3deg) scale(1.07) !important;
    box-shadow:
        14px 18px 45px rgba(0, 0, 0, 0.6),
        -3px 0 16px rgba(255, 107, 0, 0.18) !important;
    z-index: 10 !important;
}

/* =====================================================
   NEW: CHANNEL POSTER GRID (used on channel pages)
   ===================================================== */
.channel-poster-section {
    background: #0a0a0a;
    padding: 70px 0;
    overflow: hidden;
}

.channel-poster-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
}

.channel-poster-section>.container>p {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 40px;
}

.poster-scroll-wrap {
    overflow-x: auto;
    padding: 20px 30px 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #1a1a1a;
    -webkit-overflow-scrolling: touch;
}

.poster-scroll-wrap::-webkit-scrollbar {
    height: 4px;
}

.poster-scroll-wrap::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.poster-scroll-wrap::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.poster-row {
    display: flex;
    gap: 18px;
    width: max-content;
}

/* =====================================================
   NEW: GLASS CARD — improved hover with 3D tilt
   ===================================================== */
.glass-card {
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease, border-color 0.25s !important;
}

.glass-card:hover {
    transform: translateY(-12px) rotateX(2deg) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13) !important;
    border-color: var(--primary) !important;
}

/* =====================================================
   RESPONSIVE: SEO V2 pages
   ===================================================== */
@media (max-width: 992px) {
    .seo-content-grid {
        grid-template-columns: 1fr !important;
    }

    .sticky-side-card {
        position: static;
    }

    .seo-hero-v2 h1 {
        font-size: 1.9rem;
    }
}

@media (max-width: 767px) {
    .seo-hero-v2 {
        padding: 130px 20px 60px;
    }

    .seo-hero-v2 h1 {
        font-size: 1.55rem !important;
        line-height: 1.25 !important;
    }

    .seo-hero-sub {
        font-size: 0.9rem !important;
    }

    .seo-stats-row {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .seo-stat {
        min-width: 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .seo-stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .seo-stat:last-child,
    .seo-stat:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }

    .seo-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-dark-band {
        padding: 60px 20px;
    }

    .cta-dark-band h2 {
        font-size: 1.5rem !important;
    }

    .faq-item {
        padding: 18px 20px;
    }

    .sticky-side-card .btn {
        margin: 0 18px 10px;
        width: calc(100% - 36px);
    }

    .sticky-side-card .plan-features {
        padding: 20px 18px 0;
    }

    .side-trust {
        padding: 0 18px 18px;
    }

    .poster-3d {
        width: 140px !important;
        height: 205px !important;
    }

    .poster-3d:hover {
        transform: rotateY(-8deg) rotateX(3deg) scale(1.04) !important;
    }
}

/* =====================================================
   WIDE NAV DROPDOWN — ensure it fits 11 items cleanly
   ===================================================== */
.dropdown-wide {
    min-width: 520px !important;
}

@media (max-width: 600px) {
    .dropdown-wide {
        min-width: 94vw !important;
        left: 3vw !important;
        transform: none !important;
    }
}

/* =====================================================
   WHATSAPP WIDGET — HARD LOCK TO BOTTOM-LEFT
   Overrides everything, all screen sizes
   ===================================================== */
.whatsapp-widget,
.whatsapp-widget * {
    box-sizing: border-box;
}

.whatsapp-widget {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    right: auto !important;
    top: auto !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
}

@media (max-width: 992px) {
    .whatsapp-widget {
        bottom: 20px !important;
        left: 20px !important;
        right: auto !important;
        top: auto !important;
        flex-direction: row !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 16px !important;
        left: 16px !important;
        right: auto !important;
        top: auto !important;
    }

    .notification-bubble {
        display: none !important;
    }
}




/* =====================================================
   INDEX PAGE — PRICING PLANS GRID (idx-plan-*)
   ===================================================== */
.idx-plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    align-items: stretch;
}

.idx-plan-card {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 28px 22px 24px;
    flex: 1 1 180px;
    min-width: 170px;
    max-width: 210px;
    text-align: center;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
}

.idx-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.idx-plan-card.featured {
    background: linear-gradient(150deg, #1a1a2e 0%, #0d0d1a 100%);
    border-color: var(--primary);
    transform: scale(1.06);
    box-shadow: 0 24px 60px rgba(255, 107, 0, 0.25);
    z-index: 2;
}

.idx-plan-card.featured:hover {
    transform: scale(1.06) translateY(-8px);
    box-shadow: 0 32px 70px rgba(255, 107, 0, 0.35);
}

.idx-badge-wrap {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.idx-badge {
    background: linear-gradient(135deg, var(--primary), #e65a00);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
}

.idx-badge.blue {
    background: linear-gradient(135deg, var(--secondary), #003db0);
    box-shadow: 0 4px 16px rgba(0, 86, 210, 0.4);
}

.idx-plan-duration {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary);
    margin-bottom: 4px;
    margin-top: 8px;
}

.idx-plan-card.featured .idx-plan-duration {
    color: rgba(255, 107, 0, 0.9);
}

.idx-plan-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.idx-plan-card.featured .idx-plan-name {
    color: #ffffff;
}

.idx-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.idx-price sup {
    font-size: 1rem;
    font-weight: 700;
    vertical-align: super;
}

.idx-plan-card.featured .idx-price {
    color: #ffffff;
}

.idx-price-note {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    color: #888;
    margin-bottom: 6px;
}

.idx-plan-card.featured .idx-price-note {
    color: rgba(255, 255, 255, 0.5);
}

.idx-savings {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-family: 'Poppins', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 4px;
}

.idx-divider {
    border: none;
    border-top: 1px solid #eeeeee;
    margin: 14px 0;
}

.idx-plan-card.featured .idx-divider {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.idx-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    flex: 1;
}

.idx-features li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #555;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid #f5f5f5;
}

.idx-features li:last-child {
    border-bottom: none;
}

.idx-features li i {
    color: #00aa44;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.idx-plan-card.featured .idx-features li {
    color: rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.idx-plan-card.featured .idx-features li i {
    color: #44dd88;
}

.idx-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), #e65a00);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 11px 16px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: auto;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
}

.idx-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.45);
    color: #fff;
}

.idx-plan-card.featured .idx-order-btn {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.idx-plan-card.featured .idx-order-btn:hover {
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.35);
}

/* =====================================================
   COMPREHENSIVE MOBILE FIXES — All Pages
   ===================================================== */

/* === Prevent horizontal scroll on ALL pages === */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

@media (max-width: 992px) {

    /* Header */
    header .container {
        padding: 0 16px !important;
        height: 64px !important;
    }

    .logo img {
        height: 38px !important;
        max-width: 160px;
    }

    .header-actions .btn.mobile-hide {
        display: none !important;
    }

    /* Sections */
    .section-padding {
        padding: 40px 0 !important;
    }

    /* Hero sections */
    .seo-hero-v2 {
        padding: 90px 0 40px !important;
    }

    .seo-hero-v2 h1 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    .seo-hero-v2 p {
        font-size: 0.95rem !important;
    }

    /* Trust bar — 2 col on mobile */
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Channel/feature grids */
    .channels-grid,
    .features-grid,
    .why-grid,
    .device-grid,
    .plans-grid,
    .cards-row {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Regions grid 2-col on tablet, 1-col on phone */
    .regions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

/* Plans — stack cards on tablet/mobile */

.plan-card {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    transform: none !important;
}

.plan-card.featured {
    transform: none !important;
    order: 0 !important;
}

.idx-plan-card {
    width: 100% !important;
    max-width: 360px !important;
    min-width: unset !important;
    margin: 0 auto !important;
    transform: none !important;
    flex: none !important;
}

.idx-plan-card.featured {
    transform: none !important;
    order: 0 !important;
}

    /* Table — horizontal scroll */
    .comparison-table,
    .channel-table {
        overflow-x: auto !important;
        display: block !important;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table table,
    .channel-table table {
        min-width: 540px;
    }

    /* About page stats */
    .stats-grid,
    .about-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Support page */
    .support-container,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .support-form-card {
        padding: 24px 16px !important;
    }

    /* Devices page */
    .devices-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    /* Channel page hero badges */
    .hero-badges {
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: center !important;
    }

    .hero-badge {
        font-size: 0.75rem !important;
        padding: 6px 12px !important;
    }

    /* Channel ticker */
    .channel-ticker-wrap {
        font-size: 0.8rem !important;
    }

    /* Milestone timeline — single column */
    .timeline {
        padding-left: 20px !important;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: left !important;
    }

    .timeline-item .tl-dot {
        margin: 0 0 8px 0 !important;
    }

    /* Country grid */
    .country-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Language pills */
    .lang-pills {
        gap: 8px !important;
    }

    .lang-pill {
        font-size: 0.78rem !important;
        padding: 6px 14px !important;
    }

    /* FAQ accordion */
    .faq-acc-q {
        font-size: 0.95rem !important;
        padding: 14px 16px !important;
    }

    .faq-acc-a {
        padding: 0 16px 14px !important;
        font-size: 0.9rem !important;
    }

    /* Movie carousel */
    #movie-carousel .carousel-header {
        padding: 0 16px !important;
    }

    .carousel-tabs {
        gap: 8px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .ctab {
        padding: 6px 14px !important;
        font-size: 0.8rem !important;
    }

    /* Testimonials */
    .reviews-grid,
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    /* CTA sections */
    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .cta-buttons .btn {
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
    }

    /* Images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Text sizing */
    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    /* Buttons */
    .btn {
        white-space: nowrap;
    }

    /* About floating tiles — hide on small screens */
    .floating-tiles {
        display: none !important;
    }

    /* Glass/feature cards */
    .glass-grid {
        grid-template-columns: 1fr !important;
    }

    /* How it works steps */
    .steps-grid,
    .how-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media (max-width: 480px) {

    .container {
        padding: 0 12px !important;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 1.5rem !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* Trust bar — 2 col */
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Regions — 1 col */
    .regions-grid {
        grid-template-columns: 1fr !important;
    }

    /* Devices 1 col */
    .devices-grid {
        grid-template-columns: 1fr !important;
    }

    /* Plans */
    .plan-card,
    .idx-plan-card {
        padding: 20px 14px !important;
    }

    .plan-price .amount {
        font-size: 2.2rem !important;
    }

    /* Footer already handled — just ensure 1-col */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .footer-brand {
        text-align: center !important;
    }

    .footer-social {
        justify-content: center !important;
    }

    /* WhatsApp widget */
    .whatsapp-widget {
        bottom: 16px !important;
        left: 14px !important;
    }

    .notification-bubble {
        display: none !important;
    }

    /* Seo hero */
    .seo-hero-v2 h1 {
        font-size: 1.35rem !important;
    }

    .seo-badge-row {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 6px !important;
    }

    .seo-badge {
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
    }

    /* Country grid */
    .country-grid {
        grid-template-columns: 1fr !important;
    }

    /* Stats */
    .stats-grid,
    .about-stats {
        grid-template-columns: 1fr !important;
    }
}

/* =====================================================
   FOOTER GRID — HARD LOCK 5-COL DESKTOP
   ===================================================== */
@media (min-width: 993px) {
    .footer-grid {
        grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr !important;
        display: grid !important;
        gap: 40px !important;
    }

    /* Plans grid — force 5 columns on desktop */
    .idx-plans-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: stretch !important;
        gap: 16px !important;
    }

    .idx-plan-card {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        max-width: 220px !important;
        width: auto !important;
        transform: none !important;
    }

    .idx-plan-card.featured {
        flex: 1 1 0 !important;
        max-width: 240px !important;
        transform: scale(1.04) !important;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px !important;
    }

    .footer-brand {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =====================================================
   CITY CLUB IPTV — BLOG PAGE STYLES
   Add this to the bottom of your style.css file
   ===================================================== */

/* ── BLOG HERO ── */
.blog-hero {
    position: relative;
    background: linear-gradient(135deg, #0d0d14 0%, #1a1a2e 50%, #16213e 100%);
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 107, 0, 0.10) 0%, transparent 65%);
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.35);
    color: #FF6B00;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.blog-hero h1 {
    color: #fff;
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ── BLOG FILTER BAR ── */
.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.blog-filter-btn {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    color: #555;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: #FF6B00;
    border-color: #FF6B00;
    color: #fff;
}

/* ── BLOG CARDS GRID ── */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

/* ── INDIVIDUAL BLOG CARD ── */
.blog-card-new {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
}

.blog-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: #FF6B00;
}

/* ── CARD IMAGE AREA ── */
.blog-card-img-wrap {
    position: relative;
    display: block;
    text-decoration: none;
    height: 200px;
    overflow: hidden;
}

.blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.4s;
}

.blog-card-new:hover .blog-card-img-placeholder {
    transform: scale(1.05);
}

/* ── PLACEHOLDER BACKGROUND COLOURS ── */
.blog-img-bg1 {
    background: linear-gradient(135deg, #0d0d14 0%, #FF6B00 100%);
}

.blog-img-bg2 {
    background: linear-gradient(135deg, #0056D2 0%, #001a4d 100%);
}

.blog-img-bg3 {
    background: linear-gradient(135deg, #1a1a2e 0%, #FF6B00 100%);
}

.blog-img-bg4 {
    background: linear-gradient(135deg, #004d1a 0%, #00aa44 100%);
}

.blog-img-bg5 {
    background: linear-gradient(135deg, #4d0033 0%, #cc0066 100%);
}

.blog-img-bg6 {
    background: linear-gradient(135deg, #2d0050 0%, #7700ee 100%);
}

/* ── CARD TAG BADGE ── */
.blog-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #FF6B00;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 50px;
}

/* ── CARD BODY ── */
.blog-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── CARD META (author + date) ── */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-meta-author,
.blog-meta-date {
    font-size: 0.75rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta-author i,
.blog-meta-date i {
    color: #FF6B00;
    font-size: 0.72rem;
}

.blog-meta-dot {
    width: 3px;
    height: 3px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
}

/* ── CARD TITLE ── */
.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #1A1A1A;
}

.blog-card-title a {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: #FF6B00;
}

/* ── CARD EXCERPT ── */
.blog-card-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── READ MORE LINK ── */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #FF6B00;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s;
}

.blog-read-more:hover {
    gap: 10px;
    color: #e65a00;
}

/* ── NO RESULTS MESSAGE ── */
.blog-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 60px 20px;
    color: #999;
    font-size: 1rem;
    text-align: center;
}

.blog-no-results i {
    font-size: 2.5rem;
    color: #ddd;
}

/* ── PAGINATION ── */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.blog-page-btn {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    color: #555;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-page-btn:hover,
.blog-page-btn.active {
    background: #FF6B00;
    border-color: #FF6B00;
    color: #fff;
}

.blog-page-dots {
    color: #aaa;
    font-size: 1rem;
    padding: 0 4px;
}

.blog-page-next {
    padding: 8px 20px;
}

/* ── BLOG CTA STRIP ── */
.blog-cta-strip {
    background: linear-gradient(135deg, #0d0d14 0%, #1a1a2e 100%);
    padding: 70px 20px;
    text-align: center;
}

.blog-cta-strip h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 12px;
}

.blog-cta-strip p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 28px;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog-hero {
        padding: 120px 20px 60px;
    }

    .blog-hero h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-hero {
        padding: 100px 16px 50px;
    }

    .blog-hero h1 {
        font-size: 1.5rem;
    }

    .blog-card-img-wrap {
        height: 160px;
    }

    .blog-cta-strip h2 {
        font-size: 1.5rem;
    }
}