.elementor-889 .elementor-element.elementor-element-96d56b9:not(.elementor-motion-effects-element-type-background), .elementor-889 .elementor-element.elementor-element-96d56b9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-kadence3 );}.elementor-889 .elementor-element.elementor-element-96d56b9{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-889 .elementor-element.elementor-element-96d56b9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}/* Start custom CSS */:root {
            --primary-color: #b8954d;
            --secondary-color: #c9a961;
            --accent-color: #d4b876;
            --danger-color: #dc3545;
            --success-color: #10b981;
            --light-bg: #1a1a1a;
            --dark-text: #d4b876;
            --text-color: #e0e0e0;
            --white: #2d2d2d;
            --radius: 12px;
            --shadow: 0 4px 6px rgba(201, 169, 97, 0.15);
        }

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

        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.8;
            font-size: 17px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Almarai', sans-serif;
            color: var(--dark-text);
            font-weight: 700;
        }

        h2 {
            font-size: 1.6rem;
            border-bottom: 3px solid var(--secondary-color);
            display: inline-block;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }

        h3 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
        }

        a {
            color: var(--secondary-color);
        }

        a:hover {
            color: var(--accent-color);
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
            padding: 50px 20px;
            text-align: center;
            border-bottom: 3px solid var(--secondary-color);
        }

        .hero h1 {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .hero p {
            color: #999;
            margin-bottom: 15px;
        }

        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            color: #777;
            font-size: 0.9rem;
        }

        /* Quick Answer */
        .quick-answer {
            background: rgba(201, 169, 97, 0.15);
            border: 2px solid var(--secondary-color);
            border-radius: var(--radius);
            padding: 30px;
            margin: 30px 0;
        }

        .quick-answer h2 {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        /* Alert Boxes */
        .alert-info {
            background: rgba(59, 130, 246, 0.1);
            border-right: 5px solid #3b82f6;
            padding: 1.5rem;
            margin: 25px 0;
            border-radius: var(--radius);
        }

        .alert-danger {
            background: rgba(220, 53, 69, 0.1);
            border-right: 5px solid var(--danger-color);
            padding: 1.5rem;
            margin: 25px 0;
            border-radius: var(--radius);
        }

        .alert-success {
            background: rgba(16, 185, 129, 0.1);
            border-right: 5px solid var(--success-color);
            padding: 1.5rem;
            margin: 25px 0;
            border-radius: var(--radius);
        }

        .alert-warning {
            background: rgba(255, 193, 7, 0.1);
            border-right: 5px solid #ffc107;
            padding: 1.5rem;
            margin: 25px 0;
            border-radius: var(--radius);
        }

        .alert-info h3,
        .alert-danger h3,
        .alert-success h3,
        .alert-warning h3 {
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .alert-danger h3 {
            color: var(--danger-color);
        }

        .alert-success h3 {
            color: var(--success-color);
        }

        .alert-info h3 {
            color: #3b82f6;
        }

        .alert-warning h3 {
            color: #ffc107;
        }

        /* Card */
        .card {
            background: var(--white);
            padding: 30px;
            margin-bottom: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid rgba(201, 169, 97, 0.2);
        }

        .card ul,
        .card ol {
            padding-right: 25px;
            margin: 15px 0;
        }

        .card li {
            margin-bottom: 8px;
        }

        /* Image */
        .img-fluid {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            margin: 20px 0;
            display: block;
            border: 2px solid rgba(201, 169, 97, 0.2);
        }

        .image-caption {
            text-align: center;
            color: #777;
            font-size: 0.9rem;
            margin-top: -10px;
            margin-bottom: 20px;
        }

        /* Tables */
        .custom-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .custom-table th {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #1a1a1a;
            padding: 15px 12px;
            text-align: right;
            font-weight: 700;
        }

        .custom-table td {
            padding: 15px 12px;
            border-bottom: 1px solid rgba(201, 169, 97, 0.2);
            color: var(--text-color);
        }

        .custom-table tr:hover {
            background: rgba(201, 169, 97, 0.05);
        }

        /* FAQ */
        .faq-item {
            border: 1px solid rgba(201, 169, 97, 0.2);
            margin-bottom: 10px;
            border-radius: var(--radius);
            overflow: hidden;
        }

        .faq-question {
            background: var(--white);
            padding: 18px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-color);
            transition: 0.3s;
        }

        .faq-question:hover {
            background: rgba(201, 169, 97, 0.05);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.4rem;
            color: var(--secondary-color);
        }

        .faq-item.active .faq-question::after {
            content: '-';
        }

        .faq-item.active .faq-question {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #1a1a1a;
        }

        .faq-item.active .faq-question::after {
            color: #1a1a1a;
        }

        .faq-answer {
            display: none;
            padding: 20px;
            background: rgba(201, 169, 97, 0.05);
            color: #bbb;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* Price Box */
        .price-box {
            background: linear-gradient(135deg, rgba(184, 149, 77, 0.15), rgba(201, 169, 97, 0.15));
            border: 2px solid var(--secondary-color);
            padding: 25px;
            border-radius: var(--radius);
            margin: 20px 0;
            text-align: center;
        }

        .price-box h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .price-amount {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            margin: 10px 0;
        }

        /* CTA */
        .sge-box {
            background: var(--white);
            border: 2px solid var(--secondary-color);
            padding: 40px;
            border-radius: var(--radius);
            text-align: center;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }

        .sge-box h3 {
            color: var(--secondary-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #1a1a1a;
            padding: 14px 40px;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: 0.3s;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
        }

        .cta-phone {
            display: block;
            margin-top: 20px;
            color: var(--secondary-color);
            font-size: 1.3rem;
            font-weight: 600;
            text-decoration: none;
            direction: ltr;
        }

        /* Tip Box */
        .tip-box {
            background: rgba(16, 185, 129, 0.1);
            border-right: 4px solid var(--success-color);
            padding: 20px;
            border-radius: var(--radius);
            margin: 20px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.5rem;
            }

            .card {
                padding: 20px;
            }

            .custom-table {
                font-size: 0.9rem;
            }

            .custom-table th,
            .custom-table td {
                padding: 10px 8px;
            }
        }/* End custom CSS */