:root {
    --primary: #1ebaff;
    --secondary: #FF13F0;
    --accent: #8cf243;
    --yellow: #ffe23d;
    --orange: #ff6b00;
    --dark: #000000;
    --surface: #111118;
    --light: #f0f0f0;
    --muted: #f7f5f5;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Bangers', cursive;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

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

/* ─── Splash Screen ───────────────────────────────────────── */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.8s ease-out, opacity 0.6s ease-out;
}

.splash-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-logo {
    width: 80vw;
    max-width: 800px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    filter: drop-shadow(0 0 30px rgba(30, 186, 255, 0.3));
    z-index: 100000;
}

body.loading {
    overflow: hidden;
}

.logo img {
    transition: opacity 0.3s ease;
}

body.loading .logo img {
    opacity: 0;
}

body.loaded #splash-screen {
    background: transparent;
    pointer-events: none;
}

body.loaded-final #splash-screen {
    display: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(255,0,127,0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(0,255,204,0.05) 0%, transparent 20%);
    z-index: -1;
    pointer-events: none;
}

/* ─── Cursor Glow ─────────────────────────────────────────── */
.cursor-glow {
    position: fixed;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(128,0,128,0.15) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* ─── Drip Background ─────────────────────────────────────── */
.drip-background {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: -1; overflow: hidden;
    background: var(--dark); pointer-events: none;
}
.drip-container { width: 100%; height: 100%; filter: url("#goo"); }
.drip-wrap {
    position: relative; width: 100%; height: 100%;
    border-top: 25px solid var(--secondary);
}
.drip {
    position: absolute; top: -100px; border-radius: 50%;
    animation: paint-drip linear infinite;
    transform-origin: top center;
}
@keyframes paint-drip {
    0%   { top: -100px; transform: scaleY(1) scaleX(1); }
    10%  { top: -20px;  transform: scaleY(1.8) scaleX(0.8); }
    30%  { top: 20%;    transform: scaleY(1.4) scaleX(0.9); }
    100% { top: 110vh;  transform: scaleY(1) scaleX(1); }
}
.drip:nth-child(4n+1) { background: var(--primary); }
.drip:nth-child(4n+2) { background: var(--secondary); }
.drip:nth-child(4n+3) { background: var(--accent); }
.drip:nth-child(4n+4) { background: var(--yellow); width: 15px !important; }

.drip:nth-child(1)  { left: 2%;  width: 60px; height: 80px;  animation-duration: 8s;  animation-delay: -1s; }
.drip:nth-child(2)  { left: 12%; width: 30px; height: 50px;  animation-duration: 12s; animation-delay: -4s; }
.drip:nth-child(3)  { left: 22%; width: 80px; height: 100px; animation-duration: 7s;  animation-delay: -2s; }
.drip:nth-child(4)  { left: 32%; width: 40px; height: 60px;  animation-duration: 15s; animation-delay: -10s; }
.drip:nth-child(5)  { left: 42%; width: 70px; height: 90px;  animation-duration: 9s;  animation-delay: -5s; }
.drip:nth-child(6)  { left: 52%; width: 25px; height: 40px;  animation-duration: 11s; animation-delay: -8s; }
.drip:nth-child(7)  { left: 62%; width: 90px; height: 120px; animation-duration: 13s; animation-delay: -3s; }
.drip:nth-child(8)  { left: 72%; width: 50px; height: 70px;  animation-duration: 10s; animation-delay: -12s; }
.drip:nth-child(9)  { left: 82%; width: 65px; height: 85px;  animation-duration: 8s;  animation-delay: -6s; }
.drip:nth-child(10) { left: 92%; width: 35px; height: 55px;  animation-duration: 14s; animation-delay: -9s; }
.drip:nth-child(11) { left: 7%;  width: 45px; height: 65px;  animation-duration: 10s; animation-delay: -2s; }
.drip:nth-child(12) { left: 17%; width: 75px; height: 95px;  animation-duration: 16s; animation-delay: -14s; }
.drip:nth-child(13) { left: 27%; width: 30px; height: 50px;  animation-duration: 11s; animation-delay: -5s; }
.drip:nth-child(14) { left: 37%; width: 85px; height: 110px; animation-duration: 12s; animation-delay: -8s; }
.drip:nth-child(15) { left: 47%; width: 55px; height: 75px;  animation-duration: 14s; animation-delay: -1s; }
.drip:nth-child(16) { left: 57%; width: 65px; height: 85px;  animation-duration: 9s;  animation-delay: -10s; }
.drip:nth-child(17) { left: 67%; width: 40px; height: 60px;  animation-duration: 13s; animation-delay: -4s; }
.drip:nth-child(18) { left: 77%; width: 95px; height: 130px; animation-duration: 15s; animation-delay: -7s; }
.drip:nth-child(19) { left: 87%; width: 50px; height: 70px;  animation-duration: 11s; animation-delay: -12s; }
.drip:nth-child(20) { left: 97%; width: 60px; height: 80px;  animation-duration: 10s; animation-delay: -3s; }

/* ─── Typography ──────────────────────────────────────────── */
h1, h2, h3 { text-transform: uppercase; }

.glitch-text {
    font-family: var(--font-display);
    font-size: var(--hero-title-size, 4rem); /* Responsive override */
    line-height: 1;
    letter-spacing: 2px;
    color: var(--primary);
    position: relative;
    text-shadow: 4px 4px 0px var(--secondary);
    margin-bottom: 2rem;
}

/* ─── Shared Section Utilities ────────────────────────────── */
section { scroll-margin-top: 100px; }
.section-container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
    text-shadow: 4px 4px 0px var(--secondary);
    letter-spacing: 2px;
}

.section-sub {
    text-align: center;
    font-size: 1.15rem;
    color: #bbb;
    margin-bottom: 4rem;
}

/* ═══════════════════════════════════════════════════════════
   LOGO
   ═══════════════════════════════════════════════════════════ */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo img {
    height: clamp(80px, 9.5vw, 130px);
    width: auto;
    display: block;
}

.logo:hover { transform: scale(1.04) rotate(-1deg); }

.logo--footer img {
    height: 220px;
}


/* ═══════════════════════════════════════════════════════════
   HEADER & NAV
   ═══════════════════════════════════════════════════════════ */
header {
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.4rem 5%;
    position: fixed;
    width: 100%; top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(0.8rem, 1.8vw, 2.5rem);
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: clamp(0.75rem, 0.85vw, 0.9rem);
    white-space: nowrap;
}

.nav-links a:hover { color: var(--accent); }

.cta-nav {
    background: var(--secondary);
    padding: 0.75rem 1.4rem;
    border-radius: 5px;
    box-shadow: 4px 4px 0px var(--primary);
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.cta-nav:hover {
    transform: translate(2px, 2px) !important;
    box-shadow: 2px 2px 0px var(--primary) !important;
    color: var(--light) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}
.hamburger span {
    display: block; width: 30px; height: 3px;
    background-color: var(--light);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg);  background-color: var(--secondary); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: var(--secondary); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 180px 5% 100px;
}

/* ── Short-screen fix: 1366×768 and similar ── */
@media (max-height: 820px) {
    #hero {
        padding-top: clamp(160px, 20vh, 190px);
        padding-bottom: 60px;
        min-height: auto;
    }
    #hero.hero--split {
        padding-top: clamp(160px, 20vh, 190px);
        padding-bottom: 60px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1rem;
    font-weight: 800; font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: var(--hero-sub-size, 1.25rem);
    color: #ccc;
    max-width: 700px;
    margin: 2.5rem 0 3.5rem;
    line-height: 1.5;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-btns { display: flex; gap: 1.5rem; justify-content: center; position: relative; z-index: 10; }

.btn {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
}

.primary-btn {
    background: var(--primary); color: var(--dark);
    box-shadow: 6px 6px 0px var(--secondary);
    border: none; cursor: pointer; font-family: var(--font-main);
}
.primary-btn:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0px var(--secondary); }

.secondary-btn { border: 2px solid var(--light); color: var(--light); }
.secondary-btn:hover { background: var(--light); color: var(--dark); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

.floating-art { position: relative; z-index: 2; }

.main-visual {
    width: 100%; max-width: var(--hero-visual-size, 500px);
    height: auto;
    border-radius: 20px;
    border: 5px solid var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: block;
    overflow: hidden;
}

.blob-bg {
    position: absolute; width: 120%; height: 120%;
    filter: blur(80px); opacity: 0.3; z-index: -1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blobMorph 10s linear infinite;
    background: radial-gradient(circle at 40% 40%, var(--secondary), var(--primary));
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.vibrant-section { padding: 10rem 8%; background: var(--surface); }

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

.about-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem; border-radius: 20px;
    transition: transform 0.4s, border-color 0.4s;
    text-align: center;
}
.about-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.about-card .icon  { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; }
.about-card h3 {
    font-family: var(--font-display); font-size: 2rem;
    margin-bottom: 1rem; color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════ */
.gallery-section { padding: 10rem 8%; background: #0d0d0d; }

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 0.6rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s;
    color: #888;
}

.gallery-tab:hover, .gallery-tab.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative; overflow: hidden;
    border-radius: 15px; cursor: pointer;
    border: 3px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 1/1;
    background: var(--glass);
}
.gallery-item img      { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover    { border-color: var(--primary); transform: scale(1.05) rotate(1deg); box-shadow: 0 15px 40px rgba(255,215,0,0.2); z-index: 10; }
.gallery-item:hover img { transform: scale(1.15); }

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.lightbox {
    display: none; position: fixed;
    z-index: 9999; inset: 0;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px);
    justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.lightbox.active   { display: flex; opacity: 1; }
.lightbox-content  {
    position: relative; max-width: 90%; max-height: 85vh;
    display: flex; justify-content: center; align-items: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.lightbox.active .lightbox-content { transform: scale(1); }

/* Video-specific full screen/large scale lightbox sizing */
.lightbox.lightbox--video .lightbox-content {
    width: 100%;
    max-width: 90%;
    max-height: 85vh;
}

#lightbox-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 960px; /* beautiful landscape widescreen box size */
    aspect-ratio: 16/9;
}

#lightbox-video {
    max-width: 100%;
    max-height: 85vh;
    border: 8px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 0 60px rgba(30, 186, 255, 0.3);
    object-fit: contain; /* Ensures the whole video is visible without cropping */
}

#lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border: 8px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.3);
    object-fit: contain;
}

.close-lightbox {
    position: absolute; top: 40px; right: 50px;
    color: var(--light); font-size: 60px; font-weight: 800;
    cursor: pointer; z-index: 10000;
    transition: all 0.3s; line-height: 1;
}
.close-lightbox:hover { color: var(--secondary); transform: rotate(90deg); }

.lightbox-nav {
    position: absolute; width: 120%;
    display: flex; justify-content: space-between;
    pointer-events: none; left: -10%;
    z-index: 10;
}

.nav-btn {
    pointer-events: auto;
    background: rgba(255,255,255,0.1);
    border: 3px solid var(--primary);
    color: var(--primary); font-size: 50px;
    width: 80px; height: 80px;
    display: flex; justify-content: center; align-items: center;
    cursor: pointer; border-radius: 50%;
    transition: all 0.3s;
    font-family: var(--font-display);
    padding-bottom: 10px;
}
.nav-btn:hover { background: var(--primary); color: var(--dark); transform: scale(1.1); }

/* ═══════════════════════════════════════════════════════════
   VISIT / HOURS / MAP
   ═══════════════════════════════════════════════════════════ */
.info-section { padding: 10rem 0; background: linear-gradient(to bottom, #111, #0a0a0a); }

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem; margin-top: 4rem;
}

.visit-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 2.5rem;
    transition: border-color 0.3s, transform 0.3s;
}
.visit-card:hover { border-color: rgba(255,215,0,0.3); transform: translateY(-4px); }

.visit-card-header {
    display: flex; align-items: center;
    gap: 1rem; margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
}
.visit-icon { font-size: 2rem; }
.visit-card-header h3 {
    font-family: var(--font-display);
    font-size: 2rem; color: var(--primary); letter-spacing: 1px;
}

/* Hours list */
.hours-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.hours-list li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
    transition: background 0.2s;
}
.hours-list li:hover { background: rgba(255,255,255,0.08); }
.hours-list li.closed { border-left-color: var(--secondary); opacity: 0.7; }
.hours-list .day   { font-weight: 600; color: #ddd; }
.hours-list .time  { font-weight: 800; color: var(--accent); font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 1px; }
.hours-list li.closed .time { color: var(--secondary); }

.open-badge {
    text-align: center; padding: 0.6rem 1.4rem;
    border-radius: 30px; font-weight: 800;
    font-size: 0.9rem; letter-spacing: 1px;
    text-transform: uppercase; display: inline-block;
    width: 100%;
}
.open-badge.is-open   { background: rgba(0,255,204,0.12); border: 2px solid var(--accent); color: var(--accent); }
.open-badge.is-closed { background: rgba(255,0,127,0.12); border: 2px solid var(--secondary); color: var(--secondary); }

/* Location */
.location-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; color: #ccc; line-height: 1.7; }
.location-details strong { color: var(--accent); }
.location-details a { color: var(--primary); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.location-details a:hover { color: var(--accent); text-decoration: underline; }

.map-embed {
    border-radius: 14px; overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    transition: border-color 0.3s;
}
.map-embed:hover { border-color: rgba(255,215,0,0.4); }

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════ */
.contact-section {
    padding: 10rem 0; background: var(--surface); position: relative; overflow: hidden;
}
.contact-section::before {
    content: ''; position: absolute; top: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,0,127,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.contact-section::after {
    content: ''; position: absolute; bottom: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,255,204,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.38fr;
    gap: 4rem; align-items: start;
}

.contact-form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 24px; padding: 3rem;
    backdrop-filter: blur(10px);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full-width { grid-column: 1/-1; }

.form-group label {
    font-weight: 600; font-size: 0.85rem; color: #ccc;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.req { color: var(--secondary); }

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 10px; padding: 0.9rem 1.2rem;
    color: var(--light);
    font-family: var(--font-main); font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    outline: none; width: 100%;
}

.form-group select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231ebaff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.form-group select option { background: #1a1a1a; color: var(--light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255,215,0,0.04);
    box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }

.form-group textarea { resize: vertical; min-height: 130px; }

.submit-btn {
    align-self: flex-start;
    font-size: 1.05rem; font-family: var(--font-main);
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1.1rem 2.4rem;
}
.submit-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; }

.form-feedback {
    border-radius: 10px; font-weight: 600; font-size: 0.95rem;
    transition: all 0.3s; min-height: 0;
}
.form-feedback.success {
    background: rgba(0,255,204,0.1);
    border: 1px solid var(--accent); color: var(--accent);
    padding: 1rem 1.4rem; margin-top: 0.5rem;
}
.form-feedback.error {
    background: rgba(255,0,127,0.1);
    border: 1px solid var(--secondary); color: var(--secondary);
    padding: 1rem 1.4rem; margin-top: 0.5rem;
}

/* Contact decoration column */
.contact-deco { display: flex; flex-direction: column; align-items: center; justify-content: center; padding-top: 2rem; }
.deco-inner   { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.deco-emoji   { font-size: 2.8rem; animation: float 5s ease-in-out infinite; display: block; }
.deco-tagline {
    font-family: var(--font-display); font-size: 1.7rem; line-height: 1.2;
    color: var(--primary); text-shadow: 3px 3px 0px var(--secondary);
    letter-spacing: 1px; margin-top: 1rem; text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════════════════ */
.process-section {
    padding: 10rem 8%;
    background: var(--dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.process-step {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-size: 2rem;
    border-radius: 50%;
    box-shadow: 4px 4px 0px var(--secondary);
}

.process-step:nth-child(2) .step-number { background: var(--secondary); box-shadow: 4px 4px 0px var(--accent); color: var(--light); }
.process-step:nth-child(3) .step-number { background: var(--accent); box-shadow: 4px 4px 0px var(--primary); color: var(--dark); }
.process-step:nth-child(4) .step-number { background: var(--light); box-shadow: 4px 4px 0px var(--secondary); color: var(--dark); }
.process-step:nth-child(5) .step-number { background: var(--orange); box-shadow: 4px 4px 0px var(--primary); color: var(--light); }
.process-step:nth-child(6) .step-number { background: var(--accent); box-shadow: 4px 4px 0px var(--secondary); color: var(--dark); }

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--light);
    letter-spacing: 1px;
}

.process-step p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
}

.step-info {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

.step-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255,215,0,0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-top: 1rem;
}

/* ─── Download Button in Pricing ─── */
.download-template {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.download-template:hover {
    background: var(--accent);
    color: var(--dark);
}

.pricing-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-18px); }
}
@keyframes blobMorph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34%       { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67%       { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50%       { transform: scale(1.2); opacity: 0.8; }
}
@keyframes pop {
    0%   { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.animate-pop { animation: pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }

/* ═══════════════════════════════════════════════════════════
   VIDEO GALLERY
   ═══════════════════════════════════════════════════════════ */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.video-item {
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; 
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 40%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 1;
    transition: 0.3s;
}

.video-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 5px;
}

.play-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,62,0,0.2);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}

.video-item:hover .play-hint {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
}

/* ═══════════════════════════════════════════════════════════
   FULLCALENDAR THEME OVERRIDES
   ═══════════════════════════════════════════════════════════ */
.fc {
    --fc-page-bg-color: transparent;
    --fc-neutral-bg-color: rgba(255,255,255,0.05);
    --fc-neutral-text-color: #fff;
    --fc-border-color: rgba(255,255,255,0.1);
    --fc-button-bg-color: var(--primary);
    --fc-button-border-color: var(--primary);
    --fc-button-hover-bg-color: #1a9ee0;
    --fc-button-hover-border-color: #1a9ee0;
    --fc-button-active-bg-color: var(--secondary);
    --fc-button-active-border-color: var(--secondary);
    --fc-event-bg-color: var(--primary);
    --fc-event-border-color: var(--primary);
    --fc-today-bg-color: rgba(30, 186, 255, 0.1);
    color: #fff;
    font-family: inherit;
}
.fc-theme-standard th {
    border-color: rgba(255,255,255,0.1);
}
.fc-theme-standard td {
    border-color: rgba(255,255,255,0.1);
}
.fc-view-harness {
    background: rgba(0,0,0,0.4);
    border-radius: 8px;
}
.fc .fc-toolbar-title {
    font-size: 1.2rem;
    font-weight: 700;
}
.pricing-section {
    padding: 10rem 8%;
    background: linear-gradient(to bottom, #0d0d0d, #111);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .pricing-values {
        text-align: center;
        align-items: center;
    }
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-details h3 {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.pricing-details .desc {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.pricing-values {
    text-align: right;
}

.price-main {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
    line-height: 1;
}

.price-sub {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.2rem;
}

.pricing-note {
    text-align: center;
    margin-top: 4rem;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* ─── Example Badge & Example Hover Lightbox ─── */
.example-badge {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(255, 62, 0, 0.1);
    border: 1px solid var(--primary);
    padding: 2px 8px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.example-badge:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 62, 0, 0.5);
}

.example-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.example-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.example-lightbox-content {
    background: #111;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    max-width: 90%;
    max-height: 85vh;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.example-lightbox.active .example-lightbox-content {
    transform: scale(1);
}

.example-lightbox-content img {
    max-width: 320px;
    max-height: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.example-lightbox-title {
    color: var(--light);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════ */
.faq-section {
    padding: 10rem 8%;
    background: var(--dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-family: var(--font-main);
    color: var(--light);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #ccc;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-item.active .faq-answer {
    padding-bottom: 2rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
    padding: 4rem 8%;
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.4);
    text-align: center;
}

.footer-content { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }

.footer-tagline { color: #888; font-size: 0.95rem; }

.socials { margin-top: 1rem; display: flex; justify-content: center; gap: 2rem; }
.socials a { color: var(--light); font-weight: 800; text-decoration: none; font-size: 1.1rem; transition: color 0.3s; }
.socials a:hover { color: var(--accent); }

/* PCWD Credit */
.pcwd-credit {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: #555;
    letter-spacing: 0.5px;
}
.pcwd-link {
    color: #777;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.pcwd-link:hover { color: var(--primary); }

/* ═══════════════════════════════════════════════════════════
   MODAL / POPUP
   ═══════════════════════════════════════════════════════════ */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.active {
    display: flex;
    opacity: 1;
}
.modal-content {
    background: #1a1a1a;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    padding: 3rem;
    position: relative;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal.active .modal-content {
    transform: scale(1);
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    color: var(--light);
    cursor: pointer;
    line-height: 1;
}
.close-modal:hover { color: var(--secondary); }

#legal-content-target h1 { font-family: var(--font-display); color: var(--primary); margin-bottom: 1.5rem; }
#legal-content-target h2 { color: var(--accent); margin: 1.5rem 0 1rem; font-size: 1.2rem; }
#legal-content-target p, #legal-content-target li { color: #ccc; margin-bottom: 1rem; font-size: 0.95rem; }
#legal-content-target ul { padding-left: 1.2rem; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – LAPTOP  ≤ 1400px  (covers 1366px screens)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1400px) {
    /* Shrink header logo slightly on smaller desktop resolutions */
    .logo img {
        height: clamp(50px, 4.5vw, 70px);
    }
    /* Tighten hero split layout */
    #hero.hero--split {
        padding: 140px 5% 80px;
        gap: 2.5rem;
    }
    @media (max-height: 820px) {
        #hero.hero--split {
            padding-top: 165px;
            padding-bottom: 60px;
        }
    }
    /* Shrink process/about/gallery/pricing paddings slightly */
    .vibrant-section,
    .gallery-section,
    .pricing-section,
    .process-section,
    .faq-section,
    .info-section { padding-top: 8rem; padding-bottom: 8rem; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – TABLET  ≤ 1100px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .visit-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – MOBILE  ≤ 968px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 968px) {
    #hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 180px 8% 6rem;
        text-align: center;
    }
    .hero-subtext  { margin: 2rem auto; }
    .hero-btns     { justify-content: center; }

    .hamburger { display: flex; }

    .nav-links {
        position: fixed; right: -100%; top: 0;
        height: 100vh; width: 100%;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center;
        gap: 3rem;
        transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.4rem; }

    .glitch-text { font-size: 3.5rem; margin-bottom: 1.5rem; }

    .form-row { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-deco { display: none; }
    .contact-form-card { padding: 2rem 1.5rem; }

    .visit-grid { grid-template-columns: 1fr; }
    .visit-card { padding: 1.8rem; }

    .lightbox-nav { width: 100%; left: 0; bottom: -90px; }
    .nav-btn { width: 60px; height: 60px; font-size: 30px; }
    .close-lightbox { top: 20px; right: 20px; font-size: 40px; }

    /* shrink logo on mobile */
    .logo img { height: 90px; }
    .logo--footer img { height: 180px; }
}

@media (max-width: 480px) {
    .logo img { height: 70px; }
    .logo--footer img { height: 140px; }
}

/* ─── Hero Split Layout ─── */
#hero.hero--split {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 160px 8% 100px;
    gap: 4rem;
    min-height: 100vh;
}

#hero.hero--split .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        "badge visual"
        "title visual"
        "subtext visual"
        "btns visual";
    align-items: center;
    text-align: left;
    margin: 0;
    max-width: 1400px;
    width: 100%;
}

#hero.hero--split .badge { grid-area: badge; justify-self: flex-start; }
#hero.hero--split .glitch-text { grid-area: title; margin-bottom: 1.5rem; line-height: 0.9; }
#hero.hero--split .hero-subtext { grid-area: subtext; margin: 1rem 0 2rem; max-width: 500px; text-align: left; }
#hero.hero--split .hero-btns { grid-area: btns; justify-content: flex-start; margin-top: 1rem; }
#hero.hero--split .hero-visual { 
    grid-area: visual; 
    margin: 0 !important; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}

#hero.hero--split .main-visual {
    width: 100%;
    max-width: var(--hero-visual-size, 650px);
    border: 8px solid var(--primary);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

#hero.hero--split .split-visual-img {
    width: 100%;
    max-width: var(--hero-visual-size, 650px);
    border: 8px solid var(--primary);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* Hide image by default in centered mode (JS will handle specific display) */
.split-visual-img {
    display: none;
}

/* Background Shapes for Split Layout */
.hero-shapes {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    display: none; /* Only show in split mode */
}

#hero.hero--split .hero-shapes { 
    display: block; 
    filter: url("#goo");
}

.shape {
    position: absolute;
    top: -100px;
    border-radius: 50%;
    animation: paint-drip linear infinite;
    transform-origin: top center;
    opacity: 0.8;
}

.shape-1 { width: 60px; height: 80px; background: var(--accent); left: 10%; animation-duration: 8s; animation-delay: -1s; }
.shape-2 { width: 30px; height: 50px; background: var(--secondary); left: 25%; animation-duration: 12s; animation-delay: -4s; }
.shape-3 { width: 80px; height: 100px; background: var(--primary); left: 45%; animation-duration: 7s; animation-delay: -2s; }
.shape-4 { width: 40px; height: 60px; background: var(--light); left: 65%; animation-duration: 15s; animation-delay: -10s; }
.shape-5 { width: 70px; height: 90px; background: var(--secondary); left: 80%; animation-duration: 9s; animation-delay: -5s; }
.shape-6 { width: 25px; height: 40px; background: var(--accent); left: 90%; animation-duration: 11s; animation-delay: -8s; }
.shape-7 { width: 50px; height: 70px; background: var(--primary); left: 5%; animation-duration: 10s; animation-delay: -12s; }
.shape-8 { width: 45px; height: 65px; background: var(--light); left: 55%; animation-duration: 8s; animation-delay: -6s; }

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@media (max-width: 1100px) {
    #hero.hero--split .hero-content {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "badge"
            "title"
            "visual"
            "subtext"
            "btns";
        text-align: center;
        gap: 2rem;
    }
    #hero.hero--split .badge, 
    #hero.hero--split .hero-subtext, 
    #hero.hero--split .hero-btns { justify-self: center; text-align: center; }
}

/* ─── Coloring Book Procedure Section ──────────────────────── */
.procedure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* Books page: force 3 columns on desktop, 1 on mobile */
.procedure-grid--books {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
    .procedure-grid--books {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}

.procedure-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem 2.5rem;
    border-radius: 24px;
    position: relative;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.procedure-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
    z-index: 0;
}

.procedure-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(30, 186, 255, 0.08);
}

.procedure-card:hover::before {
    opacity: 1;
}

.procedure-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.procedure-card:nth-child(2) .procedure-num {
    background: var(--secondary);
    color: var(--light);
    box-shadow: 0 5px 15px rgba(255, 19, 240, 0.3);
}

.procedure-card:nth-child(3) .procedure-num {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
}

.procedure-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.procedure-card:nth-child(2) .procedure-icon {
    animation-delay: -2s;
}

.procedure-card:nth-child(3) .procedure-icon {
    animation-delay: -4s;
}

.procedure-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--light);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.procedure-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.photo-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.4rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    width: 100%;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.photo-opt {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #888;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-opt:hover {
    color: var(--light);
    background: rgba(255, 255, 255, 0.05);
}

.photo-opt.active {
    color: var(--dark);
    background: var(--primary);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.photo-details-box {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--glass-border);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.preview-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.preview-images-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 0.5rem;
}

.preview-img {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 12px;
    border: 3px solid var(--glass-border);
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.preview-img.img-original {
    top: 5px;
    left: 5px;
    transform: rotate(-10deg);
    z-index: 1;
}

.preview-img.img-outline {
    top: 15px;
    left: 25px;
    transform: rotate(8deg);
    z-index: 2;
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.2);
}

.procedure-card:hover .preview-img.img-original {
    transform: rotate(-15deg) translate(-5px, -5px);
}

.procedure-card:hover .preview-img.img-outline {
    transform: rotate(15deg) translate(5px, 5px);
    box-shadow: 0 8px 25px rgba(140, 242, 67, 0.4);
}


