    /* ============================================
   🎨 ARTISTIC PAINTER DESIGN - HOME PAGE
   Brush strokes, watercolors, creative elements
   ============================================ */

    /* Artistic Brush Stroke SVG Pattern */
    .brush-stroke {
        position: absolute;
        pointer-events: none;
        z-index: 0;
    }

    /* Paint Splatter Effect */
    .paint-splatter {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50% 40% 60% 30%;
        filter: blur(40px);
        opacity: 0.4;
        pointer-events: none;
    }

    /* ============================================
   🚀 HERO - Artist's Canvas with Futuristic Animations
   ============================================ */

    .home_hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: linear-gradient(180deg, #FDF8F3 0%, #FAF5EF 50%, #F5EDE4 100%);
        position: relative;
        overflow: hidden;
        padding: 6rem 0;
    }

    /* Animated Gradient Ring */
    .home_hero-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 800px;
        height: 800px;
        transform: translate(-50%, -50%);
        border: 2px solid transparent;
        border-radius: 50%;
        background: linear-gradient(#FDF8F3, #FDF8F3) padding-box,
            linear-gradient(135deg, rgba(139, 90, 90, 0.3), rgba(212, 165, 116, 0.2), rgba(90, 123, 139, 0.15)) border-box;
        animation: ringRotate 30s linear infinite;
        pointer-events: none;
    }

    .home_hero-ring::after {
        content: '';
        position: absolute;
        inset: 40px;
        border: 1px solid transparent;
        border-radius: 50%;
        background: linear-gradient(#FDF8F3, #FDF8F3) padding-box,
            linear-gradient(45deg, rgba(212, 165, 116, 0.2), rgba(139, 90, 90, 0.15)) border-box;
        animation: ringRotate 25s linear infinite reverse;
    }

    @keyframes ringRotate {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    /* Floating Geometric Shapes */
    .home_hero-shape {
        position: absolute;
        pointer-events: none;
        z-index: 1;
    }

    .home_hero-shape--1 {
        top: 15%;
        right: 15%;
        width: 60px;
        height: 60px;
        border: 2px solid rgba(139, 90, 90, 0.2);
        border-radius: 12px;
        animation: shapeDrift 12s ease-in-out infinite;
        transform: rotate(45deg);
    }

    .home_hero-shape--2 {
        bottom: 25%;
        left: 10%;
        width: 40px;
        height: 40px;
        background: rgba(212, 165, 116, 0.15);
        border-radius: 50%;
        animation: shapeDrift 15s ease-in-out infinite reverse;
    }

    .home_hero-shape--3 {
        top: 35%;
        left: 5%;
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 35px solid rgba(90, 123, 139, 0.12);
        animation: shapeDrift 18s ease-in-out infinite;
    }

    @keyframes shapeDrift {

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

        25% {
            transform: translate(15px, -20px) rotate(60deg);
            opacity: 0.8;
        }

        50% {
            transform: translate(30px, 10px) rotate(45deg);
            opacity: 0.5;
        }

        75% {
            transform: translate(-10px, 20px) rotate(30deg);
            opacity: 0.7;
        }
    }

    /* Light Beam Effects */
    .home_hero-beam {
        position: absolute;
        width: 2px;
        background: linear-gradient(180deg, transparent, rgba(212, 165, 116, 0.3), transparent);
        pointer-events: none;
        animation: beamFloat 8s ease-in-out infinite;
    }

    .home_hero-beam--1 {
        top: 0;
        left: 20%;
        height: 150px;
        animation-delay: 0s;
    }

    .home_hero-beam--2 {
        top: 0;
        right: 25%;
        height: 200px;
        animation-delay: 2s;
    }

    .home_hero-beam--3 {
        top: 0;
        left: 40%;
        height: 100px;
        background: linear-gradient(180deg, transparent, rgba(139, 90, 90, 0.2), transparent);
        animation-delay: 4s;
    }

    @keyframes beamFloat {

        0%,
        100% {
            transform: translateY(0);
            opacity: 0.5;
        }

        50% {
            transform: translateY(30px);
            opacity: 0.8;
        }
    }

    /* Particle Field */
    .home_hero-particles {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .home_hero-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--artist-accent);
        border-radius: 50%;
        animation: particleFloat 10s ease-in-out infinite;
    }

    .home_hero-particle--1 {
        top: 10%;
        left: 15%;
        animation-delay: 0s;
    }

    .home_hero-particle--2 {
        top: 25%;
        right: 20%;
        animation-delay: 1s;
    }

    .home_hero-particle--3 {
        top: 45%;
        left: 25%;
        animation-delay: 2s;
    }

    .home_hero-particle--4 {
        bottom: 30%;
        right: 30%;
        animation-delay: 3s;
    }

    .home_hero-particle--5 {
        bottom: 20%;
        left: 35%;
        animation-delay: 4s;
    }

    .home_hero-particle--6 {
        top: 60%;
        right: 15%;
        animation-delay: 5s;
    }

    @keyframes particleFloat {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 0.3;
        }

        25% {
            transform: translate(20px, -30px) scale(1.5);
            opacity: 0.8;
        }

        50% {
            transform: translate(-10px, 20px) scale(0.5);
            opacity: 0.5;
        }

        75% {
            transform: translate(15px, 10px) scale(1.2);
            opacity: 0.7;
        }
    }

    /* Decorative Paint Splatters with Pulse */
    .home_hero .paint-splatter--1 {
        top: 10%;
        right: 5%;
        width: 350px;
        height: 350px;
        background: radial-gradient(ellipse, rgba(139, 90, 90, 0.25) 0%, transparent 70%);
        border-radius: 60% 40% 50% 50%;
        animation: floatBlob 15s ease-in-out infinite, splatPulse 8s ease-in-out infinite;
    }

    .home_hero .paint-splatter--2 {
        bottom: 15%;
        left: 3%;
        width: 280px;
        height: 280px;
        background: radial-gradient(ellipse, rgba(212, 165, 116, 0.3) 0%, transparent 70%);
        border-radius: 40% 60% 55% 45%;
        animation: floatBlob 12s ease-in-out infinite reverse, splatPulse 10s ease-in-out infinite;
    }

    .home_hero .paint-splatter--3 {
        top: 40%;
        left: 45%;
        width: 200px;
        height: 200px;
        background: radial-gradient(ellipse, rgba(90, 123, 139, 0.2) 0%, transparent 70%);
        border-radius: 55% 45% 60% 40%;
        animation: floatBlob 18s ease-in-out infinite, splatPulse 12s ease-in-out infinite;
    }

    @keyframes floatBlob {

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

        33% {
            transform: translate(20px, -15px) rotate(5deg) scale(1.05);
        }

        66% {
            transform: translate(-15px, 20px) rotate(-5deg) scale(0.95);
        }
    }

    @keyframes splatPulse {

        0%,
        100% {
            opacity: 0.6;
        }

        50% {
            opacity: 0.9;
        }
    }

    /* Brush Stroke Decorations with Animation */
    .home_hero-brush {
        position: absolute;
        height: 6px;
        background: linear-gradient(90deg, transparent, var(--artist-accent), transparent);
        border-radius: 50%;
        opacity: 0.6;
        animation: brushSlide 6s ease-in-out infinite;
    }

    @keyframes brushSlide {

        0%,
        100% {
            transform: translateX(0) rotate(var(--rotate));
            opacity: 0.6;
        }

        50% {
            transform: translateX(15px) rotate(var(--rotate));
            opacity: 0.9;
        }
    }

    .home_hero-brush--1 {
        top: 20%;
        left: 8%;
        width: 120px;
        --rotate: -15deg;
        transform: rotate(-15deg);
        animation-delay: 0s;
    }

    .home_hero-brush--2 {
        bottom: 25%;
        right: 10%;
        width: 180px;
        --rotate: 10deg;
        transform: rotate(10deg);
        background: linear-gradient(90deg, transparent, var(--artist-primary), transparent);
        animation-delay: 2s;
    }

    .home_hero-brush--3 {
        top: 60%;
        left: 2%;
        width: 80px;
        --rotate: 25deg;
        transform: rotate(25deg);
        animation-delay: 4s;
    }

    /* Main Container */
    .home_hero-container {
        position: relative;
        z-index: 5;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
        align-items: center;
    }

    /* Hero Content */
    .home_hero-content {
        position: relative;
    }

    .home_hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .home_hero-eyebrow-line {
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, var(--artist-primary), var(--artist-accent));
        border-radius: 2px;
    }

    .home_hero-eyebrow-text {
        font-family: var(--font-accent);
        font-size: 1.25rem;
        color: var(--artist-primary);
        letter-spacing: 0.02em;
    }

    .home_hero-title {
        font-family: var(--font-heading);
        font-size: clamp(3rem, 7vw, 5.5rem);
        font-weight: 700;
        line-height: 1.05;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .home_hero-title .line {
        display: block;
    }

    .home_hero-title .artistic {
        font-family: var(--font-accent);
        font-weight: 400;
        font-size: 1.1em;
        color: var(--artist-primary);
        display: inline-block;
        position: relative;
    }

    .home_hero-title .artistic::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 12px;
        background: linear-gradient(90deg, rgba(212, 165, 116, 0.4), rgba(139, 90, 90, 0.3));
        border-radius: 4px;
        z-index: -1;
        transform: rotate(-1deg);
    }

    .home_hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 2.5rem;
        max-width: 520px;
    }

    .home_hero-buttons {
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .home_hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.125rem 2.25rem;
        border-radius: 60px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        overflow: hidden;
    }

    .home_hero-btn--primary {
        background: linear-gradient(135deg, var(--artist-primary), #6B4444);
        color: #ffffff;
        box-shadow: 0 10px 30px rgba(139, 90, 90, 0.35);
    }

    .home_hero-btn--primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .home_hero-btn--primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(139, 90, 90, 0.45);
    }

    .home_hero-btn--primary:hover::before {
        left: 100%;
    }

    .home_hero-btn--outline {
        background: rgba(255, 255, 255, 0.7);
        color: #1a1a1a;
        border: 2px solid rgba(139, 90, 90, 0.3);
        backdrop-filter: blur(10px);
    }

    .home_hero-btn--outline:hover {
        border-color: var(--artist-primary);
        color: var(--artist-primary);
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(139, 90, 90, 0.15);
    }

    /* Floating Social Links */
    .home_hero-social {
        display: flex;
        gap: 1rem;
        margin-top: 3rem;
    }

    .home_hero-social-link {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--artist-primary);
        font-size: 1.5rem;
        text-decoration: none;
        box-shadow:
            0 8px 25px rgba(139, 90, 90, 0.12),
            0 0 0 3px rgba(139, 90, 90, 0.05);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
    }

    .home_hero-social-link i {
        position: relative;
        z-index: 2;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .home_hero-social-link:hover {
        transform: translateY(-8px) scale(1.15);
        background: #ffffff;
    }

    /* YouTube */
    .home_hero-social-link.youtube {
        color: #888;
    }

    .home_hero-social-link.youtube:hover {
        color: #FF0000;
        box-shadow:
            0 15px 40px rgba(255, 0, 0, 0.25),
            0 0 20px rgba(255, 0, 0, 0.15);
    }

    .home_hero-social-link.youtube:hover i {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.5));
    }

    /* Instagram */
    .home_hero-social-link.instagram {
        color: #888;
    }

    .home_hero-social-link.instagram:hover {
        color: #E1306C;
        box-shadow:
            0 15px 40px rgba(225, 48, 108, 0.25),
            0 0 20px rgba(225, 48, 108, 0.15);
    }

    .home_hero-social-link.instagram:hover i {
        transform: scale(1.1);
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(0 0 8px rgba(225, 48, 108, 0.5));
    }

    /* Email */
    .home_hero-social-link.email {
        color: #888;
    }

    .home_hero-social-link.email:hover {
        color: var(--artist-primary);
        box-shadow:
            0 15px 40px rgba(139, 90, 90, 0.25),
            0 0 20px rgba(139, 90, 90, 0.15);
    }

    .home_hero-social-link.email:hover i {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(139, 90, 90, 0.5));
    }

    /* Hero Visual - Artistic Canvas */
    .home_hero-visual {
        position: relative;
    }

    .home_hero-canvas {
        position: relative;
        padding: 2rem;
    }

    /* Main Artwork Frame */
    .home_hero-artwork {
        position: relative;
        background: #ffffff;
        border-radius: 30px;
        padding: 1.5rem;
        box-shadow:
            0 30px 80px rgba(139, 90, 90, 0.15),
            0 0 60px rgba(212, 165, 116, 0.1);
        transform: rotate(2deg);
        transition: all 0.5s ease;
    }

    .home_hero-artwork:hover {
        transform: rotate(0deg) scale(1.02);
    }

    .home_hero-artwork-inner {
        aspect-ratio: 4/5;
        border-radius: 20px;
        overflow: hidden;
        background: linear-gradient(180deg, #FDF6EE 0%, #F5E6D8 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    /* Artistic Placeholder Content */
    .home_hero-artwork-content {
        text-align: center;
        z-index: 2;
        padding: 2rem;
    }

    .home_hero-artwork-icon {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(139, 90, 90, 0.1), rgba(212, 165, 116, 0.15));
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        position: relative;
    }

    .home_hero-artwork-icon::after {
        content: '';
        position: absolute;
        inset: -10px;
        border: 2px dashed rgba(139, 90, 90, 0.2);
        border-radius: 50%;
        animation: spinSlow 20s linear infinite;
    }

    @keyframes spinSlow {
        to {
            transform: rotate(360deg);
        }
    }

    .home_hero-artwork-icon i {
        font-size: 3rem;
        color: var(--artist-primary);
    }

    .home_hero-artwork-title {
        font-family: var(--font-accent);
        font-size: 2rem;
        color: var(--artist-primary);
        margin-bottom: 0.5rem;
    }

    .home_hero-artwork-subtitle {
        font-size: 0.9375rem;
        color: #888;
    }

    /* Decorative Paint Drips */
    .home_hero-drip {
        position: absolute;
        width: 8px;
        background: linear-gradient(180deg, var(--artist-accent), transparent);
        border-radius: 0 0 50% 50%;
        opacity: 0.6;
    }

    .home_hero-drip--1 {
        top: 0;
        left: 20%;
        height: 60px;
    }

    .home_hero-drip--2 {
        top: 0;
        right: 30%;
        height: 40px;
        background: linear-gradient(180deg, var(--artist-primary), transparent);
    }

    /* Floating Elements */
    .home_hero-float-element {
        position: absolute;
        background: #ffffff;
        border-radius: 20px;
        padding: 1rem 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        animation: floatElement 5s ease-in-out infinite;
    }

    .home_hero-float-element--1 {
        bottom: -20px;
        left: -40px;
        animation-delay: -1s;
    }

    .home_hero-float-element--2 {
        top: 20px;
        right: -30px;
        animation-delay: -2.5s;
    }

    @keyframes floatElement {

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

        50% {
            transform: translateY(-15px);
        }
    }

    .home_hero-float-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
    }

    .home_hero-float-icon.palette {
        background: rgba(139, 90, 90, 0.1);
        color: var(--artist-primary);
    }

    .home_hero-float-icon.brush {
        background: rgba(212, 165, 116, 0.15);
        color: var(--artist-accent);
    }

    .home_hero-float-text {
        font-size: 0.875rem;
    }

    .home_hero-float-value {
        font-weight: 700;
        color: #1a1a1a;
    }

    .home_hero-float-label {
        color: #888;
        font-size: 0.75rem;
    }

    /* Responsive Hero */
    @media (max-width: 1024px) {
        .home_hero-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 4rem;
        }

        .home_hero-content {
            order: 2;
        }

        .home_hero-eyebrow {
            justify-content: center;
        }

        .home_hero-subtitle {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .home_hero-buttons {
            justify-content: center;
        }

        .home_hero-social {
            justify-content: center;
        }

        .home_hero-visual {
            order: 1;
            max-width: 450px;
            margin: 0 auto;
        }

        .home_hero-artwork {
            transform: rotate(0);
        }
    }

    @media (max-width: 640px) {
        .home_hero {
            min-height: auto;
            padding: 5rem 0 4rem;
        }

        .home_hero-container {
            padding: 0 1rem;
        }

        .home_hero-float-element {
            display: none;
        }
    }

    /* ============================================
   SERVICES - Artistic Masterpiece Cards
   ============================================ */

    .home_services {
        padding: 8rem 0;
        background: linear-gradient(180deg, #ffffff 0%, #FDF9F6 100%);
        position: relative;
        overflow: hidden;
    }

    /* Decorative Background Elements */
    .home_services::before {
        content: '';
        position: absolute;
        top: 10%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(139, 90, 90, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .home_services::after {
        content: '';
        position: absolute;
        bottom: 5%;
        right: -8%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .home_services-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .home_section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 5rem;
        position: relative;
    }

    .home_section-brush {
        width: 100px;
        height: 5px;
        background: linear-gradient(90deg, transparent, var(--artist-primary), var(--artist-accent), transparent);
        border-radius: 4px;
        margin: 0 auto 1.5rem;
        position: relative;
    }

    .home_section-brush::before,
    .home_section-brush::after {
        content: '';
        position: absolute;
        width: 8px;
        height: 8px;
        background: var(--artist-accent);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
    }

    .home_section-brush::before {
        left: -15px;
    }

    .home_section-brush::after {
        right: -15px;
    }

    .home_section-title {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 5vw, 3.75rem);
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }

    .home_section-subtitle {
        font-size: 1.1875rem;
        color: #555;
        line-height: 1.8;
    }

    .home_services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        position: relative;
    }

    /* Connecting Line Behind Cards */
    .home_services-grid::before {
        content: '';
        position: absolute;
        top: 80px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(139, 90, 90, 0.15), rgba(212, 165, 116, 0.2), rgba(139, 90, 90, 0.15), transparent);
        z-index: 0;
    }

    .home_service-card {
        position: relative;
        background: #ffffff;
        padding: 3rem 2rem 2.5rem;
        border-radius: 30px;
        text-align: center;
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 2px solid rgba(139, 90, 90, 0.06);
        overflow: visible;
        z-index: 1;
    }

    /* Gradient Border on Hover */
    .home_service-card::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 32px;
        padding: 2px;
        background: linear-gradient(135deg, var(--artist-primary), var(--artist-accent), var(--artist-secondary));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: -1;
    }

    .home_service-card:hover {
        transform: translateY(-15px);
        box-shadow:
            0 30px 80px rgba(139, 90, 90, 0.15),
            0 0 40px rgba(212, 165, 116, 0.08);
        border-color: transparent;
    }

    .home_service-card:hover::before {
        opacity: 1;
    }

    /* Numbered Step Badge */
    .home_service-number {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, var(--artist-primary), var(--artist-accent));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 700;
        color: #ffffff;
        box-shadow: 0 8px 25px rgba(139, 90, 90, 0.35);
        border: 4px solid #ffffff;
    }

    /* Artistic Icon Container */
    .home_service-icon-wrap {
        position: relative;
        width: 110px;
        height: 110px;
        margin: 0.5rem auto 1.75rem;
    }

    /* Paint Brush Background */
    .home_service-icon-bg {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        transition: all 0.5s ease;
    }

    .home_service-card:nth-child(1) .home_service-icon-bg {
        background: linear-gradient(145deg, rgba(76, 175, 80, 0.12), rgba(76, 175, 80, 0.05));
        box-shadow: inset 0 0 40px rgba(76, 175, 80, 0.08);
    }

    .home_service-card:nth-child(2) .home_service-icon-bg {
        background: linear-gradient(145deg, rgba(156, 39, 176, 0.12), rgba(156, 39, 176, 0.05));
        box-shadow: inset 0 0 40px rgba(156, 39, 176, 0.08);
    }

    .home_service-card:nth-child(3) .home_service-icon-bg {
        background: linear-gradient(145deg, rgba(255, 152, 0, 0.12), rgba(255, 152, 0, 0.05));
        box-shadow: inset 0 0 40px rgba(255, 152, 0, 0.08);
    }

    .home_service-card:nth-child(4) .home_service-icon-bg {
        background: linear-gradient(145deg, rgba(33, 150, 243, 0.12), rgba(33, 150, 243, 0.05));
        box-shadow: inset 0 0 40px rgba(33, 150, 243, 0.08);
    }

    /* Dashed Circle Animation */
    .home_service-icon-ring {
        position: absolute;
        inset: -8px;
        border: 2px dashed rgba(139, 90, 90, 0.15);
        border-radius: 50%;
        animation: spinRing 25s linear infinite;
    }

    @keyframes spinRing {
        to {
            transform: rotate(360deg);
        }
    }

    .home_service-card:hover .home_service-icon-ring {
        border-color: var(--artist-accent);
        animation-duration: 10s;
    }

    .home_service-icon {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.75rem;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .home_service-card:hover .home_service-icon {
        transform: scale(1.2) rotate(10deg);
    }

    .home_service-card:nth-child(1) .home_service-icon {
        color: #4CAF50;
    }

    .home_service-card:nth-child(2) .home_service-icon {
        color: #9C27B0;
    }

    .home_service-card:nth-child(3) .home_service-icon {
        color: #FF9800;
    }

    .home_service-card:nth-child(4) .home_service-icon {
        color: #2196F3;
    }

    .home_service-title {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }

    .home_service-card:hover .home_service-title {
        color: var(--artist-primary);
    }

    .home_service-desc {
        font-size: 1rem;
        color: #555;
        line-height: 1.85;
        margin-bottom: 1.25rem;
    }

    /* Feature Tags */
    .home_service-tags {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .home_service-tag {
        display: inline-block;
        padding: 0.4rem 1rem;
        background: linear-gradient(135deg, rgba(139, 90, 90, 0.08), rgba(212, 165, 116, 0.08));
        border-radius: 50px;
        font-size: 0.8125rem;
        font-weight: 600;
        color: var(--artist-primary);
        letter-spacing: 0.02em;
        transition: all 0.3s ease;
    }

    .home_service-card:hover .home_service-tag {
        background: linear-gradient(135deg, rgba(139, 90, 90, 0.15), rgba(212, 165, 116, 0.12));
        transform: translateY(-2px);
    }

    /* Decorative bottom line */
    .home_service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--artist-primary), var(--artist-accent));
        border-radius: 4px 4px 0 0;
        transition: width 0.5s ease;
    }

    .home_service-card:hover::after {
        width: 60%;
    }

    @media (max-width: 1200px) {
        .home_services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem 2rem;
        }

        .home_services-grid::before {
            display: none;
        }
    }

    @media (max-width: 640px) {
        .home_services-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }

        .home_services {
            padding: 5rem 0;
        }

        .home_service-card {
            padding: 2.5rem 1.5rem 2rem;
        }
    }

    /* ============================================
   FEATURED PRODUCTS - Elegant Clean Design
   ============================================ */

    .home_products {
        padding: 6rem 0;
        background: linear-gradient(135deg, #fdfbf9 0%, #ffffff 50%, #faf7f4 100%);
        position: relative;
        overflow: hidden;
    }

    /* Animated Background Orbs */
    .home_products::before {
        content: '';
        position: absolute;
        top: -20%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatOrb1 25s ease-in-out infinite;
        pointer-events: none;
    }

    .home_products::after {
        content: '';
        position: absolute;
        bottom: -15%;
        right: -8%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(139, 90, 90, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatOrb2 30s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes floatOrb1 {

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

        25% {
            transform: translate(50px, 30px) scale(1.05);
        }

        50% {
            transform: translate(20px, -40px) scale(0.95);
        }

        75% {
            transform: translate(-30px, 20px) scale(1.02);
        }
    }

    @keyframes floatOrb2 {

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

        33% {
            transform: translate(-40px, -30px) scale(1.08);
        }

        66% {
            transform: translate(30px, 50px) scale(0.92);
        }
    }

    /* Additional floating shapes */
    .home_products-bg-shape {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        opacity: 0.5;
    }

    .home_products-bg-shape--1 {
        top: 15%;
        right: 20%;
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), transparent);
        animation: floatShape 15s ease-in-out infinite;
    }

    .home_products-bg-shape--2 {
        bottom: 25%;
        left: 15%;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(139, 90, 90, 0.15), transparent);
        animation: floatShape 20s ease-in-out infinite reverse;
    }

    .home_products-bg-shape--3 {
        top: 40%;
        left: 8%;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, rgba(90, 123, 139, 0.12), transparent);
        animation: floatShape 18s ease-in-out infinite 2s;
    }

    @keyframes floatShape {

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

        50% {
            transform: translateY(-30px) rotate(180deg);
        }
    }

    .home_products-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .home_products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* Clean Product Card */
    .home_product-card {
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s ease;
        position: relative;
        border: 1px solid #f0ebe6;
    }

    .home_product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(139, 90, 90, 0.12);
        border-color: transparent;
    }

    /* Image */
    .home_product-image {
        position: relative;
        aspect-ratio: 1;
        background: linear-gradient(145deg, #faf8f6, #f5f0eb);
        overflow: hidden;
    }

    .home_product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .home_product-card:hover .home_product-image img {
        transform: scale(1.05);
    }

    /* Image Overlay */
    .home_product-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .home_product-card:hover .home_product-image::after {
        opacity: 1;
    }

    /* Badge */
    .home_product-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        padding: 0.4rem 0.875rem;
        background: var(--artist-primary);
        color: #ffffff;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        border-radius: 4px;
        z-index: 5;
    }

    /* Actions */
    .home_product-actions {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%) translateY(15px);
        display: flex;
        gap: 0.5rem;
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 10;
    }

    .home_product-card:hover .home_product-actions {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .home_product-action {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #ffffff;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #333;
        font-size: 0.9375rem;
        transition: all 0.3s ease;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .home_product-action:hover {
        background: var(--artist-primary);
        color: #ffffff;
        transform: scale(1.1);
    }

    /* Info */
    .home_product-info {
        padding: 1.25rem;
        text-align: center;
    }

    .home_product-name {
        font-family: var(--font-heading);
        font-size: 1.0625rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home_product-name a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .home_product-card:hover .home_product-name a {
        color: var(--artist-primary);
    }

    /* Price */
    .home_product-price {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .home_product-price-current {
        font-family: var(--font-heading);
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--artist-primary);
    }

    .home_product-price-old {
        font-size: 0.875rem;
        color: #999;
        text-decoration: line-through;
    }

    /* CTA */
    .home_products-cta {
        text-align: center;
        margin-top: 3rem;
    }

    .home_products-view-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        background: var(--artist-primary);
        border-radius: 50px;
        font-size: 0.9375rem;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.4s ease;
    }

    .home_products-view-btn:hover {
        background: #6B4444;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(139, 90, 90, 0.3);
    }

    .home_products-view-btn i {
        transition: transform 0.3s ease;
    }

    .home_products-view-btn:hover i {
        transform: translateX(4px);
    }

    @media (max-width: 1024px) {
        .home_products-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 640px) {
        .home_products-grid {
            grid-template-columns: 1fr;
            max-width: 340px;
            margin: 0 auto;
        }

        .home_products {
            padding: 4rem 0;
        }
    }

    /* ============================================
   ✨ QUOTE SECTION - Founder's Vision
   Futuristic creative animations
   ============================================ */

    .home_quote {
        padding: 9rem 0;
        background: linear-gradient(180deg, #FDF9F6 0%, #f5efe8 50%, #FDF9F6 100%);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* Floating Paint Palette - Creativity Symbol */
    .home_quote-palette {
        position: absolute;
        top: 15%;
        left: 8%;
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
        color: rgba(212, 165, 116, 0.4);
        animation: paletteFloat 8s ease-in-out infinite;
        z-index: 1;
    }

    @keyframes paletteFloat {

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

        50% {
            transform: translateY(-20px) rotate(15deg);
        }
    }

    /* Floating Brush - Art Symbol */
    .home_quote-brush {
        position: absolute;
        bottom: 20%;
        right: 10%;
        font-size: 2rem;
        color: rgba(139, 90, 90, 0.3);
        animation: brushFloat 10s ease-in-out infinite;
        z-index: 1;
    }

    @keyframes brushFloat {

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

        50% {
            transform: translate(-15px, -30px) rotate(10deg);
        }
    }

    /* Creativity Sparkles */
    .home_quote-spark {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--artist-accent);
        border-radius: 50%;
        z-index: 1;
        animation: sparkle 3s ease-in-out infinite;
    }

    .home_quote-spark--1 {
        top: 20%;
        left: 20%;
        animation-delay: 0s;
    }

    .home_quote-spark--2 {
        top: 30%;
        right: 25%;
        animation-delay: 0.5s;
    }

    .home_quote-spark--3 {
        bottom: 25%;
        left: 15%;
        animation-delay: 1s;
    }

    .home_quote-spark--4 {
        bottom: 35%;
        right: 18%;
        animation-delay: 1.5s;
    }

    .home_quote-spark--5 {
        top: 45%;
        left: 30%;
        animation-delay: 2s;
    }

    @keyframes sparkle {

        0%,
        100% {
            transform: scale(0);
            opacity: 0;
        }

        50% {
            transform: scale(1.5);
            opacity: 1;
        }
    }

    /* Flowing Gradient Lines - Transformation Symbol */
    .home_quote-flow {
        position: absolute;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.4), transparent);
        animation: flowLine 6s ease-in-out infinite;
        z-index: 1;
    }

    .home_quote-flow--1 {
        top: 25%;
        left: 5%;
        width: 100px;
        transform: rotate(-5deg);
        animation-delay: 0s;
    }

    .home_quote-flow--2 {
        bottom: 30%;
        right: 5%;
        width: 120px;
        transform: rotate(8deg);
        animation-delay: 2s;
    }

    @keyframes flowLine {

        0%,
        100% {
            opacity: 0.3;
            transform: translateX(0) scaleX(1);
        }

        50% {
            opacity: 0.7;
            transform: translateX(20px) scaleX(1.2);
        }
    }

    /* Mindfulness Circles - Inner Alignment */
    .home_quote-circle {
        position: absolute;
        border: 1px solid rgba(139, 90, 90, 0.1);
        border-radius: 50%;
        animation: circleExpand 8s ease-in-out infinite;
        z-index: 0;
    }

    .home_quote-circle--1 {
        top: 50%;
        left: 50%;
        width: 150px;
        height: 150px;
        transform: translate(-50%, -50%);
        animation-delay: 0s;
    }

    .home_quote-circle--2 {
        top: 50%;
        left: 50%;
        width: 250px;
        height: 250px;
        transform: translate(-50%, -50%);
        animation-delay: 2s;
    }

    .home_quote-circle--3 {
        top: 50%;
        left: 50%;
        width: 350px;
        height: 350px;
        transform: translate(-50%, -50%);
        animation-delay: 4s;
    }

    @keyframes circleExpand {

        0%,
        100% {
            transform: translate(-50%, -50%) scale(0.9);
            opacity: 0.1;
        }

        50% {
            transform: translate(-50%, -50%) scale(1.1);
            opacity: 0.3;
        }
    }

    /* Background Gradient Orbs */
    .home_quote::before {
        content: '';
        position: absolute;
        top: -80px;
        left: -80px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(139, 90, 90, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        animation: orbGlow 10s ease-in-out infinite;
    }

    .home_quote::after {
        content: '';
        position: absolute;
        bottom: -80px;
        right: -80px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.25) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        animation: orbGlow 12s ease-in-out infinite reverse;
    }

    @keyframes orbGlow {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.4;
        }

        50% {
            transform: scale(1.2);
            opacity: 0.6;
        }
    }

    .home_quote-container {
        position: relative;
        z-index: 5;
        max-width: 950px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Animated Quote Mark */
    .home_quote-mark {
        font-family: Georgia, serif;
        font-size: 10rem;
        line-height: 1;
        background: linear-gradient(135deg, var(--artist-primary), var(--artist-accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: 0.25;
        position: absolute;
        top: -4rem;
        left: 50%;
        transform: translateX(-50%);
        animation: quoteFloat 6s ease-in-out infinite;
    }

    @keyframes quoteFloat {

        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(-10px);
        }
    }

    .home_quote-text {
        font-family: var(--font-heading);
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        font-weight: 500;
        font-style: italic;
        color: #1a1a1a;
        line-height: 1.5;
        margin-bottom: 2.5rem;
        position: relative;
    }

    /* Highlight key words */
    .home_quote-text .highlight {
        color: var(--artist-primary);
        position: relative;
    }

    .home_quote-text .highlight::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0;
        right: 0;
        height: 8px;
        background: linear-gradient(90deg, rgba(212, 165, 116, 0.3), rgba(139, 90, 90, 0.2));
        z-index: -1;
        border-radius: 4px;
    }

    .home_quote-author {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.125rem;
        color: #666;
    }

    .home_quote-author-line {
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--artist-accent), var(--artist-primary));
        animation: lineGrow 4s ease-in-out infinite;
    }

    @keyframes lineGrow {

        0%,
        100% {
            width: 40px;
            opacity: 0.6;
        }

        50% {
            width: 60px;
            opacity: 1;
        }
    }

    .home_quote-author strong {
        font-family: var(--font-accent);
        font-size: 1.375rem;
        color: var(--artist-primary);
        position: relative;
    }

    /* Glowing effect on author name */
    .home_quote-author strong::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--artist-accent), transparent);
        border-radius: 50%;
        animation: authorGlow 3s ease-in-out infinite;
    }

    @keyframes authorGlow {

        0%,
        100% {
            opacity: 0.3;
        }

        50% {
            opacity: 0.8;
        }
    }

    @media (max-width: 768px) {

        .home_quote-palette,
        .home_quote-brush,
        .home_quote-spark,
        .home_quote-flow,
        .home_quote-circle {
            display: none;
        }

        .home_quote {
            padding: 6rem 0;
        }
    }

    /* ============================================
   🎨 BLOG SECTION - Artist's Journal
   Painter-style design with artistic elements
   ============================================ */

    .home_blog {
        padding: 8rem 0;
        background: #fffdf9;
        position: relative;
        overflow: hidden;
    }

    /* Watercolor Wash Background */
    .home_blog::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 300px;
        background: linear-gradient(180deg,
                rgba(212, 165, 116, 0.08) 0%,
                rgba(139, 90, 90, 0.05) 50%,
                transparent 100%);
        pointer-events: none;
    }

    /* Brush Stroke Decoration */
    .home_blog-brush {
        position: absolute;
        height: 6px;
        border-radius: 50%;
        pointer-events: none;
    }

    .home_blog-brush--1 {
        top: 8%;
        right: 10%;
        width: 120px;
        background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.4), transparent);
        transform: rotate(-8deg);
    }

    .home_blog-brush--2 {
        bottom: 15%;
        left: 8%;
        width: 100px;
        background: linear-gradient(90deg, transparent, rgba(139, 90, 90, 0.3), transparent);
        transform: rotate(12deg);
    }

    /* Paint Splatter Dots */
    .home_blog-splatter {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        opacity: 0.5;
    }

    .home_blog-splatter--1 {
        top: 12%;
        left: 15%;
        width: 8px;
        height: 8px;
        background: var(--artist-accent);
    }

    .home_blog-splatter--2 {
        top: 20%;
        right: 20%;
        width: 5px;
        height: 5px;
        background: var(--artist-primary);
    }

    .home_blog-splatter--3 {
        bottom: 25%;
        right: 12%;
        width: 6px;
        height: 6px;
        background: var(--artist-secondary);
    }

    .home_blog-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    /* Artistic Section Header */
    .home_blog .home_section-title::after {
        content: '✦';
        position: absolute;
        right: -2rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        color: var(--artist-accent);
        opacity: 0.6;
    }

    .home_blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    /* Artistic Blog Card - Like a Canvas */
    .home_blog-card {
        background: #ffffff;
        border-radius: 8px;
        overflow: visible;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        position: relative;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    }

    /* Canvas Frame Effect */
    .home_blog-card::before {
        content: '';
        position: absolute;
        inset: -6px;
        background: linear-gradient(135deg,
                rgba(212, 165, 116, 0.15),
                rgba(139, 90, 90, 0.1));
        border-radius: 12px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .home_blog-card:hover::before {
        opacity: 1;
    }

    .home_blog-card:hover {
        transform: translateY(-10px) rotate(-0.5deg);
        box-shadow: 0 25px 60px rgba(139, 90, 90, 0.15);
    }

    /* Image with Artistic Overlay */
    .home_blog-image {
        position: relative;
        aspect-ratio: 4/3;
        overflow: hidden;
        background: linear-gradient(135deg, #f5f0eb, #e8ddd4);
        border-radius: 8px 8px 0 0;
    }

    /* Paint Drip on Image */
    .home_blog-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 20%;
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, var(--artist-accent), transparent);
        border-radius: 0 0 50% 50%;
        z-index: 3;
        transition: height 0.6s ease;
    }

    .home_blog-card:hover .home_blog-image::before {
        height: 50px;
    }

    .home_blog-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0) 60%,
                rgba(0, 0, 0, 0.4) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .home_blog-card:hover .home_blog-image::after {
        opacity: 1;
    }

    .home_blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .home_blog-card:hover .home_blog-image img {
        transform: scale(1.08);
    }

    /* Handwritten-Style Category */
    .home_blog-category {
        position: absolute;
        bottom: -12px;
        left: 1.5rem;
        padding: 0.5rem 1rem;
        background: #ffffff;
        border: 2px solid rgba(139, 90, 90, 0.15);
        border-radius: 4px;
        font-family: var(--font-accent);
        font-size: 0.8125rem;
        color: var(--artist-primary);
        z-index: 4;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transform: rotate(-2deg);
    }

    /* Content Area with Notebook Style */
    .home_blog-content {
        padding: 2rem 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        position: relative;
    }

    /* Decorative Corner */
    .home_blog-content::after {
        content: '✎';
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        font-size: 1rem;
        color: var(--artist-accent);
        opacity: 0.4;
    }

    .home_blog-date {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-accent);
        font-size: 0.875rem;
        color: var(--artist-accent);
        margin-bottom: 0.75rem;
    }

    .home_blog-date i {
        font-size: 0.625rem;
    }

    .home_blog-title {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.4;
        margin-bottom: 0.75rem;
        transition: color 0.3s ease;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home_blog-card:hover .home_blog-title {
        color: var(--artist-primary);
    }

    .home_blog-excerpt {
        font-size: 0.9375rem;
        color: #666;
        line-height: 1.7;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Read More - Handwritten Style */
    .home_blog-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-accent);
        font-size: 1rem;
        color: var(--artist-primary);
        margin-top: auto;
        padding-top: 1rem;
    }

    .home_blog-link i {
        font-size: 0.75rem;
        transition: transform 0.3s ease;
    }

    .home_blog-card:hover .home_blog-link i {
        transform: translateX(5px);
    }

    /* CTA - Artistic Button */
    .home_blog-cta {
        text-align: center;
        margin-top: 4rem;
    }

    .home_blog-view-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2.5rem;
        background: transparent;
        border: 2px solid var(--artist-primary);
        border-radius: 4px;
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 600;
        color: var(--artist-primary);
        text-decoration: none;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .home_blog-view-btn::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 0;
        background: var(--artist-primary);
        transition: height 0.4s ease;
        z-index: -1;
    }

    .home_blog-view-btn:hover {
        color: #ffffff;
        transform: translateY(-3px);
    }

    .home_blog-view-btn:hover::before {
        height: 100%;
    }

    .home_blog-view-btn i {
        transition: transform 0.3s ease;
    }

    .home_blog-view-btn:hover i {
        transform: translateX(4px);
    }

    @media (max-width: 1024px) {
        .home_blog-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
    }

    @media (max-width: 640px) {
        .home_blog-grid {
            grid-template-columns: 1fr;
            max-width: 380px;
            margin: 0 auto;
        }

        .home_blog {
            padding: 5rem 0;
        }

        .home_blog-brush,
        .home_blog-splatter {
            display: none;
        }
    }

    /* ============================================
   🎨 CTA SECTION - Artist's Invitation
   Painter-style with animations and effects
   ============================================ */

    .home_cta {
        padding: 9rem 0;
        background: linear-gradient(145deg, #8B5A5A 0%, #6B4444 40%, #4a3030 100%);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* Canvas Texture */
    .home_cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        opacity: 0.04;
        pointer-events: none;
    }

    /* Artistic Color Wash */
    .home_cta::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse at 10% 40%, rgba(212, 165, 116, 0.3) 0%, transparent 50%),
            radial-gradient(ellipse at 90% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
            radial-gradient(ellipse at 50% 110%, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
        pointer-events: none;
    }

    /* Floating Animated Orbs */
    .home_cta-orb {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
    }

    .home_cta-orb--1 {
        top: 10%;
        left: 5%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
        animation: ctaOrb1 20s ease-in-out infinite;
    }

    .home_cta-orb--2 {
        bottom: 10%;
        right: 5%;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
        animation: ctaOrb2 25s ease-in-out infinite;
    }

    @keyframes ctaOrb1 {

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

        50% {
            transform: translate(40px, 30px) scale(1.15);
        }
    }

    @keyframes ctaOrb2 {

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

        50% {
            transform: translate(-30px, -40px);
        }
    }

    /* Brush Strokes */
    .home_cta-brush {
        position: absolute;
        height: 6px;
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
    }

    .home_cta-brush--1 {
        top: 15%;
        left: 10%;
        width: 180px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: rotate(-12deg);
    }

    .home_cta-brush--2 {
        bottom: 18%;
        right: 8%;
        width: 140px;
        background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.25), transparent);
        transform: rotate(8deg);
    }

    /* Paint Splatters with Animation */
    .home_cta-splatter {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
        animation: splatterPulse 4s ease-in-out infinite;
    }

    .home_cta-splatter--1 {
        top: 18%;
        right: 18%;
        width: 12px;
        height: 12px;
        background: rgba(212, 165, 116, 0.5);
        animation-delay: 0s;
    }

    .home_cta-splatter--2 {
        bottom: 22%;
        left: 15%;
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.25);
        animation-delay: 1.5s;
    }

    .home_cta-splatter--3 {
        top: 40%;
        left: 22%;
        width: 6px;
        height: 6px;
        background: rgba(212, 165, 116, 0.35);
        animation-delay: 3s;
    }

    @keyframes splatterPulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.5);
            opacity: 0.8;
        }
    }

    /* Star Decorations */
    .home_cta-star {
        position: absolute;
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.15);
        z-index: 1;
        animation: starTwinkle 3s ease-in-out infinite;
    }

    .home_cta-star--1 {
        top: 25%;
        right: 25%;
        animation-delay: 0s;
    }

    .home_cta-star--2 {
        bottom: 30%;
        left: 28%;
        font-size: 1rem;
        animation-delay: 1s;
    }

    @keyframes starTwinkle {

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

        50% {
            opacity: 0.4;
            transform: rotate(180deg);
        }
    }

    /* Container with Decorative Frame */
    .home_cta-container {
        position: relative;
        z-index: 5;
        max-width: 850px;
        margin: 0 auto;
        padding: 3rem;
    }

    /* Artistic Frame Around Content */
    .home_cta-container::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px dashed rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        pointer-events: none;
    }

    .home_cta-container::after {
        content: '✦';
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.25rem;
        color: var(--artist-accent);
        background: linear-gradient(135deg, #8B5A5A, #6B4444);
        padding: 0 1rem;
    }

    .home_cta-title {
        font-family: var(--font-heading);
        font-size: clamp(2.25rem, 5vw, 3.5rem);
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
        line-height: 1.2;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .home_cta-title span {
        color: var(--artist-accent);
        position: relative;
        display: inline-block;
    }

    .home_cta-title span::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: -5%;
        right: -5%;
        height: 10px;
        background: linear-gradient(90deg, transparent 10%, rgba(212, 165, 116, 0.35) 50%, transparent 90%);
        z-index: -1;
        border-radius: 50%;
    }

    .home_cta-desc {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 2.5rem;
        line-height: 1.8;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .home_cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    /* Enhanced Buttons */
    .home_cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.125rem 2.5rem;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

    .home_cta-btn--white {
        background: linear-gradient(135deg, #ffffff 0%, #f8f4f0 100%);
        color: var(--artist-primary);
        box-shadow:
            0 10px 40px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        border: 2px solid transparent;
        z-index: 1;
    }

    .home_cta-btn--white span,
    .home_cta-btn--white i,
    .home_cta-btn--white {
        position: relative;
    }

    .home_cta-btn--white>i,
    .home_cta-btn--white>span {
        position: relative;
        z-index: 5;
    }

    /* Shimmer Effect */
    .home_cta-btn--white::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
        transition: left 0.6s ease;
        z-index: 3;
    }

    .home_cta-btn--white:hover::before {
        left: 100%;
    }

    .home_cta-btn--white::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--artist-primary) 0%, var(--artist-accent-dark) 100%);
        border-radius: inherit;
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 0;
    }

    .home_cta-btn--white:hover {
        color: #ffffff;
        transform: translateY(-6px) scale(1.05);
        box-shadow:
            0 25px 60px rgba(139, 90, 90, 0.4),
            0 0 30px rgba(212, 165, 116, 0.3);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .home_cta-btn--white:hover::after {
        opacity: 1;
    }

    .home_cta-btn--ghost {
        background: transparent;
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.4);
    }

    .home_cta-btn--ghost::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.1);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s ease;
        z-index: -1;
    }

    .home_cta-btn--ghost:hover {
        border-color: #ffffff;
        transform: translateY(-5px);
    }

    .home_cta-btn--ghost:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .home_cta-btn i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .home_cta-btn:hover i {
        transform: translateX(4px) rotate(-5deg);
    }

    @media (max-width: 768px) {
        .home_cta-container {
            padding: 2rem 1.5rem;
        }

        .home_cta-container::before,
        .home_cta-container::after {
            display: none;
        }
    }

    @media (max-width: 640px) {
        .home_cta {
            padding: 5rem 0;
        }

        .home_cta-btn {
            padding: 1rem 2rem;
            width: 100%;
            justify-content: center;
        }

        .home_cta-orb,
        .home_cta-brush,
        .home_cta-splatter,
        .home_cta-star {
            display: none;
        }
    }

    /* ============================================
       💬 TESTIMONIAL SECTION - Artist Theme
       ============================================ */
    .home_testimonials {
        padding: 6rem 0;
        background: linear-gradient(180deg, #FAF7F5 0%, #F5EDE4 100%);
        position: relative;
        overflow: hidden;
    }

    /* Decorative Elements */
    .home_testimonials::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
        pointer-events: none;
    }

    .home_testimonials::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), transparent);
        pointer-events: none;
    }

    .home_testimonials-brush {
        position: absolute;
        height: 4px;
        border-radius: 50%;
        opacity: 0.5;
        pointer-events: none;
    }

    .home_testimonials-brush--1 {
        top: 15%;
        left: 5%;
        width: 120px;
        background: linear-gradient(90deg, transparent, var(--artist-accent), transparent);
        transform: rotate(-10deg);
    }

    .home_testimonials-brush--2 {
        bottom: 20%;
        right: 8%;
        width: 150px;
        background: linear-gradient(90deg, transparent, var(--artist-primary), transparent);
        transform: rotate(8deg);
    }

    .home_testimonials-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    /* Marquee Wrapper */
    .home_testimonials-marquee {
        margin-top: 3rem;
        overflow: visible;
        padding: 50px 0;
    }

    .home_testimonials-track {
        display: flex;
        gap: 2rem;
        width: max-content;
        animation: testimonialScroll 50s linear infinite;
        padding: 0 50px;
    }

    .home_testimonials-track:hover {
        animation-play-state: paused;
    }

    @keyframes testimonialScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Testimonial Card */
    .home_testimonial-card {
        width: 380px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.9);
        border-radius: 24px;
        padding: 2.5rem 2rem 2rem;
        position: relative;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: 0 10px 40px rgba(139, 90, 90, 0.08);
        flex-shrink: 0;
    }

    .home_testimonial-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 25px 60px rgba(139, 90, 90, 0.15);
    }

    /* Quote Icon */
    .home_testimonial-card::before {
        content: '"';
        position: absolute;
        top: -15px;
        left: 30px;
        font-family: Georgia, serif;
        font-size: 5rem;
        line-height: 1;
        color: var(--artist-accent);
        opacity: 0.3;
    }

    /* Avatar */
    .home_testimonial-avatar {
        position: absolute;
        top: -30px;
        right: 30px;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        border: 4px solid #ffffff;
        box-shadow: 0 8px 25px rgba(139, 90, 90, 0.2);
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .home_testimonial-card:hover .home_testimonial-avatar {
        transform: scale(1.1) rotate(5deg);
    }

    /* Content */
    .home_testimonial-content {
        margin-top: 1rem;
    }

    .home_testimonial-quote {
        font-size: 1.05rem;
        line-height: 1.75;
        color: #555;
        font-style: italic;
        margin-bottom: 1.5rem;
    }

    .home_testimonial-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .home_testimonial-author-line {
        width: 35px;
        height: 2px;
        background: linear-gradient(90deg, var(--artist-primary), var(--artist-accent));
        border-radius: 2px;
    }

    .home_testimonial-author-info h4 {
        font-family: var(--font-heading);
        font-size: 1.1rem;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0;
    }

    .home_testimonial-author-info span {
        font-size: 0.85rem;
        color: var(--artist-primary);
        font-weight: 500;
    }

    /* Stars */
    .home_testimonial-stars {
        display: flex;
        gap: 0.25rem;
        margin-bottom: 1rem;
    }

    .home_testimonial-stars i {
        color: var(--artist-accent);
        font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .home_testimonials {
            padding: 4rem 0;
        }

        .home_testimonial-card {
            width: 320px;
            padding: 2rem 1.5rem 1.5rem;
        }

        .home_testimonial-quote {
            font-size: 0.95rem;
        }
    }

    /* ============================================
    🎬 ANIMATION STYLES - Extracted from JS
    ============================================ */

    /* ===== ANIMATION BASE CLASSES ===== */
    .anim-hidden {
        opacity: 0 !important;
        visibility: hidden;
    }

    .anim-visible {
        opacity: 1 !important;
        visibility: visible;
    }

    /* ===== HERO ANIMATIONS ===== */
    .home_hero .home_hero-eyebrow {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_hero.animated .home_hero-eyebrow {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
    }

    .home_hero .home_hero-title {
        opacity: 0;
        transform: translateY(50px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_hero.animated .home_hero-title {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

    .home_hero .home_hero-title .line {
        display: block;
        opacity: 0;
        transform: translateY(40px) rotateX(20deg);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_hero.animated .home_hero-title .line:nth-child(1) {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        transition-delay: 0.4s;
    }

    .home_hero.animated .home_hero-title .line:nth-child(2) {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        transition-delay: 0.55s;
    }

    .home_hero.animated .home_hero-title .line:nth-child(3) {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        transition-delay: 0.7s;
    }

    .home_hero .home_hero-subtitle {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_hero.animated .home_hero-subtitle {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.8s;
    }

    .home_hero .home_hero-buttons {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .home_hero.animated .home_hero-buttons {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 1s;
    }

    .home_hero .home_hero-btn {
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .home_hero.animated .home_hero-btn:nth-child(1) {
        opacity: 1;
        transform: scale(1);
        transition-delay: 1.1s;
    }

    .home_hero.animated .home_hero-btn:nth-child(2) {
        opacity: 1;
        transform: scale(1);
        transition-delay: 1.25s;
    }

    .home_hero .home_hero-social {
        opacity: 0;
        transition: all 0.6s ease;
    }

    .home_hero.animated .home_hero-social {
        opacity: 1;
        transition-delay: 1.3s;
    }

    .home_hero .home_hero-social-link {
        opacity: 0;
        transform: translateY(20px) scale(0.5);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .home_hero.animated .home_hero-social-link:nth-child(1) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 1.4s;
    }

    .home_hero.animated .home_hero-social-link:nth-child(2) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 1.5s;
    }

    .home_hero.animated .home_hero-social-link:nth-child(3) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 1.6s;
    }

    .home_hero .home_hero-visual {
        opacity: 0;
        transform: translateX(80px) scale(0.9);
        transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_hero.animated .home_hero-visual {
        opacity: 1;
        transform: translateX(0) scale(1);
        transition-delay: 0.5s;
    }

    .home_hero .home_hero-float-element {
        opacity: 0;
        transform: scale(0) rotate(-20deg);
        transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .home_hero.animated .home_hero-float-element--1 {
        opacity: 1;
        transform: scale(1) rotate(0);
        transition-delay: 1.2s;
    }

    .home_hero.animated .home_hero-float-element--2 {
        opacity: 1;
        transform: scale(1) rotate(0);
        transition-delay: 1.4s;
    }

    /* ===== SECTION HEADERS ===== */
    .home_section-header {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .animated .home_section-header {
        opacity: 1;
        transform: translateY(0);
    }

    .home_section-brush {
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    }

    .animated .home_section-brush {
        opacity: 1;
        transform: scaleX(1);
    }

    .home_section-title {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    }

    .animated .home_section-title {
        opacity: 1;
        transform: translateY(0);
    }

    .home_section-subtitle {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    }

    .animated .home_section-subtitle {
        opacity: 1;
        transform: translateY(0);
    }

    /* ===== SERVICE CARDS ===== */
    .home_service-card {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_services.animated .home_service-card:nth-child(1) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 0.15s;
    }

    .home_services.animated .home_service-card:nth-child(2) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 0.3s;
    }

    .home_services.animated .home_service-card:nth-child(3) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 0.45s;
    }

    .home_services.animated .home_service-card:nth-child(4) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 0.6s;
    }

    /* Service card inner elements */
    .home_service-card .home_service-icon-wrap {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
        transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .home_services.animated .home_service-card:nth-child(1) .home_service-icon-wrap {
        opacity: 1;
        transform: scale(1) rotate(0);
        transition-delay: 0.4s;
    }

    .home_services.animated .home_service-card:nth-child(2) .home_service-icon-wrap {
        opacity: 1;
        transform: scale(1) rotate(0);
        transition-delay: 0.55s;
    }

    .home_services.animated .home_service-card:nth-child(3) .home_service-icon-wrap {
        opacity: 1;
        transform: scale(1) rotate(0);
        transition-delay: 0.7s;
    }

    .home_services.animated .home_service-card:nth-child(4) .home_service-icon-wrap {
        opacity: 1;
        transform: scale(1) rotate(0);
        transition-delay: 0.85s;
    }

    /* ===== PRODUCT CARDS ===== */
    .home_product-card {
        opacity: 0;
        transform: translateY(50px) scale(0.85);
        transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_products.animated .home_product-card:nth-child(1) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 0.1s;
    }

    .home_products.animated .home_product-card:nth-child(2) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 0.18s;
    }

    .home_products.animated .home_product-card:nth-child(3) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 0.26s;
    }

    .home_products.animated .home_product-card:nth-child(4) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 0.34s;
    }

    .home_products.animated .home_product-card:nth-child(5) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 0.42s;
    }

    .home_products.animated .home_product-card:nth-child(6) {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition-delay: 0.5s;
    }

    .home_products-cta {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_products.animated .home_products-cta {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.7s;
    }

    /* ===== QUOTE SECTION ===== */
    .home_quote-container {
        opacity: 0;
        transform: scale(0.85) translateY(60px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_quote.animated .home_quote-container {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    .home_quote-mark {
        opacity: 0;
        transform: scale(0) rotate(-30deg);
        transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
    }

    .home_quote.animated .home_quote-mark {
        opacity: 1;
        transform: scale(1) rotate(0);
    }

    .home_quote-text {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease 0.4s;
    }

    .home_quote.animated .home_quote-text {
        opacity: 1;
        transform: translateY(0);
    }

    .home_quote-text .highlight {
        opacity: 0;
        display: inline-block;
        transform: translateY(10px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_quote.animated .home_quote-text .highlight:nth-of-type(1) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }

    .home_quote.animated .home_quote-text .highlight:nth-of-type(2) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.75s;
    }

    .home_quote.animated .home_quote-text .highlight:nth-of-type(3) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.9s;
    }

    .home_quote-author {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.7s ease 0.8s;
    }

    .home_quote.animated .home_quote-author {
        opacity: 1;
        transform: translateX(0);
    }

    /* Quote floating elements */
    .home_quote-palette,
    .home_quote-brush {
        opacity: 0;
        transform: scale(0) rotate(30deg);
        transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .home_quote.animated .home_quote-palette {
        opacity: 1;
        transform: scale(1) rotate(0);
        transition-delay: 0.5s;
    }

    .home_quote.animated .home_quote-brush {
        opacity: 1;
        transform: scale(1) rotate(0);
        transition-delay: 0.7s;
    }

    /* ===== BLOG CARDS ===== */
    .home_blog-card {
        opacity: 0;
        transform: translateY(50px) rotate(-3deg);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_blog.animated .home_blog-card:nth-child(1) {
        opacity: 1;
        transform: translateY(0) rotate(0);
        transition-delay: 0.15s;
    }

    .home_blog.animated .home_blog-card:nth-child(2) {
        opacity: 1;
        transform: translateY(0) rotate(0);
        transition-delay: 0.3s;
    }

    .home_blog.animated .home_blog-card:nth-child(3) {
        opacity: 1;
        transform: translateY(0) rotate(0);
        transition-delay: 0.45s;
    }

    .home_blog.animated .home_blog-card:nth-child(4) {
        opacity: 1;
        transform: translateY(0) rotate(0);
        transition-delay: 0.6s;
    }

    .home_blog.animated .home_blog-card:nth-child(5) {
        opacity: 1;
        transform: translateY(0) rotate(0);
        transition-delay: 0.75s;
    }

    .home_blog.animated .home_blog-card:nth-child(6) {
        opacity: 1;
        transform: translateY(0) rotate(0);
        transition-delay: 0.9s;
    }

    .home_blog-cta {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.7s ease 0.6s;
    }

    .home_blog.animated .home_blog-cta {
        opacity: 1;
        transform: translateY(0);
    }

    /* ===== TESTIMONIALS ANIMATION ===== */
    .home_testimonials .home_section-header {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_testimonials.animated .home_section-header {
        opacity: 1;
        transform: translateY(0);
    }

    .home_testimonials-marquee {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    }

    .home_testimonials.animated .home_testimonials-marquee {
        opacity: 1;
        transform: translateX(0);
    }

    /* ===== CTA SECTION ANIMATION ===== */
    .home_cta-container {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home_cta.animated .home_cta-container {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .home_cta-title {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    }

    .home_cta.animated .home_cta-title {
        opacity: 1;
        transform: translateY(0);
    }

    .home_cta-title span {
        display: inline-block;
        opacity: 0;
        transform: scale(1.3) rotate(-5deg);
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
    }

    .home_cta.animated .home_cta-title span {
        opacity: 1;
        transform: scale(1) rotate(0);
    }

    .home_cta-desc {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.7s ease 0.4s;
    }

    .home_cta.animated .home_cta-desc {
        opacity: 1;
        transform: translateY(0);
    }

    .home_cta-buttons {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
    }

    .home_cta.animated .home_cta-buttons {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .home_cta-btn {
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .home_cta.animated .home_cta-btn:nth-child(1) {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0.7s;
    }

    .home_cta.animated .home_cta-btn:nth-child(2) {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0.85s;
    }

    /* CTA floating decorations */
    .home_cta-orb,
    .home_cta-brush,
    .home_cta-splatter,
    .home_cta-star {
        opacity: 0;
        transform: scale(0);
        transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .home_cta.animated .home_cta-orb {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0.3s;
    }

    .home_cta.animated .home_cta-brush {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0.4s;
    }

    .home_cta.animated .home_cta-splatter {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0.5s;
    }

    .home_cta.animated .home_cta-star {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0.6s;
    }

    /* ===== HOVER ENHANCEMENTS ===== */
    .home_service-card,
    .home_product-card,
    .home_blog-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .home_service-card:hover,
    .home_product-card:hover,
    .home_blog-card:hover {
        transform: translateY(-10px) scale(1.02) !important;
        box-shadow: 0 25px 50px -12px rgba(139, 90, 90, 0.25);
    }

    /* ===== REDUCED MOTION ===== */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            transition-duration: 0.001s !important;
            animation-duration: 0.001s !important;
        }
    }