/* -----------------------------------------------------------
   GLOBAL & RESET
----------------------------------------------------------- */
:root {
    --primary: #E65100;     /* Deep Vibrant Orange (Sunset) */
    --accent: #E65100;      /* Neon Cyan/Blue (Signal Waves) */
    --light-bg: #FFF3E0;    /* Very Light Cream/Orange */
    --white: #FFFFFF;
    --text-dark: #1A1A1A;   /* Dark Charcoal */
    --text-gray: #546E7A;   /* Blue-Grey for softer text */
    --border-color: #FFE0B2; /* Light Orange Border */
    --shadow: 0 4px 20px rgba(230, 81, 0, 0.15); /* Orange tinted shadow */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* -----------------------------------------------------------
   BUTTONS
----------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #BF360C;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background-color: #0091EA;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-block { display: block; width: 100%; }
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }
.btn-text { font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 5px; }
.btn-text:hover { gap: 10px; }

/* -----------------------------------------------------------
   HEADER & NAV
----------------------------------------------------------- */
.announcement-bar {
    background: linear-gradient(90deg, #FF6F00 0%, #E65100 100%);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.announcement-bar a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(230, 81, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo span { color: var(--accent); }

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 20px;
}

.mobile-menu.active { display: block; }
.mobile-nav-links li { margin-bottom: 15px; }
.mobile-nav-links a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

/* -----------------------------------------------------------
   HERO SECTIONS
----------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 500px;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(230, 81, 0, 0.85), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* Page Hero (For About & Blog) */
.page-hero {
    position: relative;
    height: 300px;
    background: url('assets/images/background%20sureboost.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-hero h1 { font-size: 3rem; margin-bottom: 10px; color: var(--white); }
.page-hero p { font-size: 1.2rem; opacity: 0.9; color: var(--white); }


/* -----------------------------------------------------------
   CATEGORY SCROLL
----------------------------------------------------------- */
.category-section {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.category-scroll-wrapper {
    display: flex;
    gap: 40px;
    padding-bottom: 10px;
    width: 100%;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    cursor: pointer;
    flex-shrink: 0;
}

.cat-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    border: 2px solid transparent;
    transition: var(--transition);
    margin-bottom: 8px;
}

.category-item:hover .cat-icon {
    border-color: var(--accent);
    color: var(--accent);
}

.category-item span {
    font-size: 0.85rem;
    font-weight: 600;
}

@media (min-width: 769px) {
    .category-scroll-wrapper { justify-content: center; }
    .mobile-only { display: none !important; }
}

@media (max-width: 768px) {
    .category-scroll-wrapper {
        justify-content: flex-start;
        width: max-content;
        animation: scroll-left 15s linear infinite;
    }
    .category-scroll-wrapper:hover {
        animation-play-state: paused;
    }
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* -----------------------------------------------------------
   NETWORKS & VIDEO
----------------------------------------------------------- */
.networks-section {
    padding: 40px 0;
    text-align: center;
    background: var(--light-bg);
}

.section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.network-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.8;
}

.network-grid img { height: 40px; width: auto; }

.video-section {
    padding: 60px 0;
    background: var(--white);
}

.video-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -----------------------------------------------------------
   BENEFITS & IMPACT
----------------------------------------------------------- */
.benefits-section, .about-content-section { padding: 60px 0; }
.benefit-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefit-text { flex: 1; }
.benefit-img { flex: 1; }
.benefit-img img { border-radius: 10px; box-shadow: var(--shadow); }

.benefit-text h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.check-list i { color: var(--accent); }

.impact-section {
    background: linear-gradient(135deg, #FF6F00 0%, #E65100 100%);
    padding: 60px 0;
    color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.impact-item h2 { font-size: 2.5rem; color: #FFF; }
.impact-item p { color: rgba(255,255,255,0.9); }

/* -----------------------------------------------------------
   TIMELINE
----------------------------------------------------------- */
.timeline-section { padding: 80px 0; background: var(--light-bg); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2rem; color: var(--text-dark); font-weight: 800; }
.divider { width: 60px; height: 3px; background: var(--primary); margin: 10px auto; }

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #FFCC80;
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 200px;
    background: var(--light-bg);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 4px solid var(--light-bg);
    box-shadow: 0 4px 10px rgba(230, 81, 0, 0.3);
}

.timeline-step h4 { font-weight: 700; margin-bottom: 5px; }
.timeline-step p { font-size: 0.9rem; color: var(--text-gray); }

/* -----------------------------------------------------------
   PRODUCTS
----------------------------------------------------------- */
.products-section { padding: 80px 0; }
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-gray);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.15);
    transform: translateY(-5px);
}

.p-img-box {
    background: #FFF8E1;
    padding: 20px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-img-box img { max-height: 100%; }

.p-details { padding: 20px; }
.p-details h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text-dark); }
.p-category { font-size: 0.8rem; color: var(--primary); text-transform: uppercase; margin-bottom: 10px; display: block;}
.p-price { font-weight: 800; color: var(--primary); font-size: 1.2rem; margin-bottom: 15px; }

/* -----------------------------------------------------------
   BLOG LISTING & SINGLE POST
----------------------------------------------------------- */
.blog-listing-section { padding: 60px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.blog-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.15);
}

.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.1); }

.blog-content { padding: 25px; }
.blog-date { font-size: 0.85rem; color: var(--text-gray); display: block; margin-bottom: 10px; }
.blog-content h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--text-dark); line-height: 1.4; }
.blog-content p { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Single Post */
.single-blog-section { padding: 60px 0; }
.back-link { display: inline-block; margin-bottom: 20px; color: var(--primary); font-weight: 600; }
.back-link:hover { color: var(--accent); }
.featured-image { width: 100%; height: 400px; object-fit: cover; border-radius: 12px; margin-bottom: 30px; }
.single-post-header h1 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 30px; }
.post-date { color: var(--text-gray); font-size: 0.9rem; display: block; margin-top: 10px; margin-bottom: 10px; }
.single-post-body { font-size: 1.1rem; color: #333; line-height: 1.8; max-width: 900px; }
.single-post-body h3 { color: var(--primary); margin-top: 30px; margin-bottom: 15px; font-size: 1.5rem; }
.single-post-body p { margin-bottom: 20px; }

/* -----------------------------------------------------------
   MARQUEE, FAQ, FORM, FOOTER
----------------------------------------------------------- */
.marquee-section {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
    font-weight: 600;
    font-size: 1.2rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.why-us-section { padding: 60px 0; background: var(--light-bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card { background: var(--white); padding: 30px; border-radius: 8px; text-align: center; }
.feature-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }

.faq-section { padding: 80px 0; }
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
}
.faq-answer { display: none; padding-bottom: 20px; color: var(--text-gray); }
.faq-item.active .faq-answer { display: block; }
.faq-item.active i { transform: rotate(45deg); color: var(--primary); }

.callback-section { padding: 80px 0; background: var(--light-bg); }
.callback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.callback-img { background-size: cover; background-position: center; }
.callback-form-wrapper { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

footer {
    background: #212121;
    color: var(--white);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
/* Updated from var(--accent) to var(--primary) for Orange Headers */
.footer-col h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--primary); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.9rem; color: #9E9E9E; }

/* SOCIAL MEDIA ICONS */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* -----------------------------------------------------------
   RESPONSIVE DESIGN (MOBILE MAX)
----------------------------------------------------------- */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    .header-container { padding: 0 15px; }

    .hero-section { height: 450px; text-align: center; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-btns { justify-content: center; }

    .impact-grid { grid-template-columns: 1fr 1fr; }

    .timeline-container { flex-direction: column; }
    .timeline-container::before {
        top: 0; bottom: 0; left: 25px; width: 2px; height: auto;
    }
    .timeline-step {
        width: 100%;
        text-align: left;
        padding-left: 70px;
        margin-bottom: 30px;
        background: transparent;
    }
    .step-icon {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }

    .benefit-row { flex-direction: column; }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .p-img-box { height: 140px; padding: 10px; }
    .p-details { padding: 12px; }
    .p-details h4 { font-size: 0.95rem; }
    .btn-sm-mobile { padding: 8px; font-size: 0.8rem; width: 100%; }

    .callback-grid { grid-template-columns: 1fr; }
    .callback-img { height: 200px; }

    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}