/* ═══════════════════════════════════════════════════════════════════════════
   VISORA GRAFIK PAGE - REDESIGNED STYLES
   Premium design page with explore sections and package cards
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
   Inherits from visora-home.css variables
   ───────────────────────────────────────────────────────────────────────────── */

:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.6);
    --color-text-dim: rgba(255, 255, 255, 0.4);

    --color-green: #00ff62;
    --color-pink: #ff408d;
    --color-blue: #00c8ff;

    --gradient-brand: linear-gradient(135deg, #ff8800 0%, #ff408d 30%, #d05aff 50%, #00c8ff 75%, #00ff62 100%);

    --font-main: 'Manrope', system-ui, -apple-system, sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    --container-max: 1400px;
    --container-padding: clamp(1.5rem, 5vw, 4rem);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-med: 0.4s var(--ease-out);
    --transition-slow: 0.8s var(--ease-out);

    --z-nav: 100;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* Gradient Text for Section Titles */
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TOPBAR STYLES
   ───────────────────────────────────────────────────────────────────────────── */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--container-padding);
    pointer-events: none;
    background: transparent;
    transition: background 0.6s var(--ease-out), backdrop-filter 0.6s var(--ease-out);
}

.topbar.is-scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.topbar>* {
    pointer-events: auto;
}

.topbar .logo {
    height: 1.5rem;
    transition: opacity var(--transition-fast);
}

.topbar .logo:hover {
    opacity: 0.8;
}

#burger {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

#burger:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

#burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition-med), opacity var(--transition-fast);
}

/* ─────────────────────────────────────────────────────────────────────────────
   GRAFIK HERO SECTION - 50-60vh
   ───────────────────────────────────────────────────────────────────────────── */
.grafik-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    max-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.grafik-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.grafik-hero__video,
.grafik-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grafik-hero__video {
    display: block;
}

.grafik-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

/* Fallback: show image if video fails */
.grafik-hero__video:not([src])+.grafik-hero__image,
.grafik-hero__video[src=""]+.grafik-hero__image {
    opacity: 1;
}

.grafik-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.6) 40%, rgba(10, 10, 10, 0.3) 100%);
}

.grafik-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    max-width: 900px;
}

.grafik-hero__title {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3em;
    overflow: visible;
    padding-bottom: 0.1em;
}

.title-word {
    display: inline-block;
}

.title-word--white {
    color: #fff;
}

.title-word--gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grafik-hero__subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

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

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

@media (max-width: 768px) {
    .grafik-hero {
        height: 50vh;
        min-height: 350px;
    }

    .grafik-hero__title {
        font-size: clamp(2rem, 12vw, 3.5rem);
        line-height: 1.0;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   EXPLORE SECTIONS - Similar to Index Photography Section
   ───────────────────────────────────────────────────────────────────────────── */
.explore-section {
    background: var(--color-bg);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.explore-section--alt {
    background: var(--color-bg-alt);
}

.explore-bg-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}

.explore-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 1024px) {
    .explore-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
        min-height: 80vh;
    }

    .explore-grid--reversed {
        grid-template-columns: 1.2fr 1fr;
    }

    .explore-grid--reversed .explore-content {
        order: 2;
    }

    .explore-grid--reversed .explore-images {
        order: 1;
    }
}

.explore-content {
    max-width: 500px;
}

.section-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.section-title--xl {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.explore-text {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    font-size: 1.05rem;
}

.explore-images {
    position: relative;
    height: 450px;
}

@media (min-width: 1024px) {
    .explore-images {
        height: 550px;
    }
}

.explore-image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    cursor: pointer;
}

.explore-image:hover {
    z-index: 10;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

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

.explore-image--1 {
    width: 55%;
    height: 55%;
    top: 0;
    left: 0;
    z-index: 3;
}

.explore-image--2 {
    width: 50%;
    height: 50%;
    top: 15%;
    right: 0;
    z-index: 2;
}

.explore-image--3 {
    width: 45%;
    height: 45%;
    bottom: 0;
    left: 25%;
    z-index: 1;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-med);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PACKAGE CARDS - Enhanced Design
   ───────────────────────────────────────────────────────────────────────────── */
.packages-section {
    padding: var(--space-xl) 0;
    background: var(--color-bg);
}

.packages-header {
    max-width: var(--container-max);
    margin: 0 auto var(--space-lg);
    padding: 0 var(--container-padding);
    text-align: center;
}

.packages-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}

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

.pkg-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-med);
}

.pkg-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pkg-card__visual {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.pkg-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s var(--ease-out), transform 0.8s var(--ease-out);
}

.pkg-card__visual .img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.pkg-card:hover .pkg-card__visual .img-default {
    opacity: 0;
}

.pkg-card:hover .pkg-card__visual .img-hover {
    opacity: 1;
}

.pkg-card:hover .pkg-card__visual img {
    transform: scale(1.05);
}

.pkg-card__config-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 5;
    border: none;
}

.pkg-card__config-icon:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.pkg-card__config-icon i {
    font-size: 1.2rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pkg-card__content {
    padding: 1.5rem;
}

.pkg-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pkg-card__desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.pkg-card__footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
}

.btn-configure {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-configure:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ─────────────────────────────────────────────────────────────────────────────
   MODAL - Offer Configuration
   ───────────────────────────────────────────────────────────────────────────── */
.offer-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.offer-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.offer-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.offer-modal__content {
    position: relative;
    width: min(92vw, 540px);
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease-out);
}

.offer-modal.is-open .offer-modal__content {
    transform: scale(1) translateY(0);
}

.offer-modal__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.offer-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.offer-modal__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.offer-modal__intro {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.offer-modal fieldset {
    border: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.offer-modal legend {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.chip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.chip input {
    accent-color: var(--color-pink);
}

.chip input:checked+.chip__label {
    color: #fff;
}

.offer-modal__sum {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.offer-modal__sum strong {
    font-size: 1.1rem;
}

.contact-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-fields input,
.contact-fields textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.contact-fields input:focus,
.contact-fields textarea:focus {
    outline: none;
    border-color: var(--color-pink);
    background: rgba(255, 255, 255, 0.08);
}

.contact-fields input::placeholder,
.contact-fields textarea::placeholder {
    color: var(--color-text-dim);
}

.contact-fields textarea {
    resize: vertical;
    min-height: 100px;
}

.offer-modal__submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.offer-modal__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.offer-modal__legal {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-dim);
    margin-top: 1rem;
    line-height: 1.5;
}

.offer-modal__legal a {
    color: var(--color-text-muted);
    text-decoration: underline;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--color-bg-alt);
    padding: var(--space-lg) var(--container-padding) var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.footer-brand img {
    height: 1.5rem;
    margin-bottom: var(--space-sm);
}

.footer-brand .tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.site-footer h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: var(--space-lg) auto 0;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom small {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

.footer-legal {
    margin: 0 0.5rem;
}

.footer-legal a {
    color: var(--color-text-dim);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PAGE LOADER
   ───────────────────────────────────────────────────────────────────────────── */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-icon-wrapper {
    width: 80px;
    height: 80px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SIDE NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
#side-nav {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    background: var(--color-bg);
}

#side-nav.is-open {
    display: flex;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .explore-images {
        height: 350px;
    }

    .explore-image--1 {
        width: 60%;
        height: 50%;
    }

    .explore-image--2 {
        width: 55%;
        height: 45%;
        top: 20%;
    }

    .explore-image--3 {
        width: 50%;
        height: 40%;
    }

    .packages-grid {
        gap: var(--space-sm);
    }

    .pkg-card__content {
        padding: 1.25rem;
    }

    .pkg-card__title {
        font-size: 1.2rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   GALLERY SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.gallery-section {
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--color-bg-alt);
}

.gallery-section .section-title {
    margin-bottom: var(--space-sm);
}

.gallery-intro {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.2) 0%, rgba(255, 64, 141, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item--tall {
    grid-row: span 2;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

    .gallery-item--tall {
        grid-row: span 1;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   MASONRY GALLERY - Preserves Image Aspect Ratios
   ───────────────────────────────────────────────────────────────────────────── */
.gallery-grid--masonry {
    column-count: 4;
    column-gap: 0.75rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.gallery-grid--masonry .gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 0.75rem;
    break-inside: avoid;
}

.gallery-grid--masonry .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
}

@media (max-width: 1024px) {
    .gallery-grid--masonry {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery-grid--masonry {
        column-count: 2;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   MODAL SCROLL BEHAVIOR FIX
   ───────────────────────────────────────────────────────────────────────────── */
.offer-modal__content {
    overscroll-behavior: contain;
}

body.modal-open {
    overflow: hidden;
}

/* Make package cards fully clickable */
.pkg-card {
    cursor: pointer;
}

/* ─────────────────────────────────────────────────────────────────────────────
   GALLERY LIGHTBOX
   ───────────────────────────────────────────────────────────────────────────── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-out);
}

.gallery-lightbox.is-open .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATED SVG PATHS - Digital Marketing Section
   ───────────────────────────────────────────────────────────────────────────── */
.marketing-animated .animated-path {
    animation: pathFloat 6s ease-in-out infinite;
}

.marketing-animated .animated-circle {
    animation: circlePulse 4s ease-in-out infinite;
}

.marketing-animated .path-1 {
    animation-delay: 0s;
}

.marketing-animated .path-2 {
    animation-delay: 1s;
}

.marketing-animated .path-3 {
    animation-delay: 2s;
}

.marketing-animated .path-4 {
    animation-delay: 0.5s;
}

.marketing-animated .path-5 {
    animation-delay: 1.5s;
}

.marketing-animated .circle-1 {
    animation-delay: 0s;
}

.marketing-animated .circle-2 {
    animation-delay: 1.5s;
}

.marketing-animated .circle-3 {
    animation-delay: 0.8s;
}

.marketing-animated .circle-4 {
    animation-delay: 2.2s;
}

@keyframes pathFloat {

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

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

@keyframes circlePulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   APERTURE ICON ANIMATION
   ───────────────────────────────────────────────────────────────────────────── */
.aperture-icon {
    animation: apertureRotate 8s linear infinite;
    transform-origin: 50px 50px;
}

@keyframes apertureRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   GALLERY SECTION SPACING FIX
   ───────────────────────────────────────────────────────────────────────────── */
.gallery-section {
    padding-bottom: var(--space-md);
}

/* Contact SVG decoration - animation */
.contact-deco {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.contact-deco-animated .contact-path {
    animation: contactPathFloat 5s ease-in-out infinite;
}

.contact-deco-animated .contact-circle {
    animation: contactCirclePulse 4s ease-in-out infinite;
}

.contact-deco-animated .path-1 {
    animation-delay: 0s;
}

.contact-deco-animated .path-2 {
    animation-delay: 0.8s;
}

.contact-deco-animated .path-3 {
    animation-delay: 1.6s;
}

.contact-deco-animated .path-4 {
    animation-delay: 0.4s;
}

.contact-deco-animated .path-5 {
    animation-delay: 1.2s;
}

.contact-deco-animated .path-6 {
    animation-delay: 2s;
}

.contact-deco-animated .circle-1 {
    animation-delay: 0.5s;
}

.contact-deco-animated .circle-2 {
    animation-delay: 1.5s;
}

.contact-deco-animated .circle-3 {
    animation-delay: 2.5s;
}

@keyframes contactPathFloat {

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

    50% {
        transform: translateY(-3px);
        opacity: 0.7;
    }
}

@keyframes contactCirclePulse {

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

    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }
}