/* CSS Variables */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #ff4d4d;
    --accent-hover: #e63939;
    --text-color: #ffffff;
    --text-muted: #a0a0ba;
    --bg-light: #f4f4f9;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(26, 26, 46, 0.95);
    --header-height: 80px;
    --transition: all 0.3s ease;
}

/* Base class for box-sizing instead of * */
.mq-el {
    box-sizing: border-box;
}

.mq-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.mq-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: pointer;
}

.mq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mq-img {
    max-width: 100%;
    display: block;
}

.mq-bold {
    font-weight: 700;
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.loader-brand {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Top Ad Disclaimer */
.top-ad-disclaimer {
    background: #0f3460;
    color: var(--text-muted);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-text {
    margin: 0;
}

/* Header */
.main-header {
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
}

.nav-item:hover {
    color: var(--text-color);
}

.header-cta-btn {
    background: var(--accent-color);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.header-cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.3);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background: var(--primary-color);
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.close-menu {
    align-self: flex-end;
    margin-bottom: 50px;
    cursor: pointer;
    color: var(--text-muted);
}

.close-menu:hover {
    color: var(--accent-color);
}

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

.mobile-nav-item {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mobile-nav-item:hover {
    color: var(--accent-color);
}

.mobile-cta-btn {
    background: var(--accent-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

/* Section Common */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

.highlight {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - var(--header-height) - 50px);
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 0 0 25px 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 0 40px 0;
    max-width: 600px;
}

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

.primary-btn {
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
}

.secondary-btn {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

.hero-image-container {
    flex: 1;
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-para {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 0 25px 0;
}

.rounded-img {
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 3rem;
    margin: 0 0 25px 0;
}

.benefit-title {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
}

.benefit-desc {
    color: var(--text-muted);
    margin: 0;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 20px;
}

.star-rating {
    color: #ffb703;
    margin: 0 0 15px 0;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin: 0 0 20px 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 20px 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-para {
    margin: 0;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .arrow {
    transform: rotate(45deg);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-heading {
    font-size: 1.25rem;
    margin: 0 0 25px 0;
    color: var(--accent-color);
}

.contact-item {
    margin: 0 0 10px 0;
    color: var(--text-muted);
}

.footer-li {
    margin-bottom: 12px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    margin-bottom: 40px;
}

.notice-para {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 10px auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.copyright {
    color: #4f5b66;
    font-size: 0.85rem;
    margin: 0;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--secondary-color);
    padding: 50px;
    border-radius: 24px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-title {
    margin: 0 0 30px 0;
}

.modal-subtitle {
    margin: 30px 0 15px 0;
    color: var(--accent-color);
}

.modal-para {
    color: var(--text-muted);
    margin: 0 0 15px 0;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 4000;
    transition: 0.5s ease-in-out;
}

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

.cookie-title {
    margin: 0 0 15px 0;
}

.cookie-text {
    margin: 0 0 20px 0;
}

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

.cookie-btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.reject {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-grid,
    .benefits-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links-desktop {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 60px 20px;
    }

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