/*
Theme Name: IPTV UK Service Theme
Theme URI: https://glamorous-azure-otter.198-54-115-131.cpanel.site/
Author: Custom Theme
Description: Complete standalone WordPress Theme for IPTV UK Service with Mobile-First 3-Line Navigation and WhatsApp Support.
Version: 1.0.0
*/

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0b0f19;
}

a {
    color: #00e676;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #00b359;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #060911;
    color: #cccccc;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff !important;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
}

/* Navigation & Mobile Hamburger Menu */
.site-header {
    background: #0f172a;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.site-logo {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-logo a {
    color: #ffffff;
}

.site-logo span {
    color: #00e676;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 22px;
    align-items: center;
}

.main-navigation ul li a {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 15px;
}

.main-navigation ul li a:hover {
    color: #00e676;
}

.btn-header {
    background: linear-gradient(135deg, #00e676 0%, #00b0ff 100%);
    color: #0b0f19 !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

/* Mobile Hamburger Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: #0f172a;
        padding: 40px 30px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 25px rgba(0,0,0,0.7);
    }

    .main-navigation.is-active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .main-navigation ul li a {
        font-size: 18px;
    }
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    font-size: 30px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at center, #1e293b 0%, #0b0f19 100%);
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 35px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.price-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
}

.price-card.popular {
    border: 2px solid #00e676;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00e676;
    color: #0b0f19;
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
}

.plan-title { font-size: 22px; margin-bottom: 15px; }
.plan-price { font-size: 38px; font-weight: 800; color: #00e676; margin-bottom: 20px; }
.plan-features { list-style: none; margin-bottom: 30px; }
.plan-features li { padding: 10px 0; border-bottom: 1px solid #334155; color: #cbd5e1; }

/* Footer */
.site-footer {
    background: #060911;
    padding: 50px 0 20px;
    margin-top: 80px;
    border-top: 1px solid #1e293b;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    color: #64748b;
    font-size: 14px;
}
