        /* --- RESET & VARIABLES --- */
        :root {
            --primary: #2563eb;
            --secondary: #7c3aed;
            --accent: #06b6d4;
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --text-main: #1e293b;
            --text-light: #64748b;
            --gradient-main: linear-gradient(135deg, var(--primary), var(--secondary));
            --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
            --shadow-hover: 0 20px 50px -12px rgba(37, 99, 235, 0.25);
            --radius: 16px;
            --nav-height: 80px;
            
            /* Search Console Colors */
            --g-blue: #4285f4;
            --g-purple: #7e57c2;
            --g-teal: #00acc1;
            --g-orange: #f4b400;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            outline: none;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Vazir', 'Tahoma', 'Segoe UI', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- UI COMPONENTS --- */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 32px;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
            border: none;
        }

        .btn-primary {
            background: var(--gradient-main);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: 0.5s;
        }

        .btn-primary:hover::before { left: 100%; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4); }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .section-title p { color: var(--text-light); max-width: 600px; margin: 0 auto; }

        /* --- HEADER & MEGA MENU --- */
        header {
            position: fixed;
            top: 0; width: 100%;
            height: var(--nav-height);
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            position: relative;
            gap: 16px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span { color: var(--secondary); }

        .logo-header-img {
            height: 38px;
            width: auto;
            filter: brightness(0) saturate(100%) invert(33%) sepia(86%) saturate(1800%) hue-rotate(211deg) brightness(97%) contrast(95%);
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-link { font-weight: 600; font-size: 1rem; padding: 10px 0; display: block;}
        .nav-link:hover { color: var(--primary); }

        .header-call-mobile {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: var(--gradient-main);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
            flex-shrink: 0;
        }

        .header-call-mobile:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(37, 99, 235, 0.45);
        }

        .header-call-desktop {
            white-space: nowrap;
        }

        /* Mega Menu Styles */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 0; right: 0; margin: auto;
            width: 900px; max-width: 95vw;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow-soft);
            padding: 30px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            border: 1px solid #eee;
            z-index: 100;
        }

        @media (min-width: 993px) {
            .nav-item:hover .mega-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        .mega-column h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.1rem;
            border-bottom: 2px solid #eee;
            padding-bottom: 5px;
            display: inline-block;
        }

        .mega-column ul li { margin-bottom: 10px; }
        .mega-column ul li a { color: var(--text-light); font-size: 0.95rem; display: flex; align-items: center; gap: 8px;}
        .mega-column ul li a:hover { color: var(--secondary); transform: translateX(-5px); }

        .menu-toggle { display: none; cursor: pointer; z-index: 1001; }
        .bar { width: 25px; height: 3px; background: var(--text-main); margin: 5px 0; transition: 0.4s; border-radius: 2px;}

        /* --- HERO SECTION --- */
        .hero {
            padding-top: 140px;
            padding-bottom: 80px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 20%, rgba(37,99,235,0.12), transparent 35%),
                        radial-gradient(circle at 80% 10%, rgba(124,58,237,0.12), transparent 30%);
            pointer-events: none;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 50px;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 900;
        }

        .hero-text .highlight {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 40px;
        }

        .hero-visual {
            position: relative;
        }

        .ai-card-visual {
            width: 100%;
            height: 400px;
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-hover);
            position: relative;
            overflow: visible;
            border: 1px solid rgba(37,99,235,0.1);
            animation: float 6s ease-in-out infinite;
        }

        .chart-line {
            position: absolute;
            bottom: 0; left: 0; width: 100%;
            height: 150px;
            background: linear-gradient(to top, rgba(37,99,235,0.1), transparent);
            clip-path: polygon(0 100%, 0 80%, 20% 60%, 40% 90%, 60% 40%, 80% 70%, 100% 20%, 100% 100%);
        }
        
        .floating-badge {
            position: absolute;
            background: white;
            padding: 12px 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: bold;
            font-size: 0.95rem;
            z-index: 10;
            width: max-content;
            white-space: nowrap;
        }

        .badge-1 { top: 20%; left: -30px; animation: float 5s infinite 1s; border: 1px solid rgba(0,0,0,0.05); }
        .badge-2 { bottom: 20%; right: -30px; animation: float 7s infinite 0.5s; border: 1px solid rgba(0,0,0,0.05); }

        .status-dot { width: 10px; height: 10px; border-radius: 50%; background: #10b981; box-shadow: 0 0 10px #10b981;}

        /* --- INTRO SEO SECTION --- */
        .intro-seo { padding: 100px 0; background: #fff; }
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .intro-text h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 20px; color: var(--text-main); }
        .intro-text p { color: var(--text-light); margin-bottom: 25px; font-size: 1.1rem; text-align: justify; }

        .seo-steps { display: grid; gap: 20px; }
        .seo-step { display: flex; gap: 15px; align-items: flex-start; }
        .step-num { 
            width: 32px; height: 32px; background: var(--primary); color: #fff; 
            border-radius: 50%; display: flex; align-items: center; justify-content: center; 
            flex-shrink: 0; font-weight: bold; font-size: 0.9rem;
        }
        .step-content h4 { font-weight: 800; margin-bottom: 5px; color: var(--text-main); }
        .step-content p { font-size: 0.95rem; margin-bottom: 0; }

        .seo-preview-card {
            background: #f8fafc;
            border-radius: 20px;
            padding: 30px;
            border: 1px solid #e2e8f0;
            box-shadow: var(--shadow-soft);
        }

        .google-result-mock {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #dfe1e5;
            margin-top: 20px;
        }
        .mock-url { font-size: 0.85rem; color: #202124; margin-bottom: 4px; display: flex; align-items: center; gap: 5px; }
        .mock-title { font-size: 1.25rem; color: #1a0dab; margin-bottom: 4px; font-weight: 500; }
        .mock-desc { font-size: 0.9rem; color: #4d5156; line-height: 1.5; }

        /* --- SERVICES (Cards) --- */
        .services { padding: 80px 0; background: var(--bg-body); }
        
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .card {
            background: white;
            padding: 40px 30px;
            border-radius: var(--radius);
            transition: 0.4s;
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
        }

        .card:hover {
            transform: translateY(-10px);
            background: #fff;
            box-shadow: var(--shadow-hover);
            border-color: rgba(124, 58, 237, 0.2);
        }

        .card-icon {
            width: 60px; height: 60px;
            background: #f1f5f9;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            color: var(--primary);
        }

        /* --- SEARCH CONSOLE PORTFOLIO --- */
        .portfolio { padding: 100px 0; background: #f8fafc; }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .sc-card {
            background: white;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            padding: 24px;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }

        .sc-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }

        .sc-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .sc-brand-info h4 { font-size: 1.1rem; color: #3c4043; margin-bottom: 4px; }
        .sc-brand-info span { font-size: 0.85rem; color: #70757a; font-family: sans-serif; }

        .sc-stats-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .sc-stat-item {
            padding: 10px;
            border-radius: 8px;
            background: #f8f9fa;
            border-right: 4px solid #ccc;
        }

        .sc-stat-item.clicks { border-right-color: var(--g-blue); }
        .sc-stat-item.impressions { border-right-color: var(--g-purple); }

        .sc-stat-label { font-size: 0.75rem; color: #5f6368; display: block; margin-bottom: 5px; }
        .sc-stat-value { font-size: 1.25rem; font-weight: 700; color: #202124; }
        .sc-stat-change { font-size: 0.7rem; color: #137333; margin-right: 5px; }

        .sc-chart-container {
            width: 100%;
            height: 120px;
            position: relative;
            margin-top: 20px;
        }

        .sc-svg-chart {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0px 4px 4px rgba(66, 133, 244, 0.1));
        }

        .sc-path-clicks { fill: none; stroke: var(--g-blue); stroke-width: 2.5; stroke-linecap: round; }
        .sc-path-impressions { fill: none; stroke: var(--g-purple); stroke-width: 2; stroke-dasharray: 4; opacity: 0.5; }

        .sc-footer {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #f1f3f4;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sc-tag {
            font-size: 0.75rem;
            background: #e8f0fe;
            color: #1967d2;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
        }


        /* --- KPI SNAPSHOT --- */
        .kpi-section { padding: 40px 0 70px; }
        .kpi-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; }
        .kpi-card { background:#fff; border:1px solid #e2e8f0; border-radius:14px; padding:22px; text-align:center; box-shadow: var(--shadow-soft); }
        .kpi-card h3 { font-size:2rem; color:var(--primary); margin-bottom:6px; }
        .kpi-card p { color:var(--text-light); font-size:0.95rem; }

        /* --- PROCESS --- */
        .process-section { padding: 90px 0; background:#fff; }
        .process-steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; }
        .process-card { background:#f8fafc; border:1px solid #e2e8f0; border-radius:14px; padding:20px; }
        .process-number { width:34px; height:34px; border-radius:50%; background:var(--gradient-main); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; margin-bottom:10px; }

        /* --- INDUSTRIES --- */
        .industries { padding: 80px 0; background: var(--bg-body); }
        .chips { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
        .chip { background:#fff; border:1px solid #dbeafe; color:#1e3a8a; padding:10px 16px; border-radius:999px; font-weight:600; }

        /* --- PLANS --- */
        .plans { padding:90px 0; background:#fff; }
        .plans-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; }
        .plan-card { border:1px solid #e2e8f0; border-radius:16px; padding:26px; background:#fff; position:relative; }
        .plan-card.featured { border-color:#93c5fd; box-shadow:var(--shadow-hover); }
        .plan-badge { position:absolute; top:-12px; right:20px; background:var(--gradient-main); color:#fff; padding:4px 12px; border-radius:99px; font-size:0.75rem; }
        .plan-card h3 { margin-bottom:10px; }
        .plan-card ul { list-style:none; margin-top:12px; }
        .plan-card li { margin-bottom:8px; color:var(--text-light); }

        /* --- LEAD MAGNET --- */
        .lead-magnet { padding: 70px 0; background: #eef2ff; }
        .lead-box { background:#fff; border:1px solid #dbeafe; border-radius:16px; padding:26px; display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:16px; }


        /* --- SOCIAL PROOF --- */
        .social-proof { padding: 80px 0; background: #fff; }
        .logo-wall { display:grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap:14px; margin:20px 0 30px; }
        .logo-pill { background:#f8fafc; border:1px solid #e2e8f0; border-radius:12px; padding:14px; text-align:center; color:#475569; font-weight:700; }
        .testimonial-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap:18px; }
        .testimonial-card { background:#f8fafc; border:1px solid #e2e8f0; border-radius:14px; padding:22px; }
        .testimonial-card p { color:var(--text-light); margin-bottom:10px; }

        /* --- COMPARISON --- */
        .comparison { padding: 80px 0; background: var(--bg-body); }
        .comparison-table { width:100%; border-collapse: collapse; background:#fff; border-radius:14px; overflow:hidden; box-shadow: var(--shadow-soft); }
        .comparison-table th, .comparison-table td { padding:14px 12px; border-bottom:1px solid #e2e8f0; text-align:center; }
        .comparison-table th { background:#f1f5f9; font-size:0.95rem; }
        .comparison-table .good { color:#059669; font-weight:700; }
        .comparison-table .bad { color:#b91c1c; font-weight:700; }

        /* --- FAQ SECTION --- */
        .faq-section { padding: 80px 0; background: white; }
        
        .faq-wrapper { max-width: 900px; margin: 0 auto; }

        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            overflow: hidden;
            background: #f8fafc;
            transition: 0.3s;
        }

        .faq-item:hover { border-color: var(--primary); }

        .faq-question {
            padding: 20px 25px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            position: relative;
            list-style: none; /* Hide default triangle */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question::-webkit-details-marker { display: none; }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 400;
            transition: 0.3s;
        }

        details[open] .faq-question::after {
            transform: rotate(45deg);
        }

        details[open] .faq-item {
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .faq-answer {
            padding: 0 25px 25px;
            color: var(--text-light);
            line-height: 1.7;
            border-top: 1px solid transparent;
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- CONTACT / CTA --- */
        .cta-section {
            padding: 100px 0;
            background: var(--gradient-main);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent 40%);
            pointer-events: none;
        }

        .form-box {
            background: white;
            max-width: 600px;
            margin: 50px auto 0;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            text-align: right;
        }

        .form-group { margin-bottom: 20px; position: relative; }
        
        .form-control {
            width: 100%;
            padding: 15px 10px;
            border: none;
            border-bottom: 2px solid #e2e8f0;
            background: transparent;
            font-family: inherit;
            font-size: 1rem;
            transition: 0.3s;
        }

        .form-control:focus { border-color: var(--primary); }
        .form-control:focus + label, .form-control:not(:placeholder-shown) + label {
            top: -10px; font-size: 0.8rem; color: var(--primary);
        }

        .form-label {
            position: absolute;
            right: 10px; top: 15px;
            color: #94a3b8;
            pointer-events: none;
            transition: 0.3s;
        }

        /* --- FOOTER --- */
        footer {
            background: #0f172a;
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand p { color: #94a3b8; margin-top: 15px; font-size: 0.9rem;}
        .footer-col h4 { margin-bottom: 20px; font-size: 1.1rem; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #cbd5e1; font-size: 0.9rem; }
        .footer-col ul li a:hover { color: var(--accent); padding-right: 5px; }

        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            color: #64748b;
            font-size: 0.85rem;
        }

        /* --- ANIMATIONS --- */
        @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-text h1 { font-size: 2.5rem; }
            .hero-text > div { flex-direction: column; align-items: stretch; }
            .hero-text > div .btn { width: 100%; }
            .ai-card-visual { display: none; }
            
            .intro-grid { grid-template-columns: 1fr; }
            .seo-preview-card { order: -1; }

            .menu-toggle { display: block; }
            .header-call-mobile { display: inline-flex; }
            .nav-links {
                position: fixed;
                top: var(--nav-height); right: -100%;
                width: 80%; height: 100vh;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 40px 20px;
                transition: 0.4s;
                box-shadow: -10px 0 30px rgba(0,0,0,0.1);
                overflow-y: auto;
            }
            .nav-links.active { right: 0; }
            .nav-item { width: 100%; }
            .nav-link { width: 100%; padding: 15px 0; border-bottom: 1px solid #f1f5f9; display: flex; justify-content: space-between; }
            
            .btn-nav { width: 100%; text-align: center; margin-top: 20px; }
            .header-call-desktop { display: none; }
            
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .portfolio-grid { grid-template-columns: 1fr; }

            .mega-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                padding: 0 10px;
                display: none;
                grid-template-columns: 1fr;
                opacity: 1;
                visibility: visible;
                transform: none;
                margin-top: 10px;
                background: #f8fafc;
                border: none;
            }

            .mega-menu.active { display: block; }
        }

        .icon-svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    

/* --- WORDPRESS CONTENT TEMPLATES --- */
.wp-content-wrap {
    padding-top: 120px;
    min-height: 60vh;
}

.wp-section {
    padding: 30px 0 80px;
}

.wp-section-head {
    padding-bottom: 10px;
}

.wp-page-head {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.wp-kicker {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.wp-page-head h1 {
    font-size: 2.1rem;
    margin-bottom: 8px;
}

.wp-subtitle {
    color: var(--text-light);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.post-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.post-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-card-body {
    padding: 18px;
}

.post-card-title {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.post-card-title a:hover,
.read-more:hover,
.wp-post-nav a:hover,
.wp-breadcrumbs a:hover {
    color: var(--primary);
}

.post-meta {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.post-excerpt {
    color: var(--text-light);
    margin-bottom: 12px;
}

.read-more {
    font-weight: 700;
}

.wp-pagination {
    margin-top: 30px;
}

.wp-pagination .nav-links {
    position: static;
    width: auto;
    height: auto;
    display: flex;
    gap: 12px;
    padding: 0;
    box-shadow: none;
    background: transparent;
    flex-direction: row;
}

.wp-pagination .page-numbers {
    display: inline-flex;
    min-width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    background: #fff;
}

.wp-pagination .page-numbers.current {
    background: var(--gradient-main);
    color: #fff;
    border-color: transparent;
}

.wp-single-wrap {
    max-width: 860px;
}

.wp-single-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.wp-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

.wp-entry-head h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.wp-entry-content {
    color: #334155;
}

.wp-entry-content > * {
    margin-bottom: 18px;
}

.wp-entry-content h2,
.wp-entry-content h3,
.wp-entry-content h4 {
    margin-top: 24px;
}

.wp-featured-image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.wp-post-nav {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.wp-empty-state {
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
}

@media (max-width: 992px) {
    .wp-content-wrap { padding-top: 110px; }
    .wp-page-head h1,
    .wp-entry-head h1 { font-size: 1.7rem; }
    .wp-single-card,
    .wp-page-head { padding: 20px; }
}

/* --- SINGLE POST PROFESSIONAL ENHANCEMENTS --- */
.wp-article-shell {
    padding-top: 40px;
}

.wp-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.wp-single-pro {
    overflow: hidden;
}

.wp-breadcrumbs-wrap {
    margin-bottom: 14px;
}

.rank-math-breadcrumb,
.rank-math-breadcrumb p,
.rank-math-breadcrumb a {
    font-size: 0.86rem;
    color: var(--text-light);
}

.rank-math-breadcrumb a:hover {
    color: var(--primary);
}

.wp-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.wp-meta-row .post-meta {
    margin-bottom: 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 10px;
    border-radius: 999px;
}

.wp-article-sidebar {
    position: sticky;
    top: 110px;
}

.wp-sidebar-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.wp-sidebar-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.wp-sidebar-card ul li {
    margin-bottom: 10px;
}

.wp-sidebar-card ul li a {
    color: var(--text-light);
}

.wp-sidebar-card ul li a:hover {
    color: var(--primary);
}

.wp-comments-wrap {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.wp-comments-wrap .comments-title,
.wp-comments-wrap #reply-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.wp-comments-wrap .comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.wp-comments-wrap .comment-body {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    background: #fff;
}

.wp-comments-wrap .comment-meta {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.wp-comments-wrap .comment-reply-link {
    font-size: 0.85rem;
    color: var(--primary);
}

.wp-comments-wrap .comment-form input[type="text"],
.wp-comments-wrap .comment-form input[type="email"],
.wp-comments-wrap .comment-form input[type="url"],
.wp-comments-wrap .comment-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: 6px;
}

.wp-comments-wrap .form-submit .submit {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    color: #fff;
    background: var(--gradient-main);
    cursor: pointer;
}

@media (max-width: 1100px) {
    .wp-article-layout {
        grid-template-columns: 1fr;
    }

    .wp-article-sidebar {
        position: static;
    }
}

/* --- EXACT SINGLE STYLE (REFERENCE MATCH) --- */
.wp-article-exact {
    background: #ececec;
}

.wp-article-stage {
    position: relative;
    padding-right: 80px;
    padding-left: 80px;
}

.wp-share-rail {
    position: absolute;
    left: 0;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.wp-share-rail a {
    width: 44px;
    height: 44px;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-weight: 700;
}

.wp-share-rail .share-label {
    margin-top: 8px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #b0b0b0;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.wp-article-layout-exact {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 18px;
}

.wp-single-exact,
.wp-article-sidebar-exact .wp-sidebar-card {
    border: none;
    box-shadow: none;
}

.wp-single-exact {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.wp-single-headbox {
    background: #0ca184;
    color: #fff;
    border-radius: 14px 14px 0 0;
    padding: 22px 26px 14px;
    position: relative;
}

.wp-single-headbox .wp-entry-head h1 {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 14px;
}

.wp-single-headbox .wp-meta-row {
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.35);
    padding-top: 10px;
}

.wp-single-headbox .wp-meta-row .post-meta {
    background: transparent;
    border: none;
    color: #d8fff4;
    padding: 0;
    font-size: 0.85rem;
}

.wp-single-headbox .rank-math-breadcrumb,
.wp-single-headbox .rank-math-breadcrumb p,
.wp-single-headbox .rank-math-breadcrumb a,
.wp-single-headbox .wp-breadcrumbs,
.wp-single-headbox .wp-breadcrumbs a {
    color: #d8fff4;
    font-size: 0.82rem;
}

.wp-single-exact .wp-featured-image {
    margin: 0;
    padding: 16px 16px 0;
}

.wp-single-exact .wp-featured-image img {
    border-radius: 12px;
    margin-bottom: 0;
}

.wp-single-exact .wp-entry-content {
    padding: 14px 18px 0;
}

.wp-article-sidebar-exact .wp-sidebar-card {
    background: #f7f7f7;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    padding: 18px;
}

.wp-article-sidebar-exact .wp-sidebar-card h3 {
    text-align: center;
    font-size: 0.92rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.wp-article-sidebar-exact .wp-sidebar-card ul {
    padding: 0;
    margin: 0;
}

.wp-article-sidebar-exact .wp-sidebar-card li {
    margin-bottom: 14px;
    line-height: 1.9;
    text-align: center;
}

.wp-article-sidebar-exact .wp-sidebar-card li a {
    color: #5c6670;
}

@media (max-width: 1100px) {
    .wp-article-stage {
        padding-right: 0;
        padding-left: 0;
    }

    .wp-share-rail {
        display: none;
    }

    .wp-article-layout-exact {
        grid-template-columns: 1fr;
    }
}

/* --- SINGLE V2: 3-COLUMN STICKY LAYOUT --- */
.wp-single-layout-v2 {
    background: transparent;
}

.wp-single-grid {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 300px;
    gap: 18px;
    align-items: start;
}

.wp-col-main {
    position: relative;
    z-index: 2;
}

.wp-col-share,
.wp-col-latest {
    position: sticky;
    top: 105px;
    z-index: 3;
}

.wp-col-share {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.wp-col-share a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #d5dbe5;
    background: #ffffff;
    color: #475569;
    font-weight: 700;
}

.wp-col-share .share-label {
    margin-top: 8px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #a3a3a3;
    font-size: 0.86rem;
}

.wp-single-card-v2 {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #e2e8f0;
}

.wp-main-top {
    background: var(--gradient-main);
    color: #fff;
    padding: 26px 26px 68px;
    border-radius: 14px 14px 0 0;
}

.wp-main-top h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 12px;
    color: #fff;
}

.wp-main-meta-line {
    border-top: 1px solid rgba(255,255,255,0.55);
    padding-top: 12px;
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    font-size: 0.86rem;
}

.wp-main-meta-line,
.wp-main-meta-line a {
    color: #e6f8ff;
}

.wp-main-image-wrap {
    margin-top: -48px;
    padding: 0 18px;
}

.wp-featured-image-v2 img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.wp-main-bottom {
    padding: 14px 18px 18px;
}

.wp-latest-card {
    background: #ffffff;
    border: 1px solid #d7dde5;
    border-radius: 12px;
    padding: 18px;
}

.wp-latest-card h3 {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #475569;
}

.wp-latest-card ul {
    margin: 0;
    padding: 0;
}

.wp-latest-card li {
    margin-bottom: 12px;
    line-height: 1.8;
    text-align: center;
}

.wp-latest-card li a {
    color: #64748b;
}

.wp-latest-card li a:hover {
    color: var(--primary);
}

@media (max-width: 1100px) {
    .wp-single-grid {
        grid-template-columns: 1fr;
    }

    .wp-col-share,
    .wp-col-latest {
        position: static;
    }

    .wp-col-share {
        flex-direction: row;
        justify-content: center;
    }

    .wp-col-share .share-label {
        display: none;
    }
}

/* --- SINGLE V3: TOP BAR UNDER ALL COLUMNS --- */
.wp-single-layout-v3 {
    background: #eef2f7;
}

.wp-main-top-global {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    padding: 34px 26px 112px;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 300px;
    gap: 18px;
    align-items: start;
}

.wp-main-top-global > h1,
.wp-main-top-global > .wp-main-meta-line {
    grid-column: 2;
}


.wp-main-top-global > h1 {
    text-align: center;
    margin: 0;
    line-height: 1.4;
    color: #ffffff;
    font-size: 2.15rem;
    font-weight: 800;
}


.wp-single-grid-v3 {
    grid-template-columns: 58px minmax(0, 1fr) 300px;
    gap: 18px;
    align-items: start;
    margin-top: -72px;
    position: relative;
    z-index: 2;
}

.wp-single-grid-v3 .wp-col-share,
.wp-single-grid-v3 .wp-col-latest {
    position: sticky;
    top: 105px;
}

.wp-single-card-v3 {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.wp-single-grid-v3 .wp-main-image-wrap {
    margin-top: -32px;
    padding: 0 16px;
}

.wp-single-grid-v3 .wp-main-bottom {
    padding: 14px 18px 18px;
}

.wp-single-grid-v3 .wp-latest-card {
    background: #ffffff;
    border: 1px solid #d7dde5;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.wp-single-grid-v3 .wp-col-share a {
    background: #fff;
}

@media (max-width: 1100px) {
    .wp-single-grid-v3 {
        grid-template-columns: 1fr;
        margin-top: -24px;
    }

    .wp-single-grid-v3 .wp-col-share,
    .wp-single-grid-v3 .wp-col-latest {
        position: static;
    }

    .wp-main-top-global {
        padding: 22px 16px 54px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wp-main-top-global > h1,
    .wp-main-top-global > .wp-main-meta-line {
        grid-column: 1;
    }

    .wp-main-top-global > h1 {
        text-align: center;
    }
}



.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
.btn-whatsapp-pulse img {
  width: 40px;
	height:40px
}
