/* ═══════════════════════════════════════════
   VADELUCES · Landing Page Styles
   Brand: Neon Pink + Electric Blue on OLED Black
   ═══════════════════════════════════════════ */

:root {
    /* Brand Colors */
    --neon-pink: #D11654;
    --neon-pink-glow: rgba(209, 22, 84, 0.4);
    --neon-blue: #00AEEF;
    --neon-blue-glow: rgba(0, 174, 239, 0.3);
    --neon-purple: #8B5CF6;

    /* Surfaces */
    --bg-void: #050508;
    --bg-section: #0A0A10;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Text */
    --text-primary: #F0F0F5;
    --text-secondary: rgba(240, 240, 245, 0.6);
    --text-muted: rgba(240, 240, 245, 0.35);

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 7rem);
    --container-px: clamp(1.25rem, 4vw, 3rem);

    /* Motion */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--bg-void);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ═══════ SECTION COMMON ═══════ */
.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section--dark {
    background: var(--bg-section);
}

.section__header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--neon-pink);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(209, 22, 84, 0.3);
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.section__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
}

.section__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__desc {
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ═══════ NAVIGATION ═══════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--container-px);
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.nav.scrolled {
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--glass-border);
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.nav__logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s var(--ease-spring);
}

.nav__logo:hover img {
    transform: scale(1.05);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav__links a {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    color: var(--text-secondary);
    transition: color 0.3s, background 0.3s;
}

.nav__links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.nav__cta {
    background: var(--neon-pink) !important;
    color: white !important;
    font-weight: 600 !important;
}

.nav__cta:hover {
    background: #E01D60 !important;
    box-shadow: 0 0 20px var(--neon-pink-glow);
}

/* ═══════ HERO ═══════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, transparent 0%, var(--bg-void) 100%),
        url('images/fondoheader.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, 0.65);
    z-index: 1;
}

.hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    animation: glowFloat 8s ease-in-out infinite;
}

.hero__glow--pink {
    background: var(--neon-pink-glow);
    top: 10%;
    left: -10%;
}

.hero__glow--blue {
    background: var(--neon-blue-glow);
    bottom: 10%;
    right: -10%;
    animation-delay: -4s;
}

.hero__noise {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 var(--container-px);
}

.hero__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--neon-blue);
    letter-spacing: 0.08em;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(0, 174, 239, 0.25);
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s var(--ease-out-expo) both;
}

.hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s 0.15s var(--ease-out-expo) both;
}

.hero__title em {
    font-style: normal;
    position: relative;
    color: var(--neon-pink);
    text-shadow:
        0 0 20px var(--neon-pink-glow),
        0 0 40px var(--neon-pink-glow),
        0 0 80px rgba(209, 22, 84, 0.2);
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s 0.3s var(--ease-out-expo) both;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.45s var(--ease-out-expo) both;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neon-pink), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ═══════ BUTTONS ═══════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.btn--primary {
    background: linear-gradient(135deg, var(--neon-pink), #A01248);
    color: white;
    box-shadow: 0 4px 20px var(--neon-pink-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--neon-pink-glow);
}

.btn__glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue), var(--neon-pink));
    background-size: 200% 200%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    animation: borderGlow 3s linear infinite;
    transition: opacity 0.3s;
}

.btn--primary:hover .btn__glow {
    opacity: 1;
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn--ghost:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue-glow);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

/* ═══════ ABOUT ═══════ */
.about__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about__lead {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about__text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about__stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    padding: 1.25rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s, background 0.3s;
}

.stat:hover {
    border-color: var(--neon-pink);
    background: var(--bg-card-hover);
}

.stat__number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__number::after {
    content: '%';
}

.stat__label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0.25rem 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat__bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
}

.stat__fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border-radius: 100px;
    transition: width 1.5s var(--ease-out-expo);
}

.stat__fill.animate {
    width: var(--fill);
}

.about__tagline {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: var(--glass);
}

/* ═══════ SERVICES ═══════ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: transform 0.5s var(--ease-out-expo), border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 60px rgba(209, 22, 84, 0.15);
}

.service-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.service-card:hover .service-card__image img {
    transform: scale(1.08);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 8, 0.8) 0%, transparent 60%);
}

.service-card__content {
    padding: 1.75rem;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--neon-pink);
}

.service-card__content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.services__cta {
    text-align: center;
    margin-top: 3rem;
}

/* ═══════ GALLERY ═══════ */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
}

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

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo), filter 0.4s;
}

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

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(209, 22, 84, 0.75) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.gallery__overlay span {
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 0.02em;
}

/* ═══════ PROCESS ═══════ */
.process__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.process__step {
    text-align: center;
    padding: 2rem 1.5rem;
    flex: 1;
    max-width: 300px;
}

.process__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    color: white;
    box-shadow: 0 0 30px var(--neon-pink-glow);
}

.process__step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process__step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.process__connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    flex-shrink: 0;
    opacity: 0.5;
}

/* ═══════ CONTACT ═══════ */
.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form__group {
    position: relative;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: vertical;
}

.form__group input:focus,
.form__group textarea:focus {
    border-color: var(--neon-pink);
    box-shadow: 0 0 0 3px var(--neon-pink-glow);
}

.form__group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
}

.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.5rem;
    left: 0.75rem;
    font-size: 0.7rem;
    color: var(--neon-pink);
    background: var(--bg-void);
    padding: 0 0.25rem;
}

.section--dark .form__group input:focus~label,
.section--dark .form__group input:not(:placeholder-shown)~label,
.section--dark .form__group textarea:focus~label,
.section--dark .form__group textarea:not(:placeholder-shown)~label {
    background: var(--bg-section);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__card {
    padding: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s, transform 0.3s;
}

.contact__card:hover {
    border-color: var(--neon-pink);
    transform: translateX(4px);
}

.contact__card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact__card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
}

.contact__card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact__card a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.contact__card a:hover {
    color: var(--neon-blue);
}



/* ═══════ FOOTER ═══════ */
.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--glass-border);
    padding: 2.5rem 0;
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__brand img {
    height: 35px;
    width: auto;
}

.footer__brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.footer__links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--neon-pink);
}

.footer__bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.footer__bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
}

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

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

@keyframes glowFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes scrollLine {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

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

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════ FAQ (LLMO) ═══════ */
.faq__grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    border-color: rgba(209, 22, 84, 0.3);
}

.faq-item.active {
    border-color: var(--neon-pink);
    box-shadow: 0 4px 20px rgba(209, 22, 84, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    line-height: 1.4;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--neon-pink);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(209, 22, 84, 0.1);
    color: var(--neon-pink);
    font-size: 1.2rem;
    transition: transform 0.3s var(--ease-spring), background 0.3s;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--neon-pink);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.4s;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        flex-direction: column;
        background: rgba(5, 5, 8, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        transition: right 0.5s var(--ease-out-expo);
        border-left: 1px solid var(--glass-border);
    }

    .nav__links.open {
        right: 0;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

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

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .process__steps {
        flex-direction: column;
        gap: 1rem;
    }

    .process__connector {
        width: 2px;
        height: 30px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

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

    .footer__brand {
        flex-direction: column;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.35rem;
    }

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

/* ═══════════════════════════════════════════
   LIGHTBOX GALLERY
═══════════════════════════════════════════ */
.gallery__item {
    cursor: pointer;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.35s var(--ease-out-expo), opacity 0.3s;
}

.lightbox.active .lightbox__img {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.05s;
}

/* Slide transitions */
.lightbox__img.slide-out-left {
    transform: translateX(-80px) scale(0.9);
    opacity: 0;
    transition: transform 0.25s ease-in, opacity 0.2s;
}

.lightbox__img.slide-out-right {
    transform: translateX(80px) scale(0.9);
    opacity: 0;
    transition: transform 0.25s ease-in, opacity 0.2s;
}

.lightbox__img.slide-in-left {
    transform: translateX(60px) scale(0.95);
    opacity: 0;
    transition: none;
}

.lightbox__img.slide-in-right {
    transform: translateX(-60px) scale(0.95);
    opacity: 0;
    transition: none;
}

.lightbox__img.slide-in-active {
    transform: translateX(0) scale(1);
    opacity: 1;
    transition: transform 0.35s var(--ease-out-expo), opacity 0.3s;
}

/* Counter indicator */
.lightbox__counter {
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active .lightbox__counter {
    opacity: 1;
    transition-delay: 0.25s;
}

.lightbox__caption {
    margin-top: 1.5rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
}

.lightbox.active .lightbox__caption {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .lightbox__close {
        top: -40px;
        right: -40px;
    }
}

.lightbox__close:hover {
    color: var(--text-primary);
}

.lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    z-index: 10000;
}

.lightbox__nav:hover {
    background: var(--accent-1);
    border-color: var(--accent-1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox__nav--prev {
    left: 1rem;
}

.lightbox__nav--next {
    right: 1rem;
}

@media (min-width: 768px) {
    .lightbox__nav {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }

    .lightbox__nav--prev {
        left: 2rem;
    }

    .lightbox__nav--next {
        right: 2rem;
    }
}

/* ═══════ FOOTER CREDIT ═══════ */
.footer__credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.footer__heart {
    display: inline-block;
    animation: heartbeat 1.4s ease-in-out infinite;
    font-size: 0.85rem;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.2); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    56% { transform: scale(1); }
}

.footer__credit-link {
    display: inline-flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.footer__credit-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer__credit-link svg {
    vertical-align: middle;
}