/* =========================================
           HERO SECTION: GRAPHIC DESIGN (CHARCOAL & RED)
           ========================================= */
        .graphic-hero-section {
            position: relative;
            background: radial-gradient(circle at 30% 50%, #4a4244 0%, #000000 90%) !important;
            background-color: #000 !important;
            min-height: 85vh; /* Or change to 70vh if you want it shorter */
            padding: 60px 0;
            display: flex;
            align-items: center;
            overflow: hidden;
            perspective: 1500px;
        }

        /* Ensure content stays above the animated background */
        .graphic-hero-section .container {
            position: relative;
            z-index: 5; 
        }

        /* Abstract Paint Stroke Background */
        .graphic-hero-section::before {
            content: '';
            position: absolute;
            top: -20%; left: -20%; width: 140%; height: 140%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(235, 30, 36, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(35, 31, 32, 0.15) 0%, transparent 40%);
            filter: blur(60px);
            z-index: 0;
            animation: fluidMovement 20s infinite alternate ease-in-out;
            pointer-events: none;
        }

        @keyframes fluidMovement {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.1) translate(5%, -5%); }
        }

        /* =========================================
           LEFT CONTENT: CREATIVE MESSAGING
           ========================================= */
        .hero-content { position: relative; z-index: 10; padding-right: 30px; }

        .graphic-hero-section .premium-tag {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 16px;
            background: rgba(235, 30, 36, 0.1);
            border: 1px solid rgba(235, 30, 36, 0.3);
            border-radius: 50px;
            color: var(--secondary-color); /* Red */
            font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
            margin-bottom: 25px;
            backdrop-filter: blur(5px);
            opacity: 0; animation: fadeUp 0.8s ease-out forwards;
        }

        .graphic-hero-section h1 {
            font-size: 4rem; 
            font-weight: 800; 
            line-height: 1.15; 
            margin-bottom: 25px; 
            color: #fff !important; /* Force white text */
            opacity: 0; animation: fadeUp 0.8s ease-out 0.2s forwards;
        }
        
        .graphic-hero-section .gold-text {
            background: linear-gradient(135deg, #eb1e24 0%, #ff4d4d 100%);
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }
        
        /* Subtle shine on gradient text */
        .graphic-hero-section .gold-text::after {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
            transform: skewX(-20deg);
            animation: textShine 4s infinite;
            mix-blend-mode: overlay;
        }
        @keyframes textShine { 0%, 50% { left: -100%; } 100% { left: 200%; } }

        .graphic-hero-section .lead-text {
            font-size: 1.2rem; 
            color: rgba(255,255,255,0.7) !important; 
            margin-bottom: 40px; 
            max-width: 600px; 
            line-height: 1.7;
            opacity: 0; animation: fadeUp 0.8s ease-out 0.4s forwards;
        }

        /* --- SERVICE RIBBON --- */
        .graphic-hero-section .service-ribbon {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 40px;
            opacity: 0; animation: fadeUp 0.8s ease-out 0.6s forwards;
        }

        .graphic-hero-section .service-tile {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            transition: 0.3s ease;
            cursor: default;
        }
        
        .graphic-hero-section .service-tile:hover {
            background: rgba(255,255,255,0.08);
            border-color: var(--secondary-color); /* Red hover border */
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .graphic-hero-section .tile-icon {
            font-size: 20px;
            color: var(--secondary-color); /* Red icons */
            margin-bottom: 10px;
            display: block;
        }

        .graphic-hero-section .tile-name {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
        }

        /* Buttons */
        .graphic-hero-section .btn-glow {
            position: relative;
            background: var(--secondary-color); /* Red button */
            color: #fff !important;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 10px;
            transition: 0.3s;
            border: none;
            box-shadow: 0 0 20px rgba(235, 30, 36, 0.4); /* Red glow */
            overflow: hidden;
            opacity: 0; animation: fadeUp 0.8s ease-out 0.8s forwards;
        }
        .graphic-hero-section .btn-glow:hover { transform: translateY(-3px); background: #fff; color: var(--secondary-color) !important; }

        .graphic-hero-section .btn-outline {
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff !important;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            margin-left: 15px;
            transition: 0.3s;
            opacity: 0; animation: fadeUp 0.8s ease-out 0.8s forwards;
        }
        .graphic-hero-section .btn-outline:hover { background: rgba(255,255,255,0.05); border-color: #fff; }

        @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* =========================================
           RIGHT VISUAL: THE CANVAS OF CREATIVITY
           ========================================= */
        .visual-wrapper {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1200px;
            z-index: 5;
        }

        .creative-stage {
            position: relative;
            width: 500px; height: 500px;
            transform-style: preserve-3d;
            animation: floatStage 8s ease-in-out infinite;
        }
        @keyframes floatStage { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

        /* 1. The Main Canvas (Floating Glass Board) */
        .main-canvas {
            position: absolute;
            top: 50%; left: 50%;
            width: 320px; height: 420px;
            transform: translate(-50%, -50%) rotateY(-15deg);
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 16px;
            box-shadow: -20px 20px 60px rgba(0,0,0,0.6), inset 0 0 20px rgba(255,255,255,0.05);
            display: flex; align-items: center; justify-content: center;
            transform-style: preserve-3d;
            z-index: 5;
        }
        
        /* The Artwork forming on the canvas */
        .artwork-core {
            width: 150px; height: 150px;
            border-radius: 30px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); /* Charcoal to Red */
            box-shadow: 0 0 40px rgba(235, 30, 36, 0.4);
            transform: translateZ(40px);
            animation: morphShape 10s infinite alternate;
        }
        @keyframes morphShape {
            0% { border-radius: 30px; transform: translateZ(40px) rotate(0deg); }
            50% { border-radius: 50%; transform: translateZ(60px) rotate(45deg); background: linear-gradient(45deg, #8b1014, #ff4d4d); }
            100% { border-radius: 10px; transform: translateZ(40px) rotate(90deg); background: linear-gradient(45deg, #4a4244, var(--primary-color)); }
        }

        /* 2. Floating Design Tools/Elements */
        .tool-element {
            position: absolute;
            background: rgba(20, 20, 20, 0.9);
            border: 1px solid rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 15px;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 15px 30px rgba(0,0,0,0.5);
            transform-style: preserve-3d;
        }

        /* Color Palette */
        .tool-palette {
            top: 10%; right: -20px;
            width: 140px; height: 60px;
            transform: translateZ(80px) rotateY(-10deg);
            display: flex; gap: 8px;
            animation: floatTool1 6s infinite ease-in-out;
        }
        .color-swatch { flex: 1; height: 100%; border-radius: 6px; }
        .cs-1 { background: var(--primary-color); } /* Charcoal */
        .cs-2 { background: var(--secondary-color); } /* Red */
        .cs-3 { background: #8b1014; } /* Dark Red */
        .cs-4 { background: #fff; } /* White */

        /* Typography/Font Node */
        .tool-type {
            bottom: 20%; left: -40px;
            width: 80px; height: 80px;
            transform: translateZ(100px) rotateY(20deg);
            font-family: 'Playfair Display', serif;
            font-size: 40px; font-weight: 700; color: #fff;
            animation: floatTool2 7s infinite ease-in-out;
            border-left: 3px solid var(--secondary-color); /* Red edge */
        }

        /* Vector Node/Pen Tool */
        .tool-vector {
            top: 40%; left: -20px;
            width: 60px; height: 60px;
            transform: translateZ(-40px) rotateY(15deg);
            color: var(--secondary-color); /* Red Icon */
            font-size: 24px;
            animation: floatTool3 5s infinite ease-in-out;
        }

        /* Layout Grid */
        .tool-grid {
            bottom: 10%; right: -10px;
            width: 100px; height: 100px;
            transform: translateZ(60px) rotateY(-25deg);
            display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 10px;
            animation: floatTool1 8s infinite ease-in-out reverse;
        }
        .grid-box { background: rgba(255,255,255,0.1); border-radius: 4px; }
        .grid-box:first-child { background: var(--secondary-color); } /* Red Box */

        @keyframes floatTool1 { 0%, 100% { transform: translateZ(80px) rotateY(-10deg) translateY(0); } 50% { transform: translateZ(80px) rotateY(-10deg) translateY(-15px); } }
        @keyframes floatTool2 { 0%, 100% { transform: translateZ(100px) rotateY(20deg) translateY(0); } 50% { transform: translateZ(100px) rotateY(20deg) translateY(20px); } }
        @keyframes floatTool3 { 0%, 100% { transform: translateZ(-40px) rotateY(15deg) translateY(0); } 50% { transform: translateZ(-40px) rotateY(15deg) translateY(-10px); } }

        /* Floating Badge */
        .design-badge {
            position: absolute;
            top: -20px; left: 50%; transform: translateX(-50%) translateZ(120px);
            background: #fff; color: #000;
            padding: 8px 16px; border-radius: 6px;
            font-weight: 700; font-size: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            white-space: nowrap;
            animation: floatBadge 4s infinite ease-in-out;
        }
        @keyframes floatBadge { 0%, 100% { transform: translateX(-50%) translateZ(120px) translateY(0); } 50% { transform: translateX(-50%) translateZ(120px) translateY(-10px); } }

        /* =========================================
           RESPONSIVE QUERIES FOR HERO
           ========================================= */
        @media (max-width: 991px) {
            .graphic-hero-section { flex-direction: column; text-align: center; padding-top: 120px; height: auto; }
            .hero-content { padding-right: 0; margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; }
            .graphic-hero-section h1 { font-size: 3rem; }
            
            /* Responsive Ribbon */
            .graphic-hero-section .service-ribbon { grid-template-columns: repeat(2, 1fr); width: 100%; max-width: 400px; }
            
            .visual-wrapper { height: 500px; width: 100%; perspective: 800px; }
            .creative-stage { transform: scale(0.8); }
            .main-canvas { transform: translate(-50%, -50%) rotateY(0deg); }
            
            .tool-palette { right: -10px; }
            .tool-type { left: -10px; }
        }

        @media (max-width: 576px) {
            .graphic-hero-section h1 { font-size: 2.2rem; }
            .graphic-hero-section .service-ribbon { grid-template-columns: 1fr 1fr; gap: 10px; }
            .creative-stage { transform: scale(0.65); }
            .graphic-hero-section .btn-glow, .graphic-hero-section .btn-outline { width: 100%; justify-content: center; }
            .graphic-hero-section .btn-outline { margin-left: 0; margin-top: 15px; }
        }