/* ==================================================
   IPTV WEBSITE STYLESHEET - FINAL CLEAN VERSION
   ================================================== */

/* --- 1. Variables & Body --- */
:root {
  --header-height-desktop: 84px;
  --header-height-mobile: 74px;
  --color-blue: #0D6EFD;
  --color-orange: #FC4C02;
  --color-dark: #212529;
  --color-text: #6c757d;
}

body {
    background-color: #f8f9fa;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    scroll-padding-top: var(--header-height-desktop);
}

/* --- 2. Global Typography (Titles) --- */
.section-title, 
.section-title-left {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title { text-align: center; }
.section-title-left { text-align: left; }

.section-subtitle,
.section-subtitle-left {
    font-size: 1.15rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    max-width: 800px; /* Increased width for pricing subtitle */
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .section-title, .section-title-left {
        font-size: 2rem;
        text-align: center;
    }
    .section-subtitle, .section-subtitle-left {
        text-align: center;
    }
}

/* --- 3. Header --- */
.navbar-custom { padding: 0.75rem 0; }
.navbar-logo { max-height: 60px; width: auto; }
.navbar-custom .nav-link {
  color: #333; font-weight: 600; font-size: 1rem; padding: 0 1rem; transition: color 0.2s;
}
.navbar-custom .nav-link.active, .navbar-custom .nav-link:hover { color: var(--color-blue); }

@media (max-width: 991px) {
  .navbar-logo { max-height: 50px; }
  body { scroll-padding-top: var(--header-height-mobile); }
  .navbar-custom .navbar-nav { padding-top: 10px; }
  .navbar-custom .nav-item { padding: 5px 0; }
}



/* --- Mobile Menu Styling (Offcanvas) --- */
@media (max-width: 991px) {
    /* تنسيق القائمة الجانبية */
    .offcanvas {
        max-width: 80%; /* عرض القائمة 80% من الشاشة */
    }
    
    .offcanvas-header {
        border-bottom: 1px solid #eee;
        background-color: #f8f9fa;
    }

    /* تنسيق الروابط داخل الموبايل */
    .navbar-custom .navbar-nav .nav-link {
        padding: 15px 20px;      /* مساحة داخلية أكبر للضغط */
        font-size: 1.1rem;       /* خط أكبر */
        border-bottom: 1px solid #f0f0f0; /* خط فاصل خفيف */
        display: block;          /* جعل الرابط يأخذ العرض الكامل */
        text-align: left;        /* محاذاة لليسار */
    }

    /* إزالة الخط من آخر عنصر */
    .navbar-custom .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    /* لون الخلفية عند الضغط أو التمرير */
    .navbar-custom .navbar-nav .nav-link:active,
    .navbar-custom .navbar-nav .nav-link:hover {
        background-color: #f8f9fa;
        color: var(--color-blue);
        padding-left: 25px; /* حركة بسيطة عند اللمس */
    }
}

/* --- 4. Hero Section --- */
main.hero-full-screen {
  background-color: #fff;
  border-bottom: 1px solid #dee2e6;
  min-height: calc(100vh - var(--header-height-desktop));
  display: flex; align-items: center;
}
.hero-title {
  font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; color: var(--color-dark);
}
.hero-subtitle {
  font-size: 1.25rem; color: var(--color-text); margin-bottom: 2.5rem;
}
.hero-buttons { margin-bottom: 2.5rem; }
.hero-buttons .btn { padding: 0.8rem 1.5rem; font-size: 1.1rem; }
.hero-buttons .btn-outline-dark { font-weight: 600; }

@media (max-width: 991px) {
  main.hero-full-screen { min-height: calc(100vh - var(--header-height-mobile)); padding: 3rem 0; }
  .hero-title { font-size: 2.5rem; }
}

/* --- 5. Trust Badges --- */
.trust-container { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.trust-item {
    display: flex; align-items: center; gap: 1rem; padding: 0.75rem 1.25rem;
    border-radius: 8px; text-decoration: none; color: inherit; background-color: #fff;
    border: 1px solid #e9ecef; box-shadow: 0 4px 10px rgba(0,0,0,0.06); transition: all 0.3s;
}
.trust-hover-effect:hover { transform: translateY(-5px); border-color: var(--color-blue); }
.trust-brand-icon-star { font-size: 2.5rem; color: #00B67A; }
.trust-brand-icon-google { font-size: 2.2rem; color: #4285F4; }
.trust-text-content { text-align: left; }
.trust-text-content strong { font-size: 0.95rem; color: #333; display: block; margin-bottom: 2px; }
.trust-item .stars { color: #fdc107; font-size: 0.9rem; white-space: nowrap; }
.trust-item .stars span { color: #6c757d; font-weight: 700; margin-left: 5px; }

/* --- 6. Features Section --- */
.features-section { padding: 5rem 0; }
.feature-card {
    background-color: #fff; border: 1px solid #dee2e6; border-radius: 8px; padding: 2rem;
    height: 100%; text-align: center; transition: all 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.feature-icon-wrapper {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1.5rem auto;
    display: flex; align-items: center; justify-content: center; background-color: #e7f0ff;
}
.feature-icon { font-size: 2.5rem; color: var(--color-blue); }
.feature-icon-wrapper.feature-icon-action { background-color: #fff0e9; }
.feature-icon-action { color: var(--color-orange); }
.feature-title { font-size: 1.3rem; font-weight: 600; color: var(--color-dark); margin-bottom: 0.75rem; }
.feature-text { font-size: 0.95rem; color: var(--color-text); line-height: 1.6; }

/* --- 7. Why Choose Us Section --- */
.why-choose-us-section {
    padding: 6rem 0; background-color: #f8f9fa; border-bottom: 1px solid #dee2e6;
    position: relative; overflow: hidden;
}
.why-choose-us-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#e0e6ec 1px, transparent 1px); background-size: 15px 15px; opacity: 0.3; z-index: 0;
}
.why-choose-us-section .container { position: relative; z-index: 1; }
.why-choose-list-wrapper { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.why-choose-item {
    display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.5rem;
    background-color: #fff; border: 1px solid #e0e6ec; border-radius: 10px;
    transition: all 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}
.why-choose-item:hover { transform: translateY(-7px); border-left: 5px solid var(--color-blue); }
.list-icon-wrapper {
    color: var(--color-blue); font-size: 2rem; background-color: #eef5ff; border-radius: 50%;
    padding: 15px; display: flex; justify-content: center; align-items: center; width: 70px; height: 70px; flex-shrink: 0;
}
.list-text-content h4 { font-size: 1.3rem; font-weight: 600; color: #2c3136; margin-bottom: 0.4rem; }
.list-text-content p { font-size: 0.95rem; color: var(--color-text); line-height: 1.6; margin: 0; }
.why-choose-us-section .animated-image {
    display: block; transition: box-shadow 0.5s ease-in-out; border: 1px solid #fff;
}
.why-choose-us-section .col-lg-6:last-child:hover .animated-image {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}
@media (max-width: 991px) {
    .why-choose-us-section .col-lg-6:last-child { margin-top: 2rem; }
    .why-choose-us-section .btn { width: 100%; }
}

/* --- 8. Global Coverage Section --- */
.global-section-v2 { padding: 5rem 0; background-color: #fff; border-bottom: 1px solid #dee2e6; overflow: hidden; }
.map-container { position: relative; max-width: 1000px; margin: 0 auto; text-align: center; }
.map-image { border-radius: 12px; }
.map-point { position: absolute; transform: translate(-50%, -50%); display: flex; align-items: center; }
.map-dot {
    width: 12px; height: 12px; background-color: #D94202; border-radius: 50%;
    position: relative; animation: pulse-orange 1.5s infinite ease-out;
}
@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(217, 66, 2, 0.7); } 100% { box-shadow: 0 0 0 20px rgba(217, 66, 2, 0); }
}
.map-label {
    background-color: #D94202; color: #fff; font-size: 0.8rem; font-weight: 600;
    padding: 6px 10px; border-radius: 6px; margin-left: 10px; white-space: nowrap; box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .global-section-v2 { padding: 3rem 0; }
    .map-dot { width: 8px; height: 8px; }
    .map-label { font-size: 0.7rem; padding: 4px 6px; margin-left: 6px; }
}

/* --- 9. Channels Slider Section --- */
.channels-section { padding: 5rem 0; background-color: #fff; border-bottom: 1px solid #dee2e6; }
.channel-item {
    height: 80px; display: flex; align-items: center; justify-content: center;
    padding: 0 10px; filter: grayscale(100%); opacity: 0.6; transition: all 0.3s ease;
}
.channel-item img {
    max-height: 60px; max-width: 100%; width: auto; object-fit: contain;
}
.channel-item:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }
.swiper-wrapper { transition-timing-function: linear; }



/* --- 11. Footer Styles --- */
.footer-custom { border-top: 1px solid #dee2e6; }
.footer-logo { max-height: 45px; width: auto; }
.footer-heading {
  color: #000; font-weight: 600; text-transform: uppercase; font-size: 1rem; margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--color-blue); padding-bottom: 8px; display: inline-block; 
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--color-text); text-decoration: none; transition: all 0.2s; }
.footer-links a:hover { color: var(--color-blue); padding-left: 5px; }
.footer-contact li { margin-bottom: 0.8rem; display: flex; align-items: center; }
.footer-contact a { color: var(--color-text); text-decoration: none; transition: color 0.2s; word-break: break-all; }
.footer-contact a:hover { color: var(--color-blue); }
.footer-contact i { color: var(--color-blue); font-size: 1.2rem; margin-right: 12px; width: 20px; }

/* --- 12. Buttons --- */
.btn-action {
  background-color: var(--color-orange); color: #fff; font-weight: 600; border: none; transition: all 0.2s;
}
.btn-action:hover {
  background-color: #d94202; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- 13. HELPER COLORS (At bottom to override) --- */
.text-blue { color: var(--color-blue) !important; }
.text-orange { color: var(--color-orange) !important; }
.text-dark { color: var(--color-dark) !important; }



/* ==================================================
   13. Pricing Section (Minimalist & Clean)
   ================================================== */
.pricing-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.pricing-card {
    background-color: #fff;
    border-radius: 8px; /* Smaller radius for cleaner look */
    padding: 0; /* Reset padding */
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    border-top: 4px solid #adb5bd; /* Default gray top border */
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* --- Header Typography --- */
.plan-header {
    padding: 2.5rem 2rem 1.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid #f8f9fa;
}

.plan-name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 10px;
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #333;
}

/* FIXED: Smaller, cleaner price font */
.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 2px;
    position: relative;
    top: -10px;
}



/* The number itself */
.pricing-card .plan-price {
    font-size: 2.8rem; /* Much smaller than before */
    font-weight: 700; /* Regular bold, not heavy */
    color: #212529;
}

.period {
    font-size: 1rem;
    color: #adb5bd;
    font-weight: 400;
    margin-left: 5px;
}

/* --- Body & Features --- */
.plan-body {
    padding: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-list i {
    color: #0D6EFD; /* Blue checks */
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-list li.disabled {
    color: #ccc;
}
.feature-list li.disabled i {
    color: #ccc;
}

/* --- Premium Card Styles --- */
.pricing-card.premium {
    border-top: 4px solid #0D6EFD; /* Blue Top Border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 2;
}

.pricing-card.premium:hover {
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

/* Best Value Badge */
.badge-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0D6EFD;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

/* Gift Item Minimal Style */
.gift-item-minimal {
    background-color: #fcfcfc;
    border: 1px dashed #e0e0e0;
    padding: 10px;
    border-radius: 6px;
    align-items: center !important;
}

/* --- Buttons --- */
.pricing-card .btn {
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
}

.btn-outline-custom {
    color: #333;
    border: 1px solid #ddd;
    background: transparent;
}

.btn-outline-custom:hover {
    border-color: #333;
    background: #333;
    color: #fff;
}

/* Mobile Fixes */
@media (max-width: 991px) {
    .pricing-card.premium {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

/* ==================================================
   14. How to Order (Clean Badge & Minimal Guarantee)
   ==================================================
*/
.process-section {
    padding: 6rem 0;
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}

/* --- NEW: Clean Minimal Guarantee (No Box) --- */
.guarantee-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    color: #495057; /* Dark grey text */
    font-size: 1rem;
}

.guarantee-minimal i {
    font-size: 1.8rem;
    color: var(--color-orange); /* Matches the Payment step color */
    flex-shrink: 0;
}

.guarantee-minimal strong {
    color: var(--color-dark);
}

@media (max-width: 768px) {
    .guarantee-minimal {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Step Card Styling --- */
.step-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--color-blue);
}

/* --- The Number Badge --- */
.step-header {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e7f0ff; /* Light Blue Background */
    color: var(--color-blue);  /* Blue Number */
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%; /* Perfect Circle */
    border: 2px solid #cce0ff;
}

/* --- Icons & Text --- */
.step-icon {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.step-card:hover .step-icon {
    color: var(--color-blue);
}

.step-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
}

.step-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- Final Step Highlight (Orange) --- */
.step-card.step-final .step-number {
    background-color: #fff0e9; /* Light Orange */
    color: var(--color-orange);
    border-color: #ffe0d1;
}

.step-card.step-final:hover {
    border-color: var(--color-orange);
}

.step-card.step-final:hover .step-icon {
    color: var(--color-orange);
}
/* ==================================================
   15. Movies & Series Section (BIGGER & WIDER)
   ==================================================
*/
.movies-section {
    padding: 5rem 0;
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
    overflow: hidden;
}

/* This creates the "small space" on left and right */
.movies-section .container-fluid {
    padding-left: 40px; 
    padding-right: 40px;
}

.movie-card {
    /* Height increased to 600px for BIGGER images */
    height: 600px; 
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: #000;
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.movie-card:hover img {
    transform: scale(1.1);
    opacity: 0.9;
    transition: transform 0.5s ease;
}

/* Mobile Adjustment: Less padding on small screens */
@media (max-width: 768px) {
    .movies-section .container-fluid {
        padding-left: 15px; 
        padding-right: 15px;
    }
    /* Slightly smaller height on mobile to fit screen */
    .movie-card {
        height: 400px; 
    }
}

/* ==================================================
   16. Apps & Devices Section
   ==================================================
*/
.apps-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.app-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* Hover effect: Lift up and add shadow */
.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--color-blue);
}

.app-card img {
    max-height: 60px; /* Keeps logos uniform */
    width: auto;
    max-width: 100%;
    margin-bottom: 1rem;
    object-fit: contain;
}

.app-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0;
}

/* Special styling for "And More" card */
.app-card-more {
    color: var(--color-blue);
}
.app-card-more i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.app-card-more h5 {
    color: var(--color-blue);
}

/* ==================================================
   16. Compatibility Section (Devices & Apps)
   ==================================================
*/
.compatibility-section {
    padding: 6rem 0;
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}

/* --- 1. Device Cards (Top Row) --- */
.device-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    height: 100%;
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--color-blue);
}

/* Highlight Firestick card */
.device-card.highlight {
    border-color: #ffe0d1; /* Light Orange */
    background: #fffcfb;
}
.device-card.highlight .device-icon {
    color: var(--color-orange);
    background-color: #fff0e9;
}
.device-card.highlight:hover {
    border-color: var(--color-orange);
}

/* Icons */
.device-icon {
    font-size: 2.5rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    background-color: #e7f0ff; /* Light Blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.device-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--color-dark);
}

.device-card span {
    font-size: 0.85rem;
    color: #6c757d;
}


/* --- 2. App Cards (Bottom Row) --- */
.app-card-small {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 0.8rem;
    height: 80px; /* Fixed height for neat grid */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.app-card-small:hover {
    border-color: var(--color-blue);
    transform: scale(1.05);
}

.app-card-small img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%); /* Clean look, color on hover */
    opacity: 0.7;
    transition: all 0.2s;
}

.app-card-small:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* "And More" Box */
.app-more {
    background-color: #f8f9fa;
    color: var(--color-blue);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px dashed #ccc;
}

/* ==================================================
   17. SEO / Service Section
   ==================================================
*/
.seo-section {
    padding: 6rem 0;
    background-color: #fff; /* White background to separate from grey sections */
    border-bottom: 1px solid #dee2e6;
}

/* Make the text easy to read */
.seo-content p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8; /* Good spacing for reading */
    margin-bottom: 1.5rem;
}

/* Bold keywords stand out slightly */
.seo-content strong {
    color: var(--color-dark);
    font-weight: 700;
}

/* Image Styling */
.seo-image {
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.seo-image:hover {
    transform: scale(1.02); /* Subtle zoom on hover */
}

/* Mobile Adjustment */
@media (max-width: 991px) {
    .seo-section {
        text-align: center;
    }
    .section-title-left {
        text-align: center; /* Force center title on mobile */
    }
}


/* ==================================================
   18. Checkout & Thank You Pages
   ==================================================
*/
.checkout-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.checkout-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.checkout-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-dark);
}

.order-summary {
    background-color: #f1f5f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--color-blue);
}

.summary-price {
    color: var(--color-blue);
    font-weight: 800;
}

.gift-alert {
    font-size: 0.9rem;
    color: #198754;
    background-color: #d1e7dd;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
}

/* Phone Input Fixes for Bootstrap */
.iti { width: 100%; }
.iti__flag { background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png"); }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag { background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png"); }
}

.thank-you-section .card {
    border-radius: 16px;
}


/* ==================================================
   18. Checkout Page (Final Clean Version)
   ==================================================
*/
.checkout-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    min-height: 100vh;
}

/* --- Form Card (Left) --- */
.checkout-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #e9ecef;
}

.checkout-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.checkout-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Inputs */
.form-group-custom { margin-bottom: 1.5rem; }
.form-group-custom label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-control-custom {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

/* --- The Complete Order Button --- */
.btn-complete-order {
    width: 100%;
    background-color: var(--color-orange);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(252, 76, 2, 0.3);
}

.btn-complete-order:hover {
    background-color: #d94202;
    transform: translateY(-2px);
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top: 3px solid #fff;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: none; 
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* --- Summary Card (Right) --- */
.checkout-summary-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #e9ecef;
    position: sticky;
    top: 20px;
}

.summary-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.plan-display-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.plan-name-display {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark);
}

.plan-price-display {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-blue);
}

/* Payment Icons Footer */
.payment-icons-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    color: #6c757d;
    font-size: 1.8rem;
}

.payment-icons-row i {
    transition: color 0.3s;
}
.payment-icons-row i:hover { color: var(--color-blue); }

/* Phone Input Fix */
.iti { width: 100%; }
/* ==================================================
   19. Contact Page (Light & Clean UX)
   ==================================================
*/
.contact-section-light {
    background-color: #f8f9fa; /* Light body background */
    padding: 5rem 0;
    min-height: 100vh;
}

.contact-wrapper-light {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* Soft shadow */
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #e9ecef;
}

/* --- Left Side: Info (Now Light) --- */
.contact-info-light {
    background-color: #ffffff; /* Pure White */
    padding: 50px;
    width: 40%;
    border-right: 1px solid #f0f0f0;
    position: relative;
}

/* Decorative background accent (Subtle Blue Blob) */
.contact-info-light::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13,110,253,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.contact-content-relative {
    position: relative;
    z-index: 1;
}

.contact-badge {
    display: inline-block;
    background-color: #e7f0ff; /* Light Blue Badge */
    color: var(--color-blue);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-heading-light {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
    line-height: 1.1;
}

.contact-desc-light {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Info Cards (Clean Style) */
.info-card-row {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.info-card-row:hover {
    border-color: var(--color-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.info-icon-circle {
    width: 55px;
    height: 55px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-orange); /* Brand Orange Icon */
    margin-right: 20px;
    flex-shrink: 0;
}

.info-details h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--color-dark);
}

.info-details p, .info-details a {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    text-decoration: none;
}

.info-details a:hover {
    color: var(--color-blue);
    text-decoration: underline;
}

/* --- Right Side: Form --- */
.contact-form-light {
    width: 60%;
    padding: 50px;
    background-color: #fff;
}

.form-heading-h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

/* Inputs */
.input-light {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    padding: 14px;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    transition: 0.3s;
}

.input-light:focus {
    background-color: #fff;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

.label-light {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

/* Mobile Layout */
@media (max-width: 991px) {
    .contact-info-light, .contact-form-light {
        width: 100%;
        border-right: none;
    }
    .contact-info-light {
        border-bottom: 1px solid #f0f0f0;
        padding: 40px 20px;
    }
    .contact-form-light {
        padding: 40px 20px;
    }
}

/* ==================================================
   20. FAQ Section (Accordion Style)
   ==================================================
*/
.faq-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
    min-height: 100vh;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Accordion Styling */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

.accordion-button {
    font-weight: 700;
    color: var(--color-dark);
    padding: 20px 25px;
    font-size: 1.05rem;
    background-color: #fff;
    transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
    color: var(--color-blue);
    background-color: #e7f0ff; /* Light Blue Active Background */
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-button:focus {
    box-shadow: none; /* Remove default blue glow */
    border-color: rgba(0,0,0,.125);
}

/* Body text */
.accordion-body {
    padding: 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    background-color: #fff;
}

/* Links inside answers */
.accordion-body a {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 600;
}

.accordion-body a:hover {
    text-decoration: underline;
}
/* ==================================================
   21. About Us Page Styling
   ==================================================
*/
.about-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
    min-height: 100vh;
}

/* Header Area */
.about-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-tag {
    background-color: #e7f0ff;
    color: var(--color-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
}

/* Main Content Card */
.about-card-main {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    margin-bottom: 50px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-highlight {
    color: var(--color-dark);
    font-weight: 700;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #f0f0f0;
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-orange);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-blue);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-blue);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* ==================================================
   22. Interactive Installation Guide
   ==================================================
*/
.guide-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
    min-height: 100vh;
}

/* Hero Area */
.guide-header {
    text-align: center;
    margin-bottom: 50px;
}

.guide-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
}

/* Device Selector Grid */
.device-selector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.device-tab {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.device-tab i {
    font-size: 2.5rem;
    color: #6c757d;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.device-tab span {
    font-weight: 700;
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    line-height: 1.2;
}

/* Active & Hover States */
.device-tab:hover {
    transform: translateY(-5px);
    border-color: var(--color-blue);
}

.device-tab.active {
    border-color: var(--color-orange);
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(252, 76, 2, 0.15);
}

.device-tab.active i { color: var(--color-orange); }
.device-tab.active span { color: var(--color-orange); }

/* Instruction Panels */
.instruction-panel {
    display: none; /* Hidden by default */
    animation: fadeIn 0.5s ease;
}

.instruction-panel.active {
    display: block; /* Show when active */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Content Styling inside Panel */
.guide-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e9ecef;
}

.guide-card h3 {
    font-weight: 800;
    color: var(--color-dark);
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

/* Step Items */
.guide-step {
    display: flex;
    margin-bottom: 30px;
}

.step-badge {
    background: var(--color-blue);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
    margin-top: 2px;
}

.step-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.step-text strong { color: #333; }

/* Special Elements */
.code-display {
    background: #222;
    color: #0f0; /* Matrix green text */
    font-family: monospace;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.5rem;
    letter-spacing: 3px;
    display: inline-block;
    margin: 15px 0;
}

.important-box {
    background: #e7f0ff;
    border-left: 5px solid var(--color-blue);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .device-selector { gap: 10px; }
    .device-tab { width: 100px; height: 100px; }
    .device-tab i { font-size: 1.8rem; }
    .device-tab span { font-size: 0.75rem; }
}
/* ==================================================
   23. BLOG FEED SECTION (Clean & Pro Version)
   ================================================== 
*/

/* --- Clean Hero (No Background) --- */
.blog-hero {
    background: transparent; /* No background color */
    padding: 60px 0 40px 0;  /* Spacing */
    text-align: center;
    margin-bottom: 30px;
}

.blog-hero h1 {
    color: var(--color-dark); /* Your Dark Color (#212529) */
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.blog-hero p.lead {
    color: var(--color-text); /* Your Gray Text Color (#6c757d) */
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* --- Blog Card Grid --- */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Soft shadow */
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hover Effect */
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--color-blue); /* Blue border on hover */
}

/* Image Wrapper (16:9 Ratio Fix) */
.blog-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Forces 16:9 Aspect Ratio */
    overflow: hidden;
    display: block;
    background-color: #f8f9fa;
}

.blog-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Card Body */
.card-body-custom {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta Data (Date/Views) */
.blog-meta {
    font-size: 0.8rem;
    color: #adb5bd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-meta i {
    color: var(--color-blue);
}

/* Post Title */
.blog-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.blog-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.blog-title a:hover {
    color: var(--color-blue);
}

/* Post Description */
.blog-desc {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Read More Button */
.read-more-btn {
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.read-more-btn:hover {
    padding-left: 5px;
    color: var(--color-orange); /* Orange on hover */
}

/* ==================================================
   24. SINGLE BLOG POST (Article View)
   ================================================== 
*/

/* Header Area */
.blog-header-single {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.single-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.single-meta {
    color: var(--color-text);
    font-size: 0.95rem;
}

/* Main Image */
.main-image-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* --- CONTENT AREA (Rich Text) --- */
.blog-content-area {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-family: 'Segoe UI', sans-serif;
}

/* Typography inside articles */
.blog-content-area h2 {
    font-weight: 800;
    color: var(--color-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.blog-content-area h3 {
    font-weight: 700;
    color: var(--color-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog-content-area p {
    margin-bottom: 20px;
    color: #444;
}

/* Images inside content */
.blog-content-area img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Blockquotes */
.blog-content-area blockquote {
    border-left: 5px solid var(--color-blue);
    background: #f8f9fa;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

/* Links inside content */
.blog-content-area a {
    color: var(--color-blue);
    text-decoration: underline;
    font-weight: 600;
}

.blog-content-area a:hover {
    color: var(--color-orange);
}

/* --- SIDEBAR WIDGETS --- */
.sidebar-widget {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Recent Post List */
.recent-post-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 20px;
    transition: transform 0.2s;
    border-bottom: 1px solid #f8f9fa;
    padding-bottom: 15px;
}

.recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.recent-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    border: 1px solid #eee;
}

.recent-post-item div h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
    line-height: 1.4;
}

.recent-post-item:hover div h6 {
    color: var(--color-blue);
}

.recent-post-item div small {
    color: #adb5bd;
    font-size: 0.8rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .blog-hero h1 { font-size: 2.2rem; }
    .blog-hero p.lead { font-size: 1rem; }
    .single-title { font-size: 1.8rem; }
}
/* ==================================================
   25. PRIVACY POLICY & TERMS PAGES (Clean Light Theme)
   ================================================== 
*/

/* --- Light Hero Header --- */
.policy-hero {
    background-color: #f8f9fa; /* Very light grey */
    padding: 80px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 50px;
}

.policy-hero h1 {
    font-weight: 900;
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.policy-hero .lead {
    color: var(--color-text);
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 25px auto;
}

.last-updated-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.last-updated-badge i {
    color: var(--color-blue);
    margin-right: 8px;
}

/* --- Content Typography --- */
.policy-content {
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Section Headings (H2) */
.policy-content h2 {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

/* Blue accent under H2 */
.policy-content h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-blue);
}

/* Sub-headings (H3) */
.policy-content h3 {
    font-weight: 700;
    font-size: 1.3rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragraphs & Lists */
.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.policy-content li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.policy-content li strong {
    color: var(--color-dark);
}

/* Contact Box at Bottom */
.policy-contact-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.policy-contact-box h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .policy-hero h1 { font-size: 2.2rem; }
    .policy-content { font-size: 1rem; }
    .policy-content h2 { font-size: 1.5rem; }
}
/* ==================================================
   26. REFUND POLICY SPECIFIC STYLES
   ================================================== 
*/

/* Positive List (Eligibility) */
.policy-list-check {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.policy-list-check li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #555;
}

.policy-list-check li::before {
    content: '\F26A'; /* Bootstrap Check Circle Icon */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: #198754; /* Green */
    font-size: 1.2rem;
}

.policy-list-check strong {
    color: #198754;
}

/* Negative List (Non-Refundable) */
.policy-list-cross {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.policy-list-cross li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #555;
}

.policy-list-cross li::before {
    content: '\F62A'; /* Bootstrap X Circle Icon */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: #dc3545; /* Red */
    font-size: 1.2rem;
}

.policy-list-cross strong {
    color: #dc3545;
}

/* Highlight Box */
.refund-note {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    color: #856404;
    margin: 30px 0;
}
/* ==================================================
   27. 404 ERROR PAGE (Fixed - Clean & Readable)
   ================================================== 
*/
.error-section {
    padding: 80px 0;
    text-align: center;
    min-height: 60vh; /* Vertically centers content */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    /* Fixed: Removed gradient background, using solid primary blue */
    color: var(--color-blue, #0D6EFD); 
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.error-icon-box {
    font-size: 4rem;
    color: #adb5bd; /* Light gray icon */
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

/* Floating Animation for the Icon */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.error-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark, #212529);
    margin-bottom: 15px;
}

.error-desc {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 550px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Button Styling */
.btn-home {
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* ================================================== 
   CHAT WIDGET STYLES 
   ================================================== */

/* --- 1. Toggle Button --- */
#chat-toggle-btn {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: #0D6EFD; color: white; border: none; border-radius: 50%;
    box-shadow: 0 5px 25px rgba(13, 110, 253, 0.4); font-size: 1.6rem;
    cursor: pointer; z-index: 99999; transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
#chat-toggle-btn:hover { transform: scale(1.1); background: #0a58ca; }

.notification-dot {
    position: absolute; top: 14px; right: 14px; width: 12px; height: 12px;
    background: #D94202; border-radius: 50%; border: 2px solid #0D6EFD;
}

/* --- 2. Window --- */
#chat-window {
    position: fixed; bottom: 100px; right: 30px; width: 350px; height: 600px;
    background: #fff; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    z-index: 99999; display: none; flex-direction: column; overflow: hidden;
    border: 1px solid #e9ecef; font-family: 'Segoe UI', sans-serif;
    max-height: 80vh;
}

/* --- 3. Header (Fixed Z-Index) --- */
.chat-header {
    background: linear-gradient(135deg, #0D6EFD 0%, #0056b3 100%);
    padding: 15px 20px;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex-shrink: 0; 
    height: 70px;
    position: relative;
    z-index: 10; /* Force on top */
}

.agent-avatar {
    width: 42px; height: 42px; background: #fff; border-radius: 50%; padding: 3px;
    display: flex; align-items: center; justify-content: center;
}
.agent-avatar img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

.status-dot {
    width: 8px; height: 8px; background: #00ff88; border-radius: 50%; 
    display: inline-block; margin-right: 5px; box-shadow: 0 0 5px #00ff88;
}

/* Close Button Styling */
.close-chat-btn { 
    background: rgba(255,255,255,0.2); 
    border: none; 
    color: white; 
    width: 32px; height: 32px; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.2s;
}
.close-chat-btn:hover { background: rgba(255,255,255,0.4); transform: rotate(90deg); }

/* --- 4. Content Wrapper --- */
.chat-content-wrapper {
    flex-grow: 1; display: flex; flex-direction: column; overflow: hidden; position: relative;
}

#chat-register-screen { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center; background: #fff; overflow-y: auto; z-index: 5;
}

#chat-conversation-screen { display: flex; flex-direction: column; height: 100%; width: 100%; }

#chat-widget-container .form-control {
    background: #f8f9fa; border: 1px solid #e9ecef; padding: 12px;
    font-size: 0.9rem; border-radius: 8px; transition: 0.2s;
}
#chat-widget-container .form-control:focus { background: #fff; border-color: #0D6EFD; box-shadow: none; }

/* --- 5. Messages --- */
#chat-messages { 
    flex-grow: 1; padding: 20px; overflow-y: auto; background: #f4f6f9; 
    display: flex; flex-direction: column; gap: 12px;
}
#chat-messages::-webkit-scrollbar { width: 6px; }
#chat-messages::-webkit-scrollbar-thumb { background-color: #ccc; border-radius: 4px; }

/* Bubbles */
.message { 
    max-width: 85%; padding: 12px 16px; border-radius: 12px; 
    font-size: 0.9rem; line-height: 1.5; position: relative; word-wrap: break-word; 
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.bot-message { background: #fff; color: #333; align-self: flex-start; border-bottom-left-radius: 2px; }
.user-message { background: #D94202; color: white; align-self: flex-end; border-bottom-right-radius: 2px; }
.bot-message strong { color: #0D6EFD; }
.bot-message a { text-decoration: none; color: #0D6EFD; font-weight: bold; }

/* Quick Actions */
.quick-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.quick-actions button {
    background: #fff; border: 1px solid #0D6EFD; color: #0D6EFD; 
    border-radius: 20px; padding: 6px 14px; font-size: 0.8rem; 
    font-weight: 600; cursor: pointer; transition: 0.2s;
}
.quick-actions button:hover { background: #0D6EFD; color: #fff; transform: translateY(-2px); }

/* Input */
.chat-input-area { 
    padding: 15px; border-top: 1px solid #eee; background: #fff; 
    display: flex; gap: 10px; align-items: center; flex-shrink: 0; z-index: 10;
}
#chat-input { flex: 1; border: 1px solid #dee2e6; border-radius: 25px; padding: 12px 18px; outline: none; font-size: 0.9rem; }
#chat-input:focus { border-color: #0D6EFD; }
#send-btn { 
    background: #0D6EFD; color: white; border: none; width: 42px; height: 42px; 
    border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
#send-btn:hover { background: #0a58ca; }

@media (max-width: 480px) { #chat-window { width: 94%; right: 3%; bottom: 100px; height: 75vh; } }
#chat-widget-container .iti { width: 100%; }

/* ================================================== 
   CRITICAL FIX: Make Country List Appear ON TOP 
   ================================================== */

/* 1. Force the Dropdown to the maximum possible layer */
.iti__country-list {
    z-index: 2147483647 !important; /* Max possible Z-Index */
    position: fixed !important; /* Use fixed to ensure it floats over everything */
}

/* 2. Fix for Mobile specific container (if the library creates one) */
.iti--container {
    z-index: 2147483647 !important;
}

/* 3. Styling to ensure it looks good on mobile */
@media (max-width: 480px) {
    .iti__country-list {
        max-width: 85vw !important; /* Stop it from being too wide */
        max-height: 50vh !important; /* Keep it scrollable */
        overflow-y: auto !important;
    }
}