:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --dark-bg: #0f172a;
    --dark-bg-secondary: #1e293b;
    --light-text: #f1f5f9;
    --accent-color: #3b82f6;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Hide video on mobile for performance */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: wave 15s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h1 {
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-content h2 {
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

/* Buttons */
.btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
    color: var(--primary-dark);
}

/* FPV Section */
.fpv-section {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.fpv-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.fpv-image-wrapper:hover {
    transform: scale(1.02);
}

.fpv-image-wrapper img {
    transition: transform 0.5s ease;
}

.fpv-image-wrapper:hover img {
    transform: scale(1.1);
}

/* Projects Section */
.projects-section {
    background: #ffffff;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 66.67%;
    /* 3:2 Aspect Ratio */
}

.project-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image-wrapper img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 1.5rem;
}

/* Drones Section */
.drones-section {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.drones-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.drones-image-wrapper:hover {
    transform: scale(1.02);
}

.drones-image-wrapper img {
    transition: transform 0.5s ease;
}

.drones-image-wrapper:hover img {
    transform: scale(1.1);
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    background: #f8fafc;
}

.contact-card {
    display: block;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    color: var(--dark-bg);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--light-text);
}

.footer a {
    color: var(--light-text);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

#scrollTopBtn {
    border: 2px solid var(--light-text);
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background: var(--light-text);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Improvements */

/* Fluid Typography for better scaling */
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-content h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.hero-content .lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.display-5 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

/* Tablet and below */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
        background: rgba(15, 23, 42, 0.98);
        border-radius: 12px;
        margin-top: 1rem;
    }

    .nav-link {
        margin: 0.5rem 1rem;
        padding: 0.75rem 1rem !important;
    }

    .hero-section {
        min-height: 100vh;
        padding: 80px 0 40px;
    }

    .fpv-section .col-lg-6,
    .drones-section .col-lg-6 {
        text-align: center;
    }

    .section-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-item {
        padding: 1.25rem;
    }

    /* Improve spacing on tablets */
    section {
        padding: 3rem 0 !important;
    }
}

/* Mobile landscape and below */
@media (max-width: 767px) {

    /* Optimize navbar for mobile */
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-toggler {
        padding: 0.5rem;
        font-size: 1.25rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .nav-link {
        font-size: 1.1rem;
        text-align: center;
    }

    /* Hero section mobile optimization */
    .hero-section {
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-divider {
        width: 80px;
    }

    /* Button optimization for touch */
    .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        min-height: 44px;
        min-width: 44px;
    }

    .btn-sm {
        min-height: 44px;
        min-width: 44px;
        padding: 0.5rem 1rem;
    }

    /* Sections spacing */
    section {
        padding: 2.5rem 0 !important;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Images optimization */
    .fpv-image-wrapper,
    .drones-image-wrapper {
        margin-bottom: 2rem;
    }

    /* Project cards mobile */
    .project-card {
        margin-bottom: 1.5rem;
    }

    .project-content {
        padding: 1.25rem;
    }

    /* Feature items mobile */
    .feature-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .feature-item i {
        font-size: 1.5rem !important;
    }

    /* Contact cards mobile */
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    /* Footer mobile */
    .footer {
        text-align: center;
    }

    #scrollTopBtn {
        margin-top: 1rem;
        min-height: 44px;
        min-width: 120px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {

    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Hero adjustments */
    .hero-section {
        padding: 80px 0 40px;
    }

    .hero-content h1 {
        margin-bottom: 1rem !important;
    }

    .hero-content h2 {
        margin-bottom: 1rem !important;
    }

    .hero-content .lead {
        margin-bottom: 2rem !important;
        font-size: 0.95rem;
    }

    /* Tighter spacing */
    section {
        padding: 2rem 0 !important;
    }

    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    /* Project cards */
    .project-content h3 {
        font-size: 1.1rem;
    }

    .project-content p {
        font-size: 0.875rem;
    }

    /* Feature grid - stack in single column */
    .drones-section .row.g-3 .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Contact cards */
    .contact-card {
        padding: 1.25rem;
    }

    .contact-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .navbar-brand {
        font-size: 1.1rem;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-content .lead {
        font-size: 0.9rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Disable hover effects on touch devices */
    .project-card:hover {
        transform: none;
    }

    .fpv-image-wrapper:hover,
    .drones-image-wrapper:hover {
        transform: none;
    }

    /* Always show project overlay on touch devices */
    .project-overlay {
        opacity: 0.9;
        background: rgba(0, 0, 0, 0.5);
    }

    /* Larger touch targets */
    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-card {
        min-height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Loading Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Video Modal Styles */
.video-play-btn {
    cursor: pointer;
    border: none;
}

.modal-content {
    background: var(--dark-bg);
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    background: var(--dark-bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    color: var(--light-text);
    display: flex;
    align-items: center;
    flex: 1;
}

.cookie-text i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.cookie-link {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    min-width: 100px;
    white-space: nowrap;
}

/* WhatsApp Brand Color */
.contact-card:hover .fa-whatsapp {
    color: #25D366;
}

/* Responsive Cookie Banner */
@media (max-width: 767px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-text {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text i {
        margin-bottom: 0.5rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-buttons .btn {
        flex: 1;
    }
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    background: #f8fafc;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Environment Section */
.environment-section {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Lightbox Mobile Optimization - Carousel Style */
@media (max-width: 767px) {

    .lightbox-modal {
        background: rgba(0, 0, 0, 0.92);
    }

    .lightbox-content {
        width: 100%;
        height: 100%;
        padding: 0;
    }

    /* Carousel-style image container */
    .lightbox-image-container {
        width: 85%;
        max-width: 85%;
        margin: 0 auto;
        padding: 60px 0 120px;
        position: relative;
    }

    .lightbox-image-container img {
        max-height: 60vh;
        width: 100%;
        object-fit: contain;
        border-radius: 12px;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
        /* Add subtle scale animation on load */
        animation: imagePopIn 0.3s ease-out;
    }

    @keyframes imagePopIn {
        from {
            opacity: 0.5;
            transform: scale(0.95);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Smaller close button */
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
    }

    /* Hide traditional navigation buttons on mobile */
    .lightbox-prev,
    .lightbox-next {
        display: none;
    }

    /* Counter at bottom */
    .lightbox-counter {
        bottom: 60px;
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .gallery-overlay i {
        font-size: 1.5rem;
    }

    /* Add visual indicators for swipe */
    .lightbox-modal::before,
    .lightbox-modal::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 100px;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.03), transparent);
        pointer-events: none;
        z-index: 1;
    }

    .lightbox-modal::before {
        left: 0;
    }

    .lightbox-modal::after {
        right: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0.03), transparent);
    }
}

/* Swipe hint for mobile */
.swipe-hint {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.95);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 10002;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.swipe-hint::before,
.swipe-hint::after {
    content: '←';
    font-size: 1.2rem;
    animation: swipeArrowLeft 1.5s ease-in-out infinite;
}

.swipe-hint::after {
    content: '→';
    animation: swipeArrowRight 1.5s ease-in-out infinite;
}

@keyframes swipeArrowLeft {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-5px);
        opacity: 0.5;
    }
}

@keyframes swipeArrowRight {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(5px);
        opacity: 0.5;
    }
}


/* Desktop lightbox improvements */
@media (min-width: 768px) {

    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: rgba(255, 255, 255, 0.25);
    }
}