/* FIX MOBILE HORIZONTAL SCROLL */
html, body {
    overflow-x: hidden !important;
}

/* Prevent hero overflow */
.hero, 
.video-hero, 
.hero-content, 
.hero-video {
    max-width: 100% !important;
    overflow: hidden !important;
}


/* ==========================================
   GLOBAL ANIMATION FOR ALL SECTIONS
   Hakuna TV Scroll Reveal (AOS)
========================================== */

/* Fix: avoid overflow issues */
section, div[data-aos] {
    overflow: visible !important;
}

/* Soft fade-up for all sections by default */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition-property: opacity, transform;
}

/* Fade-left */
[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(-40px);
    transition-property: opacity, transform;
}

/* Fade-right */
[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(40px);
    transition-property: opacity, transform;
}

/* Zoom-in */
[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.88);
    transition-property: opacity, transform;
}

/* When animation triggers (AOS adds this) */
.aos-animate {
    opacity: 1 !important;
    transform: none !important;
}

/* ===============================
   NAVBAR
================================= */
.nav-menu a.active {
    color: #ff7b00;
    font-weight: 700;
    position: relative;
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff7b00;
    border-radius: 4px;
}

.navbar {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 14px 0;
    position: fixed;          /* FIX: Navbar ثابت */
    top: 0;
    left: 0;
    z-index: 9999;            /* أكبر قيمة باش يبقى فوق الجميع */
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 22px;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: .3s;
}

.nav-menu a:hover {
    color: #ff7b00;
}

.nav-buttons .small {
    padding: 10px 18px;
    font-size: 14px;
}

/* MOBILE MENU */
.nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 20px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-btn {
    margin-top: 10px;
    padding: 12px;
    background: #ff7b00;
    color: #fff !important;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

/* FIX NAVBAR GET STARTED BUTTON CONTRAST */
.btn-primary {
    background: linear-gradient(90deg, #F56A00, #FF8A00); /* تباين قوي */
    color: #FFFFFF !important;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #D85A00, #F57700);
}

/* ===============================
   MOBILE FIXES
================================= */
@media (max-width: 768px) {

    /* Fix logo */
    .nav-logo img {
        height: 40px;
    }

    /* Mobile menu links */
    .mobile-menu a {
        text-decoration: none !important;
        color: #333 !important;
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu a:hover {
        color: #ff7b00 !important;
    }

    /* Mobile button inside menu */
    .mobile-btn {
        background: #ff7b00;
        padding: 14px;
        border-radius: 8px;
        text-align: center;
        color: #fff !important;
        margin-top: 14px;
        font-size: 18px;
    }

    /* Make menu full width */
    .mobile-menu {
        width: 100%;
        background: #ffffff;
        padding: 20px;
        border-top: 1px solid #ddd;
    }

    /* Fix top spacing */
    .hero {
        margin-top: 20px;
    }

    /* Better spacing for hero text */
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* Center everything on mobile */
    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* =========================================
   Global Reset
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
}

/* =========================================
   Buttons
========================================= */

.btn-primary:hover {
    background: #e56e00;
}

.btn-secondary {
    background: #0056ff;
    color: #fff;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: bold;
}

.btn-secondary:hover {
    background: #0040c7;
}

/* =============================
   HERO SECTION
============================= */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* FIX */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px; /* FIX */
}
.video-hero {
    margin-bottom: 0 !important;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/* طبقة داكنة فوق الفيديو */
.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* تعديل الشفافية */
    z-index: 2;
}

/* المحتوى فوق الفيديو */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 850px;
    padding: 15px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-orange {
    background: linear-gradient(to right, #ff9900, #ff5e00);
    padding: 16px 32px;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    font-weight: 700;
}

.btn-blue {
    background: transparent;
    border: 2px solid #fff;
    padding: 16px 32px;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
    }
}

/* =========================================
   WHY CHOOSE US
========================================= */
/* WHY CHOOSE Hakuna TV – PROFESSIONAL */
.why-choose-pro {
    padding: 80px 0;
    text-align: center;
}

.why-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
}

.why-title span {
    color: #D85A00;
}

.why-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.why-card-pro {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.why-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #ff7a00;
}

.why-card-pro .icon {
    margin-bottom: 15px;
}

.why-card-pro h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card-pro p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .why-grid-pro {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .why-grid-pro {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   DEVICES SECTION 2
========================================= */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.device-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.device-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.14);
}

.device-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
}

/* =========================================
   DEVICES SECTION
========================================= */
/* DEVICE SECTION FIX LIKE IPTVUK */

.device-section {
    padding: 100px 0;
    background: linear-gradient(to right, #ff7a00, #2d1500);
}

.device-wrapper {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.device-image img {
    width: 950px;   /* نفس حجم iptvuk */
    max-width: 100%;
    display: block;
    margin: auto;
    filter: drop-shadow(0px 8px 16px rgba(0,0,0,0.25));
}

/* Right content */
.device-info {
    flex: 1;
    color: #fff;
}

.device-info h2 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 15px;
}

.device-info p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Rounded feature boxes */
.device-feature {
    background: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 18px;
    width: fit-content;
    margin-bottom: 15px;
    color: #000;
}

/* MOBILE FIX */
@media (max-width: 900px) {
    .device-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .device-image img {
        width: 100%;
    }
}

/* ===============================
   LONG SEO CONTENT – HAKUNA TV
================================ */

.seo-long-content {
    width: 100%;
}

.seo-long-content h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 22px;
    color: #0d1b2a;
    line-height: 1.3;
}

.seo-long-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 14px;
    color: #102a4c;
}

.seo-long-content p {
    font-size: 17px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 18px;
}

.seo-long-content strong {
    color: #0f3c8a;
    font-weight: 700;
}

/* Container spacing control */
.seo-long-content .container {
    padding: 0 20px;
}

/* Mobile optimization */
@media (max-width: 768px) {

    .seo-long-content h2 {
        font-size: 24px;
    }

    .seo-long-content h3 {
        font-size: 20px;
    }

    .seo-long-content p {
        font-size: 15.5px;
        line-height: 1.75;
    }
}


/* =========================================
   FEATURES SECTION
========================================= */

.features-section {
    background: #f8fafd;
    padding: 100px 0;
}

.features-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

.features-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.features-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;

    /* FIX: remove any outline or hover border */
    outline: none !important;
    border: none !important;

    /* FIX: prevent rendering artifacts */
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
}

/* HOVER */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);

    outline: none !important;
    border: none !important;
}

/* FOCUS / ACTIVE FIX */
.feature-card:focus,
.feature-card:active {
    outline: none !important;
    border: none !important;
}

/* ICON */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd9a0, #ffa033);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================
   Hakuna TV — DEVICES SECTION (v3 PRO)
   Clean • Premium • Fully Responsive
========================================== */

.devices-section {
    padding: 90px 20px;
    background: #f4f7fa;
}

.devices-container {
    max-width: 1150px;
    margin: auto;
    text-align: center;
}

/* TITLE */
.devices-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 45px;
    color: #0f1624;
}

/* GRID */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

/* CARD */
.device-card {
    background: #ffffff;
    padding: 28px 18px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.device-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    border-color: #ff7a00;
}

/* ICON */
.device-icon {
    font-size: 38px;
    margin-bottom: 12px;
    color: #ff7a00;
}

/* TITLE INSIDE CARD */
.device-card p {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

/* NOTE UNDER GRID */
.devices-note {
    margin-top: 30px;
    font-size: 16px;
    color: #555;
}

/*  RESPONSIVE */

@media (max-width: 1100px) {
    .devices-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 780px) {
    .devices-title {
        font-size: 32px;
    }
    .devices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 540px) {
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .device-card {
        padding: 25px 14px;
    }
    .device-icon {
        font-size: 32px;
    }
    .device-card p {
        font-size: 14px;
    }
}


/* =======================================
   Hakuna TV PRICING – ORANGE THEME
======================================= */

/* WRAPPER */
.pricing-v2 {
    text-align: center;
    padding: 60px 0;
    background: #ffffff;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TITLES */
.pricing-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
}

.pricing-offer {
    color: #D85A00;
    font-size: 22px;
    font-weight: 700;
    margin-top: 10px;
}

.pricing-subtitle {
    color: #555;
    margin-bottom: 40px;
}

/* GRID */
.pricing-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    justify-items: center;
    margin-top: 40px;
}

/* CARD */
.price-card {
    background: #ffffff;
    border: 2px solid rgba(255,140,0,0.25);
    border-radius: 22px;
    padding: 30px 25px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* PRICE */
.price-amount {
    font-size: 42px;
    font-weight: 900;
    color: #d06a00;
}

/* LIST CHECKS */
.price-card li::before {
    content: "✔ ";
    color: #ff7a00;
    font-weight: bold;
}

/* BUTTON */
.price-btn {
    background: linear-gradient(135deg, #ff7a00, #d66a00);
    color: white;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: auto;
    font-weight: bold;
    display: block;
    transition: .3s;
}
.price-btn:hover { opacity: .85; }

/* FEATURED CARD */
.price-card.featured {
    border: 3px solid #ff7a00;
    box-shadow: 0 0 0 4px rgba(255,140,0,0.2);
    transform: scale(1.05);
}

.featured-btn {
    background: linear-gradient(135deg, #ff9a00, #ff7a00) !important;
}

/* RIBBON */
.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff7a00;
    color: white;
    padding: 5px 14px;
    font-weight: bold;
    font-size: 12px;
    transform: rotate(18deg);
    border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .pricing-boxes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
    .pricing-boxes { grid-template-columns: 1fr; }
}

.price-card {
    text-align: left;
}

.price-card ul {
    list-style: none;
    padding-left: 0;
}

.price-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

.price-card.show {
    opacity: 1;
    transform: translateY(0);
}

.price-card:nth-child(1) { transition-delay: 0.1s; }
.price-card:nth-child(2) { transition-delay: 0.2s; }
.price-card:nth-child(3) { transition-delay: 0.3s; }
.price-card:nth-child(4) { transition-delay: 0.4s; }

.price-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}


/* =============================
   SECURE PAYMENT OPTIONS
============================= */

.payment-section {
    background: #f8f9fb;
    padding: 60px 20px;
    text-align: center;
}

.payment-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
}

.payment-subtitle {
    color: #555;
    margin-bottom: 40px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.method-box {
    text-align: center;
}

.method-box img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.method-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}


/* ==========================================
   PREMIUM TEST DRIVE – Hakuna TV STYLE (v2)
   Fully Responsive + Clean Spacing
========================================== */

.trial-section {
    background: linear-gradient(135deg, #1f4eff, #4424ff);
    padding: 70px 30px;
    border-radius: 25px;
    max-width: 1200px;
    margin: 70px auto;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* SHINE EFFECT */
.trial-section::after {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.28), transparent);
    border-radius: 50%;
    transform: translateX(-50%);
    filter: blur(45px);
}

/* INNER */
.trial-inner {
    max-width: 820px;
    margin: auto;
    padding: 0 10px;
}

/* TITLE */
.trial-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 22px;
    line-height: 1.25;
}

/* TEXT */
.trial-text {
    font-size: 18px;
    line-height: 1.65;
    opacity: 0.95;
    margin-bottom: 38px;
}

/* BUTTON */
.trial-btn {
    background: #ffaa33;
    color: #111;
    padding: 18px 42px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.trial-btn:hover {
    background: #ff8800;
    transform: translateY(-4px);
}

/*
   RESPONSIVE
*/

@media (max-width: 900px) {
    .trial-title {
        font-size: 34px;
    }
    .trial-text {
        font-size: 17px;
    }
}

@media (max-width: 650px) {
    .trial-section {
        padding: 50px 20px;
        margin: 40px 10px;
    }
    .trial-title {
        font-size: 28px;
    }
    .trial-text {
        font-size: 16px;
    }
    .trial-btn {
        width: 100%;
        padding: 16px 0;
        font-size: 17px;
    }
}



/* ==========================================
   PREMIUM MONEY-BACK GUARANTEE – Hakuna TV STYLE (v2)
   Fully Responsive + Improved Spacing + Cleaner UI
========================================== */

.moneyback-section {
    background: linear-gradient(135deg, #ff7a00, #ff5e00);
    padding: 90px 30px;
    text-align: center;
    color: #ffffff;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

/* Soft glow */
.moneyback-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 50%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.25), transparent);
    transform: translateX(-50%);
    filter: blur(60px);
    opacity: 0.7;
}

/* Container */
.moneyback-inner {
    max-width: 900px;
    margin: auto;
    padding: 0 10px;
}

/* ICON STYLE */
.icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.shield-icon {
    width: 95px;
    height: 95px;
    background: rgba(255,255,255,0.18);
    border: 3px solid rgba(255,255,255,0.45);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: bold;
    animation: popIn 0.8s ease;
}

/* TITLE */
.moneyback-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 22px;
    line-height: 1.3;
}

/* DESCRIPTION */
.moneyback-text {
    font-size: 19px;
    line-height: 1.75;
    opacity: 0.95;
    margin-bottom: 28px;
}

/* FOOT NOTE */
.moneyback-note {
    font-size: 17px;
    margin-top: 12px;
    font-weight: 500;
    opacity: 0.9;
}

/* Animation */
@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .moneyback-title { font-size: 34px; }
    .moneyback-text { font-size: 18px; }
}

@media (max-width: 650px) {
    .moneyback-section {
        padding: 60px 20px;
    }
    .shield-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }
    .moneyback-title {
        font-size: 28px;
    }
    .moneyback-text {
        font-size: 16px;
    }
    .moneyback-note {
        font-size: 15px;
    }
}


/* ============================
   Hakuna TV – REVIEWS PRO SECTION
============================= */

.reviews-pro-section {
    padding: 80px 0;
    background: #fff;
}

.reviews-pro-container {
    max-width: 1150px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

.reviews-pro-title {
    font-size: 38px;
    font-weight: 800;
    color: #111;
}

.reviews-pro-title span {
    color: #D85A00;
}

.reviews-pro-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 900px;
    margin: 20px auto 50px;
    line-height: 1.6;
}

.reviews-pro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.review-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    text-align: left;
    transition: .3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: #C04E00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.review-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.review-text {
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

.reviews-pro-footer {
    margin-top: 50px;
}

.reviews-pro-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #0056FF;
    color: #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: .3s ease;
}

.reviews-pro-btn:hover {
    background: #e56a00;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .reviews-pro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-pro-grid {
        grid-template-columns: 1fr;
    }

    .reviews-pro-title {
        font-size: 28px;
    }
}


/* ==========================
     Hakuna TV TRUSTPILOT
========================== */

.trustpilot-section {
    padding: 70px 15px;
    background: #f8fafb;
}

.trustpilot-header {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.trustpilot-subtitle {
    font-weight: 600;
    margin-bottom: 5px;
}

.trustpilot-title {
    font-size: 32px;
    font-weight: 800;
}

.trustpilot-title span {
    color: #C04E00;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.trustpilot-logo {
    width: 90px;
}

.stars {
    color: #00b67a;
    font-size: 18px;
}

/* CARDS GRID */
.trustpilot-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.trust-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: .3s;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* USER HEADER */
.trust-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.avatar {
    width: 42px;
    height: 42px;
    background: #128054;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* TEXT */
.trust-text {
    margin: 10px 0 15px;
}

.read-more {
    color: #128054;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* -------------------------
   RESPONSIVE FIXES
-------------------------- */

@media (max-width: 768px) {
    .trustpilot-title {
        font-size: 26px;
        text-align: center;
    }

    .trustpilot-header {
        text-align: center;
    }

    .trustpilot-rating {
        justify-content: center;
    }
}


/* ==========================================
   Hakuna TV EXPERIENCE SECTION (v2 PRO)
   Clean • Responsive • Modern UI
========================================== */

.nindo-exp {
    background: #0F1624;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

/* Container */
.nindo-exp .nindo-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.nindo-exp .nindo-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.25;
}

.nindo-exp .nindo-title span {
    color: #ff7a00;
}

/* Subtitle */
.nindo-exp .nindo-subtitle {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 45px;
    opacity: 0.85;
    line-height: 1.6;
}

/* GRID */
.nindo-exp .nindo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1150px;
    margin: auto;
}

/* BOX */
.nindo-exp .nindo-box {
    background: #1c2536;
    border-radius: 14px;
    padding: 30px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
    position: relative;
}

.nindo-exp .nindo-box:hover {
    transform: translateY(-8px);
    border-color: #ff7a00;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Icons */
.nindo-exp .nindo-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #ff7a00;
}

/* Box Title */
.nindo-exp .nindo-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Box Text */
.nindo-exp .nindo-box p {
    font-size: 16px;
    opacity: 0.92;
    line-height: 1.55;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .nindo-exp .nindo-title {
        font-size: 32px;
    }
    .nindo-exp .nindo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nindo-exp {
        padding: 60px 15px;
    }
    .nindo-exp .nindo-title {
        font-size: 28px;
    }
    .nindo-exp .nindo-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }
    .nindo-exp .nindo-grid {
        grid-template-columns: 1fr;
    }
    .nindo-exp .nindo-box {
        padding: 25px;
    }
    .nindo-exp .nindo-box p {
        font-size: 15px;
    }
}

/* =========================================
Frequently Asked Questions – Hakuna TV
========================================= */
.faq-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: .3s;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px;
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "▾";
    font-size: 22px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    padding: 0 18px;
    transition: max-height .4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 18px;
}

/* ==========================================
   Hakuna TV — CONTACT US SECTION (v3 PRO)
   Clean • Responsive • Premium UI
========================================== */

.contact-section {
    background: #f5f5f7;
    padding: 90px 20px;
}

/* Dark mode (اختياري) */
.contact-section.dark {
    background: #0F1624;
    color: #fff;
}

/* HEADER */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-header p {
    color: #555;
    font-size: 17px;
    max-width: 650px;
    margin: auto;
    line-height: 1.6;
}

.contact-section.dark .contact-header p {
    color: #ddd;
}

/* MAIN CONTAINER */
.contact-container {
    display: flex;
    gap: 35px;
    max-width: 1150px;
    margin: auto;
}

/* LEFT / RIGHT BLOCKS */
.contact-info,
.contact-form {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    flex: 1;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.contact-section.dark .contact-info,
.contact-section.dark .contact-form {
    background: #1c2536;
    border: 1px solid rgba(255,255,255,0.08);
}

/* SECTION TITLES */
.contact-info h3,
.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
}

/* CONTACT BOX */
.contact-box {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    align-items: center;
}

.ci-icon {
    font-size: 24px;
    color: #ff7a00;
}

.contact-box a {
    color: #ff7a00;
    font-weight: 700;
    font-size: 15px;
}

/* INFO PARAGRAPHS */
.contact-hours {
    margin-top: 10px;
    font-size: 15px;
    color: #555;
}

.contact-section.dark .contact-hours {
    color: #ddd;
}

/* FORM INPUTS */
.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
    transition: 0.25s;
}

.contact-section.dark .contact-form form input,
.contact-section.dark .contact-form form textarea {
    background: #111825;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

/* Focus effect */
.contact-form form input:focus,
.contact-form form textarea:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255,122,0,0.2);
    outline: none;
}

/* BUTTON */
.whatsapp-btn {
    width: 100%;
    padding: 16px;
    background: #ff7a00;
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background: #e26a00;
    transform: translateY(-2px);
}

/*  RESPONSIVE  */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .contact-header h2 {
        font-size: 30px;
    }
    .contact-header p {
        font-size: 15px;
    }
    .contact-info, .contact-form {
        padding: 24px;
    }
}

/* ================================
   FOOTER GLOBAL STYLE
================================ */
.site-footer {
    background: #111;
    color: #ddd;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* 
   LOGO & DESCRIPTION
*/
.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-copy {
    font-size: 14px;
    color: #aaa;
}

/* 
   FOOTER TITLES
 */
.footer-box h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

/* 
   FOOTER LINKS
 */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #ff7a00;
}

/* 
   DISCLAIMER BOTTOM TEXT
*/
.footer-disclaimer {
    max-width: 1300px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.footer-disclaimer a {
    color: #ff7a00;
}

/* 
   RESPONSIVE (Mobile)
 */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* ================================
Multy connection
================================ */

/* PRICING CARD STYLING */
.price-card {
    border: 2px solid #FF7A00;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: .3s;
}
.price-card:hover {
    transform: translateY(-6px);
}

/* price text */
.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: #FF7A00;
    margin-top: 10px;
}

/* monthly text */
.monthly {
    font-weight: bold;
    font-size: 16px;
    color: #003366;
    background: #dce9ff;
    padding: 4px 10px;
    display: inline-block;
    border-radius: 6px;
    margin-top: 5px;
}

/* saving text */
.saved {
    font-weight: 700;
    font-size: 15px;
    color: #ff0000;
    margin-top: 5px;
}

/* BUY NOW button centered */
.price-btn {
    display: block;
    width: 60%;
    margin: 15px auto 0;
    background: #FF7A00;
    color: white;
    padding: 12px 0;
    font-size: 17px;
    border-radius: 30px;
    text-align: center;
    transition: .3s;
}
.price-btn:hover {
    opacity: .8;
}

/* SWITCH BUTTONS */
.connection-switch-advanced {
    display:flex;
    justify-content:center;
    gap:10px;
    background:#54595F;
    padding:8px;
    border-radius:40px;
    width:max-content;
    margin:35px auto;
    box-shadow:0 3px 10px rgba(0,0,0,0.15);
}
.conn-btn {
    padding:10px 25px;
    border-radius:30px;
    background:#7a7f84;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    white-space:nowrap;
}
.conn-btn.active {
    background:#FF7A00;
    color:#fff;
}

.pricing-boxes .seo-text {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.pricing-boxes .seo-text {
    font-size: 12.5px;
    color: #555;
    line-height: 1.38;
    margin-top: 12px;
    opacity: 0.90;
    text-align: center;
}

/* Default Desktop (يبقى كما هو) */
.connection-switch-advanced {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #3D424B;
    padding: 8px;
    border-radius: 40px;
}

/* Buttons */
.conn-btn {
    padding: 12px 20px;
    background: #7b7b7b;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    transition: .3s;
    white-space: nowrap;
}

.conn-btn.active {
    background: #FF7A00;
    color: #fff;
    transform: scale(1.05);
}

/* Mobile — يجعل كل زر في صف مستقل */
@media (max-width: 768px) {
    .connection-switch-advanced {
        flex-direction: column;
        width: 90%;
        margin: auto;
        border-radius: 20px;
        padding: 12px;
    }

    .conn-btn {
        width: 100%;
        text-align: center;
        padding: 13px;
        font-size: 15px;
        border-radius: 10px;
    }
}


/* ================================
   STEPS SECTION (Independent Style)
================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.step-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 18px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border-top: 4px solid #FF7A00;
    transition: transform .3s ease, box-shadow .3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.step-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.step-card strong {
    font-size: 16px;
    color: #111;
}


/* ============================================
   Hakuna TV – PREMIUM LEGAL HERO (v2)
============================================ */
.legal-hero-pro {
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    padding: 100px 20px 80px;
    text-align: center;
    border-bottom: 1px solid #e3e6ea;
}

.legal-icon {
    font-size: 60px;
    margin-bottom: 18px;
    color: #D85A00;
    animation: fadeIn 0.9s ease;
}

.legal-title-pro {
    font-size: 46px;
    font-weight: 800;
    color: #0f1624;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.legal-subtitle-pro {
    max-width: 850px;
    margin: auto;
    font-size: 18px;
    color: #555;
    line-height: 1.75;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .legal-icon { font-size: 48px; }
    .legal-title-pro { font-size: 32px; }
    .legal-subtitle-pro { font-size: 15px; }
}


/* ================================
   COOKIE CONSENT BANNER
================================ */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
    font-family: Arial, sans-serif;
    z-index: 99999;
    border-left: 6px solid #FF7A00;
    display: none;
}

.cookie-banner h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cookie-banner p {
    font-size: 14px;
    color: #555;
}

.cookie-btns {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btns button {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}

.accept-cookies {
    background: #FF7A00;
    color: #fff;
}

.reject-cookies {
    background: #ddd;
    color: #333;
}

.later-cookies {
    background: #0056ff;
    color: #fff;
}

.cookie-close {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
    color: #555;
}



/* ===============================
   CONTACT PAGE – HAKUNA TV
   Clean • Native • Professional
================================ */

/* Global container */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO ===== */
.contact-hero {
    background: linear-gradient(135deg, #0a1a2e, #102a4c);
    color: #ffffff;
    padding: 90px 20px 70px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-hero p {
    font-size: 17px;
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.92;
    line-height: 1.6;
}

/* ===== SECTION ===== */
.contact-section {
    background: #f6f8fb;
    padding: 70px 0;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ===== CARDS ===== */
.contact-info,
.contact-form {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 34px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Titles */
.contact-info h2,
.contact-form h2 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #102a4c;
}

/* Info text */
.contact-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* List */
.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

.contact-info li {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Note */
.contact-note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* ===== FORM ===== */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #222;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255,122,0,0.15);
}

/* Button */
.btn-submit {
    width: 100%;
    background: #ff7a00;
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-submit:hover {
    background: #e66d00;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(255,122,0,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 30px;
    }

    .contact-hero p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form {
        padding: 28px 22px;
    }
}

/* ==========================================

whatsapp-btn
========================================== */



.wa-float{
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wa-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.wa-icon svg{
  width: 30px;
  height: 30px;
  fill: #fff;
}

.wa-label{
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

@media (max-width: 480px){
  .wa-label{ display:none; }
}
