/* =============================================
   3D PRINT PAGE — CIRQONIX
   Uses the same design tokens from style.css
   ============================================= */

/* ---- Hero ---- */
.print-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(155deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 60px;
}

.print-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Background grid */
.print-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.print-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

/* Floating shapes */
.print-hero__shape {
    position: absolute;
    color: rgba(212, 175, 55, 0.07);
    font-size: 2.5rem;
    animation: heroFloat 8s ease-in-out infinite;
}

.print-hero__shape--1 {
    top: 15%;
    left: 8%;
    font-size: 3rem;
    animation-duration: 7s;
    animation-delay: 0s;
}

.print-hero__shape--2 {
    top: 25%;
    right: 10%;
    font-size: 2rem;
    animation-duration: 9s;
    animation-delay: -2s;
}

.print-hero__shape--3 {
    bottom: 30%;
    left: 12%;
    font-size: 2.2rem;
    animation-duration: 10s;
    animation-delay: -4s;
}

.print-hero__shape--4 {
    bottom: 20%;
    right: 15%;
    font-size: 2.8rem;
    animation-duration: 8s;
    animation-delay: -1s;
}

.print-hero__shape--5 {
    top: 60%;
    left: 25%;
    font-size: 1.8rem;
    animation-duration: 11s;
    animation-delay: -3s;
}

.print-hero__shape--6 {
    top: 12%;
    right: 25%;
    font-size: 2rem;
    animation-duration: 9s;
    animation-delay: -5s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    25%      { transform: translateY(-20px) rotate(5deg); opacity: 1; }
    50%      { transform: translateY(10px) rotate(-3deg); opacity: 0.6; }
    75%      { transform: translateY(-15px) rotate(4deg); opacity: 0.9; }
}

.print-hero__icon {
    font-size: 3.5rem;
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    animation: floatIcon 3s ease-in-out infinite alternate;
}

@keyframes floatIcon {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.print-hero__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--electric-blue);
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 1rem;
}

/* Typing cursor — always blinks (matches index page) */
.print-hero__title--typing::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 0.9em;
    background: var(--electric-blue);
    margin-left: 4px;
    vertical-align: baseline;
    animation: typingBlink 0.53s step-end infinite;
}

@keyframes typingBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.print-hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}


/* ---- Offer Cards ---- */
.offer-card {
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: left 0.6s ease;
}

.offer-card:hover::before {
    left: 100%;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-electric);
    border-color: var(--electric-blue);
}

.offer-card__icon {
    font-size: 2.2rem;
    color: var(--electric-blue);
    margin-bottom: 1.2rem;
}

.offer-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.offer-card__text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}


/* ---- Showcase Slider ---- */
.showcase-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.showcase-slider__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.showcase-slider__track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.showcase-slider__slide {
    min-width: 100%;
    flex-shrink: 0;
}

.showcase-slider__slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* Dots — overlaid on image */
.showcase-slider__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.showcase-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    backdrop-filter: blur(4px);
}

.showcase-slider__dot:hover {
    border-color: rgba(212, 175, 55, 0.9);
    background: rgba(212, 175, 55, 0.4);
    transform: scale(1.2);
}

.showcase-slider__dot.active {
    background: var(--electric-blue, #d4af37);
    border-color: var(--electric-blue, #d4af37);
}


/* ---- Step Cards (How It Works) ---- */
.step-card {
    background: linear-gradient(155deg, rgba(32, 32, 32, 0.92) 0%, rgba(26, 26, 26, 0.85) 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 18px;
    padding: 1.8rem;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.12), transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-1);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.step-card__num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-2);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.15rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    position: relative;
    z-index: 1;
}

.step-card__title {
    font-size: 1.05rem;
    margin: 0 0 0.6rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(233, 202, 165, 0.85);
    margin: 0;
    position: relative;
    z-index: 1;
}


/* ---- Material Cards ---- */
.material-card {
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.material-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-electric);
    border-color: var(--electric-blue);
}

.material-card__header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.material-card__header i {
    font-size: 1.8rem;
    color: var(--electric-blue);
}

.material-card__header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.material-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.material-card__features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.material-card__features li i {
    color: var(--electric-blue);
    font-size: 0.8rem;
    margin-top: 4px;
    flex-shrink: 0;
}


/* ---- Pricing Cards ---- */
.pricing-card {
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-electric);
    border-color: var(--electric-blue);
}

.pricing-card--popular {
    border-color: var(--gold-1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.pricing-card__badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--gradient-electric);
    color: var(--dark-bg);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.pricing-card__label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--electric-blue);
    line-height: 1;
}

.pricing-card__price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.pricing-card__features li {
    padding: 0.45rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-card__features li i {
    color: var(--electric-blue);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-card__features li i.fa-clock {
    color: var(--gold-3);
}

.pricing-card__features li i.fa-bolt {
    color: var(--gold-2);
}

.pricing-card__features li i.fa-handshake {
    color: var(--gold-5);
}

.pricing-note {
    color: rgba(233, 202, 165, 0.7);
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ---- Package Cards (Prototyping) ---- */
.package-card {
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-electric);
    border-color: var(--electric-blue);
}

.package-card--highlight {
    border-color: var(--gold-1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.12);
}

.package-card--highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 60%);
    pointer-events: none;
}

.package-card__icon {
    font-size: 2.2rem;
    color: var(--electric-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.package-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    text-align: center;
}

.package-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.package-card__features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.93rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
}

.package-card__features li i {
    color: var(--electric-blue);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 1.2rem;
    text-align: center;
}


/* ---- Why Us List ---- */
.why-us-list li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 1rem;
}


/* ---- Savings Card ---- */
.savings-card {
    background: linear-gradient(155deg, rgba(45, 45, 35, 0.95) 0%, rgba(30, 30, 24, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.savings-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1), transparent 60%);
    pointer-events: none;
}

.savings-card__icon {
    font-size: 2rem;
    color: var(--gold-2);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.savings-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.savings-card p {
    color: rgba(233, 202, 165, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.savings-card strong {
    color: var(--gold-2);
}


/* ---- Delivery Info ---- */
.delivery-info h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.delivery-info h4 i {
    color: var(--electric-blue);
}

.delivery-info__grid {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.delivery-info__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 10px;
}

.delivery-info__label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.delivery-info__value {
    color: var(--gold-2);
    font-weight: 600;
    font-size: 0.9rem;
}


/* ---- Responsive Adjustments ---- */
@media (max-width: 768px) {
    .print-hero {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .print-hero__title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .print-hero__subtitle {
        font-size: 1rem;
    }

    .pricing-card__price {
        font-size: 2rem;
    }

    .delivery-info__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .print-hero__shape {
        display: block;
        font-size: 1.4rem !important;
        color: rgba(212, 175, 55, 0.10);
    }

    /* 3 shapes above the title */
    .print-hero__shape--1 {
        top: 22%; left: 8%;
        animation-duration: 6s !important;
    }
    .print-hero__shape--2 {
        top: 18%; right: 12%; left: auto;
        animation-duration: 7s !important;
    }
    .print-hero__shape--3 {
        top: 26%; left: 45%; bottom: auto;
        animation-duration: 8s !important;
    }

    /* 3 shapes below the button */
    .print-hero__shape--4 {
        top: auto; bottom: 12%; right: 10%; left: auto;
        animation-duration: 9s !important;
    }
    .print-hero__shape--5 {
        top: auto; bottom: 8%; left: 15%;
        animation-duration: 7.5s !important;
    }
    .print-hero__shape--6 {
        top: auto; bottom: 16%; right: 35%; left: auto;
        animation-duration: 10s !important;
    }

    .showcase-slider__slide img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .offer-card,
    .material-card,
    .pricing-card,
    .package-card {
        padding: 1.5rem;
    }

    .pricing-card__badge {
        font-size: 0.65rem;
        padding: 3px 35px;
    }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    .print-hero__icon {
        animation: none !important;
    }

    .print-hero__shape {
        animation: none !important;
    }

    .showcase-slider__track {
        transition: none !important;
    }

    .offer-card,
    .step-card,
    .material-card,
    .pricing-card,
    .package-card,
    .savings-card {
        transition: none !important;
        transform: none !important;
    }
}
