/* ============================================
   CUSTOM GRAPHICS PAGE — BOLD CREATIVE DESIGN
   ============================================ */

.graphics-page {
    background: #080808;
}

/* ============================================
   ANIMATED BLOB BACKGROUNDS
   ============================================ */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
    animation: blobFloat 12s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #004242;
    top: -150px;
    left: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #114691;
    top: 30%;
    right: -150px;
    animation-delay: 4s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #ba8b008d;
    bottom: -100px;
    left: 30%;
    animation-delay: 8s;
}

.blob-cta {
    width: 700px;
    height: 700px;
    background: #c77dff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
    opacity: 0.15;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(40px, -40px) scale(1.05); }
    66%       { transform: translate(-30px, 30px) scale(0.97); }
}

/* ============================================
   HERO
   ============================================ */
.graphics-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #080808;
}

.graphics-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
}

/* Creative label */
.creative-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.4rem;
    background: rgba(199, 125, 255, 0.12);
    border: 1px solid rgba(199, 125, 255, 0.35);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #c77dff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
}

.paint-icon { font-size: 1.1rem; }

/* Big title with outline + filled mix */
.graphics-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1em;
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
}

.title-filled {
    /* gradient-text class handles the fill */
}

/* Subtitle */
.graphics-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

/* Color swatches */
.color-swatches {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.swatch:hover { transform: scale(1.3); }

.swatch-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-left: 0.5rem;
    font-style: italic;
}

/* Buttons */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-graphics {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.35s ease;
    border: 2px solid transparent;
}

.btn-graphics-primary {
    background: linear-gradient(135deg, #c77dff 0%, #7b2fff 100%);
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(199, 125, 255, 0.4);
}

.btn-graphics-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(199, 125, 255, 0.6);
}

.btn-graphics-ghost {
    background: transparent;
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

.btn-graphics-ghost:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-4px);
}

/* ============================================
   MARQUEE STRIPS
   ============================================ */
.marquee-strip {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    padding: 0.75rem 0;
    z-index: 3;
}

.marquee-top {
    top: 80px;
    background: rgba(199, 125, 255, 0.08);
    border-top: 1px solid rgba(199, 125, 255, 0.2);
    border-bottom: 1px solid rgba(199, 125, 255, 0.2);
}

.marquee-bottom {
    bottom: 0;
    background: rgba(77, 150, 255, 0.08);
    border-top: 1px solid rgba(77, 150, 255, 0.2);
    border-bottom: 1px solid rgba(77, 150, 255, 0.2);
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
}

.marquee-reverse {
    animation-direction: reverse;
}

.dot-sep {
    color: rgba(195, 159, 0, 0.6);
    font-size: 0.6rem;
    align-self: center;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   BENTO GALLERY GRID
   ============================================ */
.gallery-section {
    padding: 8rem 0;
    background: #0e0e0e;
}

.section-header-g {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-g h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-header-g p {
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
}

/* Card sizes */
.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 2.5rem;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255,255,255,0.06);
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.bento-large  { grid-column: span 5; }
.bento-medium { grid-column: span 4; }
.bento-small  { grid-column: span 3; }
.bento-wide   { grid-column: span 7; }

/* Accent colors per card */
.accent-purple { background: linear-gradient(135deg, rgba(199,125,255,0.15) 0%, rgba(123,47,255,0.08) 100%); }


.accent-blue { background: linear-gradient(135deg, rgba(77,150,255,0.15) 0%, rgba(31,111,235,0.08) 100%); }


.accent-orange { background: linear-gradient(135deg, rgba(255,154,86,0.15) 0%, rgba(255,107,107,0.08) 100%); }


.accent-green { background: linear-gradient(135deg, rgba(107,203,119,0.15) 0%, rgba(0,184,100,0.08) 100%); }


.accent-pink { background: linear-gradient(135deg, rgba(255,107,181,0.15) 0%, rgba(199,125,255,0.08) 100%); }


.accent-silver { background: linear-gradient(135deg, rgba(192,192,192,0.12) 0%, rgba(128,128,128,0.06) 100%); }


/* Bento card inner content */
.bento-inner { position: relative; z-index: 2; }

.bento-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}

.bento-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.bento-card p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-size: 0.95rem;
}

.bento-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.bento-tags span {
    padding: 0.35rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.bento-full   { grid-column: span 12; }

@media (max-width: 900px) {
    .bento-large, .bento-medium, .bento-small, .bento-wide, .bento-full {
        grid-column: span 12;
    }
}

/* Decorative backgrounds inside cards */
.bento-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 160px;
    pointer-events: none;
    opacity: 0.12;
    transition: opacity 0.3s ease;
}

.bento-card:hover .bento-deco { opacity: 0.22; }

.deco-circles {
    background: 
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.5) 0%, transparent 40%),
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 40%);
}

.deco-lines {
    background: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.4) 0,
        rgba(255,255,255,0.4) 1px,
        transparent 0,
        transparent 50%
    );
    background-size: 10px 10px;
}

.deco-dots {
    background-image: radial-gradient(rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 12px 12px;
}

.deco-grid {
    background:
        linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Responsive bento */
@media (max-width: 900px) {
    .bento-large, .bento-medium, .bento-small, .bento-wide {
        grid-column: span 12;
    }
}

/* ============================================
   PORTFOLIO GALLERY WITH IMAGES
   ============================================ */
.portfolio-category {
    margin-bottom: 6rem;
}

.category-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.category-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 3rem;
}

.portfolio-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(81, 81, 81, 0.318);
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
}


.portfolio-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tag {
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .portfolio-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .portfolio-category {
        margin-bottom: 4rem;
    }
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.graphics-process {
    padding: 8rem 0;
    background: #080808;
}

.process-title-g {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
}

.process-subtitle-g {
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 1.1rem;
    margin-bottom: 5rem;
}

.process-steps-g {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step-g {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.step-bubble {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #b09878 0%, #686048 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 auto 1.25rem;
    box-shadow: 0 10px 30px rgba(150, 150, 150, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-g:hover .step-bubble {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(96, 96, 96, 0.6);
}

.step-icon-g {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-step-g h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-step-g p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #7dcbff, #4d96ff);
    margin-top: 35px;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .step-connector { display: none; }
    .process-steps-g { flex-direction: column; align-items: center; gap: 3rem; }
    .process-step-g { max-width: 100%; }
}

/* ============================================
   PRICING
   ============================================ */
.graphics-pricing {
    padding: 8rem 0;
    background: #0e0e0e;
}

.pricing-title-g {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
}

.pricing-subtitle-g {
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.pricing-cards-g {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card-g {
    position: relative;
    padding: 2.5rem;
    background: #141414;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.price-card-g:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.featured-g {
    border-color: rgba(192, 192, 192, 0.5);
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.1) 0%, 
        rgba(128, 128, 128, 0.1) 100%);
}

.popular-g {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #b09878 0%, #686048 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}

.plan-icon-g {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.price-card-g h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-g {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 2rem;
}

.price-list-g {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.price-list-g li {
    padding: 0.75rem 0;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-list-g li::before {
    content: '✦';
    color: #92851f;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.btn-price-g {
    display: block;
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-price-g:hover {
    background: rgba(255, 235, 147, 0.461);
    border-color: rgba(173, 173, 173, 0.3);
    transform: translateY(-2px);
}

.btn-price-featured {
    background: linear-gradient(135deg, #b09878 0%, #686048 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 30px rgba(116, 116, 116, 0.35);
}

.btn-price-featured:hover {
    box-shadow: 0 12px 40px rgba(202, 165, 0, 0.55);
}

/* ============================================
   CTA
   ============================================ */
.graphics-cta {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
    background: #080808;
    text-align: center;
}

.graphics-cta-content {
    position: relative;
    z-index: 2;
}

.cta-pill {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(199,125,255,0.12);
    border: 1px solid rgba(199,125,255,0.35);
    border-radius: 50px;
    color: #c77dff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.graphics-cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.graphics-cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 3rem;
}

.btn-large-g {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}