/* ========================================
   HIRA PRINT - ADVANCED ANIMATIONS & EFFECTS
   3D Carousels, Parallax, Modern Effects
======================================== */

/* ========================================
   GLOBAL ANIMATION UTILITIES
======================================== */

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ========================================
   FLOATING ELEMENTS
======================================== */

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(-10px); }
    50% { transform: translateY(10px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========================================
   3D CARD EFFECTS
======================================== */

.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.card-3d-inner {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(10deg) rotateX(5deg) scale(1.02);
}

/* Tilt effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(1.02);
}

/* ========================================
   HERO ENHANCEMENTS
======================================== */

/* Animated Background Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    opacity: 0.1;
}

.hero-shape.circle-1 {
    width: 600px;
    height: 600px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    right: -200px;
    top: 10%;
    animation: spin 60s linear infinite;
}

.hero-shape.circle-2 {
    width: 400px;
    height: 400px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    right: -100px;
    top: 20%;
    animation: spin 40s linear infinite reverse;
}

.hero-shape.circle-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    left: 10%;
    bottom: 20%;
    animation: float 8s ease-in-out infinite;
}

.hero-shape.dots {
    width: 200px;
    height: 200px;
    right: 20%;
    bottom: 15%;
    background-image: radial-gradient(circle, var(--gold) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: floatSlow 10s ease-in-out infinite;
}

.hero-shape.line-1 {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    left: 5%;
    top: 30%;
    transform: rotate(-45deg);
    animation: pulse 3s ease-in-out infinite;
}

.hero-shape.line-2 {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    right: 25%;
    bottom: 30%;
    transform: rotate(45deg);
    animation: pulse 3s ease-in-out infinite 1s;
}

/* Print-related floating icons */
.hero-float-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    backdrop-filter: blur(10px);
}

.float-icon.fi-1 {
    right: 15%;
    top: 25%;
    animation: float 6s ease-in-out infinite;
}

.float-icon.fi-2 {
    right: 8%;
    top: 50%;
    animation: floatSlow 8s ease-in-out infinite;
    animation-delay: 1s;
}

.float-icon.fi-3 {
    right: 20%;
    bottom: 25%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

.float-icon.fi-4 {
    right: 5%;
    bottom: 35%;
    animation: floatReverse 5s ease-in-out infinite;
}

/* ========================================
   3D CAROUSEL
======================================== */

.carousel-3d {
    perspective: 2000px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
}

.carousel-3d-container {
    width: 280px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    animation: carousel3dRotate 30s linear infinite;
    animation-play-state: running;
}

.carousel-3d-container:hover {
    animation-play-state: paused;
}

@keyframes carousel3dRotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.carousel-3d-item {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Position items in 3D space (6 items) */
.carousel-3d-item:nth-child(1) { transform: rotateY(0deg) translateZ(400px); }
.carousel-3d-item:nth-child(2) { transform: rotateY(60deg) translateZ(400px); }
.carousel-3d-item:nth-child(3) { transform: rotateY(120deg) translateZ(400px); }
.carousel-3d-item:nth-child(4) { transform: rotateY(180deg) translateZ(400px); }
.carousel-3d-item:nth-child(5) { transform: rotateY(240deg) translateZ(400px); }
.carousel-3d-item:nth-child(6) { transform: rotateY(300deg) translateZ(400px); }

.carousel-3d-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.carousel-3d-card .card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.carousel-3d-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-3d-card .card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--navy) 100%);
    z-index: 1;
}

.carousel-3d-card .card-image i {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 32px;
    color: var(--gold);
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.carousel-3d-card .card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.carousel-3d-card .card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.carousel-3d-card .card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    flex: 1;
}

.carousel-3d-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 16px;
    transition: gap 0.3s ease;
}

.carousel-3d-card .card-link:hover {
    gap: 12px;
}

/* ========================================
   PRINTING IMAGES GALLERY
======================================== */

.print-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    margin: 60px 0;
}

.print-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.print-gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 22, 40, 0.95) 100%);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.print-gallery-item:hover::before {
    opacity: 1;
}

.print-gallery-item img.gallery-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.print-gallery-item .gallery-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.print-gallery-item:hover .gallery-bg,
.print-gallery-item:hover img.gallery-bg {
    transform: scale(1.1);
}

.print-gallery-item .gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s ease;
}

.print-gallery-item:hover .gallery-content {
    transform: translateY(-10px);
}

.print-gallery-item .gallery-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 12px;
}

.print-gallery-item .gallery-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.print-gallery-item .gallery-subtitle {
    font-size: 13px;
    color: var(--gold);
}

/* Grid layouts */
.print-gallery-item.span-2 {
    grid-column: span 2;
}

.print-gallery-item.span-2-row {
    grid-row: span 2;
}

/* ========================================
   IMAGE BANNERS WITH PARALLAX
======================================== */

.parallax-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    inset: -50px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.7) 100%);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.parallax-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
}

.parallax-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* ========================================
   PRINTING PROCESS TIMELINE
======================================== */

.process-timeline {
    position: relative;
    padding: 60px 0;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-content {
    text-align: right;
}

.process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    z-index: 2;
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.2);
}

.process-content {
    flex: 1;
    max-width: 45%;
}

.process-image {
    flex: 1;
    max-width: 45%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.process-image .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.process-image i {
    font-size: 48px;
    color: var(--gold);
}

.process-image span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.process-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.process-desc {
    color: var(--gray-600);
    line-height: 1.8;
}

/* ========================================
   PRINTING SHOWCASE CARDS
======================================== */

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.showcase-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.showcase-card .card-image {
    height: 250px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-card .card-image i {
    font-size: 64px;
    color: var(--gold);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.showcase-card:hover .card-image i {
    transform: scale(1.2);
    opacity: 0.8;
}

.showcase-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--navy) 100%);
}

.showcase-card .card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
}

.showcase-card .card-body {
    padding: 28px;
}

.showcase-card .card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.showcase-card .card-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.showcase-card .card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.showcase-card .feature-tag {
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 12px;
    color: var(--gray-700);
}

/* ========================================
   TESTIMONIAL SLIDER ENHANCEMENT
======================================== */

.testimonial-3d {
    position: relative;
    padding: 60px 0;
}

/* Testimonial cards - Use styles from sections2.css */
.testimonials .testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.testimonials .testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ========================================
   INDUSTRY LOGOS CAROUSEL
======================================== */

.industry-carousel {
    padding: 60px 0;
    background: var(--gray-100);
    overflow: hidden;
}

.industry-track {
    display: flex;
    animation: industryScroll 40s linear infinite;
}

@keyframes industryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.industry-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.industry-item i {
    font-size: 40px;
    color: var(--navy);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.industry-item:hover i {
    color: var(--gold);
    opacity: 1;
}

/* ========================================
   PRINTING EQUIPMENT SHOWCASE
======================================== */

.equipment-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.equipment-card {
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.equipment-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.equipment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.equipment-card:hover .equipment-icon {
    background: var(--gold);
    color: var(--navy);
}

.equipment-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.equipment-brand {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
}

/* ========================================
   CONTACT CTA BANNER
======================================== */

.cta-banner {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    right: -100px;
    top: -100px;
    animation: float 15s ease-in-out infinite;
}

.cta-shape.shape-2 {
    width: 300px;
    height: 300px;
    border: 2px solid var(--gold);
    left: -50px;
    bottom: -50px;
    animation: spin 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-title span {
    color: var(--gold);
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   MOBILE RESPONSIVE ANIMATIONS
======================================== */

@media (max-width: 992px) {
    .carousel-3d-container {
        width: 220px;
        height: 320px;
    }
    
    .carousel-3d-item:nth-child(1) { transform: rotateY(0deg) translateZ(280px); }
    .carousel-3d-item:nth-child(2) { transform: rotateY(60deg) translateZ(280px); }
    .carousel-3d-item:nth-child(3) { transform: rotateY(120deg) translateZ(280px); }
    .carousel-3d-item:nth-child(4) { transform: rotateY(180deg) translateZ(280px); }
    .carousel-3d-item:nth-child(5) { transform: rotateY(240deg) translateZ(280px); }
    .carousel-3d-item:nth-child(6) { transform: rotateY(300deg) translateZ(280px); }
    
    .print-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
    
    .print-gallery-item.span-2 {
        grid-column: span 1;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipment-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .process-step .process-content,
    .process-step .process-image {
        max-width: 100%;
        text-align: center !important;
    }
    
    .process-line {
        display: none;
    }
    
    .process-number {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }
    
    .hero-float-icons {
        display: none;
    }
    
    .hero-shape.circle-1,
    .hero-shape.circle-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .carousel-3d {
        min-height: 350px;
        perspective: 1200px;
    }
    
    .carousel-3d-container {
        width: 160px;
        height: 240px;
    }
    
    .carousel-3d-item:nth-child(1) { transform: rotateY(0deg) translateZ(180px); }
    .carousel-3d-item:nth-child(2) { transform: rotateY(60deg) translateZ(180px); }
    .carousel-3d-item:nth-child(3) { transform: rotateY(120deg) translateZ(180px); }
    .carousel-3d-item:nth-child(4) { transform: rotateY(180deg) translateZ(180px); }
    .carousel-3d-item:nth-child(5) { transform: rotateY(240deg) translateZ(180px); }
    .carousel-3d-item:nth-child(6) { transform: rotateY(300deg) translateZ(180px); }

    .carousel-3d-card .card-image {
        height: 120px;
    }

    .carousel-3d-card .card-image i {
        font-size: 22px;
        bottom: 8px;
        left: 10px;
    }

    .carousel-3d-card .card-content {
        padding: 12px;
    }

    .carousel-3d-card .card-title {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .carousel-3d-card .card-desc {
        font-size: 11px;
        line-height: 1.4;
    }

    .carousel-3d-card .card-link {
        font-size: 12px;
        margin-top: 8px;
    }
    
    .print-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 180px);
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .parallax-banner {
        height: 400px;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
    
    .industry-item {
        width: 150px;
        height: 80px;
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .carousel-3d {
        min-height: 300px;
        perspective: 1000px;
    }

    .carousel-3d-container {
        width: 140px;
        height: 210px;
    }
    
    .carousel-3d-item:nth-child(1) { transform: rotateY(0deg) translateZ(150px); }
    .carousel-3d-item:nth-child(2) { transform: rotateY(60deg) translateZ(150px); }
    .carousel-3d-item:nth-child(3) { transform: rotateY(120deg) translateZ(150px); }
    .carousel-3d-item:nth-child(4) { transform: rotateY(180deg) translateZ(150px); }
    .carousel-3d-item:nth-child(5) { transform: rotateY(240deg) translateZ(150px); }
    .carousel-3d-item:nth-child(6) { transform: rotateY(300deg) translateZ(150px); }

    .carousel-3d-card .card-image {
        height: 100px;
    }

    .carousel-3d-card .card-image i {
        font-size: 18px;
        bottom: 6px;
        left: 8px;
    }

    .carousel-3d-card .card-content {
        padding: 10px;
    }

    .carousel-3d-card .card-title {
        font-size: 12px;
    }

    .carousel-3d-card .card-desc {
        font-size: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .carousel-3d-card .card-link {
        font-size: 11px;
        margin-top: 6px;
    }
    
    .equipment-showcase {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CUSTOM CURSOR
======================================== */
.custom-cursor {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease;
    opacity: 0;
    top: -20px;
    left: -20px;
}

.cursor-dot.active {
    opacity: 1;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    opacity: 0;
    transition: transform 0.08s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
    top: -40px;
    left: -40px;
}

.cursor-outline.active {
    opacity: 0.5;
}

.cursor-outline.hovering {
    width: 60px;
    height: 60px;
    opacity: 0.8;
    border-color: var(--gold-light);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* ========================================
   SCROLL INDICATOR
======================================== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: fadeInUp 1s ease 1.5s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

@keyframes fadeInUp {
    to {
        opacity: 0.7;
    }
}

/* ========================================
   PAGE TRANSITIONS
======================================== */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition.active {
    transform: translateY(0);
}

/* ========================================
   LOADING SKELETON
======================================== */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========================================
   GRADIENT TEXT ANIMATION
======================================== */
.gradient-text-animated {
    background: linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light),
        #fff,
        var(--gold-light),
        var(--gold)
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ========================================
   GLOW EFFECTS
======================================== */
.glow-gold {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3),
                0 0 40px rgba(212, 175, 55, 0.2),
                0 0 60px rgba(212, 175, 55, 0.1);
}

.glow-gold-hover:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4),
                0 0 60px rgba(212, 175, 55, 0.3),
                0 0 90px rgba(212, 175, 55, 0.2);
}

/* ========================================
   NOISE TEXTURE OVERLAY
======================================== */
.noise-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}
