.elementor-291 .elementor-element.elementor-element-a874d23{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-291 .elementor-element.elementor-element-3aace5b > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS */:root {
            --primary: #0f4c5c;
            --primary-light: #1a6b7a;
            --primary-dark: #0a3540;
            --accent: #e8a838;
            --gold: #d4a537;
            --teal: #0f4c5c;
            --teal-light: #e6f3f5;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafb;
            --white: #ffffff;
            --success: #10b981;
            --danger: #ef4444;
            --warning: #f59e0b;
            --radius: 14px;
            --shadow: 0 10px 30px -10px rgba(15, 76, 92, 0.12);
            --shadow-lg: 0 20px 50px -15px rgba(15, 76, 92, 0.18);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.8;
            overflow-x: hidden;
            width: 100%;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 100%;
            margin: 0;
            padding: 0;
        }

        /* Content Wrapper — Mobile First */
        .content-wrapper {
            display: block;
            padding: 15px;
        }

        @media (min-width: 901px) {
            .content-wrapper {
                display: grid;
                grid-template-columns: 280px 1fr;
                gap: 40px;
                padding: 30px;
            }
        }

        /* ===== HERO ===== */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            color: #fff !important;
            padding: 80px 30px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 70%, rgba(232, 168, 56, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
            animation: heroFloat 20s ease-in-out infinite;
        }

        @keyframes heroFloat {

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

            50% {
                transform: translate(-2%, 2%) rotate(1deg);
            }
        }

        .hero>* {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: #fff !important;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero h1 span {
            color: var(--accent);
        }

        .hero p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 25px;
            color: #fff !important;
        }

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

        .badge {
            background: rgba(255, 255, 255, 0.12);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .hero-cta {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

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

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--gold));
            color: var(--primary-dark);
            box-shadow: 0 4px 15px rgba(232, 168, 56, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232, 168, 56, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #fff;
            color: #fff;
        }

        .btn-whatsapp {
            background: #25D366;
            color: #fff;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

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

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

        /* ===== TOP BAR ===== */
        .top-bar {
            background: var(--primary-dark);
            color: #fff;
            padding: 10px 20px;
            font-size: 0.85rem;
        }

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

        .top-info {
            display: flex;
            gap: 20px;
        }

        .top-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s;
            text-decoration: none;
        }

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

        /* ===== SNIPPET CARDS ===== */
        .snippet-section {
            margin-top: -40px;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .snippet-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .snippet-card {
            background: #fff;
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border-top: 4px solid var(--accent);
            transition: transform 0.3s;
        }

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

        .snippet-card .icon {
            width: 50px;
            height: 50px;
            background: var(--teal-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .snippet-card h3 {
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .snippet-card p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

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

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

        .toc h3 {
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--teal-light);
        }

        .toc a {
            display: block;
            padding: 10px 15px;
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            border-radius: 8px;
            transition: all 0.3s;
            border-right: 3px solid transparent;
        }

        .toc a:hover,
        .toc a.active {
            background: var(--teal-light);
            color: var(--primary);
            border-right-color: var(--accent);
        }

        /* ===== MAIN CONTENT ===== */
        .main-content {
            background: #fff;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .main-content h2 {
            color: var(--primary);
            font-size: 1.7rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--teal-light);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .main-content h2:first-of-type {
            margin-top: 0;
        }

        .main-content h3 {
            color: var(--primary-light);
            font-size: 1.3rem;
            margin: 25px 0 12px;
        }

        .main-content p {
            margin-bottom: 15px;
            line-height: 1.9;
        }

        .main-content ul,
        .main-content ol {
            padding-right: 25px;
            margin-bottom: 15px;
        }

        .main-content li {
            margin-bottom: 8px;
            line-height: 1.8;
        }

        /* ===== SECTION BOXES ===== */
        .section-box {
            padding: 25px;
            border-radius: var(--radius);
            margin: 20px 0;
            border-right: 5px solid;
        }

        .section-box.tip {
            background: linear-gradient(135deg, #e6f9f0, #f0fdf4);
            border-right-color: var(--success);
        }

        .section-box.warning {
            background: linear-gradient(135deg, #fef2e6, #fff7ed);
            border-right-color: var(--warning);
        }

        .section-box.danger {
            background: linear-gradient(135deg, #fee6e6, #fef2f2);
            border-right-color: var(--danger);
        }

        .section-box.info {
            background: linear-gradient(135deg, var(--teal-light), #f0f9fa);
            border-right-color: var(--primary);
        }

        .section-box h4 {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        /* ===== TABLES ===== */
        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 20px 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 500px;
        }

        .comparison-table thead {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
        }

        .comparison-table th {
            padding: 15px 12px;
            text-align: right;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .comparison-table td {
            padding: 14px 12px;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.9rem;
        }

        .comparison-table tbody tr:hover {
            background: #f1f8f9;
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        /* ===== AUTHOR BIO ===== */
        .author-bio {
            background: linear-gradient(135deg, #f8fafb, #e6f3f5);
            border-radius: var(--radius);
            padding: 30px;
            margin: 30px 0;
            border: 1px solid rgba(15, 76, 92, 0.1);
        }

        .author-details-grid {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 25px;
            align-items: start;
        }

        /* ===== MOBILE STICKY BAR ===== */
        .mobile-sticky-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary-dark);
            padding: 10px 15px;
            z-index: 9998;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
        }

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

        .mobile-sticky-bar .bar-btn {
            flex: 1;
            padding: 12px;
            border-radius: 10px;
            text-align: center;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

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

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

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .content-wrapper {
                display: block;
                padding: 15px;
            }

            .sidebar {
                display: none;
            }

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

            .top-bar .container {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .top-info {
                flex-direction: column;
                gap: 5px;
            }

            .main-content {
                padding: 20px;
                border-radius: 15px;
            }

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

        @media (max-width: 768px) {
            body {
                font-size: 15px;
            }

            .hero {
                clip-path: none;
                padding: 50px 15px 40px;
            }

            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

            .hero p {
                font-size: 1rem;
                padding: 0 10px;
            }

            .hero-badges {
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
            }

            .hero-cta {
                flex-direction: column;
                gap: 10px;
                padding: 0 10px;
            }

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

            .snippet-card {
                padding: 18px;
            }

            h2 {
                font-size: 1.4rem;
            }

            h3 {
                font-size: 1.2rem;
            }

            .comparison-table {
                font-size: 0.85rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 10px 8px;
            }

            .btn {
                width: 100%;
                margin-bottom: 10px;
                padding: 12px 15px;
                font-size: 0.95rem;
            }

            .author-details-grid {
                grid-template-columns: 1fr;
                justify-items: center;
                text-align: center;
            }

            .section-box {
                padding: 18px;
            }

            img,
            iframe,
            video {
                max-width: 100%;
                height: auto;
            }

            p,
            h1,
            h2,
            h3,
            h4,
            h5,
            h6,
            li,
            span,
            div {
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }

            .hero-badges {
                flex-direction: column;
                align-items: center;
                gap: 5px;
            }

            .badge {
                width: 100%;
                text-align: center;
            }

            .main-content {
                padding: 12px;
            }

            .author-details-grid {
                gap: 15px;
            }
        }/* End custom CSS */