/*
Theme Name: OPPLEX TV
Theme URI: http://example.com/opplextv
Author: Antigravity AI
Description: A premium, dark-themed IPTV WordPress theme with glassmorphism and smooth animations.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: opplextv
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --bg-black: #050505;
    --bg-card: #0f0f0f;
    --text-white: #FFFFFF;
    --text-muted: #A0A0A0;
    --royal-blue: #0047AB;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 1.5s ease;
    font-size: clamp(0.9rem, 1vw, 1rem);
    /* Fluid base font */
}

body.loaded {
    opacity: 1;
}


/* Scroll Reveal Foundations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.logo span {
    color: var(--text-white);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a.active {
    color: var(--primary-gold);
}

.reseller-btn {
    border: 1px solid var(--primary-gold);
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    margin-left: 10px;
}

.reseller-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-black) !important;
}

/* Redesigned Hero Slider Section */
.hero-slider-section {
    background: radial-gradient(circle at bottom right, #1a1a1a, #050505);
    padding-bottom: 8rem;
}


.hero-slider {
    position: relative;
    overflow: hidden;
    max-width: 1300px;
    margin: 0 auto;
}

.slider-container {
    display: flex;
    transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1);
    width: 400%;
}

.slide {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-img-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #111;
}

.slide-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content-below {
    text-align: center;
    padding: 0 2rem;
    max-width: 800px;
}

.slide-content-below h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(to right, #fff, var(--primary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-weight: 800;
}

.slide-content-below p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-static-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--royal-blue);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 71, 171, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 71, 171, 0.4);
    background: #003380;
}

.btn-whatsapp-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--royal-blue);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 71, 171, 0.2);
}


.btn-whatsapp-hero:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 71, 171, 0.4);
    background: #003380;
}

.btn-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--bg-black);
    transform: translateY(-5px);
}

.channel-ticker-section {
    padding: 3rem 0;
    background: #050505;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-item img {
    height: 25px;
    width: auto;
    filter: none;
    transition: var(--transition);
    object-fit: contain;
}

.ticker-item:hover img {
    transform: scale(1.2);
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.downloader-img-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.downloader-reveal-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    animation: downloaderZoom 8s ease-in-out infinite;
}

@keyframes downloaderZoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-gold);
    width: 30px;
    border-radius: 10px;
}

.brand-showcase {
    padding: 100px 2rem;
    background: #000;
}


.brand-showcase .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.brand-showcase .section-header h2 {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

.brand-img-box {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.brand-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand-card:hover .brand-img-box img {
    transform: scale(1.15) rotate(2deg);
}

.brand-info {
    padding: 2rem;
    text-align: center;
}

.brand-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-white);
}

.faq-section {
    padding: 100px 2rem;
    background: radial-gradient(circle at top left, #121212, #050505);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active {
    border-color: var(--primary-gold);
}

.faq-item.active .faq-answer {
    padding: 0 1.8rem 1.8rem;
    max-height: 500px;
}

.faq-item.active .faq-question {
    color: var(--primary-gold);
}

.faq-question i {
    transition: transform 0.4s ease;
    color: var(--primary-gold);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    font-size: 2rem;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-gold);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--bg-black);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.pricing-card .premium-badge {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
    animation: badge-glow 2s infinite alternate;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes badge-glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 71, 87, 0.5), 0 0 10px rgba(255, 71, 87, 0.3);
        transform: translateX(-50%) scale(1);
    }

    100% {
        box-shadow: 0 0 15px rgba(255, 71, 87, 0.8), 0 0 25px rgba(255, 71, 87, 0.5);
        transform: translateX(-50%) scale(1.05);
    }
}


.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li i {
    color: var(--primary-gold);
}

.btn-buy {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-buy:hover {
    background: var(--primary-gold);
    color: var(--bg-black);
}

.featured .btn-buy {
    background: var(--primary-gold);
    color: var(--bg-black);
}

.downloader-section {
    padding: 100px 2rem;
    background: radial-gradient(circle at center, #111, #050505);
    text-align: center;
}


.downloader-container {
    max-width: 1000px;
    margin: 3rem auto;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.downloader-text {
    text-align: left;
}

.downloader-text h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.downloader-code {
    background: #000;
    padding: 2rem;
    border-radius: 20px;
    border: 2px dashed var(--primary-gold);
    margin: 2rem 0;
}

.downloader-code span {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 5px;
}

.downloader-steps {
    list-style: none;
    text-align: left;
}

.downloader-steps li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.downloader-steps i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.feature-showcase {
    padding: 100px 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    background: radial-gradient(circle at top right, #1a1a1a, #050505);
    border-radius: 40px;
    border: 1px solid var(--glass-border);
}


.feature-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.feature-img img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    transition: transform 1.5s ease;
}

.feature-img:hover img {
    transform: scale(1.1);
}

.feature-text {
    flex: 1;
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .slide-content-below h1 {
        font-size: 2.2rem;
    }

    .slide-img-box {
        height: 300px;
    }

    .hero-static-btns {
        position: relative;
        bottom: 0;
        margin-top: 2rem;
        flex-direction: column;
        width: 100%;
        padding: 0 1.5rem;
    }

    .hero-static-btns .btn-primary,
    .hero-static-btns .btn-whatsapp-hero {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .downloader-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .feature-showcase {
        flex-direction: column;
        text-align: center;
    }
}

/* --- WordPress Core Support (Global) --- */
.alignleft {
    float: left;
    margin: 0.5rem 2rem 2rem 0;
}

.alignright {
    float: right;
    margin: 0.5rem 0 2rem 2rem;
}

.aligncenter {
    display: block;
    margin: 2rem auto;
    text-align: center;
}

.wp-caption {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    max-width: 100%;
    padding: 0.5rem;
    text-align: center;
    border-radius: 10px;
}

.wp-caption img {
    margin: 0;
    padding: 0;
    border: 0;
}

.wp-caption p.wp-caption-text {
    font-size: 0.8rem;
    margin: 0.5rem 0;
    color: var(--text-muted);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 0.8rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Plugin Compatibility */
.entry-content>* {
    max-width: 100%;
}

.gform_wrapper,
.wpcf7,
.wp-block-contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    margin: 2rem 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    margin-bottom: 1rem;
    font-family: inherit;
}

input[type="submit"],
button.wp-block-button__link,
.button {
    background: var(--primary-gold);
    color: #000 !important;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

input[type="submit"]:hover,
button.wp-block-button__link:hover,
.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--gold-glow);
    background: #fff;
}

/* --- Global Icon Fix (Plugin Compatibility) --- */
.fab,
.fas,
.far,
.fal,
.fat,
.fad {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif !important;
    font-weight: 900;
}

.fab {
    font-weight: 400;
}

/* Dashboard / Elementor Tweaks */
.elementor-editor-active .hero-slider-section {
    display: none;
}

/* Hide theme hero in Elementor editor if building custom */

.featured-blog {
    border: 1px solid var(--primary-gold) !important;
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        backdrop-filter: blur(15px);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-gold);
    }

    .pricing-grid {
        gap: 1.2rem !important;
    }

    .pricing-card {
        padding: 1.5rem !important;
        border-radius: 15px !important;
    }

    .pricing-card h3 {
        font-size: 1.4rem !important;
    }

    .pricing-card .price {
        font-size: 2.22rem !important;
        margin-bottom: 1rem !important;
    }

    .pricing-card ul {
        margin-bottom: 1.5rem !important;
    }

    .pricing-card ul li {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }

    .btn-primary,
    .btn-buy {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.95rem !important;
    }

    .pricing-card.featured {
        transform: scale(1);
        border-width: 1px;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    /* Reseller Page Mobile Adjustments */
    .reseller-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .reseller-info-card {
        padding: 2rem !important;
    }

    .preview-stats {
        grid-template-columns: 1fr !important;
    }

    /* Services Selection Mobile */
    .services-title-area h1 {
        font-size: 2.22rem !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .service-brand-card {
        padding: 2rem !important;
    }
}

/* --- Services Selection Page --- */
.services-selection {
    padding: 100px 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.services-title-area {
    margin-bottom: 4rem;
}

.services-title-area h1 {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.services-title-area p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-brand-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.service-brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.service-brand-card i {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.service-brand-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-brand-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-brand-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Brand specific colors */
.brand-iptv i {
    color: #4285f4;
}

.brand-iptv img {
    border-color: rgba(66, 133, 244, 0.3);
}

.brand-b1g i {
    color: #fbbc05;
}

.brand-b1g img {
    border-color: rgba(251, 188, 5, 0.3);
}

.brand-5g i {
    color: #34a853;
}

.brand-5g img {
    border-color: rgba(52, 168, 83, 0.3);
}

.brand-mega i {
    color: #ea4335;
}

.brand-mega img {
    border-color: rgba(234, 67, 53, 0.3);
}

/* --- Pricing Pages --- */
.pricing-header {
    padding: 80px 2rem 40px;
    text-align: center;
}

.back-link {
    color: var(--primary-gold);
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.back-link:hover {
    color: #fff;
    transform: translateX(-5px);
}

.pricing-header h1 {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-main-preview {
    max-width: 100%;
    width: 600px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 15px;
    margin: 2rem auto;
    display: block;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Additional Responsive Fixes */
@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2.22rem !important;
    }
    .service-main-preview {
        width: 100% !important;
    }
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
}


/* --- Blogs Page --- */
.blogs-main-wrapper {
    padding: 120px 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    min-height: 80vh;
}

.blogs-header {
    text-align: center;
    margin-bottom: 5rem;
}

.blogs-header h1 {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.blogs-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.blog-card {
    padding: 0 !important;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.blog-thumb {
    height: 250px;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-no-thumb {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-no-thumb i {
    font-size: 3rem;
    color: #333;
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: var(--primary-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #fff;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.read-more i {
    font-size: 0.8rem;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .blogs-header h1 {
        font-size: 2.22rem !important;
    }
    .blogs-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}
