/* 
   style.css 
   We strictly use classes to avoid using direct element selectors (such as a, img, ul, body, *). 
*/

/* Reset Using Classes instead of * selector */
.html-root,
.page-body,
.main-header,
.header-content,
.brand-logo,
.desktop-nav,
.nav-link,
.btn-cta,
.header-cta,
.hamburger-icon,
.hamburger-icon-fa,
.mobile-sidebar,
.close-icon,
.close-icon-fa,
.mobile-nav-links,
.mobile-nav-link,
.mobile-cta,
.mobile-overlay,
.hero-section,
.hero-container,
.hero-text-content,
.hero-title,
.hero-subtitle,
.hero-features-list,
.hero-feature-item,
.feature-check-icon,
.feature-text,
.hero-image-content,
.hero-product-image,
.about-section,
.section-container,
.section-title,
.about-content,
.about-text,
.why-us-section,
.text-center,
.benefits-grid,
.benefit-card,
.benefit-icon-wrapper,
.benefit-icon,
.benefit-title,
.benefit-desc,
.testimonials-section,
.testimonial-slider,
.testimonial-card,
.stars-container,
.star-icon,
.testimonial-text,
.testimonial-author,
.faq-section,
.faq-accordion,
.faq-item,
.faq-header,
.faq-question,
.faq-icon,
.faq-body,
.faq-answer,
.main-footer,
.footer-container,
.footer-grid,
.footer-col,
.footer-heading,
.footer-text,
.footer-icon,
.footer-link,
.footer-ad-note-container,
.footer-ad-text,
.footer-bottom,
.footer-copyright,
.cookie-popup,
.cookie-content,
.cookie-title,
.cookie-text,
.cookie-buttons,
.btn-cookie-accept,
.btn-cookie-reject,
.top-ad-notice,
.ad-notice-text,
.loader-container,
.loader-spinner,
.loader-text,
.footer-link-btn,
.modal-overlay,
.modal-content-box,
.modal-close-icon,
.modal-icon-fa,
.modal-title,
.modal-body-text,
.modal-para {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Styles */
.html-root {
    scroll-behavior: smooth;
}

.page-body {
    font-family: 'Inter', sans-serif;
    background-color: #0b1120;
    color: #f1f5f9;
    line-height: 1.6;
    overflow-x: hidden;
}

a.nav-link,
a.mobile-nav-link,
a.footer-link,
a.btn-cta {
    text-decoration: none;
}

/* Page Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0b1120;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 126, 84, 0.3);
    border-top: 4px solid #ff7e54;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff7e54;
    letter-spacing: 2px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Top Ad Notice */
.top-ad-notice {
    background: linear-gradient(90deg, #1e293b, #0f172a);
    text-align: center;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 126, 84, 0.2);
}

.ad-notice-text {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
.main-header {
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff7e54;
    letter-spacing: 1px;
}

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

.nav-link {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff7e54;
}

.btn-cta {
    background: linear-gradient(135deg, #ff7e54 0%, #ff4b1f 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 126, 84, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 126, 84, 0.5);
}

/* Hamburger & Mobile Menu Sidebar */
.hamburger-icon {
    display: none;
    cursor: pointer;
}

.hamburger-icon-fa,
.close-icon-fa {
    font-size: 1.5rem;
    color: #f1f5f9;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.active {
    right: 0;
}

.close-icon {
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 40px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    font-size: 1.3rem;
    color: #e2e8f0;
    font-weight: 600;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #ff7e54;
}

.mobile-cta {
    margin-top: 20px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sections Global */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: #ff7e54;
    bottom: -15px;
    left: 0;
    border-radius: 2px;
}

.text-center {
    text-align: center;
    width: 100%;
    display: block;
}

.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 20px;
    background: radial-gradient(circle at 70% 30%, rgba(255, 126, 84, 0.15) 0%, rgba(11, 17, 32, 0) 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-check-icon {
    color: #10b981;
    font-size: 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 5px;
    border-radius: 50%;
}

.feature-text {
    font-size: 1.05rem;
    color: #e2e8f0;
}

.hero-image-content {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-product-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* About Us */
.about-section {
    background: linear-gradient(180deg, #0f172a 0%, #0b1120 100%);
}

.about-content {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Why Us */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #1e293b;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: #25334a;
    border-color: rgba(255, 126, 84, 0.3);
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 126, 84, 0.2) 0%, rgba(255, 75, 31, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.benefit-icon {
    font-size: 2rem;
    color: #ff7e54;
}

.benefit-title {
    font-size: 1.25rem;
    color: #f8fafc;
    margin-bottom: 15px;
}

.benefit-desc {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    background: #0f172a;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars-container {
    margin-bottom: 20px;
}

.star-icon {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    color: #ff7e54;
    font-weight: 600;
    font-size: 1rem;
}

/* FAQs */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #1e293b;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #1e293b;
    transition: background 0.3s ease;
}

.faq-header:hover {
    background: #25334a;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f8fafc;
}

.faq-icon {
    color: #ff7e54;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-body {
    max-height: 200px;
    /* arbitrary max height for animation */
}

.faq-answer {
    padding: 0 25px 25px 25px;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: #020617;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-heading {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-text {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-link {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    width: fit-content;
}

.footer-link:hover {
    color: #ff7e54;
}

.footer-link-btn {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    width: fit-content;
}

.footer-link-btn:hover {
    color: #ff7e54;
}

.footer-icon {
    color: #ff7e54;
    width: 20px;
    margin-right: 5px;
}

.footer-ad-note-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.footer-ad-text {
    color: #64748b;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 10px;
}

.footer-ad-text:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    color: #64748b;
    font-size: 0.9rem;
}

/* Cookies Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 20px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 126, 84, 0.3);
    border-radius: 16px;
    padding: 30px;
    width: calc(100% - 40px);
    max-width: 450px;
    z-index: 2000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-popup.show {
    bottom: 20px;
}

.cookie-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cookie-text {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept {
    flex: 1;
    background: #10b981;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cookie-accept:hover {
    background: #059669;
}

.btn-cookie-reject {
    flex: 1;
    background: transparent;
    color: #94a3b8;
    border: 1px solid #475569;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-box {
    background: #0f172a;
    border: 1px solid rgba(255, 126, 84, 0.3);
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content-box {
    transform: translateY(0) scale(1);
}

.modal-close-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.modal-close-icon:hover {
    color: #ff7e54;
}

.modal-icon-fa {
    font-size: 1.5rem;
}

.modal-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.modal-para {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-para:last-child {
    margin-bottom: 0;
}

/* Media Queries */
@media (max-width: 992px) {
    .header-cta {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger-icon {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features-list {
        align-items: center;
    }

    .about-content {
        padding: 30px;
    }
}