/* Start custom CSS for html, class: .elementor-element-563f1fa *//* 24_article_seo.css */
.seo-landing-page-wrapper {
    /* Variables designed for the Orange theme */
    --seo-primary: #f97316; /* Orange 500 */
    --seo-primary-hover: #ea580c; /* Orange 600 */
    --seo-primary-light: #fff7ed; /* Orange 50 */
    --seo-secondary: #0f172a; /* Slate 900 */
    --seo-text-main: #1f2937;
    --seo-text-muted: #6b7280;
    --seo-bg-light: #f8fafc;
    --seo-bg-white: #ffffff;
    --seo-border: #e2e8f0;

    font-family: 'Inter', 'Kanit', sans-serif;
    color: var(--seo-text-main);
    background-color: var(--seo-bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    
    /* Reset typography to perfectly separate from global CSS */
    h1, h2, h3, h4, h5, h6, p, ul, li {
        margin: 0;
        padding: 0;
        font-family: inherit;
        color: inherit;
        line-height: normal;
    }

    ul {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    * {
        box-sizing: border-box;
    }

    /* Common Layout */
    .seo-landing-section {
        padding: 100px 0;
        position: relative;
    }

    .seo-landing-section.bg-light {
        background-color: var(--seo-bg-light);
    }

    .seo-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 10;
    }

    /* Animations Setup */
    @keyframes seoFadeInUp {
        0% { opacity: 0; transform: translateY(30px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes seoPulseFloat {
        0% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0); }
    }

    @keyframes seoSlideInRight {
        0% { opacity: 0; transform: translateX(40px); }
        100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes seoSlideInLeft {
        0% { opacity: 0; transform: translateX(-40px); }
        100% { opacity: 1; transform: translateX(0); }
    }

    .animate-up { animation: seoFadeInUp 0.8s ease-out forwards; }
    .animate-float { animation: seoPulseFloat 4s ease-in-out infinite; }
    .animate-slide-right { animation: seoSlideInRight 0.8s ease-out forwards; }
    .animate-slide-left { animation: seoSlideInLeft 0.8s ease-out forwards; }

    /* Delay utilities */
    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }
    .delay-400 { animation-delay: 0.4s; }

    /* Buttons */
    .seo-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 1.125rem;
    }

    .seo-btn-primary {
        background-color: var(--seo-primary);
        color: #ffffff;
        box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.4);
    }

    .seo-btn-primary:hover {
        background-color: var(--seo-primary-hover);
        transform: translateY(-3px);
        box-shadow: 0 15px 35px -5px rgba(249, 115, 22, 0.5);
    }

    .seo-btn-outline {
        background-color: transparent;
        color: var(--seo-secondary);
        border: 2px solid var(--seo-border);
    }

    .seo-btn-outline:hover {
        border-color: var(--seo-primary);
        color: var(--seo-primary);
        background-color: var(--seo-primary-light);
    }

    /* Hero Section */
    .seo-hero {
        display: flex;
        align-items: center;
        gap: 60px;
        padding: 120px 0 100px;
    
    }

    .seo-hero-content {
        flex: 1;
    }

    .seo-badge {
        display: inline-block;
        padding: 8px 16px;
        background-color: rgba(249, 115, 22, 0.15);
        color: var(--seo-primary-hover);
        font-weight: 700;
        font-size: 0.875rem;
        border-radius: 100px;
        margin-bottom: 24px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .seo-hero-title {
        font-size: 4rem;
        font-weight: 800;
        color: var(--seo-secondary);
        line-height: 1.15;
        margin-bottom: 24px;
    }

    .seo-hero-title span {
        color: var(--seo-primary);
        position: relative;
        display: inline-block;
    }

    .seo-hero-title span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 12px;
        background-color: rgba(249, 115, 22, 0.2);
        z-index: -1;
    }

    .seo-hero-desc {
        font-size: 1.25rem;
        color: var(--seo-text-muted);
        margin-bottom: 40px;
        max-width: 600px;
    }

    .seo-hero-actions {
        display: flex;
        gap: 16px;
    }

    .seo-hero-image {
        flex: 1.1;
        position: relative;
    }

    .seo-hero-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
        border: 1px solid rgba(255,255,255,0.5);
    }

    .seo-floating-card {
        position: absolute;
        bottom: -20px;
        left: -30px;
        background: white;
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 16px;
        animation: seoPulseFloat 5s ease-in-out infinite alternate;
    }

    .seo-floating-icon {
        width: 48px;
        height: 48px;
        background-color: var(--seo-primary-light);
        color: var(--seo-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .seo-floating-text h4 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--seo-secondary);
        line-height: 1.2;
    }

    .seo-floating-text p {
        color: var(--seo-text-muted);
        font-size: 0.875rem;
        font-weight: 500;
        margin-top: 4px;
    }

    /* Section Headers */
    .seo-section-header {
        text-align: center;
        margin-bottom: 64px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .seo-section-title {
        font-size: 2.75rem;
        font-weight: 800;
        color: var(--seo-secondary);
        margin-bottom: 20px;
    }

    .seo-section-desc {
        font-size: 1.125rem;
        color: var(--seo-text-muted);
    }

    /* Feature Grid (Why Choose Us) */
    .seo-features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .seo-feature-card {
        background-color: var(--seo-bg-white);
        border-radius: 16px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        border: 1px solid var(--seo-border);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .seo-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: var(--seo-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .seo-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(249, 115, 22, 0.08);
        border-color: rgba(249, 115, 22, 0.2);
    }

    .seo-feature-card:hover::before {
        transform: scaleX(1);
    }

    .seo-feature-icon {
        width: 64px;
        height: 64px;
        background-color: var(--seo-primary-light);
        color: var(--seo-primary);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin-bottom: 24px;
        transition: all 0.3s ease;
    }

    .seo-feature-card:hover .seo-feature-icon {
        background-color: var(--seo-primary);
        color: white;
    }

    .seo-feature-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--seo-secondary);
        margin-bottom: 16px;
    }

    .seo-feature-text {
        color: var(--seo-text-muted);
        line-height: 1.7;
    }

    /* Content Blocks (Image + Text) */
    .seo-block {
        display: flex;
        align-items: center;
        gap: 64px;
        padding: 40px 0;
    }

    .seo-block.reverse {
        flex-direction: row-reverse;
    }

    .seo-block-image {
        flex: 1;
        position: relative;
    }

    .seo-block-image img {
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .seo-block-image::after {
        content: '';
        position: absolute;
        inset: -20px;
        border: 2px dashed var(--seo-primary);
        border-radius: 32px;
        z-index: -1;
        opacity: 0.3;
    }

    .seo-block-content {
        flex: 1;
    }

    .seo-list {
        margin-top: 32px;
    }

    .seo-list-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .seo-list-icon {
        width: 32px;
        height: 32px;
        background-color: var(--seo-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
        margin-top: 4px;
    }

    .seo-list-text h4 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--seo-secondary);
        margin-bottom: 8px;
    }

    .seo-list-text p {
        color: var(--seo-text-muted);
        line-height: 1.6;
    }

    /* Process Steps */
    .seo-process-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 60px;
    }

    .seo-process-step {
        text-align: center;
        position: relative;
    }

    .seo-process-step:not(:last-child)::after {
        content: '\2192'; /* Right arrow */
        position: absolute;
        top: 40px;
        right: -15px;
        font-size: 24px;
        color: var(--seo-primary);
        opacity: 0.5;
    }

    .seo-step-number {
        width: 80px;
        height: 80px;
        background-color: var(--seo-bg-white);
        border: 3px solid var(--seo-primary);
        color: var(--seo-primary);
        font-size: 2rem;
        font-weight: 800;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        box-shadow: 0 10px 20px rgba(249, 115, 22, 0.15);
        transition: all 0.3s ease;
    }

    .seo-process-step:hover .seo-step-number {
        background-color: var(--seo-primary);
        color: white;
        transform: scale(1.1);
    }

    .seo-step-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--seo-secondary);
        margin-bottom: 12px;
    }

    .seo-step-desc {
        color: var(--seo-text-muted);
        font-size: 0.95rem;
    }

    /* FAQ Section */
    .seo-accordion {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .seo-accordion-item {
        background-color: var(--seo-bg-white);
        border-radius: 12px;
        border: 1px solid var(--seo-border);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .seo-accordion-item:hover {
        border-color: var(--seo-primary);
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.05);
    }

    .seo-accordion-header {
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 16px;
        cursor: pointer;
    }

    .seo-accordion-icon {
        color: var(--seo-primary);
        font-size: 24px;
        font-weight: bold;
    }

    .seo-accordion-title {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--seo-secondary);
    }

    .seo-accordion-body {
        padding: 0 24px 24px 60px;
        color: var(--seo-text-muted);
        line-height: 1.7;
    }

    /* Final CTA */
    .seo-cta {
        background-color: var(--seo-secondary);
        border-radius: 24px;
        padding: 80px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
        color: white;
    }

    .seo-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
        z-index: 1;
    }

    .seo-cta-content {
        position: relative;
        z-index: 2;
        max-width: 700px;
        margin: 0 auto;
    }

    .seo-cta-title {
        font-size: 3rem;
        font-weight: 800;
        color: white;
        margin-bottom: 24px;
    }

    .seo-cta-desc {
        font-size: 1.25rem;
        color: #cbd5e1;
        margin-bottom: 40px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .seo-hero, .seo-block {
            flex-direction: column;
            text-align: center;
        }

        .seo-block.reverse {
            flex-direction: column;
        }

        .seo-hero-title {
            font-size: 3rem;
        }

        .seo-hero-actions {
            justify-content: center;
        }

        .seo-hero-desc, .seo-section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        .seo-floating-card {
            left: 50%;
            transform: translateX(-50%);
            bottom: -30px;
        }

        .seo-list-item {
            text-align: left;
        }

        .seo-process-wrapper {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .seo-process-step:nth-child(2)::after {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .seo-features-grid {
            grid-template-columns: 1fr;
        }

        .seo-landing-section {
            padding: 60px 0;
        }

        .seo-section-title {
            font-size: 2rem;
        }

        .seo-process-wrapper {
            grid-template-columns: 1fr;
        }

        .seo-process-step::after {
            display: none;
        }
        
        .seo-btn {
            width: 100%;
        }
        
        .seo-hero-actions {
            flex-direction: column;
        }
    }
}/* End custom CSS */