.elementor-306 .elementor-element.elementor-element-c04daba{--display:flex;--padding-top:1px;--padding-bottom:1px;--padding-left:1px;--padding-right:1px;}/* Start custom CSS for container, class: .elementor-element-c04daba */h1,
.hero-section h1,
.elementor-heading-title,
.entry-title,
article h1 {
    color: #ffffff !important;
}

/* للعناوين الفرعية أيضاً */
.hero-section h1,
.hero-section .subtitle,
.hero-section p {
    color: #ffffff !important;
}/* End custom CSS */
/* Start custom CSS */:root {
            --primary: #0E7C6B;
            --primary-light: #12A58C;
            --primary-dark: #0A5C50;
            --accent: #D4A843;
            --accent-light: #E8C56D;
            --bg: #F8FAFB;
            --card-bg: #FFFFFF;
            --text: #1A2332;
            --text-light: #5A6B7D;
            --border: #E2E8F0;
            --radius: 12px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

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

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

        /* Progress Bar */
        .progress-container {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            z-index: 9999;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            width: 0%;
            transition: width 0.15s;
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary-dark);
            color: #fff;
            padding: 8px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .top-bar a {
            color: #fff;
            text-decoration: none;
            margin: 0 8px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            color: #fff;
            padding: 50px 20px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
            animation: heroFloat 8s ease-in-out infinite;
        }

        @keyframes heroFloat {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(-3%, 3%);
            }
        }

        .hero h1 {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            bottom: -6px;
            right: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), transparent);
            border-radius: 2px;
            animation: glowLine 3s ease-in-out infinite;
        }

        @keyframes glowLine {

            0%,
            100% {
                opacity: 0.6;
                width: 60%;
            }

            50% {
                opacity: 1;
                width: 100%;
            }
        }

        .hero p {
            font-size: 1.05rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 20px;
        }

        .hero-badges {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .hero-badge {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            backdrop-filter: blur(5px);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-family: 'Cairo', sans-serif;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

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

        .btn-primary:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
        }

        /* Snippet Cards */
        .snippet-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 15px;
            padding: 20px;
            max-width: 1200px;
            margin: -30px auto 20px;
            position: relative;
            z-index: 2;
        }

        .snippet-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 18px;
            box-shadow: var(--shadow);
            border-top: 3px solid var(--accent);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .snippet-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .snippet-card h4 {
            color: var(--primary);
            margin-bottom: 6px;
            font-size: 0.95rem;
        }

        .snippet-card p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Content Wrapper */
        .content-wrapper {
            max-width: 100%;
            margin: 0;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .toc {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow);
        }

        .toc h3 {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 1rem;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent);
        }

        .toc ul {
            list-style: none;
        }

        .toc li {
            margin-bottom: 6px;
        }

        .toc a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.85rem;
            display: block;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .toc a:hover {
            background: rgba(14, 124, 107, 0.08);
            color: var(--primary);
            padding-right: 14px;
        }

        .author-bio {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow);
            margin-top: 20px;
            text-align: center;
        }

        .author-bio img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent);
            margin-bottom: 10px;
        }

        .author-bio h4 {
            color: var(--primary);
            font-size: 0.95rem;
        }

        .author-bio p {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* Main Content */
        main h2 {
            color: var(--primary);
            font-size: 1.5rem;
            margin: 35px 0 15px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        main h3 {
            color: var(--primary-dark);
            font-size: 1.15rem;
            margin: 20px 0 10px;
        }

        main p {
            margin-bottom: 12px;
            line-height: 1.9;
        }

        main ul,
        main ol {
            margin: 10px 0 15px 20px;
        }

        main li {
            margin-bottom: 6px;
            line-height: 1.8;
        }

        /* Section Boxes */
        .section-box {
            border-radius: var(--radius);
            padding: 18px;
            margin: 15px 0;
        }

        .section-box h4 {
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .section-box.info {
            background: #EEF7FF;
            border-right: 4px solid #2196F3;
        }

        .section-box.tip {
            background: #E8F5E9;
            border-right: 4px solid #4CAF50;
        }

        .section-box.warning {
            background: #FFF8E1;
            border-right: 4px solid #FF9800;
        }

        .section-box.danger {
            background: #FFEBEE;
            border-right: 4px solid #F44336;
        }

        /* Tables */
        .table-wrapper {
            overflow-x: auto;
            margin: 15px 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--card-bg);
            font-size: 0.9rem;
        }

        .comparison-table thead {
            background: var(--primary);
            color: #fff;
        }

        .comparison-table th {
            padding: 12px 14px;
            text-align: right;
            font-weight: 700;
        }

        .comparison-table td {
            padding: 10px 14px;
            border-bottom: 1px solid var(--border);
        }

        .comparison-table tbody tr:hover {
            background: rgba(14, 124, 107, 0.04);
        }

        /* Before/After Image Placeholders */
        .before-after-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 20px 0;
        }

        .ba-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .ba-card .ba-image {
            width: 100%;
            aspect-ratio: 1/1;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: var(--text-light);
            border-bottom: 3px solid var(--accent);
        }

        .ba-card .ba-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ba-card .ba-label {
            padding: 10px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .ba-card.before .ba-label {
            color: #F44336;
        }

        .ba-card.after .ba-label {
            color: #4CAF50;
        }

        /* Mobile Sticky Bar */
        .mobile-sticky-bar {
            display: none;
            position: fixed;
            bottom: 0;
            right: 0;
            width: 100%;
            background: var(--card-bg);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            z-index: 999;
            padding: 10px;
        }

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

        .bar-btn {
            flex: 1;
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            font-weight: 700;
            font-family: 'Cairo', sans-serif;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .bar-btn.call {
            background: var(--primary);
            color: #fff;
        }

        .bar-btn.whatsapp {
            background: #25D366;
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
                order: -1;
            }

            .hero h1 {
                font-size: 1.6rem;
            }

            .snippet-cards {
                grid-template-columns: 1fr 1fr;
            }

            .before-after-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            body {
                font-size: 16px;
            }

            .snippet-cards {
                grid-template-columns: 1fr;
            }

            .hero {
                padding: 35px 15px 30px;
            }

            .hero h1 {
                font-size: 1.4rem;
            }

            main h2 {
                font-size: 1.25rem;
            }

            .mobile-sticky-bar {
                display: block;
            }

            .before-after-grid {
                grid-template-columns: 1fr;
            }

            .comparison-table {
                font-size: 0.82rem;
            }
        }/* End custom CSS */