/*========================================*/
/*            BEGIN GLOBAL STYLES         */
/*========================================*/

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: 'Tajawal', Arial, Helvetica, sans-serif;
    background-color: #f8fafa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #5e3449;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-size: 1rem;
}

a {
    color: #5e3449;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a2a3a;
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/*.mnst-brand-container {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #5e3449;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #4a2a3a;
}

.hidden {
    display: none;
}

/*========================================*/
/*             END GLOBAL STYLES          */
/*========================================*/


/*========================================*/
/*            BEGIN FONT IMPORTS          */
/*========================================*/

@font-face {
    font-family: 'Tajawal';
    src: url('Tajawal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('Tajawal-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*========================================*/
/*             END FONT IMPORTS           */
/*========================================*/


/*========================================*/
/*             BEGIN HEADER STYLES        */
/*========================================*/

.elegant-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(94, 52, 73, 0.1);
    transition: transform 0.3s ease;
}

.elegant-header-discount {
    background: #5e3449;
    color: #ffffff;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.elegant-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.elegant-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.elegant-brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.elegant-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #5e3449;
}

.elegant-nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.elegant-nav-link {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.elegant-nav-link:hover {
    color: #5e3449;
    background: rgba(94, 52, 73, 0.1);
}

.elegant-nav-cta {
    background: #5e3449;
    color: #ffffff;
}

.elegant-nav-cta:hover {
    background: #4a2a3a;
    color: #ffffff;
}

.elegant-mobile-menu {
    display: none;
}

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

    .elegant-mobile-menu {
        display: block;
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        background: #ffffff;
        border-top: 1px solid rgba(94, 52, 73, 0.1);
        padding: 0.75rem;
        z-index: 1000;
    }

    .elegant-mobile-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        list-style: none;
    }

    .elegant-mobile-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        text-decoration: none;
        color: #333333;
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .elegant-mobile-link.active {
        color: #5e3449;
    }

    .elegant-mobile-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 0.25rem;
        fill: currentColor;
    }
}

@media (max-width: 480px) {
    .elegant-header-wrapper {
        padding: 0.75rem 1rem;
    }
}



        /* Hero Section */
        .elegant-hero {
            padding: 8rem 2rem 4rem;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(to bottom right, #fff, #faf8f9);
            position: relative;
        }

        .elegant-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .elegant-hero-content {
            position: relative;
        }

        .elegant-hero-tag {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(94, 52, 73, 0.1);
            color: #5e3449;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .elegant-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #222222;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .elegant-hero-title span {
            color: #5e3449;
        }

        .elegant-hero-description {
            font-size: 1.1rem;
            color: #333333;
            margin-bottom: 2rem;
            max-width: 90%;
        }

        .elegant-hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: #5e3449;
            color: #ffffff;
            text-decoration: none;
            padding: 0.875rem 1.5rem;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .elegant-hero-cta:hover {
            /*background: #4a2a3a;*/
            background: #6b3c54;
            transform: translateY(-2px);
        }
        .elegant-hero-cta:hover .button-icon {
            transform: translateX(-5px);
        }

        .elegant-hero-image {
            position: relative;
        }

        .elegant-hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(94, 52, 73, 0.1);
        }

        /* Mobile Menu Styles */
        @media (max-width: 1024px) {
            .elegant-hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

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

            .elegant-hero-image {
                max-width: 600px;
                margin: 0 auto;
            }
        }

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

            .elegant-mobile-menu {
                display: block;
                position: fixed;
                bottom: 0;
                right: 0;
                left: 0;
                background: #ffffff;
                border-top: 1px solid rgba(94, 52, 73, 0.1);
                padding: 0.75rem;
                z-index: 1000;
            }

            .elegant-mobile-nav {
                display: flex;
                justify-content: space-around;
                align-items: center;
                list-style: none;
            }

            .elegant-mobile-link {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.25rem;
                text-decoration: none;
                color: #333333;
                font-size: 0.8rem;
                padding: 0.5rem;
            }

            .elegant-mobile-link.active {
                color: #5e3449;
            }

            .elegant-mobile-icon {
                width: 24px;
                height: 24px;
                margin-bottom: 0.25rem;
                fill: currentColor;
            }

            .elegant-hero {
                padding: 6rem 1.5rem 6rem;
            }

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

        @media (max-width: 480px) {
            .elegant-header-wrapper {
                padding: 0.75rem 1rem;
            }

            .elegant-hero {
                padding: 5rem 1rem 6rem;
            }

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

            .elegant-hero-description {
                font-size: 1rem;
            }
        }

/*========================================*/
/*              END HEADER STYLES         */
/*========================================*/


/*========================================*/
/*           BEGIN SERVICES SECTION       */
/*========================================*/

.elegant-services {
    padding: 6rem 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.elegant-services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(94, 52, 73, 0.1), 
        transparent
    );
}

.elegant-services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.elegant-services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.elegant-services-title {
    font-size: 2.5rem;
    color: #222222;
    margin-bottom: 1rem;
}

.elegant-services-description {
    font-size: 1.1rem;
    color: #333333;
    max-width: 600px;
    margin: 0 auto;
}

.elegant-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.elegant-service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
    cursor: pointer;
}

.elegant-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(45deg, transparent, rgba(94, 52, 73, 0.8)); /* Increased opacity */
    -webkit-mask-image: linear-gradient(to bottom, #fff, #fff),
                        linear-gradient(to bottom, #fff, #fff);
    -webkit-mask-clip: padding-box,
                       content-box;
    mask-image: linear-gradient(to bottom, #fff, #fff),
                linear-gradient(to bottom, #fff, #fff);
    mask-clip: padding-box,
               content-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.elegant-service-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border-color: rgba(94, 52, 73, 0.1);
}

/*.elegant-service-icon {*/
/*    width: 64px;*/
/*    height: 64px;*/
/*    margin-bottom: 1.5rem;*/
/*    transition: transform 0.3s ease;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

.elegant-service-card:hover .elegant-service-icon {
    transform: scale(1.1);
}

/*.elegant-service-icon img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: contain;*/
/*}*/

.elegant-service-icon {
    width: 100%; /* Allow the icon to take the full width of its container */
    height: auto; /* Allow the height to adjust based on the image aspect ratio */
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.elegant-service-icon img {
    max-width: 64px; /* Limit the image size */
    max-height: 64px; /* Limit the image size */
    width: auto; /* Allow the width to adjust based on the image aspect ratio */
    height: auto; /* Allow the height to adjust based on the image aspect ratio */
    object-fit: contain; /* Ensure the image fits within the container */
}

.elegant-service-title {
    font-size: 1.25rem;
    color: #222222;
    margin-bottom: 1rem;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.elegant-service-description {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.6;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.elegant-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #5e3449;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: gap 0.3s ease;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.elegant-service-link:hover {
    gap: 0.75rem;
}



            .elegant-features-section {
                margin-top: 6rem;
                padding: 4rem 0;
                background: linear-gradient(to left, #f5f5f5, #ffffff);
                border-radius: 20px;
            }

            .elegant-features-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
                padding: 0 2rem;
            }

            .elegant-feature-item {
                display: flex;
                gap: 1rem;
                align-items: flex-start;
            }

            .elegant-feature-icon {
                background: rgba(94, 52, 73, 0.1);
                padding: 0.75rem;
                border-radius: 12px;
                color: #5e3449;
            }

            .elegant-feature-content h3 {
                font-size: 1.1rem;
                color: #222222;
                margin-bottom: 0.5rem;
            }

            .elegant-feature-content p {
                font-size: 0.9rem;
                color: #333333;
            }

            @media (max-width: 768px) {
                .elegant-services {
                    padding: 4rem 1.5rem;
                }

                .elegant-services-title {
                    font-size: 2rem;
                }

                .elegant-services-grid {
                    grid-template-columns: 1fr;
                }

                .elegant-features-section {
                    margin-top: 4rem;
                    padding: 3rem 0;
                }

                .elegant-features-grid {
                    grid-template-columns: 1fr;
                    padding: 0 1.5rem;
                }
            }

/*========================================*/
/*            END SERVICES SECTION        */
/*========================================*/

/*========================================*/
/*          BEGIN TRY SERVICE SECTION     */
/*========================================*/

.mnst-try-section {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.mnst-try-container {
    max-width: 600px;
    margin: 0 auto;
}

.mnst-try-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mnst-try-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(94, 52, 73, 0.1),
                0 10px 10px -5px rgba(94, 52, 73, 0.04);
}

.mnst-try-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mnst-try-header h2 {
    color: #5e3449;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.mnst-try-header p {
    color: #666;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.mnst-try-form {
    max-width: 400px;
    margin: 0 auto;
}

.mnst-form-group {
    margin-bottom: 1.5rem;
}

.mnst-form-input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: right;
    direction: rtl;
}

.mnst-form-input:focus {
    outline: none;
    border-color: #5e3449;
    box-shadow: 0 0 0 3px rgba(94, 52, 73, 0.1);
}

.mnst-form-input::placeholder {
    color: #9ca3af;
}

.mnst-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: #5e3449;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.mnst-submit-button:hover {
    background: #4a2a3a;
    transform: translateY(-2px);
}

.mnst-submit-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.button-text {
    margin-left: 0.5rem;
}

.button-icon {
    transition: transform 0.3s ease;
}

.mnst-submit-button:hover .button-icon {
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mnst-try-section {
        padding: 3rem 1rem;
    }

    .mnst-try-card {
        padding: 1.5rem;
    }

    .mnst-try-header h2 {
        font-size: 1.75rem;
    }

    .mnst-try-header p {
        font-size: 1.125rem;
    }

    .mnst-form-input {
        font-size: 0.875rem;
    }

    .mnst-submit-button {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

/*========================================*/
/*           END TRY SERVICE SECTION      */
/*========================================*/


/*========================================*/
/*        BEGIN EXPERIENCES SECTION       */
/*========================================*/

.mnst-videos-section {
    padding: 4rem 1rem 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.mnst-videos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mnst-videos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mnst-videos-header h2 {
    color: #5e3449;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mnst-videos-header p {
    color: #666;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.mnst-videos-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem;
    flex-direction: row-reverse;
}

.mnst-video-card {
    flex: 1 1 300px;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.mnst-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(94, 52, 73, 0.1),
                0 10px 10px -5px rgba(94, 52, 73, 0.04);
}

.mnst-video-content {
    text-align: center;
}

.mnst-video-content h3 {
    color: #5e3449;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.mnst-video-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mnst-video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mnst-videos-section {
        padding: 2rem 1rem 0;
    }

    .mnst-videos-header h2 {
        font-size: 2rem;
    }

    .mnst-video-card {
        padding: 1.5rem;
    }

    .mnst-video-content h3 {
        font-size: 1.25rem;
    }

    .mnst-video-frame {
        aspect-ratio: 16 / 9;
    }
}

/*========================================*/
/*         END EXPERIENCES SECTION        */
/*========================================*/


/*========================================*/
/*         BEGIN PRICING SECTION          */
/*========================================*/

.mnst-pricing-section {
    padding: 2rem 1rem 4rem;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.mnst-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mnst-pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mnst-pricing-header h2 {
    color: #5e3449;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mnst-pricing-header p {
    color: #666;
    font-size: 1.25rem;
}

.mnst-pricing-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem;
    flex-direction: row;  /* Change to row from row-reverse */
}


.mnst-pricing-card {
    flex: 1 1 300px;
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.mnst-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(94, 52, 73, 0.1),
                0 10px 10px -5px rgba(94, 52, 73, 0.04);
}

.mnst-card-flag {
    position: absolute;
    top: 1.5rem;
    right: -3rem;
    background: #5e3449;
    color: #ffffff;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.875rem;
    font-weight: 600;
}

.mnst-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.mnst-card-header h3 {
    color: #5e3449;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mnst-card-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.mnst-features-block {
    margin-bottom: 2rem;
}

.mnst-feature-section {
    margin-bottom: 1.5rem;
}

.mnst-feature-section h4 {
    color: #5e3449;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-right: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;  /* Align to right in RTL */
    text-align: right;
}

.mnst-feature-section h4::before {
    content: '';
    position: absolute;
    right: 0;
    height: 100%;
    width: 4px;
    background: #5e3449;
    border-radius: 2px;
}

.mnst-feature-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mnst-feature-section li {
    position: relative;
    padding: 0.75rem 2rem 0.75rem 0;
    color: #4b5563;
    font-size: 0.938rem;
    text-align: right;
}

.mnst-feature-section li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #5e3449;
    font-weight: 600;
}

.mnst-card-action {
    margin-top: 2rem;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.mnst-action-button {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: #5e3449;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    box-sizing: border-box;
}

.mnst-action-button:hover {
    /*background: #4a2a3a;*/
    background: #6b3c54;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mnst-pricing-section {
        padding: 3rem 1rem;
    }

    .mnst-pricing-header h2 {
        font-size: 2rem;
    }

    .mnst-pricing-card {
        padding: 1.5rem;
    }

    .mnst-card-header h3 {
        font-size: 1.5rem;
    }

    .mnst-feature-section h4 {
        font-size: 1.125rem;
    }

    .mnst-action-button {
        width: 100%;
    }
}

/*========================================*/
/*          END PRICING SECTION           */
/*========================================*/


/*========================================*/
/*           BEGIN FAQ SECTION            */
/*========================================*/

.mnst-faq-section {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.mnst-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mnst-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mnst-faq-header h2 {
    color: #5e3449;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mnst-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

.mnst-faq-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
    direction: rtl;
}

.mnst-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(94, 52, 73, 0.1),
                0 10px 10px -5px rgba(94, 52, 73, 0.04);
}

.mnst-faq-question {
    color: #5e3449;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.mnst-faq-answer {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.mnst-faq-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.mnst-faq-contact-link {
    display: inline-block;
    color: #5e3449;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mnst-faq-contact-link:hover {
    color: #4a2a3a;
}

.mnst-faq-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.mnst-payment-method {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #4b5563;
    min-width: 80px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mnst-faq-section {
        padding: 3rem 1rem;
    }

    .mnst-faq-header h2 {
        font-size: 2rem;
    }

    .mnst-faq-item {
        padding: 1.5rem;
    }

    .mnst-faq-question {
        font-size: 1.125rem;
    }

    .mnst-faq-answer {
        font-size: 0.938rem;
    }

    .mnst-payment-method {
        min-width: 70px;
        font-size: 0.813rem;
    }
}

/*========================================*/
/*            END FAQ SECTION             */
/*========================================*/


/*========================================*/
/*           BEGIN FOOTER STYLES          */
/*========================================*/

.mnst-footer {
    background: linear-gradient(to bottom, #5e3449, #4a2a3a);
    padding: 2rem 0 0;
    color: #ffffff;
    text-align: center;
}

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

.mnst-footer-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.mnst-footer-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.mnst-footer-contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.mnst-footer-link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.mnst-footer-link:hover {
    background: rgba(255,255,255,0.1);
}

.mnst-footer-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.mnst-footer-terms {
    margin: 1rem 0;
}

.mnst-footer-terms-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mnst-footer-terms-link:hover {
    opacity: 0.8;
}

.mnst-footer-logo {
    margin: 2rem auto;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.mnst-footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mnst-payment-methods {
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mnst-payment-icon {
    height: 16px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.mnst-payment-icon:hover {
    opacity: 1;
}

.mnst-copyright {
    background: rgba(0,0,0,0.1);
    padding: 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mnst-footer {
        padding: 1.5rem 0 0;
    }

    .mnst-footer-title {
        font-size: 1.25rem;
    }

    .mnst-footer-subtitle {
        font-size: 0.875rem;
    }

    .mnst-footer-contacts {
        gap: 1rem;
    }

    .mnst-payment-methods {
        gap: 1rem;
    }

    .mnst-payment-icon {
        height: 14px;
    }
}

/* Hidden SEO Content */
.mnst-seo-tags {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip-path: inset(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0.01;
    pointer-events: none;
}

/* Maroof */
.mnst-auth-badge {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.mnst-maroof-badge {
    width: 180px;
    height: auto;
    transition: transform 0.2s ease;
}

.mnst-maroof-link:hover .mnst-maroof-badge {
    transform: scale(1.05);
}

/*========================================*/
/*            END FOOTER STYLES           */
/*========================================*/


/*========================================*/
/*            BEGIN UTILITY STYLES        */
/*========================================*/



/* Scroll to Top Button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #5e3449;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
}

/* WhatsApp Icon */
#whatsapp-icon {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99999;
}

#whatsapp-icon img {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 10px;
    left: 10px; /* Changed from right to left */
    z-index: 1000;
}

.language-switcher a {
    color: #fff;
    background-color: #5e3449;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    text-align: center;
}

.close-button {
    background-color: #5e3449;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

.close-button:hover {
    background-color: #4a2a3a;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .language-switcher a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    #scrollTopBtn {
        left: 20px;
        padding: 12px;
        font-size: 16px;
    }

    #whatsapp-icon {
        left: 15px;
        bottom: 15px;
    }

    #whatsapp-icon img {
        width: 45px;
        height: 45px;
    }
}

/*========================================*/
/*             END UTILITY STYLES         */
/*========================================*/


/*========================================*/
/*         BEGIN MEDIA QUERIES            */
/*========================================*/

/* Large Screens (above 1200px) */
@media screen and (min-width: 1201px) {
    .mnst-videos-container,
    .mnst-pricing-container,
    .mnst-footer-container {
        max-width: 1400px;
        padding: 0 2rem;
    }
}

/* Medium Large Screens (992px to 1200px) */
@media screen and (max-width: 1200px) {
    .mnst-pricing-card {
        flex: 1 1 calc(50% - 2rem);
    }

    .mnst-videos-section,
    .mnst-pricing-section {
        padding: 3rem 1.5rem;
    }
}

/* Medium Screens (768px to 991px) */
@media screen and (max-width: 991px) {
    .mnst-pricing-header h2,
    .mnst-videos-header h2 {
        font-size: 2rem;
    }

    .mnst-footer-title {
        font-size: 1.35rem;
    }
}

/* Small Screens (576px to 767px) */
@media screen and (max-width: 767px) {
    .mnst-pricing-card {
        flex: 1 1 100%;
    }

    .mnst-videos-wrapper {
        gap: 1rem;
    }

    .mnst-footer-contacts {
        flex-direction: column;
        align-items: center;
    }

    .mnst-payment-methods {
        padding: 1rem 0;
    }
}

/* Extra Small Screens (below 575px) */
@media screen and (max-width: 575px) {
    .mnst-pricing-header h2,
    .mnst-videos-header h2 {
        font-size: 1.5rem;
    }

    .mnst-pricing-header p,
    .mnst-videos-header p {
        font-size: 1rem;
    }

    .mnst-footer-title {
        font-size: 1.25rem;
    }

    .mnst-video-card,
    .mnst-pricing-card {
        padding: 1rem;
    }

    .mnst-payment-icon {
        height: 12px;
    }

    .mnst-footer {
        padding: 1rem 0 0;
    }
}

/*========================================*/
/*          END MEDIA QUERIES             */
/*========================================*/



/*========================================*/
/*           DISCOUNT POPUP               */
/*========================================*/
        
        .discountPopup {
          display: none; /* Hidden by default */
          position: fixed; /* Stay in place */
          z-index: 10; /* Sit on top */
          left: 0;
          top: 0;
          width: 100%; /* Full width */
          height: 100%; /* Full height */
          overflow: auto; /* Enable scroll if needed */
          background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
        }
        
        .discountContent {
          background-color: #fff; /* Custom color */
          color: #5e3549; /* Text color */
          margin: 15% auto; /* 15% from the top and centered */
          padding: 20px;
          border: 1px solid #ddd; /* Light grey border */
          width: 80%; /* Could be more or less, depending on screen size */
          text-align: center;
        }
        
        .closeDiscountButton {
          color: #aaa;
          float: right;
          font-size: 28px;
          font-weight: bold;
        }
        
        .closeDiscountButton:hover,
        .closeDiscountButton:focus {
          color: black;
          text-decoration: none;
          cursor: pointer;
        }
        
        
        
        /*popup registration*/
        /* Discount Popup Styles */
.discountPopup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.discountContent {
    background-color: #fff; /* Custom color */
    color: #5e3449; /* Text color */
    margin: 10% auto; /* 10% from the top and centered */
    padding: 20px;
    border: 1px solid #ddd; /* Light grey border */
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 400px; /* Max width */
    text-align: center;
    border-radius: 10px;
    position: relative;
    direction: rtl; /* Right-to-left text direction */
}

.closeDiscountButton {
    color: #aaa;
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.closeDiscountButton:hover,
.closeDiscountButton:focus {
    color: black;
}

.discountContent h2 {
    color: #5e3449;
    margin-bottom: 20px;
}

.discountContent p {
    color: #333;
    margin-bottom: 20px;
}

.discountContent input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: right;
}

.discountContent .submit-btn {
    background-color: #5e3449;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.discountContent .submit-btn:hover {
    background-color: #4b2737;
}


/* Countdown Timer Styles */
/* Existing Styles for Reference */
.discountContent input[type="text"] {
    width: 100%;
    /* ... other styles ... */
}

.discountContent .submit-btn {
    width: 100%;
    /* ... other styles ... */
}

/* Updated Countdown Timer Styles */
.countdown {
    display: flex;
    justify-content: space-between; /* Distribute time boxes evenly */
    align-items: center;
    margin-top: 20px;
    width: 100%;            /* Match the width of the button */
    gap: 2px;
    flex-wrap: nowrap;      /* Prevent wrapping */
}

.time-box {
    background-color: #5e3449;
    color: #ffffff;
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    flex: 1;                /* Allow boxes to expand equally */
    min-width: 0;           /* Allow boxes to shrink if needed */
}

.time-box .number {
    display: block;
    font-size: 14px;
    font-weight: bold;
}

.time-box .label {
    font-size: 12px;
    margin-top: 2px;
}


/*inquriy*/
.discountPopup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.discountContent {
    background-color: #fff;
    color: #5e3449;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #ddd;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    direction: rtl;
}

.closeDiscountButton {
    color: #aaa;
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.closeDiscountButton:hover,
.closeDiscountButton:focus {
    color: black;
}

.submit-btn {
    background-color: #5e3449;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.submit-btn:hover {
    background-color: #4b2737;
}

input[type="text"], input[type="tel"], input[type="email"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: right;
}

.discountContent input[type="text"],
.discountContent input[type="tel"],
.discountContent input[type="email"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures consistent width */
}

@media (max-width: 768px) {
    .discountContent input[type="text"],
    .discountContent input[type="tel"],
    .discountContent input[type="email"] {
        max-width: calc(100% - 20px); /* Ensures padding doesn’t affect width on mobile */
    }
}


/*========================================*/
/*          END DISCOUNT POPUP            */
/*========================================*/












