/* Modern Styles for Camera Repair Pages */

:root {
    --primary-red: #e63946;
    --primary-yellow: #ffbe0b;
    --primary-black: #1a1a1a;
    --primary-gray: #6c757d;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

/* Hero Section Modern Styles */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

/* Mobile responsiveness for video background */
@media (max-width: 768px) {
    .hero-video {
        /* On mobile, we might want to disable video for performance */
        display: none;
    }

    .hero-background {
        /* Fallback to particles on mobile */
        background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    }
}

/* Fallback for browsers that don't support video */
.no-video .hero-video {
    display: none;
}

.no-video .hero-particles {
    display: block;
}

/* Override the Brooklyn Bridge background for Blackmagic page */
.blackmagic-hero {
    background: none !important;
}

.blackmagic-hero .hero-background {
    background: none !important;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* 3D Disassembled Camera Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}


/* YouTube Video Container for Blackmagic */
.video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 600px;
    margin: 2rem auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-video-embed {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    display: block;
}

/* Professional 3D Camera Container */

.professional-camera-2d {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    animation: cameraFloat2D 8s ease-in-out infinite;
}

@keyframes cameraFloat2D {

    0%,
    100% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(-2px);
    }

    75% {
        transform: translateY(-3px);
    }
}

@keyframes canon7dFloat {

    0%,
    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: translateY(-6px) rotateX(1deg) rotateY(1deg);
    }

    50% {
        transform: translateY(-3px) rotateX(0deg) rotateY(0deg);
    }

    75% {
        transform: translateY(-4px) rotateX(-1deg) rotateY(-1deg);
    }
}

/* Professional 2D Camera Body */
.professional-camera-body {
    width: 280px;
    height: 180px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 30%, #2d2d2d 60%, #0f0f0f 100%);
    border-radius: 20px 20px 15px 15px;
    position: absolute;
    top: 35px;
    left: 35px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.8),
        inset 0 3px 6px rgba(255, 255, 255, 0.15),
        inset 0 -3px 6px rgba(0, 0, 0, 0.5);
    border: 3px solid #444;
    z-index: 1;
    transition: transform 0.3s ease;
}

.professional-camera-body:hover {
    transform: translateY(-3px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.9),
        inset 0 3px 6px rgba(255, 255, 255, 0.2),
        inset 0 -3px 6px rgba(0, 0, 0, 0.6);
}

/* Professional 2D Camera Lens */
.professional-camera-lens {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 25% 25%, #0a0a0a 0%, #1a1a1a 35%, #2a2a2a 65%, #0f0f0f 100%);
    border-radius: 50%;
    position: absolute;
    top: 60px;
    left: 20px;
    box-shadow:
        inset 0 0 35px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(0, 0, 0, 0.8),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 5px solid #555;
    z-index: 2;
}

.professional-camera-lens::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #000 0%, #0a0a0a 40%, #000 100%);
    border-radius: 50%;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 1);
}

.professional-camera-lens::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 35px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #000 0%, #0a0a0a 100%);
    border-radius: 50%;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 1);
}

/* Professional 2D Camera Flash */
.professional-camera-flash {
    width: 30px;
    height: 20px;
    background: linear-gradient(45deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    border-radius: 6px;
    position: absolute;
    top: 25px;
    right: 40px;
    box-shadow:
        0 0 18px rgba(255, 215, 0, 0.8),
        inset 0 2px 3px rgba(255, 255, 255, 0.4);
    border: 2px solid #e6c200;
    animation: professionalFlashPulse 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes professionalFlashPulse {

    0%,
    90%,
    100% {
        box-shadow:
            0 0 15px rgba(255, 215, 0, 0.6),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
    }

    5% {
        box-shadow:
            0 0 25px rgba(255, 215, 0, 1),
            0 0 35px rgba(255, 255, 255, 0.8),
            inset 0 1px 2px rgba(255, 255, 255, 0.5);
    }
}

/* Professional 2D Camera LCD */
.professional-camera-lcd {
    width: 120px;
    height: 90px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    border-radius: 12px;
    position: absolute;
    top: 100px;
    right: 20px;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.9),
        0 5px 12px rgba(0, 0, 0, 0.6);
    border: 3px solid #333;
    z-index: 2;
}

.professional-camera-lcd::before {
    content: 'PROFESSIONAL';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 10px;
    font-weight: bold;
    animation: professionalLcdGlow 3s ease-in-out infinite;
}

@keyframes professionalLcdGlow {

    0%,
    100% {
        color: #666;
        text-shadow: 0 0 5px rgba(0, 150, 255, 0.3);
    }

    50% {
        color: #999;
        text-shadow: 0 0 10px rgba(0, 150, 255, 0.6);
    }
}

/* Professional 2D Camera Viewfinder */
.professional-camera-viewfinder {
    width: 50px;
    height: 30px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-radius: 6px;
    position: absolute;
    top: 20px;
    right: 30px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 1);
    border: 3px solid #333;
    z-index: 3;
}

/* Professional 2D Camera Grip */
.professional-camera-grip {
    width: 60px;
    height: 110px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #1a1a1a 50%, #0f0f0f 75%, #1a1a1a 100%);
    border-radius: 10px;
    position: absolute;
    top: 100px;
    right: 25px;
    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid #333;
    z-index: 2;
}

/* Professional 2D Camera Buttons */
.professional-camera-buttons {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 280px;
    height: 180px;
    z-index: 3;
}

.professional-camera-button {
    position: absolute;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 4px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    border: 1px solid #555;
    transition: all 0.2s ease;
    cursor: pointer;
}

.professional-camera-button:hover {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
    box-shadow:
        0 3px 6px rgba(0, 0, 0, 0.5),
        inset 0 2px 3px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Professional 2D Camera Button Layout */
.professional-camera-button-1 {
    width: 16px;
    height: 12px;
    top: 40px;
    right: 80px;
    left: auto;
}

.professional-camera-button-2 {
    width: 20px;
    height: 14px;
    top: 60px;
    right: 75px;
    left: auto;
}

.professional-camera-button-3 {
    width: 14px;
    height: 10px;
    top: 80px;
    right: 85px;
    left: auto;
}

.professional-camera-button-4 {
    width: 24px;
    height: 16px;
    top: 100px;
    right: 70px;
    left: auto;
}

.professional-camera-button-5 {
    width: 18px;
    height: 12px;
    top: 120px;
    right: 80px;
    left: auto;
}

.professional-camera-button-6 {
    width: 22px;
    height: 14px;
    top: 140px;
    right: 75px;
    left: auto;
}

.professional-camera-button-7 {
    width: 12px;
    height: 9px;
    top: 160px;
    right: 85px;
    left: auto;
}

.professional-camera-button-8 {
    width: 26px;
    height: 16px;
    top: 180px;
    right: 70px;
    left: auto;
}

/* Professional 2D Camera Brand and Model */
.professional-camera-brand {
    position: absolute;
    top: 8px;
    left: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

.professional-camera-model {
    position: absolute;
    top: 22px;
    left: 20px;
    color: #ccc;
    font-size: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* Professional 2D Camera Hotshoe */
.professional-camera-hotshoe {
    width: 30px;
    height: 8px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 125px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
}

/* Professional 2D Camera Strap Lugs */
.professional-camera-strap-lug {
    width: 8px;
    height: 12px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 2px;
    position: absolute;
    top: 2px;
    left: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.professional-camera-strap-lug.right {
    left: 252px;
}

.professional-camera-strap-lug::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 8px;
    background: #000;
    border-radius: 1px;
}

.camera-showcase {
    perspective: 1200px;
    transform-style: preserve-3d;
    position: relative;
    width: 500px;
    height: 400px;
}

.camera-showcase:hover .camera-3d {
    animation-play-state: paused;
    transform: rotateX(-8deg) rotateY(15deg) scale(1.08);
    transition: transform 0.4s ease;
}

.camera-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    margin: 0 auto;
    animation: cameraFloat 8s ease-in-out infinite;
}

@keyframes cameraFloat {

    0%,
    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: translateY(-8px) rotateX(1deg) rotateY(1deg);
    }

    50% {
        transform: translateY(-4px) rotateX(0deg) rotateY(0deg);
    }

    75% {
        transform: translateY(-6px) rotateX(-1deg) rotateY(-1deg);
    }
}

.camera-body {
    width: 280px;
    height: 180px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 30%, #2d2d2d 60%, #0f0f0f 100%);
    border-radius: 25px 25px 15px 15px;
    position: absolute;
    top: 50px;
    left: 50px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.8),
        inset 0 3px 6px rgba(255, 255, 255, 0.15),
        inset 0 -3px 6px rgba(0, 0, 0, 0.5);
    border: 3px solid #444;
    z-index: 1;
    transform: rotateX(5deg) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.camera-body:hover {
    transform: rotateX(8deg) rotateY(-8deg) translateZ(10px);
}

.camera-lens {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle at 25% 25%, #0a0a0a 0%, #1a1a1a 35%, #2a2a2a 65%, #0f0f0f 100%);
    border-radius: 50%;
    position: absolute;
    top: 85px;
    left: 10px;
    box-shadow:
        inset 0 0 35px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(0, 0, 0, 0.8),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 5px solid #555;
    z-index: 2;
}

.camera-lens::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #000 0%, #0a0a0a 40%, #000 100%);
    border-radius: 50%;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 1);
}

.camera-lens::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 35px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #000 0%, #0a0a0a 100%);
    border-radius: 50%;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 1);
}

.camera-flash {
    width: 28px;
    height: 20px;
    background: linear-gradient(45deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    border-radius: 5px;
    position: absolute;
    top: 30px;
    right: 40px;
    box-shadow:
        0 0 18px rgba(255, 215, 0, 0.8),
        inset 0 2px 3px rgba(255, 255, 255, 0.4);
    border: 2px solid #e6c200;
    animation: flashPulse 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes flashPulse {

    0%,
    90%,
    100% {
        box-shadow:
            0 0 15px rgba(255, 215, 0, 0.6),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
    }

    5% {
        box-shadow:
            0 0 25px rgba(255, 215, 0, 1),
            0 0 35px rgba(255, 255, 255, 0.8),
            inset 0 1px 2px rgba(255, 255, 255, 0.5);
    }
}

.camera-lcd {
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    border-radius: 12px;
    position: absolute;
    top: 140px;
    right: 10px;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.9),
        0 5px 12px rgba(0, 0, 0, 0.6);
    border: 3px solid #333;
    z-index: 2;
}

.camera-lcd::before {
    content: 'LCD';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 10px;
    font-weight: bold;
    animation: lcdGlow 3s ease-in-out infinite;
}

@keyframes lcdGlow {

    0%,
    100% {
        color: #666;
        text-shadow: 0 0 5px rgba(0, 150, 255, 0.3);
    }

    50% {
        color: #999;
        text-shadow: 0 0 10px rgba(0, 150, 255, 0.6);
    }
}

.camera-viewfinder {
    width: 50px;
    height: 30px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-radius: 6px;
    position: absolute;
    top: 25px;
    right: 20px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 1);
    border: 3px solid #333;
    z-index: 3;
}

.camera-grip {
    width: 60px;
    height: 120px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #1a1a1a 50%, #0f0f0f 75%, #1a1a1a 100%);
    border-radius: 8px;
    position: absolute;
    top: 140px;
    right: 15px;
    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid #333;
    z-index: 2;
}

.camera-buttons {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 280px;
    height: 180px;
    z-index: 3;
}

.camera-button {
    position: absolute;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 4px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    border: 1px solid #555;
    transition: all 0.2s ease;
    cursor: pointer;
}

.camera-button:hover {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
    box-shadow:
        0 3px 6px rgba(0, 0, 0, 0.5),
        inset 0 2px 3px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Butoane ordonate în sus dreapta - ca pe Canon EOS R5 */
.camera-button-1 {
    width: 16px;
    height: 12px;
    top: 60px;
    right: 80px;
    left: auto;
}

.camera-button-2 {
    width: 20px;
    height: 14px;
    top: 80px;
    right: 75px;
    left: auto;
}

.camera-button-3 {
    width: 14px;
    height: 10px;
    top: 100px;
    right: 85px;
    left: auto;
}

.camera-button-4 {
    width: 24px;
    height: 16px;
    top: 120px;
    right: 70px;
    left: auto;
}

/* Butoane suplimentare pentru aspect complet */
.camera-button-5 {
    width: 18px;
    height: 12px;
    top: 140px;
    right: 80px;
    left: auto;
}

.camera-button-6 {
    width: 22px;
    height: 14px;
    top: 160px;
    right: 75px;
    left: auto;
}

.camera-button-7 {
    width: 12px;
    height: 10px;
    top: 180px;
    right: 85px;
    left: auto;
}

.camera-button-8 {
    width: 26px;
    height: 16px;
    top: 200px;
    right: 70px;
    left: auto;
}

.camera-brand {
    position: absolute;
    top: 10px;
    left: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.camera-model {
    position: absolute;
    top: 25px;
    left: 20px;
    color: #ccc;
    font-size: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.camera-hotshoe {
    width: 30px;
    height: 8px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 2px;
    position: absolute;
    top: 15px;
    left: 125px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.camera-strap-lug {
    width: 8px;
    height: 12px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.camera-strap-lug.right {
    left: 252px;
}

.camera-strap-lug::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 8px;
    background: #000;
    border-radius: 1px;
}

/* Realistic 2D Camera Design */
.camera-2d {
    width: 300px;
    height: 200px;
    position: relative;
    margin: 0 auto;
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
    animation: slowDisassembly 10s infinite;
}

.camera-body-2d {
    width: 280px;
    height: 180px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border-radius: 15px;
    position: relative;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.8);
    border: 2px solid #333;
}

.camera-lens-2d {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 50%, #000 100%);
    border-radius: 50%;
    position: absolute;
    top: 50px;
    left: 20px;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.8),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 3px solid #444;
    animation: lensDisassembly 10s infinite 1s;
}

.camera-lens-glass {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    border: 1px solid #666;
}

.camera-viewfinder-2d {
    width: 40px;
    height: 30px;
    background: linear-gradient(145deg, #000 0%, #1a1a1a 100%);
    border-radius: 5px;
    position: absolute;
    top: 20px;
    left: 120px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    animation: viewfinderDisassembly 10s infinite 2s;
}

.camera-lcd-2d {
    width: 100px;
    height: 70px;
    background: linear-gradient(145deg, #000 0%, #1a1a1a 50%, #000 100%);
    border-radius: 8px;
    position: absolute;
    top: 60px;
    left: 120px;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid #333;
    animation: lcdDisassembly 10s infinite 3s;
}

.camera-lcd-screen {
    width: 90px;
    height: 60px;
    background: linear-gradient(145deg, #001122 0%, #003366 50%, #001122 100%);
    border-radius: 4px;
    position: absolute;
    top: 5px;
    left: 5px;
    box-shadow: inset 0 1px 2px rgba(0, 150, 255, 0.3);
}

.camera-buttons-2d {
    position: absolute;
    top: 10px;
    right: 20px;
}

.camera-button-2d {
    width: 12px;
    height: 12px;
    background: linear-gradient(145deg, #444 0%, #222 100%);
    border-radius: 50%;
    margin: 3px 0;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    border: 1px solid #555;
}

.camera-grip-2d {
    width: 60px;
    height: 120px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 8px;
    position: absolute;
    top: 30px;
    right: 10px;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    animation: gripDisassembly 10s infinite 4s;
}

.camera-flash-2d {
    width: 25px;
    height: 20px;
    background: linear-gradient(145deg, #333 0%, #1a1a1a 100%);
    border-radius: 4px;
    position: absolute;
    top: 15px;
    left: 200px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
    animation: flashDisassembly 10s infinite 5s;
}

.camera-hotshoe-2d {
    width: 30px;
    height: 8px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 150px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
}

.camera-brand-2d {
    position: absolute;
    top: 140px;
    left: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #ccc;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.camera-model-2d {
    position: absolute;
    top: 155px;
    left: 20px;
    font-size: 10px;
    color: #999;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.7;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Modern Services Section */
.modern-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

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

.modern-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    position: relative;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 3rem;
    color: #ff6b35;
    position: relative;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.feature-tag {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-card:hover .card-hover-effect {
    left: 100%;
}

/* Modern Models Section */
.modern-models {
    padding: 6rem 0;
    background: white;
}

.models-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid #e9ecef;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #6c757d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.model-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.model-image {
    margin-bottom: 1rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.model-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--primary-red);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.model-card:hover .model-icon {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.camera-preview {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    position: relative;
}

.camera-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

.canon-5d {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.canon-6d {
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.canon-7d {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.canon-rebel {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.canon-r5 {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.canon-r6 {
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.canon-m50 {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.canon-c300 {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.canon-c200 {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.lens-preview {
    width: 60px;
    height: 40px;
    border-radius: 20px;
    position: relative;
}

.canon-ef {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.canon-rf {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

/* Nikon Camera Previews */
.nikon-d850 {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.nikon-d780 {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.nikon-d750 {
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.nikon-d500 {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.nikon-z9 {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.nikon-z7 {
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.nikon-z6 {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.nikon-z50 {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.nikon-d6 {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.nikon-d5 {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.nikon-f {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.nikon-z {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

/* Panasonic Camera Previews */
.panasonic-gh6 {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.panasonic-gh5 {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.panasonic-gh4 {
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.panasonic-g9 {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.panasonic-gx9 {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.panasonic-g95 {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.panasonic-eva1 {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.panasonic-varicam {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.panasonic-mft {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.panasonic-leica {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

/* Leica Camera Previews */
.leica-m11 {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.leica-m10 {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.leica-q2 {
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.leica-sl2 {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.leica-m {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.leica-l {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

/* Blackmagic Camera Previews */
.blackmagic-pocket6k {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.blackmagic-pocket4k {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.blackmagic-studio4k {
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.blackmagic-ursa {
    background: linear-gradient(45deg, #1a1a1a, #333);
}

.model-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
    margin-top: 1rem;
}

.feature {
    background: #f8f9fa;
    color: #495057;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 1s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-slide-up-delay {
    animation: slideUp 1s ease 0.9s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons {
        justify-content: center;
    }

    .models-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 200px;
    }

    .camera-3d {
        width: 250px;
        height: 180px;
    }

    .camera-body {
        width: 180px;
        height: 120px;
        left: 35px;
        top: 30px;
    }

    .camera-lens {
        width: 50px;
        height: 50px;
        top: 40px;
        left: 8px;
    }

    .camera-lens::before {
        top: 12px;
        left: 12px;
        width: 26px;
        height: 26px;
    }

    .camera-lens::after {
        top: 19px;
        left: 19px;
        width: 12px;
        height: 12px;
    }

    .camera-lcd {
        width: 70px;
        height: 50px;
        top: 75px;
        right: 8px;
    }

    .camera-grip {
        width: 30px;
        height: 60px;
        top: 85px;
        right: 6px;
    }

    .camera-flash {
        width: 12px;
        height: 8px;
        top: 12px;
        right: 16px;
    }

    .camera-viewfinder {
        width: 24px;
        height: 15px;
        top: 12px;
        right: 10px;
    }

    .camera-buttons {
        width: 120px;
        height: 70px;
    }

    /* Butoane responsive - ordonate în sus dreapta */
    .camera-button-1 {
        top: 35px;
        right: 42px;
        left: auto;
        width: 10px;
        height: 6px;
    }

    .camera-button-2 {
        top: 42px;
        right: 38px;
        left: auto;
        width: 12px;
        height: 8px;
    }

    .camera-button-3 {
        top: 50px;
        right: 45px;
        left: auto;
        width: 8px;
        height: 5px;
    }

    .camera-button-4 {
        top: 58px;
        right: 35px;
        left: auto;
        width: 14px;
        height: 8px;
    }

    .camera-button-5 {
        top: 65px;
        right: 42px;
        left: auto;
        width: 10px;
        height: 6px;
    }

    .camera-button-6 {
        top: 72px;
        right: 38px;
        left: auto;
        width: 12px;
        height: 8px;
    }

    .camera-button-7 {
        top: 80px;
        right: 45px;
        left: auto;
        width: 6px;
        height: 4px;
    }

    .camera-button-8 {
        top: 87px;
        right: 35px;
        left: auto;
        width: 16px;
        height: 8px;
    }

    .camera-brand {
        font-size: 7px;
        top: 4px;
        left: 10px;
    }

    .camera-model {
        font-size: 5px;
        top: 12px;
        left: 10px;
    }

    .camera-hotshoe {
        width: 14px;
        height: 3px;
        top: 6px;
        left: 60px;
    }

    .camera-strap-lug {
        width: 3px;
        height: 6px;
        top: 1px;
        left: 10px;
    }

    .camera-strap-lug.right {
        left: 117px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .camera-3d {
        width: 200px;
        height: 150px;
    }

    .camera-body {
        width: 150px;
        height: 100px;
        left: 25px;
        top: 25px;
    }

    .camera-lens {
        width: 40px;
        height: 40px;
        top: 30px;
        left: 5px;
    }

    .camera-lens::before {
        top: 10px;
        left: 10px;
        width: 20px;
        height: 20px;
    }

    .camera-lens::after {
        top: 15px;
        left: 15px;
        width: 10px;
        height: 10px;
    }

    .camera-lcd {
        width: 55px;
        height: 40px;
        top: 60px;
        right: 5px;
    }

    .camera-grip {
        width: 25px;
        height: 50px;
        top: 70px;
        right: 4px;
    }

    .camera-flash {
        width: 10px;
        height: 6px;
        top: 8px;
        right: 12px;
    }

    .camera-viewfinder {
        width: 20px;
        height: 12px;
        top: 8px;
        right: 8px;
    }

    .camera-buttons {
        width: 100px;
        height: 60px;
    }

    .camera-brand {
        font-size: 6px;
        top: 3px;
        left: 8px;
    }

    .camera-model {
        font-size: 4px;
        top: 10px;
        left: 8px;
    }

    .camera-hotshoe {
        width: 12px;
        height: 2px;
        top: 4px;
        left: 50px;
    }

    .camera-strap-lug {
        width: 2px;
        height: 5px;
        top: 1px;
        left: 8px;
    }

    .camera-strap-lug.right {
        left: 92px;
    }
}


/* YouTube Video Responsive Design */
@media (max-width: 768px) {
    .video-container {
        max-width: 350px;
        height: 500px;
        margin: 1.5rem auto 0;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 15px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .video-container {
        max-width: 300px;
        height: 400px;
        margin: 1rem auto 0;
    }
}


/* Professional 2D Camera Responsive Design */
@media (max-width: 768px) {
    .professional-camera-showcase {
        width: 280px;
        height: 200px;
    }

    .professional-camera-body {
        width: 220px;
        height: 140px;
        left: 30px;
        top: 30px;
    }

    .professional-camera-lens {
        width: 80px;
        height: 80px;
        top: 50px;
        left: 15px;
    }

    .professional-camera-lens::before {
        top: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
    }

    .professional-camera-lens::after {
        top: 28px;
        left: 28px;
        width: 18px;
        height: 18px;
    }

    .professional-camera-lcd {
        width: 90px;
        height: 70px;
        top: 80px;
        right: 15px;
    }

    .professional-camera-grip {
        width: 45px;
        height: 85px;
        top: 80px;
        right: 20px;
    }

    .professional-camera-flash {
        width: 24px;
        height: 16px;
        top: 18px;
        right: 32px;
    }

    .professional-camera-viewfinder {
        width: 40px;
        height: 24px;
        top: 15px;
        right: 25px;
    }

    .professional-camera-buttons {
        width: 220px;
        height: 140px;
    }

    .professional-camera-button-1 {
        top: 32px;
        right: 65px;
        width: 12px;
        height: 9px;
    }

    .professional-camera-button-2 {
        top: 48px;
        right: 60px;
        width: 16px;
        height: 11px;
    }

    .professional-camera-button-3 {
        top: 64px;
        right: 68px;
        width: 11px;
        height: 8px;
    }

    .professional-camera-button-4 {
        top: 80px;
        right: 55px;
        width: 19px;
        height: 12px;
    }

    .professional-camera-button-5 {
        top: 96px;
        right: 65px;
        width: 14px;
        height: 9px;
    }

    .professional-camera-button-6 {
        top: 112px;
        right: 60px;
        width: 17px;
        height: 11px;
    }

    .professional-camera-button-7 {
        top: 128px;
        right: 68px;
        width: 9px;
        height: 7px;
    }

    .professional-camera-button-8 {
        top: 144px;
        right: 55px;
        width: 20px;
        height: 12px;
    }

    .professional-camera-brand {
        font-size: 10px;
        top: 6px;
        left: 15px;
    }

    .professional-camera-model {
        font-size: 7px;
        top: 18px;
        left: 15px;
    }

    .professional-camera-hotshoe {
        width: 24px;
        height: 6px;
        top: 8px;
        left: 100px;
    }

    .professional-camera-strap-lug {
        width: 6px;
        height: 10px;
        top: 1px;
        left: 15px;
    }

    .professional-camera-strap-lug.right {
        left: 199px;
    }
}

@media (max-width: 480px) {
    .professional-camera-showcase {
        width: 240px;
        height: 180px;
    }

    .professional-camera-body {
        width: 180px;
        height: 120px;
        left: 30px;
        top: 30px;
    }

    .professional-camera-lens {
        width: 60px;
        height: 60px;
        top: 40px;
        left: 10px;
    }

    .professional-camera-lens::before {
        top: 12px;
        left: 12px;
        width: 30px;
        height: 30px;
    }

    .professional-camera-lens::after {
        top: 22px;
        left: 22px;
        width: 14px;
        height: 14px;
    }

    .professional-camera-lcd {
        width: 70px;
        height: 55px;
        top: 65px;
        right: 10px;
    }

    .professional-camera-grip {
        width: 35px;
        height: 65px;
        top: 65px;
        right: 12px;
    }

    .professional-camera-flash {
        width: 18px;
        height: 12px;
        top: 12px;
        right: 25px;
    }

    .professional-camera-viewfinder {
        width: 30px;
        height: 18px;
        top: 10px;
        right: 12px;
    }

    .professional-camera-buttons {
        width: 180px;
        height: 120px;
    }

    .professional-camera-brand {
        font-size: 8px;
        top: 4px;
        left: 10px;
    }

    .professional-camera-model {
        font-size: 6px;
        top: 14px;
        left: 10px;
    }

    .professional-camera-hotshoe {
        width: 20px;
        height: 5px;
        top: 6px;
        left: 80px;
    }

    .professional-camera-strap-lug {
        width: 5px;
        height: 8px;
        top: 1px;
        left: 12px;
    }

    .professional-camera-strap-lug.right {
        left: 163px;
    }
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* 3D Package for Shipping Form */
.shipping-showcase {
    perspective: 1000px;
}

.package-3d {
    width: 200px;
    height: 150px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}

.package-box {
    width: 200px;
    height: 150px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: rotateX(15deg) rotateY(10deg);
}

.package-tape {
    width: 200px;
    height: 15px;
    background: #FFD700;
    position: absolute;
    top: 67px;
    left: 0;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.package-label {
    width: 90px;
    height: 45px;
    background: white;
    border: 2px solid #333;
    border-radius: 6px;
    position: absolute;
    top: 30px;
    left: 55px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    transform: rotateX(15deg) rotateY(10deg);
}

.package-label::before {
    content: '📦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: bold;
    color: #333;
}


/* Form Enhancements */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group.focused label {
    transform: translateY(-20px) scale(0.8);
    color: #ff6b35;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #e55a2b, #e0851a);
}

/* Back to Home Button */
.back-to-home {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-back-home:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    text-decoration: none;
}

.btn-back-home i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-back-home:hover i {
    transform: translateX(-3px);
}

/* Responsive Back to Home Button */
@media (max-width: 768px) {
    .back-to-home {
        top: 15px;
        left: 15px;
    }

    .btn-back-home {
        padding: 10px 16px;
        font-size: 13px;
    }

    .btn-back-home span {
        display: none;
    }

    .btn-back-home i {
        font-size: 14px;
    }
}

/* Phototech Style A4 Shipping Form - Single Page */
.a4-shipping-form {
    background: white;
    padding: 0.5rem;
    max-width: 8.5in;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    font-size: 10pt;
    line-height: 1.1;
    color: #000;
    height: 100vh;
    overflow: hidden;
}

.form-header {
    margin-bottom: 0.5rem;
}

.form-instruction {
    font-size: 10pt;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

.company-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.company-header h1 {
    font-size: 14pt;
    font-weight: bold;
    margin: 0 0 0.3rem 0;
    color: #000;
}

.company-address p {
    margin: 0.1rem 0;
    font-size: 9pt;
}

.shipping-info {
    text-align: center;
    margin-bottom: 0.5rem;
}

.shipping-info p {
    font-size: 8pt;
    margin: 0;
}

.form-section {
    margin-bottom: 0.5rem;
}

.form-section h3 {
    font-size: 10pt;
    font-weight: bold;
    margin: 0 0 0.3rem 0;
    color: #000;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.3rem;
    align-items: baseline;
}

.form-group {
    display: flex;
    align-items: baseline;
    margin-right: 0.8rem;
    margin-bottom: 0.2rem;
    min-width: 0;
}

.form-group.full-width {
    width: 100%;
    margin-right: 0;
}

.form-group label {
    font-size: 9pt;
    margin-right: 0.3rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

.form-group input,
.form-group textarea {
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    font-size: 9pt;
    padding: 0.1rem 0;
    min-width: 60px;
    flex: 1;
}

.form-group textarea {
    border: 1px solid #000;
    width: 100%;
    min-height: 40px;
    padding: 0.2rem;
    resize: none;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.radio-option {
    display: flex;
    align-items: center;
    font-size: 9pt;
    margin-bottom: 0.1rem;
}

.radio-option input[type="radio"] {
    margin-right: 0.3rem;
    transform: scale(0.9);
}

.radio-option .inline-input {
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    font-size: 9pt;
    padding: 0.1rem 0;
    width: 60px;
    margin-left: 0.3rem;
}

.terms-content p {
    font-size: 7pt;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.checkbox-group {
    margin: 0.3rem 0;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    font-size: 7pt;
    line-height: 1.2;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 0.3rem;
    margin-top: 0.1rem;
    transform: scale(0.9);
}

.signature-section {
    margin-top: 0.3rem;
}

.print-button-container {
    text-align: right;
    margin-top: 0.5rem;
}

.print-button {
    background: #666;
    color: white;
    border: none;
    padding: 0.3rem 0.8rem;
    font-size: 8pt;
    cursor: pointer;
    border-radius: 3px;
}

.print-button:hover {
    background: #555;
}

/* Print Styles for A4 Format - Single Page Compact */
@media print {
    @page {
        size: A4;
        margin: 0.3in;
    }

    body {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
        font-size: 10pt;
        line-height: 1.1;
        background: white;
    }

    /* Hide everything except the shipping form */
    body>*:not(.shipping-form-section) {
        display: none !important;
    }

    .shipping-form-section {
        margin: 0;
        padding: 0;
    }

    .a4-shipping-form {
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 0;
        max-width: none;
        width: 100%;
        background: white;
        font-size: 10pt;
        line-height: 1.1;
        height: auto;
        overflow: visible;
    }

    .print-button-container {
        display: none !important;
    }

    .form-instruction {
        font-size: 10pt;
        font-weight: bold;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .company-header h1 {
        font-size: 14pt;
        font-weight: bold;
        text-align: center;
        margin-bottom: 0.3rem;
    }

    .company-address {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .company-address p {
        font-size: 9pt;
        margin: 0.1rem 0;
    }

    .shipping-info {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .shipping-info p {
        font-size: 8pt;
    }

    .form-section {
        margin-bottom: 0.5rem;
    }

    .form-section h3 {
        font-size: 10pt;
        font-weight: bold;
        margin-bottom: 0.3rem;
    }

    .form-row {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0.3rem;
        align-items: baseline;
    }

    .form-group {
        display: flex;
        align-items: baseline;
        margin-right: 0.8rem;
        margin-bottom: 0.2rem;
        min-width: 0;
    }

    .form-group.full-width {
        width: 100%;
        margin-right: 0;
    }

    .form-group label {
        font-size: 9pt;
        margin-right: 0.3rem;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
    }

    .form-group input,
    .form-group textarea {
        border: none;
        border-bottom: 1px solid #000;
        background: transparent;
        font-size: 9pt;
        padding: 0.1rem 0;
        min-width: 60px;
        flex: 1;
    }

    .form-group textarea {
        border: 1px solid #000;
        width: 100%;
        min-height: 40px;
        padding: 0.2rem;
    }

    .radio-group {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .radio-option {
        display: flex;
        align-items: center;
        font-size: 9pt;
        margin-bottom: 0.1rem;
    }

    .radio-option input[type="radio"] {
        margin-right: 0.3rem;
        transform: scale(0.9);
    }

    .radio-option .inline-input {
        border: none;
        border-bottom: 1px solid #000;
        background: transparent;
        font-size: 9pt;
        padding: 0.1rem 0;
        width: 60px;
        margin-left: 0.3rem;
    }

    .terms-content p {
        font-size: 7pt;
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }

    .checkbox-option {
        display: flex;
        align-items: flex-start;
        font-size: 7pt;
        line-height: 1.2;
    }

    .checkbox-option input[type="checkbox"] {
        margin-right: 0.3rem;
        margin-top: 0.1rem;
        transform: scale(0.9);
    }

    .signature-section {
        margin-top: 0.3rem;
    }
}

/* Responsive Design for A4 Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .form-title {
        text-align: center;
    }

    .form-actions {
        flex-direction: column;
        align-items: center;
        margin: 15px 0;
    }

    .a4-shipping-form {
        margin: 0 1rem;
        padding: 1rem;
    }
}

/* Form Actions Styles */
.form-actions {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.submit-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    min-width: 150px;
    position: relative;
    z-index: 11;
    display: inline-block;
}

.submit-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.print-button {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    min-width: 150px;
    position: relative;
    z-index: 11;
    display: inline-block;
}

.print-button:hover {
    background: #1e7e34;
}

/* Form success message styling */
.form-success {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #28a745;
}

.form-success i {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.form-success h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.form-success p {
    color: #666;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Ensure buttons are always visible */
.shipping-form-section .form-actions {
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 2px solid #e9ecef;
    margin-top: 30px;
    padding: 20px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
        align-items: center;
    }

    .submit-button,
    .print-button {
        width: 100%;
        max-width: 300px;
    }

    .shipping-form-section .form-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
    }
}

/* Explosion Animations */
@keyframes sensorExplosion {

    0%,
    60% {
        transform: rotateX(-2deg) rotateY(2deg) translateZ(20px);
    }

    20%,
    40% {
        transform: rotateX(-25deg) rotateY(25deg) translateZ(120px) translateX(50px) translateY(-40px);
        box-shadow:
            0 0 40px rgba(0, 150, 255, 0.8),
            inset 0 0 25px rgba(0, 0, 0, 0.9);
    }
}

@keyframes shutterExplosion {

    0%,
    60% {
        transform: rotateX(1deg) rotateY(-1deg) translateZ(25px);
    }

    20%,
    40% {
        transform: rotateX(30deg) rotateY(-30deg) translateZ(130px) translateX(-45px) translateY(25px);
        box-shadow:
            0 0 35px rgba(255, 255, 255, 0.6),
            inset 0 0 20px rgba(0, 0, 0, 0.8);
    }
}

@keyframes mirrorExplosion {

    0%,
    60% {
        transform: rotateX(-1deg) rotateY(1deg) translateZ(30px);
    }

    20%,
    40% {
        transform: rotateX(-28deg) rotateY(28deg) translateZ(125px) translateX(55px) translateY(-45px);
        box-shadow:
            0 0 30px rgba(255, 255, 255, 0.7),
            inset 0 0 18px rgba(0, 0, 0, 0.8);
    }
}

@keyframes boardExplosion {

    0%,
    60% {
        transform: rotateX(2deg) rotateY(-2deg) translateZ(35px);
    }

    20%,
    40% {
        transform: rotateX(35deg) rotateY(-35deg) translateZ(140px) translateX(-60px) translateY(50px);
        box-shadow:
            0 0 45px rgba(0, 255, 0, 0.6),
            inset 0 0 25px rgba(0, 0, 0, 0.9);
    }
}

@keyframes batteryExplosion {

    0%,
    60% {
        transform: rotateX(-1deg) rotateY(1deg) translateZ(40px);
    }

    20%,
    40% {
        transform: rotateX(-32deg) rotateY(32deg) translateZ(135px) translateX(60px) translateY(-50px);
        box-shadow:
            0 0 40px rgba(255, 255, 0, 0.7),
            inset 0 0 22px rgba(0, 0, 0, 0.8);
    }
}

/* Slow Disassembly Animations for 2D Camera */
@keyframes slowDisassembly {

    0%,
    50% {
        transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
    }

    25% {
        transform: perspective(1000px) rotateX(15deg) rotateY(-15deg) scale(1.05);
    }
}

@keyframes lensDisassembly {

    0%,
    50% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    25% {
        transform: translateX(-30px) translateY(-20px) rotate(-15deg);
    }
}

@keyframes viewfinderDisassembly {

    0%,
    50% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    25% {
        transform: translateX(25px) translateY(-15px) rotate(10deg);
    }
}

@keyframes lcdDisassembly {

    0%,
    50% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    25% {
        transform: translateX(20px) translateY(25px) rotate(-8deg);
    }
}

@keyframes gripDisassembly {

    0%,
    50% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    25% {
        transform: translateX(35px) translateY(-10px) rotate(12deg);
    }
}

@keyframes flashDisassembly {

    0%,
    50% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    25% {
        transform: translateX(-25px) translateY(-30px) rotate(-20deg);
    }
}