/* CSS Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-text: #666;
    --background-color: #f9f9f9;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --font-primary: 'Outfit', sans-serif;
    --max-width: 1200px;
}

/* Reset Substitutes (Avoiding *) */
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
    scroll-behavior: smooth;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

ul,
ol,
li,
a,
button,
input,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

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

/* Base Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.web-body {
    overflow-x: hidden;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.section-text {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

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

.loader-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
}

/* Top Ad Disclaimer */
.top-ad-disclaimer {
    background-color: #f0f0f0;
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.ad-text-top {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.brand-logo {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Fallback for browsers without background-clip support if needed, though most support it */
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 1002;
    background: transparent;
    padding: 0;
    /* Override reset */
}

.hamburger-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-overlay.active {
    right: 0;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    width: 75%;
    /* 75% width as requested */
    height: 100%;
    background-color: var(--white);
    padding: 80px 30px;
    position: relative;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    background: transparent;
}

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

.mobile-nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #f4f6f8;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.hero-image {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image-wrapper {
    flex: 1;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-desc {
    color: var(--light-text);
}

.why-us-image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.feature-image {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: #f4f6f8;
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
    border-left: 4px solid var(--secondary-color);
}

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

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-answer {
    color: var(--light-text);
}

/* Footer */
.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-text {
    color: #bdc3c7;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-link-item {
    margin-bottom: 10px;
}

.footer-link {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-disclaimer-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-important-text {
    font-size: 0.9rem;
    color: #e74c3c;
    text-align: center;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #7f8c8d;
    font-size: 0.85rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    display: none;
    /* Hidden strictly by js initially or flex if active */
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    color: var(--text-color);
}

.cookie-link {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-accept {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
}

.btn-reject {
    background-color: #e0e0e0;
    color: 333;
    padding: 10px 20px;
    border-radius: 4px;
}

/* Return Policy Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-color);
}

.modal-title {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.modal-subtitle {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.modal-list {
    list-style: disc;
    padding-left: 20px;
    color: var(--light-text);
}

.modal-list-item {
    margin-bottom: 8px;
}

.modal-text {
    margin-bottom: 10px;
    color: var(--light-text);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }

    .desktop-nav {
        display: none;
    }

    .header-cta-wrapper {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-container {
        flex-direction: column-reverse;
        padding-top: 30px;
        padding-bottom: 50px;
        gap: 30px;
    }

    .hero-text-content {
        text-align: center;
        padding: 0 10px;
    }

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

    .hero-description {
        margin: 0 auto 2rem auto;
    }

    .about-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .about-image-wrapper {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

    /* Footer Mobile Adjustments */
    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 30px;
        text-align: left;
    }

    .footer-heading {
        margin-bottom: 15px;
        border-bottom: 2px solid var(--secondary-color);
        position: relative;
        padding-bottom: 5px;
        display: inline-block;
    }

    .footer-heading::after {
        display: none;
    }

    .footer-link:hover {
        padding-left: 5px;
        color: var(--white);
        text-decoration: none;
    }

    .features-grid {
        gap: 20px;
    }

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

    .ad-text-top {
        font-size: 0.75rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

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

    .btn {
        width: 100%;
        /* Full width buttons on very small screens for better UX */
        margin-bottom: 10px;
    }

    .feature-card,
    .testimonial-card,
    .faq-item {
        padding: 20px;
    }

    .mobile-menu-content {
        width: 85%;
        /* Slightly wider on very small screens to avoid cramping */
    }
}