/* Graphic design service page — scoped under .graphic-design-page */

.graphic-design-page {
    --gd-accent: #ca3200;
    --gd-accent-light: #e85d2a;
    --gd-accent-soft: rgba(202, 50, 0, 0.12);
    --gd-dark: #0f0f0f;
    --gd-charcoal: #1a1a1a;
    --gd-surface: #f6f7f9;
    --gd-surface-warm: #faf8f6;
    --gd-card: #ffffff;
    --gd-text: #0f172a;
    --gd-muted: #64748b;
    --gd-radius: 18px;
    --gd-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    --gd-shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.12);
    color: var(--gd-text);
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* ----- Hero ----- */
.gd-hero {
    position: relative;
    min-height: clamp(360px, 48vh, 620px);
    display: flex;
    align-items: center;
    margin-bottom: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 100% 80% at 85% 15%, rgba(255, 255, 255, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 10% 70%, rgba(202, 50, 0, 0.35) 0%, transparent 42%),
        radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        linear-gradient(145deg, #120805 0%, #2a0f08 35%, #8b2500 72%, #ca3200 100%);
}

.gd-hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    background-image: url("../img/gd-bc.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    z-index: 0;
}

.gd-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(8, 4, 2, 0.88) 0%,
        rgba(40, 14, 6, 0.55) 45%,
        rgba(202, 50, 0, 0.25) 100%
    );
    z-index: 1;
}

.gd-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3.5rem 1rem 4rem;
}

.gd-hero-grid {
    align-items: center;
}

.gd-hero-copy h1 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: clamp(2.35rem, 5.5vw, 3.75rem);
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.gd-hero-copy .gd-tagline {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.55;
    max-width: 520px;
    margin-bottom: 1.75rem;
}

.gd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gd-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    background: #fff;
    color: var(--gd-accent) !important;
    border: none;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.gd-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    color: var(--gd-dark) !important;
}

.gd-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.35rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.gd-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff !important;
}

.gd-hero-visual {
    position: relative;
    border-radius: var(--gd-radius);
    overflow: hidden;
    box-shadow: var(--gd-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gd-hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gd-hero-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 0.65rem 1rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

/* Kickers & section titles */
.gd-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gd-accent);
    margin-bottom: 0.5rem;
}

.gd-section-title {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: clamp(1.65rem, 3.2vw, 2.15rem);
    line-height: 1.2;
    color: var(--gd-text);
    margin-bottom: 1rem;
}

.gd-section-title .gd-accent-text {
    color: var(--gd-accent);
}

.gd-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--gd-muted);
    margin-bottom: 0;
}

/* Intro */
.gd-intro {
    padding: 4rem 0;
    background: var(--gd-card);
}

.gd-intro-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.gd-intro-inner p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gd-muted);
    margin-bottom: 0;
}

/* Alternating splits */
.gd-split {
    padding: 4.5rem 0;
}

.gd-split--white {
    background: var(--gd-card);
}

.gd-split--surface {
    background: var(--gd-surface-warm);
}

.gd-split-body h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--gd-text);
}

.gd-split-body p {
    color: var(--gd-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.gd-checklist {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.gd-checklist li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.65rem;
    color: var(--gd-text);
    font-weight: 500;
    font-size: 0.98rem;
}

.gd-checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 0.75rem;
    color: var(--gd-accent);
}

/* Carousels */
.gd-carousel-wrap {
    position: relative;
    border-radius: var(--gd-radius);
    overflow: hidden;
    box-shadow: var(--gd-shadow);
    background: var(--gd-dark);
}

.gd-carousel .carousel-item img {
    width: 100%;
    height: min(380px, 55vw);
    object-fit: cover;
    display: block;
}

.gd-carousel .carousel-control-prev,
.gd-carousel .carousel-control-next {
    width: 3rem;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    opacity: 1;
}

.gd-carousel .carousel-control-prev {
    left: 0.75rem;
}

.gd-carousel .carousel-control-next {
    right: 0.75rem;
}

.gd-carousel .carousel-control-prev:hover,
.gd-carousel .carousel-control-next:hover {
    background: rgba(202, 50, 0, 0.85);
}

.gd-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.45);
}

.gd-carousel .carousel-indicators .active {
    background: var(--gd-accent);
}

/* Process */
.gd-process {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, var(--gd-surface) 0%, #eef1f5 100%);
}

.gd-process-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.gd-process-timeline {
    max-width: 720px;
    margin: 0 auto;
}

.gd-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    border-radius: var(--gd-radius);
    background: var(--gd-card);
    box-shadow: var(--gd-shadow);
    margin-bottom: 1rem;
    border-left: 4px solid var(--gd-accent-soft);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gd-step:hover {
    border-left-color: var(--gd-accent);
    box-shadow: var(--gd-shadow-lg);
}

.gd-step--highlight {
    border-left-color: var(--gd-accent);
    background: linear-gradient(135deg, #fff 0%, var(--gd-accent-soft) 100%);
}

.gd-step-num {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 14px;
    background: var(--gd-accent-soft);
    color: var(--gd-accent);
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gd-step--highlight .gd-step-num {
    background: var(--gd-accent);
    color: #fff;
}

.gd-step h4 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.gd-step p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gd-muted);
    line-height: 1.6;
}

/* Dark value section */
.gd-value {
    position: relative;
    padding: 5rem 0;
    background: var(--gd-charcoal);
    color: #e2e8f0;
    overflow: hidden;
}

.gd-value::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(202, 50, 0, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.gd-value-inner {
    position: relative;
    z-index: 1;
}

.gd-value .gd-section-title {
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.gd-value .gd-lead {
    text-align: center;
    color: rgba(226, 232, 240, 0.75);
    max-width: 640px;
    margin: 0 auto 3rem;
}

.gd-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.gd-value-card {
    padding: 1.5rem;
    border-radius: var(--gd-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.gd-value-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(202, 50, 0, 0.35);
}

.gd-value-card i {
    font-size: 1.5rem;
    color: var(--gd-accent-light);
    margin-bottom: 0.85rem;
    display: block;
}

.gd-value-card h4 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.gd-value-card p {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.72);
    line-height: 1.6;
    margin: 0;
}

.gd-value-visual {
    margin-top: 3rem;
    text-align: center;
}

.gd-value-visual img {
    max-width: min(520px, 100%);
    border-radius: var(--gd-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA band */
.gd-cta-band {
    padding: 3.5rem 0;
    background: var(--gd-surface);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.gd-cta-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 2.25rem;
    border-radius: var(--gd-radius);
    background: var(--gd-card);
    box-shadow: var(--gd-shadow);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.gd-cta-box h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    max-width: 520px;
    margin: 0;
    line-height: 1.35;
}

.gd-cta-box .gd-stat {
    color: var(--gd-accent);
}

.gd-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gd-btn-dark {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.4rem;
    font-weight: 700;
    border-radius: 999px;
    background: var(--gd-charcoal);
    color: #fff !important;
    text-decoration: none;
    border: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gd-btn-dark:hover {
    background: #000;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Portfolio section */
.gd-portfolio {
    padding: 4.5rem 0 5rem;
    background: var(--gd-card);
}

.gd-portfolio .gd-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.gd-portfolio-block {
    margin-bottom: 4rem;
}

.gd-portfolio-block:last-child {
    margin-bottom: 0;
}

.gd-portfolio-block .row {
    align-items: center;
}

@media (max-width: 991.98px) {
    .gd-hero-visual {
        margin-top: 2rem;
    }

    .gd-portfolio-block .gd-carousel-wrap {
        margin-top: 1.5rem;
    }
}
