/* =====================================================
   GRAPHIC HERO SECTION - COMPACT & FULLY RESPONSIVE
===================================================== */

.graphic-hero {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #0a0a1a;
    padding: 60px 20px 50px;
}

/* =====================================================
   ANIMATED BACKGROUND
===================================================== */

.graphic-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 107, 0.06), transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(192, 132, 252, 0.06), transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(78, 205, 196, 0.04), transparent 40%);
    z-index: 0;
}

/* Floating geometric shapes - smaller */
.graphic-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.02), transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.015), transparent 30%),
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.008) 60px, rgba(255,255,255,0.008) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.008) 60px, rgba(255,255,255,0.008) 61px);
    z-index: 0;
    animation: bgPattern 30s linear infinite;
}

@keyframes bgPattern {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(15px, 15px) rotate(5deg);
    }
}

/* =====================================================
   FLOATING SHAPES - SMALLER
===================================================== */

.graphic-hero .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.graphic-hero .shape-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
    background: radial-gradient(circle, #FF6B6B, transparent 70%);
    animation: floatShape 8s ease-in-out infinite;
}

.graphic-hero .shape-2 {
    width: 150px;
    height: 150px;
    bottom: -20px;
    left: -20px;
    background: radial-gradient(circle, #C084FC, transparent 70%);
    animation: floatShape 10s ease-in-out infinite reverse;
}

.graphic-hero .shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #4ECDC4, transparent 70%);
    animation: floatShape 12s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(15px, -15px) scale(1.1);
    }
    66% {
        transform: translate(-15px, 10px) scale(0.9);
    }
}

/* =====================================================
   CONTAINER
===================================================== */

.graphic-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* =====================================================
   CONTENT - COMPACT
===================================================== */

.graphic-hero-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

/* =====================================================
   TAG - SMALLER
===================================================== */

.graphic-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.06);
    backdrop-filter: blur(10px);
    margin-bottom: 18px;
    animation: fadeInDown 0.8s ease forwards;
}

.graphic-section-tag i {
    font-size: 11px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   TITLE - SMALLER
===================================================== */

.graphic-hero-title {
    font-size: clamp(32px, 6vw, 62px);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    margin: 0 0 14px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    background: linear-gradient(
        135deg,
        #FF6B6B,
        #FF6B9D,
        #C084FC,
        #4ECDC4
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite, fadeInUp 0.8s ease forwards;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   SUBTITLE - SMALLER
===================================================== */

.graphic-hero-subtitle {
    font-size: clamp(15px, 1.8vw, 22px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 25px;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* =====================================================
   BUTTONS - COMPACT
===================================================== */

.graphic-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.graphic-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.graphic-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.graphic-btn:hover i {
    transform: translateX(3px) scale(1.1);
}

/* Primary Button */
.graphic-btn-primary {
    background: linear-gradient(135deg, #FF6B6B, #C084FC);
    color: #fff;
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.2);
}

.graphic-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #C084FC, #FF6B6B);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.graphic-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.3);
}

.graphic-btn-primary:hover::before {
    opacity: 1;
}

.graphic-btn-primary span,
.graphic-btn-primary i {
    position: relative;
    z-index: 1;
}

/* Outline Button */
.graphic-btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.graphic-btn-outline::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(192, 132, 252, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.graphic-btn-outline:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.graphic-btn-outline:hover::before {
    opacity: 1;
}

.graphic-btn-outline span,
.graphic-btn-outline i {
    position: relative;
    z-index: 1;
}


/* =====================================================
   RESPONSIVE - FULLY OPTIMIZED
===================================================== */

/* Tablet */
@media (max-width: 992px) {
    .graphic-hero {
        min-height: 70vh;
        padding: 50px 20px 40px;
    }

    .graphic-hero-title {
        font-size: clamp(30px, 5vw, 48px);
    }

    .graphic-hero-subtitle {
        font-size: clamp(14px, 1.6vw, 18px);
    }

    .graphic-btn {
        padding: 11px 22px;
        font-size: 12px;
    }

    .graphic-hero .shape-1 {
        width: 150px;
        height: 150px;
    }

    .graphic-hero .shape-2 {
        width: 120px;
        height: 120px;
    }

    .graphic-hero .shape-3 {
        width: 80px;
        height: 80px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .graphic-hero {
        min-height: 65vh;
        padding: 45px 15px 35px;
    }

    .graphic-section-tag {
        font-size: 9px;
        padding: 4px 14px;
        gap: 6px;
        letter-spacing: 1px;
    }

    .graphic-section-tag i {
        font-size: 10px;
    }

    .graphic-hero-title {
        font-size: clamp(26px, 4.5vw, 36px);
        margin-bottom: 10px;
    }

    .graphic-hero-subtitle {
        font-size: clamp(13px, 1.5vw, 16px);
        margin-bottom: 20px;
    }

    .graphic-hero-actions {
        gap: 12px;
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .graphic-btn {
        width: 100%;
        justify-content: center;
        padding: 11px 20px;
        font-size: 12px;
        border-radius: 8px;
    }

    .graphic-btn i {
        font-size: 12px;
    }

    .graphic-hero .shape-1 {
        width: 120px;
        height: 120px;
        top: -20px;
        right: -20px;
    }

    .graphic-hero .shape-2 {
        width: 100px;
        height: 100px;
        bottom: -15px;
        left: -15px;
    }

    .graphic-hero .shape-3 {
        width: 70px;
        height: 70px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .graphic-hero {
        min-height: 60vh;
        padding: 40px 12px 30px;
    }

    .graphic-section-tag {
        font-size: 8px;
        padding: 3px 12px;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }

    .graphic-section-tag i {
        font-size: 9px;
    }

    .graphic-hero-title {
        font-size: clamp(22px, 4vw, 28px);
        margin-bottom: 8px;
    }

    .graphic-hero-subtitle {
        font-size: clamp(12px, 1.3vw, 14px);
        margin-bottom: 18px;
        line-height: 1.4;
    }

    .graphic-hero-actions {
        gap: 10px;
        max-width: 240px;
    }

    .graphic-btn {
        padding: 10px 16px;
        font-size: 11px;
        border-radius: 8px;
        gap: 6px;
    }

    .graphic-btn i {
        font-size: 11px;
    }

    .graphic-hero .shape-1,
    .graphic-hero .shape-2 {
        display: none;
    }
    
    .graphic-hero .shape-3 {
        width: 50px;
        height: 50px;
        opacity: 0.02;
    }
}

/* Extra Small */
@media (max-width: 360px) {
    .graphic-hero {
        min-height: 55vh;
        padding: 35px 10px 25px;
    }

    .graphic-hero-title {
        font-size: clamp(18px, 3.5vw, 22px);
    }

    .graphic-hero-subtitle {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .graphic-hero-actions {
        max-width: 200px;
        gap: 8px;
    }

    .graphic-btn {
        padding: 8px 14px;
        font-size: 10px;
        border-radius: 6px;
        gap: 5px;
    }

    .graphic-btn i {
        font-size: 10px;
    }
}

/* =====================================================
   REDUCE MOTION ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .graphic-hero::after {
        animation: none;
    }

    .graphic-hero .shape {
        animation: none !important;
    }

    .graphic-hero-title {
        animation: none !important;
        opacity: 1;
    }

    .graphic-section-tag,
    .graphic-hero-subtitle,
    .graphic-hero-actions {
        animation: none !important;
        opacity: 1;
    }

    .graphic-btn {
        transition: none !important;
    }

    .graphic-btn:hover {
        transform: none !important;
    }

    .graphic-btn-primary::before,
    .graphic-btn-outline::before {
        transition: none !important;
    }
}

/* =====================================================
   PRINT STYLES
===================================================== */

@media print {
    .graphic-hero {
        background: #fff !important;
        min-height: auto !important;
        padding: 30px 20px !important;
    }

    .graphic-hero-title {
        background: none !important;
        -webkit-text-fill-color: #1a1a2e !important;
        color: #1a1a2e !important;
    }

    .graphic-hero-subtitle {
        color: #666 !important;
    }

    .graphic-btn {
        border: 1px solid #ddd !important;
        background: #f5f5f5 !important;
        color: #333 !important;
        box-shadow: none !important;
    }

    .graphic-btn-primary {
        background: #f5f5f5 !important;
    }

    .graphic-hero .shape,
    .graphic-hero::before,
    .graphic-hero::after {
        display: none !important;
    }

    .graphic-section-tag {
        border-color: #ddd !important;
        color: #333 !important;
        background: #f5f5f5 !important;
    }
}


/* =====================================================
   GRAPHIC DESIGN SERVICES - MODERN & RESPONSIVE
===================================================== */

.graphic-services {
    width: 100%;
    padding: 70px 20px 60px;
    position: relative;
    overflow: hidden;
    background: #0f0f23;
}

/* =====================================================
   SECTION HEADER
===================================================== */

.graphic-services .section-header {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.graphic-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.06);
    backdrop-filter: blur(10px);
    margin-bottom: 15px;
}

.graphic-section-tag i {
    font-size: 11px;
}

.graphic-section-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(
        135deg,
        #FF6B6B,
        #FF6B9D,
        #C084FC,
        #4ECDC4
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


/* ========================================
   GRAPHIC SERVICES SECTION - WITH IMAGES
   ======================================== */

.graphic-services {
    padding: 5rem 0;
    background: #0f172a;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.graphic-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.graphic-services .graphic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ---- Section Header ---- */
.graphic-services .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.graphic-services .graphic-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.12);
    color: #818cf8;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1.2rem;
    backdrop-filter: blur(10px);
}

.graphic-services .graphic-section-tag i {
    font-size: 0.7rem;
}

.graphic-services .graphic-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Services Grid ---- */
.graphic-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding: 0.5rem 0;
}

/* ---- Service Card ---- */
.graphic-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.8rem 1.2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    min-height: 170px;
}

/* Image/Icon styling - SHOW IMAGES */
.service-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    transition: all 0.35s ease;
    margin-bottom: 0.25rem;
    /* Remove filters to show original colors */
    filter: none;
}

/* Fallback for broken images - show colored placeholder */
.service-img::before {
    content: '🎨';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
}

/* Hover Effects */
.graphic-service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.4);
}

.graphic-service-card:hover .service-img {
    transform: scale(1.1) translateY(-2px);
}

/* Glowing border effect */
.graphic-service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.15));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.graphic-service-card:hover::before {
    opacity: 1;
}

/* Color variants for different cards */
.graphic-service-card:nth-child(6n+1):hover {
    border-color: rgba(99, 102, 241, 0.3);
}
.graphic-service-card:nth-child(6n+2):hover {
    border-color: rgba(16, 185, 129, 0.3);
}
.graphic-service-card:nth-child(6n+3):hover {
    border-color: rgba(236, 72, 153, 0.3);
}
.graphic-service-card:nth-child(6n+4):hover {
    border-color: rgba(251, 191, 36, 0.3);
}
.graphic-service-card:nth-child(6n+5):hover {
    border-color: rgba(56, 189, 248, 0.3);
}
.graphic-service-card:nth-child(6n+6):hover {
    border-color: rgba(232, 121, 249, 0.3);
}

/* Image loading state */
.service-img[src=""],
.service-img:not([src]) {
    opacity: 0.3;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 8px;
}

.service-img[src=""]::after,
.service-img:not([src])::after {
    content: '🖼️';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* ---- Tablets & Small Laptops ---- */
@media (max-width: 1024px) {
    .graphic-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .graphic-service-card {
        min-height: 160px;
        padding: 1.5rem 1rem 1.2rem;
        font-size: 0.8rem;
    }

    .service-img {
        width: 48px;
        height: 48px;
    }
}

/* ---- Tablets ---- */
@media (max-width: 768px) {
    .graphic-services {
        padding: 3.5rem 0;
    }

    .graphic-services .graphic-section-title {
        font-size: 2.2rem;
    }

    .graphic-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .graphic-service-card {
        min-height: 150px;
        padding: 1.2rem 0.8rem 1rem;
        font-size: 0.75rem;
        border-radius: 14px;
    }

    .service-img {
        width: 42px;
        height: 42px;
    }

    .graphic-services .graphic-container {
        padding: 0 1.5rem;
    }
}

/* ---- Mobile Large ---- */
@media (max-width: 600px) {
    .graphic-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .graphic-service-card {
        min-height: 130px;
        padding: 1rem 0.5rem 0.8rem;
        font-size: 0.7rem;
        border-radius: 12px;
        gap: 0.5rem;
    }

    .service-img {
        width: 36px;
        height: 36px;
    }

    .graphic-services .graphic-container {
        padding: 0 1rem;
    }
}

/* ---- Mobile Small ---- */
@media (max-width: 480px) {
    .graphic-services {
        padding: 3rem 0;
    }

    .graphic-services .graphic-section-title {
        font-size: 1.8rem;
    }

    .graphic-services .graphic-section-tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.9rem;
    }

    .graphic-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }

    .graphic-service-card {
        min-height: 120px;
        padding: 0.9rem 0.4rem 0.7rem;
        font-size: 0.65rem;
        border-radius: 10px;
        gap: 0.4rem;
        border-width: 0.5px;
    }

    .service-img {
        width: 32px;
        height: 32px;
        margin-bottom: 0;
    }

    .graphic-services .graphic-container {
        padding: 0 0.75rem;
    }
}

/* ---- Very Small Devices ---- */
@media (max-width: 360px) {
    .graphic-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .graphic-service-card {
        min-height: 105px;
        padding: 0.7rem 0.3rem 0.6rem;
        font-size: 0.6rem;
        border-radius: 8px;
        gap: 0.3rem;
    }

    .service-img {
        width: 28px;
        height: 28px;
    }
}

/* ---- Accessibility: Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    .graphic-service-card,
    .graphic-service-card .service-img,
    .graphic-service-card::before {
        transition: none !important;
        transform: none !important;
    }

    .graphic-service-card:hover {
        transform: none !important;
    }
}

/* ---- Light Mode Support ---- */
@media (prefers-color-scheme: light) {
    .graphic-services {
        background: #f8fafc;
    }

    .graphic-services::before {
        background: 
            radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.04) 0%, transparent 40%),
            radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.04) 0%, transparent 40%);
    }

    .graphic-services .graphic-section-title {
        background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .graphic-service-card {
        background: #ffffff;
        border-color: #e9edf4;
        color: #1e293b;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .service-img {
        filter: none;
        opacity: 0.85;
    }

    .graphic-service-card:hover {
        background: #ffffff;
        border-color: rgba(99, 102, 241, 0.2);
        box-shadow: 0 12px 28px -8px rgba(99, 102, 241, 0.12);
    }

    .graphic-service-card:hover .service-img {
        opacity: 1;
        transform: scale(1.1) translateY(-2px);
    }

    .graphic-service-card::before {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.08));
    }
}

/* ---- Additional: Image with background circles ---- */
.graphic-service-card .service-img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 0.25rem;
}

.graphic-service-card .service-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.08), transparent 70%);
    border-radius: 50%;
    transition: all 0.35s ease;
}

.graphic-service-card:hover .service-img-wrapper::before {
    transform: scale(1.2);
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15), transparent 70%);
}


.service-img {
    background: linear-gradient(135deg, #1a1a2e, #252540);
}

.service-img[src=""] {
    display: none;
}

/* =====================================================
   OPTIONAL: GLOW EFFECT ON HOVER
===================================================== */

.graphic-service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF6B6B, #C084FC);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.graphic-service-card:hover::before {
    opacity: 0.15;
}

/* Adjust for mobile */
@media (max-width: 480px) {
    .graphic-service-card::before {
        border-radius: 10px;
    }
}


/* ==========================================
   WHY CHOOSE KWANG GROUP — COMPACT
   Matching green theme from hero
========================================== */

.graphic-why-choose {
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto 2.5rem;
    background: linear-gradient(145deg, #11141c 0%, #0b0d12 100%);
    border-radius: 5px;
    padding: 1.8rem 1.8rem 2rem;          /* <-- REDUCED */
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: padding 0.3s ease;
}

.graphic-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ==========================================
   SECTION HEADER — COMPACT
========================================== */
.graphic-section-header {
    text-align: center;
    margin-bottom: 1.8rem;                /* <-- REDUCED */
}

.graphic-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.20);
    padding: 0.25rem 0.9rem 0.25rem 0.7rem;
    border-radius: 5px;
    font-size: 0.6rem;                   /* <-- SMALLER */
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #6ee7b7;
    text-transform: uppercase;
    margin-bottom: 0.5rem;               /* <-- REDUCED */
    transition: background 0.3s ease, border-color 0.3s ease;
}

.graphic-section-tag:hover {
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.35);
}

.graphic-section-tag i {
    font-size: 0.55rem;                  /* <-- SMALLER */
    color: #10b981;
}

.graphic-section-title {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);  /* <-- REDUCED */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.graphic-section-title span {
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ==========================================
   FEATURES GRID — COMPACT
========================================== */
.graphic-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;                         /* <-- REDUCED */
}

.graphic-feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 1rem 0.8rem;                /* <-- REDUCED */
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

.graphic-feature-item:hover {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.20);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
}

.graphic-feature-item i {
    font-size: 1.4rem;                   /* <-- SMALLER */
    color: #10b981;
    margin-bottom: 0.4rem;               /* <-- REDUCED */
    display: block;
    transition: transform 0.3s ease;
}

.graphic-feature-item:hover i {
    transform: scale(1.1);
}

.graphic-feature-item h4 {
    font-size: clamp(0.75rem, 0.85vw, 0.85rem);  /* <-- SMALLER */
    font-weight: 600;
    color: #e5e7f0;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS — COMPACT
========================================== */

/* Tablets & small laptops */
@media (max-width: 1024px) {
    .graphic-why-choose {
        padding: 1.5rem 1.5rem 1.8rem;
        margin: 1.5rem auto 2rem;
    }

    .graphic-features-grid {
        gap: 0.7rem;
    }

    .graphic-feature-item {
        padding: 0.9rem 0.7rem;
    }
}

/* Mobile landscape */
@media (max-width: 820px) {
    .graphic-why-choose {
        padding: 1.2rem 1.2rem 1.5rem;
        margin: 1rem auto 1.5rem;
        border-radius: 5px;
    }

    .graphic-section-header {
        margin-bottom: 1.2rem;
    }

    .graphic-section-title {
        font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    }

    .graphic-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .graphic-feature-item {
        padding: 0.8rem 0.6rem;
    }

    .graphic-feature-item i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .graphic-feature-item h4 {
        font-size: 0.75rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .graphic-why-choose {
        padding: 1rem 0.8rem 1.2rem;
        margin: 0.8rem auto 1.2rem;
        border-radius: 5px;
    }

    .graphic-section-header {
        margin-bottom: 1rem;
    }

    .graphic-section-title {
        font-size: clamp(1.1rem, 6vw, 1.5rem);
    }

    .graphic-section-tag {
        font-size: 0.55rem;
        padding: 0.2rem 0.7rem 0.2rem 0.6rem;
        margin-bottom: 0.3rem;
    }

    .graphic-section-tag i {
        font-size: 0.5rem;
    }

    .graphic-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .graphic-feature-item {
        padding: 0.7rem 0.4rem;
        border-radius: 5px;
    }

    .graphic-feature-item i {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .graphic-feature-item h4 {
        font-size: 0.65rem;
    }
}

/* Extra small screens (below 360px) */
@media (max-width: 360px) {
    .graphic-why-choose {
        padding: 0.8rem 0.6rem 1rem;
    }

    .graphic-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }

    .graphic-feature-item {
        padding: 0.6rem 0.3rem;
    }

    .graphic-feature-item i {
        font-size: 0.9rem;
    }

    .graphic-feature-item h4 {
        font-size: 0.6rem;
    }
}


/* ==========================================
   GRAPHIC PROCESS SECTION - COMPACT CARD DESIGN
   All border-radius: 5px
   Full responsive
========================================== */

/* ----- SECTION WRAPPER ----- */
.graphic-process {
    padding: 60px 0;
    background: linear-gradient(145deg, #fafbff, #f0f2ff);
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.graphic-process::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.graphic-process::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ----- CONTAINER ----- */
.graphic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ==========================================
   SECTION HEADER
========================================== */

.graphic-section-header {
    text-align: center;
    margin-bottom: 40px;
}

/* ----- TAG / LABEL ----- */
.graphic-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #4f46e5;
    background: #e0e7ff;
    padding: 5px 14px;
    border-radius: 5px;
    margin-bottom: 12px;
}

.graphic-section-tag i {
    font-size: 0.7rem;
}

/* ----- TITLE ----- */
.graphic-section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}

.graphic-section-title span {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   PROCESS STEPS - COMPACT GRID
========================================== */

.graphic-process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ==========================================
   INDIVIDUAL STEP - NEW CARD DESIGN
========================================== */

.graphic-step {
    flex: 0 1 calc(33.333% - 14px);
    min-width: 170px;
    background: #ffffff;
    padding: 24px 18px 20px;
    border-radius: 5px;
    border: 1px solid #eef2f6;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* New card design: left accent bar + shadow on hover */
.graphic-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(180deg, #2563eb, #7c3aed, #ec4899);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 0 5px 5px 0;
}

.graphic-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.03);
    border-color: #c7d2fe;
    background: #ffffff;
}

.graphic-step:hover::before {
    opacity: 1;
    top: 10%;
    bottom: 10%;
}

/* ----- STEP NUMBER - Circular Badge ----- */
.graphic-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    font-style: normal;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.graphic-step:hover span {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* ----- STEP TITLE ----- */
.graphic-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.graphic-step:hover h4 {
    color: #4f46e5;
}

/* ----- STEP SUBTLE INDICATOR (dot) ----- */
.graphic-step::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.graphic-step:hover::after {
    width: 30px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}

/* Remove connector lines (cleaner design) */
.graphic-step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.graphic-step:not(:last-child):hover::after {
    width: 30px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}

/* Override: only show the bottom dot, no side connectors */
.graphic-step:not(:last-child)::after {
    display: block;
}

/* ==========================================
   RESPONSIVE
========================================== */

/* Tablets & medium screens */
@media (max-width: 992px) {
    .graphic-process {
        padding: 50px 0;
    }

    .graphic-section-header {
        margin-bottom: 32px;
    }

    .graphic-process-steps {
        gap: 12px;
    }

    .graphic-step {
        flex: 0 1 calc(50% - 12px);
        min-width: 150px;
        padding: 20px 14px 18px;
        gap: 6px;
    }

    .graphic-step span {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .graphic-step h4 {
        font-size: 0.9rem;
    }

    .graphic-step::after,
    .graphic-step:not(:last-child)::after {
        bottom: 10px;
        width: 16px;
        height: 2px;
    }

    .graphic-step:hover::after,
    .graphic-step:not(:last-child):hover::after {
        width: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .graphic-process {
        padding: 40px 0;
    }

    .graphic-section-header {
        margin-bottom: 24px;
    }

    .graphic-section-tag {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .graphic-section-title {
        font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    }

    .graphic-process-steps {
        gap: 10px;
        max-width: 450px;
    }

    .graphic-step {
        flex: 0 1 calc(50% - 10px);
        min-width: 130px;
        padding: 16px 12px 14px;
        gap: 5px;
    }

    .graphic-step span {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        box-shadow: 0 3px 10px rgba(37, 99, 235, 0.15);
    }

    .graphic-step h4 {
        font-size: 0.82rem;
    }

    .graphic-step::before {
        width: 2px;
        top: 15%;
        bottom: 15%;
    }

    .graphic-step:hover::before {
        top: 5%;
        bottom: 5%;
    }

    .graphic-step::after,
    .graphic-step:not(:last-child)::after {
        bottom: 8px;
        width: 14px;
        height: 1.5px;
    }

    .graphic-step:hover::after,
    .graphic-step:not(:last-child):hover::after {
        width: 20px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .graphic-process {
        padding: 30px 0;
    }

    .graphic-section-header {
        margin-bottom: 20px;
    }

    .graphic-section-title {
        font-size: 1.3rem;
    }

    .graphic-process-steps {
        gap: 8px;
        max-width: 100%;
    }

    .graphic-step {
        flex: 0 1 calc(50% - 8px);
        min-width: 110px;
        padding: 14px 10px 12px;
        gap: 4px;
    }

    .graphic-step span {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
    }

    .graphic-step h4 {
        font-size: 0.75rem;
    }

    .graphic-step::before {
        display: none;
    }

    .graphic-step::after,
    .graphic-step:not(:last-child)::after {
        bottom: 6px;
        width: 12px;
        height: 1.5px;
    }

    .graphic-step:hover::after,
    .graphic-step:not(:last-child):hover::after {
        width: 16px;
    }
}

/* Extra small screens - single column */
@media (max-width: 360px) {
    .graphic-process {
        padding: 25px 0;
    }

    .graphic-process-steps {
        gap: 8px;
        max-width: 280px;
    }

    .graphic-step {
        flex: 0 1 100%;
        padding: 12px 14px;
        flex-direction: row;
        gap: 12px;
        text-align: left;
        align-items: center;
        min-width: 0;
    }

    .graphic-step span {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .graphic-step h4 {
        font-size: 0.82rem;
        margin: 0;
    }

    .graphic-step::before {
        display: none;
    }

    .graphic-step::after,
    .graphic-step:not(:last-child)::after {
        display: none;
    }

    .graphic-step:hover {
        transform: translateX(4px);
    }
}/* ==========================================
   GRAPHIC PORTFOLIO SECTION - COMPLETE CSS
   All border-radius: 5px
   Fully responsive
========================================== */

/* ----- SECTION WRAPPER ----- */
.graphic-portfolio {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

/* ----- CONTAINER ----- */
.graphic-portfolio .graphic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   SECTION HEADER
========================================== */

.graphic-portfolio .graphic-section-header {
    text-align: center;
    margin-bottom: 40px;
}

/* ----- TAG / LABEL ----- */
.graphic-portfolio .graphic-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4f46e5;
    background: #e0e7ff;
    padding: 6px 18px;
    border-radius: 5px;
    margin-bottom: 14px;
}

.graphic-portfolio .graphic-section-tag i {
    font-size: 0.8rem;
}

/* ----- TITLE ----- */
.graphic-portfolio .graphic-section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}

/* ==========================================
   CATEGORY FILTER TAGS
========================================== */

.graphic-portfolio-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.graphic-cat-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 6px 18px;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.graphic-cat-tag:hover {
    background: #e0e7ff;
    color: #4f46e5;
    border-color: #c7d2fe;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.08);
}

.graphic-cat-tag:active {
    transform: scale(0.95);
}

/* Active state (add class via JS if needed) */
.graphic-cat-tag.active {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    border-color: #4f46e5;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

/* ==========================================
   PORTFOLIO GRID
========================================== */

.graphic-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ==========================================
   PORTFOLIO ITEM
========================================== */

.graphic-portfolio-item {
    position: relative;
    background: linear-gradient(145deg, #f8fafc, #eef2f6);
    border-radius: 5px;
    padding: 60px 20px 40px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    border: 1px solid #eef2f6;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    cursor: pointer;
}

/* Placeholder icon */
.graphic-portfolio-item::before {
    content: '\f03e'; /* fa-image */
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 2.4rem;
    color: #94a3b8;
    transition: all 0.3s ease;
    display: block;
}

/* Hover overlay effect */
.graphic-portfolio-item::after {
    content: 'View Project →';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(79, 70, 229, 0.92));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(0.9);
    letter-spacing: 0.3px;
}

.graphic-portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border-color: #c7d2fe;
}

.graphic-portfolio-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

.graphic-portfolio-item:hover::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* ----- Project number / label ----- */
.graphic-portfolio-item span {
    position: relative;
    z-index: 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 14px;
    border-radius: 5px;
    backdrop-filter: blur(4px);
}

.graphic-portfolio-item:hover span {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* ----- Variation: Different background colors for visual interest ----- */
.graphic-portfolio-item:nth-child(1) {
    background: linear-gradient(145deg, #fef2f2, #fee2e2);
}
.graphic-portfolio-item:nth-child(2) {
    background: linear-gradient(145deg, #eff6ff, #dbeafe);
}
.graphic-portfolio-item:nth-child(3) {
    background: linear-gradient(145deg, #f0fdf4, #dcfce7);
}
.graphic-portfolio-item:nth-child(4) {
    background: linear-gradient(145deg, #fefce8, #fef9c3);
}
.graphic-portfolio-item:nth-child(5) {
    background: linear-gradient(145deg, #faf5ff, #f3e8ff);
}
.graphic-portfolio-item:nth-child(6) {
    background: linear-gradient(145deg, #fef2f2, #ffe4e6);
}

/* Keep hover overlay consistent */
.graphic-portfolio-item:hover::after {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(79, 70, 229, 0.92));
}

/* ==========================================
   RESPONSIVE
========================================== */

/* Tablets & medium screens */
@media (max-width: 992px) {
    .graphic-portfolio {
        padding: 60px 0;
    }

    .graphic-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
    }

    .graphic-portfolio-item {
        min-height: 200px;
        padding: 50px 16px 32px;
    }

    .graphic-portfolio-item::before {
        font-size: 2rem;
    }

    .graphic-portfolio-item::after {
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .graphic-portfolio {
        padding: 50px 0;
    }

    .graphic-portfolio .graphic-section-header {
        margin-bottom: 28px;
    }

    .graphic-portfolio .graphic-section-tag {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .graphic-portfolio .graphic-section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .graphic-portfolio-categories {
        gap: 8px;
        margin-bottom: 28px;
    }

    .graphic-cat-tag {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .graphic-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 500px;
    }

    .graphic-portfolio-item {
        min-height: 160px;
        padding: 30px 14px 24px;
        font-size: 0.95rem;
    }

    .graphic-portfolio-item::before {
        font-size: 1.8rem;
    }

    .graphic-portfolio-item::after {
        font-size: 0.8rem;
    }

    .graphic-portfolio-item span {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .graphic-portfolio {
        padding: 40px 0;
    }

    .graphic-portfolio .graphic-section-title {
        font-size: 1.3rem;
    }

    .graphic-portfolio-categories {
        gap: 6px;
        margin-bottom: 20px;
    }

    .graphic-cat-tag {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .graphic-portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: 400px;
    }

    .graphic-portfolio-item {
        min-height: 120px;
        padding: 20px 10px 16px;
        font-size: 0.85rem;
    }

    .graphic-portfolio-item::before {
        font-size: 1.4rem;
    }

    .graphic-portfolio-item::after {
        font-size: 0.7rem;
    }

    .graphic-portfolio-item span {
        font-size: 0.65rem;
        padding: 2px 8px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .graphic-portfolio {
        padding: 30px 0;
    }

    .graphic-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 280px;
    }

    .graphic-portfolio-item {
        min-height: 100px;
        padding: 16px 12px;
        flex-direction: row;
        gap: 12px;
    }

    .graphic-portfolio-item::before {
        font-size: 1.2rem;
    }

    .graphic-portfolio-item::after {
        font-size: 0.65rem;
    }

    .graphic-portfolio-item span {
        font-size: 0.7rem;
        padding: 2px 8px;
    }

    .graphic-cat-tag {
        font-size: 0.6rem;
        padding: 3px 10px;
    }
}

/* ========================================
   INDUSTRIES SECTION
   ======================================== */

.graphic-industries {
    padding: 5rem 0;
    background: linear-gradient(145deg, #f8faff 0%, #eef3fc 100%);
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.graphic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Section Header ---- */
.graphic-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.graphic-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(79, 70, 229, 0.15);
    margin-bottom: 1rem;
}

.graphic-section-tag i {
    font-size: 0.7rem;
}

.graphic-section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0b1120;
    margin: 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Industry List (Tags) ---- */
.graphic-industry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.5rem;
    padding: 1rem 0;
}

.graphic-industry-list span {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e293b;
    background: #ffffff;
    padding: 0.7rem 1.8rem;
    border-radius: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9edf4;
    transition: all 0.25s ease;
    cursor: default;
    letter-spacing: 0.01em;
}

.graphic-industry-list span:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: #4f46e5;
    box-shadow: 0 12px 28px -8px rgba(79, 70, 229, 0.18), 0 4px 12px rgba(0, 0, 0, 0.04);
    color: #4f46e5;
}

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

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

    .graphic-industry-list {
        gap: 0.75rem 1rem;
    }

    .graphic-industry-list span {
        font-size: 0.9rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .graphic-container {
        padding: 0 1rem;
    }

    .graphic-section-title {
        font-size: 1.6rem;
    }

    .graphic-section-tag {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }

    .graphic-industry-list span {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* ========================================
   INDUSTRIES SECTION - MODERN DESIGN
   ======================================== */

.graphic-industries {
    padding: 5rem 0;
    background: #0b1120;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.graphic-industries::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

/* ---- Section Header ---- */
.graphic-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.graphic-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.15);
    color: #818cf8;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    margin-bottom: 1.2rem;
    backdrop-filter: blur(10px);
}

.graphic-section-tag i {
    font-size: 0.7rem;
}

.graphic-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Industry List (Pill Cards) ---- */
.graphic-industry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.2rem;
    padding: 0.5rem 0;
}

.graphic-industry-list span {
    font-size: 1rem;
    font-weight: 500;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.8rem 2rem;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* Glow effect on hover */
.graphic-industry-list span::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.5), rgba(236, 72, 153, 0.5));
    -webkit-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.3s ease;
}

.graphic-industry-list span:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(79, 70, 229, 0.12);
    border-color: rgba(79, 70, 229, 0.3);
    color: #ffffff;
    box-shadow: 0 12px 40px -8px rgba(79, 70, 229, 0.25);
}

.graphic-industry-list span:hover::before {
    opacity: 1;
}

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

    .graphic-section-title {
        font-size: 2.2rem;
    }

    .graphic-industry-list {
        gap: 0.8rem 1rem;
    }

    .graphic-industry-list span {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .graphic-container {
        padding: 0 1rem;
    }

    .graphic-section-title {
        font-size: 1.8rem;
    }

    .graphic-section-tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.9rem;
    }

    .graphic-industry-list span {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }
}

/* ========================================
   FEATURES SECTION - MODERN DESIGN
   ======================================== */

.graphic-features {
    padding: 5rem 0;
    background: #0f172a;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient orbs */
.graphic-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.graphic-features .graphic-container {
    position: relative;
    z-index: 1;
}

/* Section header overrides for dark bg */
.graphic-features .graphic-section-tag {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.2);
}

.graphic-features .graphic-section-title {
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Features Grid (Cards) ---- */
.graphic-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.graphic-feature-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 1rem;
    font-weight: 500;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
}

/* Icon styling */
.graphic-feature-item i {
    color: #34d399;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.graphic-feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.3);
}

.graphic-feature-item:hover i {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1);
}

/* Glowing border accent on hover */
.graphic-feature-item::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.graphic-feature-item:hover::after {
    opacity: 1;
}

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

    .graphic-features .graphic-section-title {
        font-size: 2.2rem;
    }

    .graphic-features-list {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .graphic-feature-item {
        font-size: 0.9rem;
        padding: 1rem 1.2rem;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .graphic-features .graphic-container {
        padding: 0 1rem;
    }

    .graphic-features .graphic-section-title {
        font-size: 1.8rem;
    }

    .graphic-features .graphic-section-tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.9rem;
    }

    .graphic-features-list {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .graphic-feature-item {
        font-size: 0.75rem;
        padding: 0.7rem 0.9rem;
        border-radius: 12px;
        gap: 0.6rem;
    }

    .graphic-feature-item i {
        font-size: 0.85rem;
        width: 1.2rem;
        height: 1.2rem;
    }
}