/* ================================
   GRAPHIC DESIGN HERO SECTION
   ================================ */

/* Root Variables for Hero Section */
:root {
    --graphics-hero-red: #E50914;
    --graphics-hero-red-dark: #B81D24;
    --graphics-hero-ink: #0a0a0a;
    --graphics-hero-ice: #F5F5F1;
    --graphics-hero-glow: rgba(229, 9, 20, 0.6);
    --graphics-hero-gray: #808080;
    --graphics-hero-gray-light: #cccccc;
}

/* Main Section */
.graphics-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--graphics-hero-ink);
    overflow: hidden;
    padding: 140px 20px 80px;
}

/* Background Elements */
.graphics-hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Animated Glows */
.graphics-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: graphics-hero-pulse 8s ease-in-out infinite;
}

.graphics-hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--graphics-hero-glow) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.graphics-hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--graphics-hero-glow) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: 4s;
}

.graphics-hero-gradient-orb {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(229, 9, 20, 0.08) 0%, transparent 60%);
    animation: graphics-hero-rotate 30s linear infinite;
}

@keyframes graphics-hero-pulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.1);
    }
}

@keyframes graphics-hero-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Parallax Background */
.graphics-hero-parallax-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/graphics-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.graphics-hero-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
                                rgba(10, 10, 10, 0.95) 0%, 
                                rgba(10, 10, 10, 0.85) 50%,
                                rgba(10, 10, 10, 0.95) 100%);
}

/* Floating Badge */
.graphics-hero-floating-badge {
    position: absolute;
    top: 120px;
    right: 80px;
    width: 120px;
    height: 120px;
    animation: graphics-hero-float 6s ease-in-out infinite;
    z-index: 1;
}

.graphics-hero-badge-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border: 2px solid rgba(229, 9, 20, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.graphics-hero-badge-icon svg {
    width: 60px;
    height: 60px;
    color: var(--graphics-hero-red);
    animation: graphics-hero-icon-spin 20s linear infinite;
}

@keyframes graphics-hero-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes graphics-hero-icon-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Container */
.graphics-hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.graphics-hero-breadcrumb {
    margin-bottom: 40px;
    opacity: 0;
    animation: graphics-hero-fade-in 0.8s ease forwards;
}

.graphics-hero-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.graphics-hero-breadcrumb-item {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
}

.graphics-hero-breadcrumb-link {
    color: var(--graphics-hero-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.graphics-hero-breadcrumb-link:hover {
    color: var(--graphics-hero-red);
}

.graphics-hero-breadcrumb-separator svg {
    width: 16px;
    height: 16px;
    color: var(--graphics-hero-gray);
}

.graphics-hero-breadcrumb-current span {
    color: var(--graphics-hero-ice);
    font-weight: 500;
}

/* Hero Content */
.graphics-hero-content {
    max-width: 900px;
}

/* Headline */
.graphics-hero-headline-wrapper {
    margin-bottom: 30px;
    overflow: hidden;
}

.graphics-hero-headline {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--graphics-hero-ice);
    margin: 0;
    line-height: 1;
    letter-spacing: -0.04em;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.graphics-hero-headline-line {
    display: block;
    opacity: 0;
    transform: translateY(100%);
}

.graphics-hero-headline-line-1 {
    animation: graphics-hero-slide-up 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.graphics-hero-headline-line-2 {
    background: linear-gradient(135deg, var(--graphics-hero-red) 0%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: graphics-hero-slide-up 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

@keyframes graphics-hero-slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes graphics-hero-fade-in {
    to {
        opacity: 1;
    }
}

/* Subheadline */
.graphics-hero-subheadline {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--graphics-hero-gray-light);
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 700px;
    opacity: 0;
    animation: graphics-hero-fade-in 1s ease 0.6s forwards;
}

/* CTA Buttons */
.graphics-hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    opacity: 0;
    animation: graphics-hero-fade-in 1s ease 0.8s forwards;
}

.graphics-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.graphics-hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.graphics-hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.graphics-hero-btn-primary {
    background: linear-gradient(135deg, var(--graphics-hero-red) 0%, var(--graphics-hero-red-dark) 100%);
    color: var(--graphics-hero-ice);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.3);
}

.graphics-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(229, 9, 20, 0.4);
}

.graphics-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--graphics-hero-ice);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.graphics-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--graphics-hero-red);
    transform: translateY(-3px);
}

.graphics-hero-btn-text {
    position: relative;
    z-index: 1;
}

.graphics-hero-btn-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.graphics-hero-btn:hover .graphics-hero-btn-icon {
    transform: translateX(4px);
}

.graphics-hero-btn-secondary:hover .graphics-hero-btn-icon {
    transform: translateY(4px);
}

/* Stats Bar */
.graphics-hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: graphics-hero-fade-in 1s ease 1s forwards;
}

.graphics-hero-stat-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.graphics-hero-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.graphics-hero-stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--graphics-hero-red);
}

.graphics-hero-stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.graphics-hero-stat-number {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--graphics-hero-ice);
    line-height: 1;
}

.graphics-hero-stat-unit {
    font-size: 0.7em;
    font-weight: 600;
    margin-left: 2px;
}

.graphics-hero-stat-label {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: var(--graphics-hero-gray);
    font-weight: 500;
}

.graphics-hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
}

/* Decorative Shapes */
.graphics-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.graphics-hero-shape {
    position: absolute;
    border: 2px solid rgba(229, 9, 20, 0.2);
    border-radius: 20% 80% 60% 40% / 50% 70% 30% 50%;
}

.graphics-hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 15%;
    left: 10%;
    animation: graphics-hero-morph 15s ease-in-out infinite;
    opacity: 0.3;
}

.graphics-hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    animation: graphics-hero-morph 20s ease-in-out infinite reverse;
    opacity: 0.2;
}

.graphics-hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 5%;
    animation: graphics-hero-morph 12s ease-in-out infinite;
    opacity: 0.25;
}

@keyframes graphics-hero-morph {
    0%, 100% {
        border-radius: 20% 80% 60% 40% / 50% 70% 30% 50%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 80% 20% 40% 60% / 70% 30% 70% 50%;
        transform: rotate(180deg);
    }
}

/* Scroll Indicator */
.graphics-hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: graphics-hero-fade-in 1s ease 1.5s forwards, 
               graphics-hero-bounce 2s ease-in-out 2s infinite;
}

.graphics-hero-scroll-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    color: var(--graphics-hero-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.graphics-hero-scroll-icon {
    width: 24px;
    height: 24px;
    color: var(--graphics-hero-red);
}

.graphics-hero-scroll-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes graphics-hero-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .graphics-hero-floating-badge {
        right: 40px;
        width: 100px;
        height: 100px;
    }

    .graphics-hero-badge-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .graphics-hero-section {
        padding: 120px 20px 60px;
        min-height: 80vh;
    }

    .graphics-hero-floating-badge {
        top: 100px;
        right: 20px;
        width: 80px;
        height: 80px;
    }

    .graphics-hero-badge-icon svg {
        width: 40px;
        height: 40px;
    }

    .graphics-hero-breadcrumb {
        margin-bottom: 30px;
    }

    .graphics-hero-cta-buttons {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .graphics-hero-btn {
        width: 100%;
        justify-content: center;
    }

    .graphics-hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .graphics-hero-stat-divider {
        display: none;
    }

    .graphics-hero-shape {
        display: none;
    }

    .graphics-hero-scroll-indicator {
        bottom: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .graphics-hero-glow,
    .graphics-hero-gradient-orb,
    .graphics-hero-floating-badge,
    .graphics-hero-badge-icon svg,
    .graphics-hero-headline-line,
    .graphics-hero-btn,
    .graphics-hero-shape,
    .graphics-hero-scroll-indicator {
        animation: none;
    }
}

/* ================================
   GRAPHIC DESIGN DESCRIPTION SECTION
   ================================ */

/* Root Variables */
:root {
    --red: #E50914;
    --red-dark: #B81D24;
    --ink: #0a0a0a;
    --ice: #F5F5F1;
    --glow: rgba(229, 9, 20, 0.6);
}

/* Section Container */
.gfx-desc-section {
    position: relative;
    background: var(--ink);
    padding: 140px 20px;
    overflow: hidden;
}

/* Background Elements */
.gfx-desc-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gfx-desc-grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(229, 9, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(229, 9, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.gfx-desc-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.gfx-desc-glow-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: gfx-desc-pulse 10s ease-in-out infinite;
}

.gfx-desc-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: gfx-desc-pulse 10s ease-in-out infinite 5s;
}

@keyframes gfx-desc-pulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.15);
    }
}

/* Main Container */
.gfx-desc-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content Column */
.gfx-desc-content {
    opacity: 0;
    animation: gfx-desc-slide-in-left 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Section Label */
.gfx-desc-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 100px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.gfx-desc-label-dot {
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    animation: gfx-desc-pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--glow);
}

@keyframes gfx-desc-pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.gfx-desc-label-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ice);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Heading */
.gfx-desc-heading {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ice);
    margin: 0 0 36px 0;
    letter-spacing: -0.03em;
}

.gfx-desc-gradient-text {
    background: linear-gradient(135deg, var(--red) 0%, #FF6B6B 50%, #FFB6C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Description Text */
.gfx-desc-text {
    margin-bottom: 48px;
}

.gfx-desc-paragraph {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(245, 245, 241, 0.7);
    margin: 0 0 24px 0;
    font-weight: 400;
}

.gfx-desc-paragraph:last-child {
    margin-bottom: 0;
}

/* Benefits Grid */
.gfx-desc-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gfx-desc-benefit-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gfx-desc-benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gfx-desc-benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gfx-desc-benefit-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: 0 20px 60px rgba(229, 9, 20, 0.2);
}

.gfx-desc-benefit-card:hover::before,
.gfx-desc-benefit-card:hover::after {
    opacity: 1;
}

.gfx-desc-benefit-icon-wrap {
    position: relative;
    z-index: 1;
}

.gfx-desc-benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 14px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.gfx-desc-benefit-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--red), transparent);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.gfx-desc-benefit-card:hover .gfx-desc-benefit-icon {
    background: rgba(229, 9, 20, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.gfx-desc-benefit-card:hover .gfx-desc-benefit-icon::before {
    opacity: 0.5;
}

.gfx-desc-benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--red);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gfx-desc-benefit-card:hover .gfx-desc-benefit-icon svg {
    transform: scale(1.1);
}

.gfx-desc-benefit-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.gfx-desc-benefit-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ice);
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.gfx-desc-benefit-desc {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9375rem;
    color: rgba(245, 245, 241, 0.6);
    margin: 0;
    line-height: 1.6;
}

/* Visual Column */
.gfx-desc-visual {
    position: relative;
    opacity: 0;
    animation: gfx-desc-slide-in-right 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.gfx-desc-showcase-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gfx-desc-showcase-card:hover {
    transform: scale(1.02);
}

.gfx-desc-img-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.gfx-desc-img-glow {
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle at center, rgba(229, 9, 20, 0.4) 0%, transparent 60%);
    animation: gfx-desc-rotate-glow 20s linear infinite;
    opacity: 0.6;
}

.gfx-desc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gfx-desc-showcase-card:hover .gfx-desc-img {
    transform: scale(1.05);
}

/* Floating Badge */
.gfx-desc-floating-badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 20px;
    z-index: 10;
    animation: gfx-desc-float-badge 4s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.gfx-desc-badge-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.15);
    border-radius: 12px;
}

.gfx-desc-badge-icon svg {
    width: 22px;
    height: 22px;
    color: var(--red);
}

.gfx-desc-badge-number {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--ice);
    line-height: 1;
    letter-spacing: -0.02em;
}

.gfx-desc-badge-label {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8125rem;
    color: rgba(245, 245, 241, 0.6);
    margin-top: 4px;
    font-weight: 500;
}

/* Corner Accents */
.gfx-desc-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(229, 9, 20, 0.4);
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gfx-desc-corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 28px 0 0 0;
}

.gfx-desc-corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 28px 0;
}

.gfx-desc-showcase-card:hover .gfx-desc-corner {
    width: 80px;
    height: 80px;
    border-color: var(--red);
}

/* Decorative Circles */
.gfx-desc-deco-circle {
    position: absolute;
    border: 2px solid rgba(229, 9, 20, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.gfx-desc-deco-1 {
    width: 250px;
    height: 250px;
    top: -60px;
    right: -60px;
    animation: gfx-desc-rotate-slow 25s linear infinite;
}

.gfx-desc-deco-2 {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -50px;
    animation: gfx-desc-rotate-slow 30s linear infinite reverse;
}

/* Animations */
@keyframes gfx-desc-slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gfx-desc-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gfx-desc-float-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes gfx-desc-rotate-glow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes gfx-desc-rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gfx-desc-container {
        gap: 80px;
    }
}

@media (max-width: 1024px) {
    .gfx-desc-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .gfx-desc-benefits {
        grid-template-columns: 1fr;
    }

    .gfx-desc-visual {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .gfx-desc-section {
        padding: 100px 20px;
    }

    .gfx-desc-container {
        gap: 50px;
    }

    .gfx-desc-heading {
        font-size: 2.25rem;
        margin-bottom: 28px;
    }

    .gfx-desc-text {
        margin-bottom: 40px;
    }

    .gfx-desc-benefit-card {
        padding: 24px;
    }

    .gfx-desc-benefit-icon {
        width: 50px;
        height: 50px;
    }

    .gfx-desc-benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .gfx-desc-floating-badge {
        bottom: 24px;
        right: 24px;
        padding: 16px 20px;
        gap: 12px;
    }

    .gfx-desc-badge-icon {
        width: 40px;
        height: 40px;
    }

    .gfx-desc-badge-icon svg {
        width: 20px;
        height: 20px;
    }

    .gfx-desc-badge-number {
        font-size: 1.5rem;
    }

    .gfx-desc-deco-circle {
        display: none;
    }
}

@media (max-width: 480px) {
    .gfx-desc-section {
        padding: 80px 16px;
    }

    .gfx-desc-benefit-card {
        flex-direction: column;
        gap: 16px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .gfx-desc-content,
    .gfx-desc-visual,
    .gfx-desc-benefit-card,
    .gfx-desc-showcase-card,
    .gfx-desc-glow-orb,
    .gfx-desc-label-dot,
    .gfx-desc-floating-badge,
    .gfx-desc-img-glow,
    .gfx-desc-deco-circle {
        animation: none !important;
        transition: none !important;
    }

    .gfx-desc-content,
    .gfx-desc-visual {
        opacity: 1;
    }

    .gfx-desc-benefit-card:hover,
    .gfx-desc-showcase-card:hover {
        transform: none;
    }
}

/* ================================
   GRAPHIC DESIGN SUB-SERVICES SECTION
   ================================ */

/* Root Variables */
:root {
    --red: #E50914;
    --red-dark: #B81D24;
    --ink: #0a0a0a;
    --ice: #F5F5F1;
    --glow: rgba(229, 9, 20, 0.6);
}

/* Section Container */
.gfx-sub-section {
    position: relative;
    background: var(--ink);
    padding: 140px 20px;
    overflow: hidden;
}

/* Background Elements */
.gfx-sub-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gfx-sub-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(229, 9, 20, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
    opacity: 0.3;
}

.gfx-sub-glow-left {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.2;
    animation: gfx-sub-float 15s ease-in-out infinite;
}

.gfx-sub-glow-right {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.15;
    animation: gfx-sub-float 20s ease-in-out infinite 5s;
}

@keyframes gfx-sub-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Main Container */
.gfx-sub-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.gfx-sub-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    opacity: 0;
    animation: gfx-sub-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.gfx-sub-header-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.gfx-sub-label-dot {
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    animation: gfx-sub-pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--glow);
}

@keyframes gfx-sub-pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.gfx-sub-label-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ice);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gfx-sub-heading {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ice);
    margin: 0 0 24px 0;
    letter-spacing: -0.03em;
}

.gfx-sub-gradient-text {
    background: linear-gradient(135deg, var(--red) 0%, #FF6B6B 50%, #FFB6C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gfx-sub-subheading {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(245, 245, 241, 0.6);
    margin: 0;
}

/* Services Grid */
.gfx-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Service Card */
.gfx-sub-card {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: gfx-sub-card-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger animation delays */
.gfx-sub-card:nth-child(1) { animation-delay: 0.1s; }
.gfx-sub-card:nth-child(2) { animation-delay: 0.2s; }
.gfx-sub-card:nth-child(3) { animation-delay: 0.3s; }
.gfx-sub-card:nth-child(4) { animation-delay: 0.4s; }
.gfx-sub-card:nth-child(5) { animation-delay: 0.5s; }
.gfx-sub-card:nth-child(6) { animation-delay: 0.6s; }
.gfx-sub-card:nth-child(7) { animation-delay: 0.7s; }
.gfx-sub-card:nth-child(8) { animation-delay: 0.8s; }
.gfx-sub-card:nth-child(9) { animation-delay: 0.9s; }
.gfx-sub-card:nth-child(10) { animation-delay: 1s; }

@keyframes gfx-sub-card-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gfx-sub-card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--red), transparent);
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(20px);
    z-index: -1;
}

.gfx-sub-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gfx-sub-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gfx-sub-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gfx-sub-card:hover .gfx-sub-card-inner {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(229, 9, 20, 0.1) inset;
}

.gfx-sub-card:hover .gfx-sub-card-inner::before,
.gfx-sub-card:hover .gfx-sub-card-inner::after {
    opacity: 1;
}

.gfx-sub-card:hover .gfx-sub-card-glow {
    opacity: 0.6;
}

/* Icon */
.gfx-sub-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 18px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gfx-sub-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--red), transparent);
    border-radius: 21px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.gfx-sub-card:hover .gfx-sub-icon {
    background: rgba(229, 9, 20, 0.15);
    transform: scale(1.1) rotate(5deg);
}

.gfx-sub-card:hover .gfx-sub-icon::before {
    opacity: 0.4;
}

.gfx-sub-icon svg {
    width: 36px;
    height: 36px;
    color: var(--red);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gfx-sub-card:hover .gfx-sub-icon svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px var(--glow));
}

/* Title */
.gfx-sub-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--ice);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.gfx-sub-card:hover .gfx-sub-title {
    color: var(--red);
}

/* Description */
.gfx-sub-desc {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(245, 245, 241, 0.6);
    margin: 0 0 28px 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}



/* Animations */
@keyframes gfx-sub-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gfx-sub-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .gfx-sub-section {
        padding: 100px 20px;
    }

    .gfx-sub-header {
        margin-bottom: 60px;
    }

    .gfx-sub-heading {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }

    .gfx-sub-subheading {
        font-size: 1rem;
    }

    .gfx-sub-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gfx-sub-card-inner {
        padding: 28px;
    }

    .gfx-sub-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .gfx-sub-icon svg {
        width: 32px;
        height: 32px;
    }

    .gfx-sub-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .gfx-sub-desc {
        font-size: 0.875rem;
        margin-bottom: 24px;
    }


}

@media (max-width: 480px) {
    .gfx-sub-section {
        padding: 80px 16px;
    }

    .gfx-sub-card-inner {
        padding: 24px;
    }

    .gfx-sub-icon {
        width: 56px;
        height: 56px;
    }

    .gfx-sub-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .gfx-sub-header,
    .gfx-sub-card,
    .gfx-sub-card-inner,
    .gfx-sub-icon,
    .gfx-sub-btn,
    .gfx-sub-glow-left,
    .gfx-sub-glow-right,
    .gfx-sub-label-dot {
        animation: none !important;
        transition: none !important;
    }

    .gfx-sub-header,
    .gfx-sub-card {
        opacity: 1;
        transform: none;
    }

    .gfx-sub-card:hover .gfx-sub-card-inner,
    .gfx-sub-card:hover .gfx-sub-icon,
    .gfx-sub-card:hover .gfx-sub-btn {
        transform: none;
    }
}