/* ============================================
   SULOC - Main Stylesheet
   ============================================ */

:root {
    --suloc-navy: #003060;
    /* Primary Blue - Executive */
    --suloc-gold: #D0A040;
    /* Primary Gold */
    --suloc-white: #F0F0F0;
    /* White */
    --suloc-silver: #c0c0c0;
    /* Secondary accent */
    --suloc-navy-light: #002850;
    /* Secondary Blue */
    --suloc-gold-dark: #C08020;
    /* Dark Gold */
    --suloc-gold-light: #E0B050;
    /* Light Gold */
}

/* Utility Classes */
.bg-primary {
    background-color: var(--suloc-navy);
}

.text-secondary {
    color: var(--suloc-gold);
}

.hover\:bg-secondary:hover {
    background-color: var(--suloc-gold);
}

/* Hero Section */
.hero-bg {
    background-color: var(--suloc-navy);
    background-image: linear-gradient(135deg, var(--suloc-navy) 0%, var(--suloc-navy-light) 100%);
}

.service-hero {
    background: linear-gradient(135deg, var(--suloc-navy) 0%, var(--suloc-navy-light) 100%);
}

.project-hero {
    background: linear-gradient(135deg, var(--suloc-navy) 0%, var(--suloc-navy-light) 100%);
}

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

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

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.floating-btn {
    animation: float 3s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.loading-bar {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--suloc-navy), var(--suloc-gold));
    background-size: 200% 100%;
    animation: loading 2s infinite;
}

/* Cards */
.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.project-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Services Slideshow */
.services-slideshow {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background-color: var(--suloc-navy);
}

@media (max-width: 768px) {
    .services-slideshow {
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
    }
}

.services-slideshow .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.services-slideshow .slide.active {
    opacity: 1;
    visibility: visible;
}

.services-slideshow .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-slideshow .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.9), rgba(10, 35, 66, 0.7));
}

.services-slideshow .slide-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-slideshow .slide-icon {
    width: 80px;
    height: 80px;
    background: var(--suloc-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.services-slideshow .slide-icon i {
    font-size: 2.5rem;
    color: var(--suloc-navy);
}

.services-slideshow .slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .services-slideshow .slide-content h2 {
        font-size: 1.8rem;
    }
}

.services-slideshow .slide-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

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

.btn-gold {
    background-color: var(--suloc-gold);
    color: var(--suloc-navy);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-gold:hover {
    background-color: var(--suloc-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.services-slideshow .slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20;
}

.services-slideshow .slideshow-arrow:hover {
    background: var(--suloc-gold);
    color: var(--suloc-navy);
}

.services-slideshow .slideshow-arrow.prev {
    left: 20px;
}

.services-slideshow .slideshow-arrow.next {
    right: 20px;
}

@media (max-width: 768px) {
    .services-slideshow .slideshow-arrow {
        width: 40px;
        height: 40px;
    }

    .services-slideshow .slideshow-arrow.prev {
        left: 10px;
    }

    .services-slideshow .slideshow-arrow.next {
        right: 10px;
    }
}

.services-slideshow .slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.services-slideshow .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.services-slideshow .dot:hover,
.services-slideshow .dot.active {
    background: var(--suloc-gold);
    transform: scale(1.2);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--suloc-navy);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Vehicles Catalog */
.vehicle-hero {
    background: linear-gradient(135deg, var(--suloc-navy) 0%, var(--suloc-navy-light) 100%);
}

.vehicle-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.filter-label {
    display: block;
    font-weight: 600;
    color: var(--suloc-navy-light);
    margin-bottom: 0.5rem;
}

.filter-input {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}

.btn-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.4rem;
    background: var(--suloc-navy);
    color: white;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(10, 35, 66, 0.2);
}

.btn-reset {
    background: #e5e7eb;
    color: #1f2937;
}

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

.vehicle-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.vehicle-image {
    position: relative;
    height: 200px;
    background: #f3f4f6;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #94a3b8;
}

.vehicle-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--suloc-gold);
    color: var(--suloc-navy);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.vehicle-content {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vehicle-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0A2342;
}

.vehicle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.vehicle-meta span {
    background: #f1f5f9;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.vehicle-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--suloc-navy-light);
}

.vehicle-desc {
    color: #4b5563;
    font-size: 0.95rem;
}

.vehicle-actions {
    margin-top: 0.5rem;
}

.vehicle-actions .btn-whatsapp {
    width: 100%;
    justify-content: center;
}

/* Service Module Pages */
.service-hero {
    background: linear-gradient(135deg, var(--suloc-navy) 0%, var(--suloc-navy-light) 100%);
}

.visa-hero {
    background: linear-gradient(135deg, var(--suloc-navy) 0%, var(--suloc-navy-light) 100%);
}

.logistics-hero {
    background: linear-gradient(135deg, var(--suloc-navy-light) 0%, var(--suloc-navy) 100%);
}

.payment-hero {
    background: linear-gradient(135deg, var(--suloc-navy) 0%, var(--suloc-navy-light) 100%);
}

.service-panel {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-panel-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-panel-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A2342;
}

.service-search {
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 999px;
    padding: 0.7rem 1.2rem;
    min-width: 240px;
}

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

.service-card-compact {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card-header {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.service-flag {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0A2342;
}

.operator-logo {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.service-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A2342;
}

.service-subtitle {
    color: #64748b;
    font-size: 0.9rem;
}

.service-details h4 {
    font-weight: 700;
    color: var(--suloc-navy-light);
    margin-bottom: 0.3rem;
}

.service-details p {
    color: #4b5563;
    font-size: 0.95rem;
}

.service-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-fee {
    font-weight: 700;
    color: var(--suloc-navy-light);
}

.service-empty {
    grid-column: 1 / -1;
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    color: #64748b;
}

@media (max-width: 768px) {
    .vehicle-filters {
        grid-template-columns: 1fr 1fr;
    }

    .filter-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .vehicle-filters {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Tooltip */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--suloc-navy);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    margin-bottom: 5px;
}

.tooltip:hover::after {
    opacity: 1;
}

/* Construction and Tree Symbols */
.construction-symbols {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.2;
    z-index: 1;
}

.construction-icon {
    display: inline-block;
    margin: 0 10px;
    font-size: 2rem;
    color: white;
}

.tree-symbols {
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.2;
    z-index: 1;
}

.tree-icon {
    display: inline-block;
    margin: 0 8px;
    font-size: 1.8rem;
    color: white;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Process Steps */
.process-step {
    position: relative;
    padding-left: 3rem;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--suloc-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


/* Pixel-Perfect Contact Section Redesign (V3) */
#contact-v3 {
    background-color: #F9FAFB;
    padding: 120px 0;
    font-family: inherit;
}

#contact-v3 .contact-badge {
    display: inline-block;
    background: #FEF9F0;
    color: #D0A040;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

#contact-v3 .contact-title {
    color: #001F3F;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4rem;
    max-width: 550px;
}

#contact-v3 .info-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#contact-v3 .info-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

#contact-v3 .info-icon-box {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    color: #001F3F;
    font-size: 1.4rem;
}

#contact-v3 .info-content label {
    display: block;
    color: #94A3B8;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

#contact-v3 .info-content span {
    display: block;
    color: #001F3F;
    font-weight: 800;
    font-size: 1.2rem;
}

#contact-v3 .form-card {
    background: white;
    border-radius: 50px;
    padding: 70px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.03);
    border: 1px solid #F1F5F9;
}

#contact-v3 .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
}

#contact-v3 .form-field {
    display: flex;
    flex-direction: column;
}

#contact-v3 .form-field.full-width {
    grid-column: 1 / -1;
}

#contact-v3 .field-label {
    color: #001F3F;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

#contact-v3 .field-input {
    width: 100%;
    padding: 20px 25px;
    background: #F8FAFC;
    border: 1px solid transparent;
    border-radius: 24px;
    font-size: 1.05rem;
    color: #001F3F;
    font-weight: 600;
    transition: all 0.3s ease;
}

#contact-v3 .field-input:focus {
    outline: none;
    background: #FFFFFF;
    border-color: #E2E8F0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

#contact-v3 .field-input::placeholder {
    color: #CBD5E1;
}

#contact-v3 .submit-btn-v3 {
    width: 100%;
    background: #001F3F;
    color: white;
    padding: 24px;
    border-radius: 24px;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

#contact-v3 .submit-btn-v3:hover {
    background: #001021;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 31, 63, 0.2);
}

@media (max-width: 1024px) {
    #contact-v3 .contact-title {
        font-size: 3rem;
    }

    #contact-v3 .form-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    #contact-v3 {
        padding: 80px 0;
    }

    #contact-v3 .form-grid {
        grid-template-columns: 1fr;
    }

    #contact-v3 .contact-title {
        font-size: 2.5rem;
    }
}



/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    animation: scroll 40s linear infinite;
    padding: 0 1rem;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 10 - 1rem * 10));
    }
}

/* Mobile Carousel */
.mobile-carousel {
    display: none;
    position: relative;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
}

.mobile-carousel-track {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
}

.mobile-carousel-item {
    flex: 0 0 85vw;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
}

.mobile-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-container {
        display: none;
    }

    .mobile-carousel {
        display: block;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    touch-action: none;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 95%;
    max-height: 95%;
    position: relative;
    touch-action: pan-y pinch-zoom;
}

.lightbox-img {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 1001;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.image-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Mobile optimizations for lightbox */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .construction-symbols,
    .tree-symbols {
        display: none;
    }
}