:root {
    /* Trucker kleuren gebaseerd op logo */
    --primary-color: #1a1a1a;        /* Zwart zoals logo text */
    --secondary-color: #444444;      /* Grijs zoals logo outline */
    --accent-color: #ff4444;         /* Rood voor accenten */
    --netherlands-red: #dc143c;      /* Nederlandse vlag rood */
    --netherlands-blue: #003f7f;     /* Nederlandse vlag blauw */
    --uk-red: #cf142b;               /* Union Jack rood */
    --uk-blue: #012169;              /* Union Jack blauw */
    
    /* Neutrale kleuren */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #888888;
    --dark-gray: #2a2a2a;
    --road-gray: #333333;
    
    /* Schaduwen en effecten */
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.25);
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    --transition: all 0.3s ease;
    
    /* Typography */
    --font-primary: 'Roboto Slab', serif;
    --font-secondary: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--primary-color);
    background: var(--light-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav__logo-img {
    width: 60px;
    height: auto;
}

.nav__logo-text {
    color: var(--white);
}

.logo-name {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-transport {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    opacity: 0.9;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav__link {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--accent-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
}

/* Desktop: Hide mobile toggle and contact info */
@media (min-width: 769px) {
    .nav__toggle {
        display: none !important;
    }
    
    .nav__menu {
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .nav__list {
        flex-direction: row !important;
        gap: 2.5rem !important;
        padding: 0 !important;
    }

    .mobile-contact-info {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 63, 127, 0.1) 0%, transparent 50%);
    animation: subtleMove 20s ease-in-out infinite alternate;
}

@keyframes subtleMove {
    0% { transform: translateX(-10px) translateY(-5px); }
    100% { transform: translateX(10px) translateY(5px); }
}

.hero__visual {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.transport-showcase {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.route-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.location {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-shadow: var(--text-shadow);
}

.location-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    animation: locationPulse 3s ease-in-out infinite;
}

.location span {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Desktop text visibility */
.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

.transport-arrow {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 2rem;
    height: 60px;
}

.arrow-line {
    flex: 1;
    height: 6px;
    background: #333333;
    position: relative;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.arrow-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        #ffffff 0px,
        #ffffff 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translateY(-50%);
}

.truck-moving {
    position: absolute;
    font-size: 2.5rem;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    animation: truckSlide 4s ease-in-out infinite;
    /* Geen standaard transform - richting wordt bepaald in animatie */
}

.arrow-head {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-left: 0.5rem;
    animation: arrowPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes truckSlide {
    0% { 
        transform: translateX(-120px) translateY(0px) scaleX(-1);
    }
    25% { 
        transform: translateX(-40px) translateY(-2px) scaleX(-1);
    }
    50% { 
        transform: translateX(120px) translateY(-3px) scaleX(-1);
    }
    75% { 
        transform: translateX(40px) translateY(-2px) scaleX(1);
    }
    100% { 
        transform: translateX(-120px) translateY(0px) scaleX(1);
    }
}

@keyframes roadStripes {
    0% { transform: translateX(0px) translateY(-50%); }
    100% { transform: translateX(-16px) translateY(-50%); }
}


@keyframes locationPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.9;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes arrowPulse {
    0%, 100% { 
        transform: scale(1) translateX(0px);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2) translateX(3px);
        opacity: 1;
    }
}



.hero__container {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    margin-bottom: 200px;
}

.hero__content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}


.hero__title {
    font-family: var(--font-primary);
    margin-bottom: 2rem;
}

.hero__name {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: var(--text-shadow);
    margin-bottom: 0.5rem;
}

.hero__transport {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 8px;
    opacity: 0.9;
    text-shadow: var(--text-shadow);
    margin-bottom: 1rem;
}

.hero__route {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-shadow: var(--text-shadow);
}

.hero__badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.hero__description {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__description p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn--phone {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn--phone:hover {
    background: #ff2222;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn--quote {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn--quote:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Section Styles */
.section__header {
    text-align: center;
    margin-bottom: 4rem;
    background: var(--white);
    padding: 2rem 1rem 1rem 1rem;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.section__title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section__subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 8rem 0 6rem 0;
    background: var(--white);
    margin-top: -4rem;
    position: relative;
    z-index: 3;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service__card {
    background: var(--white);
    border: 3px solid var(--light-gray);
    border-radius: 15px;
    padding: 3rem 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    transform: translateX(-100%);
    transition: var(--transition);
}

.service__card:hover::before {
    transform: translateX(0);
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--medium-gray);
}

.service__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--netherlands-red), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service__icon i {
    font-size: 2rem;
    color: var(--white);
}

.service__title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.service__description {
    margin-bottom: 2rem;
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.service__features {
    list-style: none;
}

.service__features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service__features i {
    color: var(--netherlands-blue);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-gray);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__description {
    margin-bottom: 2rem;
    color: var(--medium-gray);
    font-size: 1.2rem;
    line-height: 1.8;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature i {
    font-size: 2rem;
    color: var(--netherlands-red);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature h4 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.feature p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.trucker-card {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.trucker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
}

.trucker-avatar {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow);
}

.trucker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.trucker-card h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.trucker-title {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.trucker-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

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

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

.trucker-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
}

.route-flag {
    font-size: 2rem;
}

.trucker-route i {
    color: var(--accent-color);
    animation: truckMove 3s ease-in-out infinite alternate;
}

@keyframes truckMove {
    0% { transform: translateX(-5px); }
    100% { transform: translateX(5px); }
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--light-gray);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 1;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(68, 68, 68, 0.5) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__content h3 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: var(--text-shadow);
}

.gallery__content p {
    color: var(--white);
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: var(--text-shadow);
}

/* Gallery lightbox effect */
.gallery__item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 5;
    transition: var(--transition);
}

.gallery__item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 1.5rem;
    z-index: 6;
    transition: var(--transition);
}

.gallery__item:hover::before,
.gallery__item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact__info h3,
.contact__form h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.contact__item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact__item i {
    font-size: 1.5rem;
    color: var(--netherlands-red);
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.contact__item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact__item p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact__item a {
    color: var(--netherlands-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact__item a:hover {
    color: var(--netherlands-red);
}

.contact__form {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.contact__form h3 {
    color: var(--white);
    margin-bottom: 2.5rem;
}

.form__group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 3px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 500;
    transition: var(--transition);
    background: var(--white);
    color: var(--primary-color);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 68, 68, 0.2);
}

.form__group label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: var(--medium-gray);
    transition: var(--transition);
    pointer-events: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form__group input:focus + label,
.form__group input:not(:placeholder-shown) + label,
.form__group textarea:focus + label,
.form__group textarea:not(:placeholder-shown) + label {
    top: -0.8rem;
    left: 1rem;
    background: var(--white);
    padding: 0 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.form__group select {
    cursor: pointer;
}

.form__group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact__form .btn {
    width: 100%;
    justify-content: center;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.2rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact__form .btn:hover {
    background: #ff2222;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer__logo img {
    width: 60px;
    height: auto;
}

.footer__logo h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin: 0 !important;
}

.footer__section h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__section p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.company-info p,
.kvk-info p {
    border-left: 3px solid var(--netherlands-red);
    padding-left: 1rem;
    margin-bottom: 0.8rem;
}

.contact-quick p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--dark-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-quick p:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

.contact-quick i {
    color: var(--accent-color);
    width: 20px;
    flex-shrink: 0;
}

.footer__bottom {
    border-top: 2px solid var(--secondary-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__links {
    display: flex;
    gap: 2rem;
}

.footer__links a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-color);
        transition: var(--transition);
        box-shadow: var(--shadow);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .nav__menu.show {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0 1rem 0;
        gap: 1.5rem;
    }

    /* Mobile contact info styling */
    .mobile-contact-info {
        display: block;
        width: 100%;
        padding: 1rem 2rem 2rem 2rem;
        border-top: 2px solid var(--secondary-color);
        margin-top: 1rem;
    }

    .mobile-contact-item {
        margin-bottom: 1.5rem;
    }

    .mobile-contact-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--white);
        text-decoration: none;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: var(--transition);
        font-weight: 600;
    }

    .mobile-contact-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
    }

    .mobile-contact-text {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--white);
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        font-weight: 500;
    }

    .mobile-contact-info i {
        font-size: 1.2rem;
        color: var(--accent-color);
        width: 20px;
        text-align: center;
        flex-shrink: 0;
    }

    .mobile-contact-info span {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .nav__toggle {
        display: block;
    }

    /* Mobile logo adjustments */
    .nav__logo-img {
        width: 45px;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .logo-transport {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .hero__content {
        text-align: center;
    }

    .hero__container {
        margin-top: 10px;
        margin-bottom: 200px;
    }

    .hero__name {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }

    .hero__transport {
        font-size: 1.6rem;
        letter-spacing: 2px;
        margin-bottom: 0.2rem;
    }

    .hero__route {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero__badges {
        gap: 0.8rem;
        justify-content: center;
        margin: 0 auto 1.2rem auto;
        max-width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        text-align: center;
        width: 85%;
        max-width: 200px;
        min-width: auto;
    }

    .hero__description {
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hero__cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 4rem;
    }

    .hero__cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    /* Mobile transport - fix positioning and animation */
    .hero__visual {
        margin-bottom: 1rem;
    }

    .transport-showcase {
        max-width: 380px;
        margin: 0 auto;
    }

    .route-display {
        padding: 1.2rem 0.8rem;
    }

    .transport-arrow {
        margin: 0 2rem;
    }

    /* Mobile text visibility */
    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .location-icon {
        font-size: 1.8rem;
    }

    .location span {
        font-size: 0.8rem;
    }

    .truck-moving {
        font-size: 1.8rem;
    }

    /* Mobile truck animation - shorter movement */
    @keyframes truckSlide {
        0% { 
            transform: translateX(-80px) translateY(0px) scaleX(-1);
        }
        25% { 
            transform: translateX(-25px) translateY(-2px) scaleX(-1);
        }
        50% { 
            transform: translateX(80px) translateY(-3px) scaleX(-1);
        }
        75% { 
            transform: translateX(25px) translateY(-2px) scaleX(1);
        }
        100% { 
            transform: translateX(-80px) translateY(0px) scaleX(1);
        }
    }

    .arrow-head {
        font-size: 1.2rem;
    }

    .services {
        padding: 6rem 0 4rem 0;
        margin-top: 0;
        z-index: auto;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service__card {
        margin: 0 10px;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .service__header {
        justify-content: center;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .about {
        padding: 4rem 0;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .contact {
        padding: 4rem 0;
    }

    .contact__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact__info,
    .contact__form {
        text-align: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .section__title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .section__subtitle {
        text-align: center;
        font-size: 1rem;
    }

    .section__header {
        padding: 2rem 1rem 1rem 1rem;
        border-radius: 0;
        box-shadow: none;
        margin-bottom: 2rem;
    }

    /* Mobile Gallery */
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .gallery__item {
        aspect-ratio: 1;
    }

    .gallery__overlay {
        padding: 1.5rem;
        opacity: 1;
        background: linear-gradient(
            0deg,
            rgba(26, 26, 26, 0.8) 0%,
            transparent 60%
        );
    }

    .gallery__content h3 {
        font-size: 1.1rem;
    }

    .gallery__content p {
        font-size: 0.9rem;
    }

    .gallery__item::before,
    .gallery__item::after {
        display: none;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero__name {
        font-size: 2rem;
        letter-spacing: 1px;
        line-height: 1.1;
    }

    .hero__transport {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .hero__route {
        font-size: 0.9rem;
    }

    .transport-showcase {
        max-width: 320px;
    }

    .route-display {
        padding: 1rem 0.6rem;
    }

    .service__card,
    .contact__form {
        padding: 2rem 1.5rem;
    }

    .hero__cta .btn {
        width: 90%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero__container {
        margin-top: 10px;
        margin-bottom: 200px;
    }

    .section__title {
        font-size: 2rem;
    }



    /* Additional mobile optimizations */
    .container {
        padding: 0 10px;
    }

    .hero__badges {
        /* flex-direction: column; */
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        width: 90%;
        max-width: 250px;
    }

    .hero__description p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .btn:not(.hero__cta .btn) {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .service__card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

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

    .service__icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .service__title {
        font-size: 1rem;
    }

    .service__description {
        font-size: 0.95rem;
        text-align: center;
    }

    .service__features li {
        font-size: 0.9rem;
    }

    .contact__form {
        padding: 1.5rem 1rem;
    }

    .contact__item {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }
    
    .contact__item i {
        font-size: 1.3rem;
        margin-top: 0.1rem;
        flex-shrink: 0;
        width: 20px;
        text-align: center;
    }
    
    .contact__item strong {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .contact__item p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* Footer mobile */
    .footer__logo {
        gap: 1rem;
        align-items: flex-start;
    }
    
    .footer__logo img {
        width: 50px;
        flex-shrink: 0;
    }
    
    .footer__logo h3 {
        font-size: 1.1rem;
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }

    .section__subtitle {
        font-size: 0.95rem;
    }

    .transport-showcase {
        max-width: 380px;
    }

    .route-display {
        /* padding: 1.2rem 0.8rem; */
    }

    .transport-arrow {
        margin: 0 1.5rem;
    }

    .location-icon {
        font-size: 1.6rem;
    }

    .mobile-text {
        font-size: 0.75rem;
    }

    .truck-moving {
        font-size: 1.6rem;
    }

    /* Smaller truck movement for 480px */
    @keyframes truckSlide {
        0% { 
            transform: translateX(-60px) translateY(0px) scaleX(-1);
        }
        25% { 
            transform: translateX(-20px) translateY(-2px) scaleX(-1);
        }
        50% { 
            transform: translateX(60px) translateY(-3px) scaleX(-1);
        }
        75% { 
            transform: translateX(20px) translateY(-2px) scaleX(1);
        }
        100% { 
            transform: translateX(-60px) translateY(0px) scaleX(1);
        }
    }

    .trucker-card {
        padding: 1.5rem 1rem;
    }

    .trucker-avatar {
        width: 70px;
        height: 70px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer__section h4 {
        font-size: 1rem;
        text-align: center;
    }

    .footer__section p {
        font-size: 0.85rem;
        text-align: center;
    }



/* Loading and Animation Classes */
.loaded {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Touch and Mobile Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Touch devices */
    .btn {
        min-height: 48px;
        font-size: 1rem;
    }
    
    .nav__link {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service__card {
        transition: none;
    }
    
    .service__card:active {
        transform: scale(0.98);
    }
}

/* Samsung S23 and iPhone 13 optimization */
@media (max-width: 390px) {
    .hero__name {
        font-size: 1.9rem;
        letter-spacing: 0.5px;
    }
    
    .hero__transport {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .hero__route {
        font-size: 0.85rem;
    }
    
    .transport-showcase {
        max-width: 300px;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        width: 90%;
        max-width: 180px;
    }
    
    .service__card {
        padding: 1.5rem 1rem;
        margin: 0 5px;
    }
    
    .contact__form {
        padding: 1.5rem 1rem;
    }
    
    /* Form label improvements */
    .form__group label {
        font-size: 0.85rem;
    }
    
    .form__group input,
    .form__group select,
    .form__group textarea {
        padding: 1.2rem;
        font-size: 1rem;
    }
}

/* iPhone SE and similar small screens */
@media (max-width: 375px) {
    .hero__name {
        font-size: 1.8rem;
    }
    
    .hero__transport {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .hero__route {
        font-size: 0.8rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero__cta .btn {
        width: 95%;
        max-width: 260px;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service__card {
        padding: 1.5rem 1rem;
    }
    
    .contact__form {
        padding: 1.5rem 1rem;
    }
}

/* Very small screens (iPhone 5s, old Android phones) */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .hero__name {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .hero__transport {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .hero__route {
        font-size: 0.75rem;
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
        width: 95%;
    }
    
    .hero__cta .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        width: 95%;
        max-width: 240px;
    }

    .hero__container {
        margin-top: 10px;
        margin-bottom: 200px;
    }
    
    .section__title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .service__card {
        padding: 1.2rem 0.8rem;
        margin: 0 5px;
    }
    
    .service__icon {
        width: 50px;
        height: 50px;
    }
    
    .service__icon i {
        font-size: 1.5rem;
    }
    
    .service__title {
        font-size: 0.9rem;
    }
    
    .service__description {
        font-size: 0.85rem;
    }
    
    .contact__form {
        padding: 1.2rem 0.8rem;
        margin: 0 5px;
    }
    
    .form__group input,
    .form__group select,
    .form__group textarea {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .footer__section {
        padding: 0 10px;
    }
    
    .footer__section p {
        font-size: 0.8rem;
    }
    
    .transport-showcase {
        max-width: 320px;
    }

    .route-display {
        padding: 1rem 0.6rem;
    }
    
    .transport-arrow {
        margin: 0 1rem;
    }
    
    .mobile-text {
        font-size: 0.65rem;
    }
    
    .location-icon {
        font-size: 1.4rem;
    }
    
    .truck-moving {
        font-size: 1.4rem;
    }

    /* Even smaller truck movement for 320px */
    @keyframes truckSlide {
        0% { 
            transform: translateX(-50px) translateY(0px) scaleX(-1);
        }
        25% { 
            transform: translateX(-15px) translateY(-2px) scaleX(-1);
        }
        50% { 
            transform: translateX(50px) translateY(-3px) scaleX(-1);
        }
        75% { 
            transform: translateX(15px) translateY(-2px) scaleX(1);
        }
        100% { 
            transform: translateX(-50px) translateY(0px) scaleX(1);
        }
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero__name {
        font-size: 1.5rem;
    }
    
    .hero__transport {
        font-size: 1rem;
    }
    
    .hero__badges {
        margin-bottom: 1rem;
    }
    
    .hero__description p {
        font-size: 0.9rem;
    }
    
    .transport-showcase {
        max-width: 400px;
    }
}

/* Additional Trucker-style effects */
.btn:active {
    transform: translateY(1px);
}

.service__card:active {
    transform: translateY(-5px);
}

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

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Tablet landscape and small laptop */
@media (min-width: 769px) and (max-width: 1023px) {
    .container {
        max-width: 900px;
        padding: 0 25px;
    }
    
    .hero__name {
        font-size: 3.2rem;
    }
    
    .hero__transport {
        font-size: 2rem;
    }
    
    .hero__route {
        font-size: 1.2rem;
    }
    
    .transport-showcase {
        max-width: 550px;
    }
    
    .hero__badges {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .badge {
        min-width: 160px;
    }
    
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .service__card {
        padding: 2rem 1.5rem;
    }
    
    .service__icon {
        width: 60px;
        height: 60px;
    }
    
    .service__icon i {
        font-size: 1.5rem;
    }
    
    .service__title {
        font-size: 1rem;
    }
    
    .service__description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .service__features li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .about__content,
    .contact__content {
        gap: 3rem;
    }
    
    .contact__form {
        padding: 2.5rem;
    }

    /* Tablet Gallery */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
        grid-auto-rows: 220px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item--tall {
        grid-row: span 2;
    }

    .hero__container {
        margin-top: 10px;
        margin-bottom: 200px;
    }
}


/* Small laptop - 3 card optimization */
@media (min-width: 900px) and (max-width: 1023px) {
    .services__grid {
        gap: 1.8rem;
    }
    
    .service__card {
        padding: 2.2rem 1.8rem;
    }
    
    .service__title {
        font-size: 1.05rem;
    }
    
    .service__description {
        font-size: 0.98rem;
    }
}

/* Laptop responsive design */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .hero__name {
        font-size: 3.5rem;
    }
    
    .hero__transport {
        font-size: 2.2rem;
    }
    
    .hero__route {
        font-size: 1.3rem;
    }
    
    .transport-showcase {
        max-width: 600px;
    }
    
    .route-display {
        padding: 2rem 1.5rem;
    }
    
    .location-icon {
        font-size: 2.2rem;
    }
    
    .truck-moving {
        font-size: 2.2rem;
    }
    
    .section__title {
        font-size: 2.5rem;
    }
    
    .hero__badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .badge {
        flex: 0 1 auto;
        min-width: 180px;
    }
    
    .hero__description {
        max-width: 650px;
    }
    
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .service__card {
        padding: 2rem 1.5rem;
    }
    
    .service__icon {
        width: 55px;
        height: 55px;
    }
    
    .service__icon i {
        font-size: 1.4rem;
    }
    
    .service__title {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .service__description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .service__features li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .service__header {
        margin-bottom: 1.2rem;
    }
    
    .footer__content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }
}


/* Desktop optimizations for larger screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 30px;
    }
    
    .hero__name {
        font-size: 4.5rem;
    }
    
    .hero__transport {
        font-size: 2.8rem;
    }
    
    .hero__route {
        font-size: 1.8rem;
    }
    
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
    
    .service__card {
        padding: 4rem 3rem;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        padding: 0 40px;
    }
    
    .hero__name {
        font-size: 5rem;
    }
    
    .hero__transport {
        font-size: 3rem;
    }
    
    .hero__route {
        font-size: 2rem;
    }
    
    .transport-showcase {
        max-width: 900px;
    }
    
    .route-display {
        padding: 3rem 2rem;
    }
    
    .location-icon {
        font-size: 3rem;
    }
    
    .truck-moving {
        font-size: 3rem;
    }
    
    .services__grid {
        gap: 5rem;
    }
    
    .service__card {
        padding: 5rem 4rem;
    }
    
    .about__content,
    .contact__content {
        gap: 6rem;
    }
}

@media (min-width: 2000px) {
    .container {
        max-width: 1800px;
    }
    
    .hero__name {
        font-size: 5.5rem;
    }
    
    .hero__transport {
        font-size: 3.5rem;
    }
}

/* Modern Lightbox Styles */
.lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999999 !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease !important;
    pointer-events: none !important;
}

.lightbox.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.lightbox-backdrop {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(8px) !important;
    z-index: 99999998 !important;
}

.lightbox-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    z-index: 99999999 !important;
}

.lightbox-content {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.lightbox-content img {
    max-width: 85vw !important;
    max-height: 85vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 12px !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: block !important;
    margin: auto !important;
    border: 3px solid rgba(255, 255, 255, 0.1) !important;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: center !important;
    margin-top: 2rem !important;
    font-size: 1.2rem !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    max-width: 700px !important;
    line-height: 1.6 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.lightbox-close {
    position: fixed !important;
    top: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    border: none !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 100000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #000 !important;
    transform: scale(1.1) rotate(90deg) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.lightbox-prev,
.lightbox-next {
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 70px !important;
    height: 70px !important;
    border: none !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 100000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    opacity: 0.8 !important;
}

.lightbox-prev {
    left: 30px !important;
}

.lightbox-next {
    right: 30px !important;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #000 !important;
    transform: translateY(-50%) scale(1.15) !important;
    opacity: 1 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.15) translateX(-5px) !important;
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.15) translateX(5px) !important;
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-prev:disabled:hover,
.lightbox-next:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(255, 255, 255, 0.1);
}

/* Gallery item cursor - entire item clickable */
.gallery__item {
    cursor: zoom-in !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .lightbox-container {
        padding: 1rem;
    }
    
    .lightbox-content img {
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .lightbox-prev,
    .lightbox-next {
        bottom: 2rem;
        top: auto;
        transform: none;
    }
    
    .lightbox-prev {
        left: 2rem;
    }
    
    .lightbox-next {
        right: 2rem;
    }
}
}