/* styles.css */

.page-html {
    scroll-behavior: smooth;
}

.page-body {
    font-family: 'Archivo', sans-serif;
    margin: 0;
    padding: 0;
    color: #1A1E24;
    line-height: 1.6;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 75%;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #E0E0E0;
    border-top-color: #E63946;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 18px;
    color: #E63946;
    font-weight: 500;
}

.dot-animation::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '.';
    }

    40%,
    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 350px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    padding: 25px;
}

.cookie-icon {
    font-size: 32px;
    color: #E63946;
    margin-bottom: 15px;
}

.cookie-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1A1E24;
}

.cookie-text {
    font-size: 14px;
    color: #6C757D;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #E63946;
    color: #FFFFFF;
}

.cookie-btn.accept:hover {
    background-color: #C82333;
}

.cookie-btn.reject {
    background-color: #E0E0E0;
    color: #4A5C68;
}

.cookie-btn.reject:hover {
    background-color: #CBD5E1;
}

/* Advertisement Banner */
.ad-banner {
    background-color: #FCE8E9;
    border-bottom: 1px solid #F9C1C4;
    padding: 8px 0;
    text-align: center;
}

.ad-banner-text {
    font-size: 12px;
    color: #A71D2A;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ad-banner-icon {
    color: #E63946;
}

/* Header */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1A1E24;
    text-transform: uppercase;
}

.logo-text {
    font-style: normal;
}

.logo-highlight {
    color: #E63946;
    font-weight: 800;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: #4A5C68;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #E63946;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1A1E24;
    cursor: pointer;
    padding: 8px;
}

.cta-btn {
    background-color: #E63946;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cta-btn:hover {
    background-color: #C82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FCE8E9 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background-color: rgba(230, 57, 70, 0.1);
    color: #E63946;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1A1E24;
    margin-top: 0;
}

.hero-title .highlight {
    color: #E63946;
}

.hero-description {
    font-size: 18px;
    color: #6C757D;
    margin-bottom: 20px;
    line-height: 1.6;
    margin-top: 0;
}

.price-tag {
    background-color: #E63946;
    display: inline-flex;
    align-items: baseline;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    gap: 5px;
}

.price-label {
    color: #FFFFFF;
    font-size: 14px;
    opacity: 0.9;
}

.price-value {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #475569;
}

.hero-feature-icon {
    color: #E63946;
    font-size: 20px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #E63946;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.hero-cta:hover {
    background-color: #C82333;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.trust-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge i {
    font-size: 24px;
    color: #E63946;
}

.trust-badge span {
    font-weight: 600;
    color: #1A1E24;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .trust-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1A1E24;
    margin-bottom: 15px;
    margin-top: 0;
}

.section-title .highlight {
    color: #E63946;
}

.section-subtitle {
    font-size: 18px;
    color: #6C757D;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-text {
    margin-bottom: 20px;
    color: #6C757D;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #E63946;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #6C757D;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background-color: #FCE8E9;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.value-icon {
    font-size: 32px;
    color: #E63946;
    margin-bottom: 15px;
}

.value-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1A1E24;
    margin-top: 0;
}

.value-text {
    font-size: 14px;
    color: #6C757D;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: #FCE8E9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon-inner {
    font-size: 30px;
    color: #E63946;
}

.benefit-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1A1E24;
    margin-top: 0;
}

.benefit-text {
    font-size: 14px;
    color: #6C757D;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #FCE8E9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-inner {
    font-size: 30px;
    color: #E63946;
}

.feature-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1A1E24;
    margin-top: 0;
}

.feature-text {
    font-size: 14px;
    color: #6C757D;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Specs Section */
.specs {
    padding: 60px 0;
    background: linear-gradient(135deg, #1A1E24 0%, #2D3238 100%);
}

.specs-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.specs-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #1A1E24;
    margin-top: 0;
}

.specs-title .highlight {
    color: #E63946;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-bottom: 1px solid #E2E8F0;
}

.spec-label {
    font-size: 14px;
    color: #6C757D;
    margin-bottom: 5px;
    font-weight: 500;
}

.spec-value {
    font-size: 16px;
    color: #1A1E24;
    font-weight: 600;
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Materials Section */
.materials {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.material-item {
    text-align: center;
    padding: 30px;
    background-color: #FCE8E9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.material-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.material-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1A1E24;
    margin-top: 0;
    font-weight: 700;
}

.material-text {
    font-size: 15px;
    color: #6C757D;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #FCE8E9;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.testimonial-rating {
    margin-bottom: 15px;
    color: #FFD700;
}

.testimonial-star {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    margin-top: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-icon {
    font-size: 40px;
    color: #6C757D;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1A1E24;
    margin-bottom: 5px;
    margin-top: 0;
}

.author-role {
    font-size: 14px;
    color: #6C757D;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #FCE8E9;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #FCE8E9;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: #1A1E24;
    margin: 0;
}

.faq-icon {
    color: #E63946;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-answer-text {
    color: #6C757D;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Return Policy Section */
.return-policy {
    padding: 60px 0;
    background: linear-gradient(135deg, #E63946 0%, #C82333 100%);
    color: #FFFFFF;
}

.policy-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.policy-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.policy-title {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 0;
}

.policy-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    margin-top: 0;
}

.policy-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-icon {
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: #1A1E24;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #FFFFFF;
    margin-top: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.footer-item-icon {
    color: #E63946;
    width: 20px;
}

.footer-link {
    color: #E2E8F0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #E63946;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #BDC3C7;
    margin: 0;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #95A5A6;
}

.footer-copyright-text {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-container.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: #FFFFFF;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
    padding: 40px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-container.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6C757D;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #1A1E24;
}

.modal-title {
    font-size: 24px;
    color: #E63946;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E63946;
    margin-top: 0;
}

.modal-content {
    color: #475569;
    line-height: 1.7;
}

.modal-section-title {
    color: #1A1E24;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.modal-list {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-text {
    margin: 0 0 10px 0;
}

/* Utility Classes */
.highlight {
    color: #E63946;
}

/* Mobile Navigation Drawer (Premium Style) */
.mobile-nav {
    display: none;
}

@media (max-width: 991px) {
    .mobile-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background-color: #FFFFFF;
        z-index: 3000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: column;
        padding: 0;
    }

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 20px;
        background-color: #F8FAFC;
        border-bottom: 1px solid #F1F5F9;
    }

    .mobile-logo {
        text-decoration: none;
        font-size: 24px;
        font-weight: 800;
        letter-spacing: -0.5px;
        color: #1A1E24;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        text-transform: uppercase;
    }

    .mobile-logo-text {
        font-style: normal;
    }

    .mobile-logo .logo-highlight {
        color: #E63946;
    }

    .mobile-nav-header .menu-close {
        background: none;
        border: none;
        font-size: 26px;
        color: #1A1E24;
        cursor: pointer;
        padding: 5px;
        transition: color 0.3s ease;
    }

    .mobile-nav-header .menu-close:hover {
        color: #E63946;
    }

    .mobile-nav-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 30px 20px;
        overflow-y: auto;
    }

    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
    }

    .mobile-menu-list li {
        margin-bottom: 15px;
    }

    .mobile-menu-link {
        text-decoration: none;
        font-size: 17px;
        font-weight: 600;
        color: #334155;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        padding: 12px 15px;
        border-radius: 10px;
        background-color: transparent;
    }

    .mobile-menu-icon {
        width: 24px;
        margin-right: 15px;
        font-size: 18px;
        color: #64748B;
        transition: color 0.3s ease;
    }

    .mobile-menu-link:hover {
        color: #E63946;
        background-color: #FFF1F2;
    }

    .mobile-menu-link:hover .mobile-menu-icon {
        color: #E63946;
    }

    .mobile-nav-cta {
        width: calc(100% - 40px);
        margin: auto 20px 30px 20px;
        text-align: center;
        padding: 16px;
        box-shadow: 0 10px 15px -3px rgba(230, 57, 70, 0.3);
        display: block;
    }

    /* Overlay background when menu is open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(2px);
        z-index: 2999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Revert Desktop Header Overrides for Mobile */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-actions .cta-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}