/* CSS Variables */
:root {
    --primary-color: #d4fc79;
    /* Neon Green/Yellow */
    --primary-dark: #96e6a1;
    --background-dark: #121212;
    --background-card: #1e1e1e;
    --text-light: #ffffff;
    --text-dim: #a0a0a0;
    --accent-color: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --spacing-md: 2rem;
    --border-radius: 12px;
}

/* Reset & Base Styles - avoiding * selector */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
figure {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div,
section,
header,
footer,
article,
aside,
nav,
button,
input,
textarea {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Ad Banner Top */
.ad-banner-top {
    background-color: #333;
    color: #ccc;
    font-size: 0.8rem;
    text-align: center;
    padding: 10px 20px;
    position: relative;
    z-index: 1001;
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    letter-spacing: 2px;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar::after {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    animation: load 2s ease-in-out forwards;
}

@keyframes load {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Header */
.main-header {
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.nav-link {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--background-dark);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 252, 121, 0.4);
}

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

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    /* 75% width as requested */
    height: 100%;
    background-color: var(--background-card);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 40px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

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

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    margin-bottom: 40px;
}

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

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
}

.mobile-cta {
    margin-top: 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--background-dark) !important;
    padding: 12px;
    border-radius: 8px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(212, 252, 121, 0.1), transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
}

/* About Section */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    color: var(--text-dim);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--background-card);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Why Us */
.why-us-section {
    background-color: #171717;
}

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

.usp-card {
    background: var(--background-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.usp-card:hover {
    background: #232323;
    border-color: rgba(212, 252, 121, 0.2);
    transform: translateY(-10px);
}

.usp-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(212, 252, 121, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-icon {
    width: 35px;
    height: 35px;
}

.usp-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.usp-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

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

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    color: var(--text-light);
    text-align: left;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-right: 40px;
}

.accordion-content p {
    padding-bottom: 25px;
    color: var(--text-dim);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

/* Footer */
.main-footer {
    background-color: #0b0c0d;
    padding-top: 20px;
    color: #888;
}

.footer-ad-note {
    background: #111;
    padding: 20px 0;
    margin-top: 40px;
    margin-bottom: 0;
    text-align: center;
}

.footer-ad-note p {
    font-size: 0.85rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

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

.footer-column h3 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.contact-info p,
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.contact-info a {
    color: #888;
    transition: color 0.3s;
}

.footer-links a:hover,
.contact-info a:hover {
    color: var(--primary-color);
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    color: #111;
    padding: 25px;
    border-radius: 15px;
    width: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9990;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

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

.cookie-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: #111;
}

.cookie-btn.reject {
    background: #eee;
    color: #333;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1e1e1e;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.modal-body p {
    color: #aaa;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

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

    .hero-container,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .about-stats {
        padding-top: 30px;
    }
}