/* ============================================
   XENON INDUSTRY - COMPLETE STYLES
   Modern Awwwards-Style CSS with Arial Font
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    --primary: #973a30;
    --primary-dark: #7a2d23;
    --primary-light: #b84a3d;
    --accent: #ff6b5b;
    --accent-glow: #ff8a7a;
    --dark: #0a0a0a;
    --dark-lighter: #1a1a1a;
    --light: #f8f8f8;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gradient-1: linear-gradient(135deg,
            #973a30 0%,
            #c94a3d 50%,
            #ff6b5b 100%);
    --gradient-2: linear-gradient(135deg,
            #1a1a2e 0%,
            #16213e 50%,
            #0f3460 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--gray-100);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul,
ol {
    list-style: none;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.6s var(--ease-out-expo),
        visibility 0.6s var(--ease-out-expo);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-logo-img {
    height: 80px;
    width: auto;
    animation: preloader-glow 2s ease-in-out infinite;
}

@keyframes preloader-glow {

    0%,
    100% {
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 107, 91, 0.3));
    }

    50% {
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 107, 91, 0.5));
    }
}

.preloader-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.preloader-bar-inner {
    width: 0%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    transition: width 0.3s var(--ease-out-expo);
}

.preloader-percent {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.2em;
}

/* ===== Hide Cursor Elements ===== */
.cursor,
.cursor-dot {
    display: none !important;
}

/* ===== Noise Overlay ===== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== Scroll Progress ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-1);
    z-index: 99997;
    transition: width 0.05s linear;
}

/* ===== Page Transition ===== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99996;
    transform: translateY(100%);
    pointer-events: none;
}

/* ===== Modern Navigation ===== */
.nav-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease-out-expo);
}

.nav-modern.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.nav-container-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(-20px);
    transition:
        opacity 0.4s var(--ease-out-expo),
        transform 0.4s var(--ease-out-expo);
}

.nav-modern.scrolled .nav-logo-modern {
    opacity: 1;
    transform: translateY(0);
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-logo-modern:hover .nav-logo-img {
    transform: scale(1.05);
}

@keyframes pulse-dot {

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

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

.nav-menu-modern {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.nav-link-modern {
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    overflow: hidden;
    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.nav-modern.scrolled .nav-link-modern {
    color: rgba(255, 255, 255, 0.7);
}

.nav-link-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 100px;
    z-index: -1;
}

.nav-link-modern:hover::before,
.nav-link-modern.active::before {
    opacity: 1;
}

.nav-link-modern:hover,
.nav-link-modern.active {
    color: white;
}

.nav-toggle-modern {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    gap: 6px;
    padding: 0;
    z-index: 1001;
}

.nav-toggle-modern span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
}

.nav-modern.scrolled .nav-toggle-modern span {
    background: white;
}

.nav-toggle-modern.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle-modern.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle-modern.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero Section ===== */
.hero-header {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== Hero Brand Logo - Top Left ===== */
.hero-brand-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 15;
    transition: transform 0.3s ease;
}

.hero-brand-logo:hover {
    transform: scale(1.03);
}

.hero-brand-image {
    display: block;
    width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: filter 0.3s ease;
}

.hero-brand-logo:hover .hero-brand-image {
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

/* ===== Speech Bubble - Elegant Advanced Design ===== */
.speech-bubble {
    position: absolute;
    top: 45%;
    left: 55%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
    transition:
        opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        filter 0.3s ease;
}

.speech-bubble.visible {
    opacity: 1;
}

.speech-bubble:hover {
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2));
    transform: translateY(-52%);
}

.speech-bubble.changing {
    opacity: 0.6;
    transform: translateY(-50%) scale(0.92);
}

/* Speech Tail - Left Bottom Edge - Elegant Curved Design */
.speech-tail {
    position: absolute;
    bottom: 8px;
    left: -18px;
    width: 24px;
    height: 20px;
    overflow: visible;
}

/* Tail SVG-like shape using pseudo elements for smooth curves */
.speech-tail::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 22px 18px 0;
    border-color: transparent #111111 transparent transparent;
    transform: rotate(0deg);
}

.speech-tail::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 17px 14px 0;
    border-color: transparent #ffffff transparent transparent;
}

/* Bubble Inner - Premium Aesthetic Design */
.speech-bubble-inner {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border: 2.5px solid #111111;
    border-radius: 24px 24px 24px 8px;
    padding: 16px 28px;
    min-width: 120px;
    box-shadow:
        3px 3px 0 #111111,
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
    overflow: hidden;
}

/* Subtle inner glow effect */
.speech-bubble-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.6) 0%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: 22px 22px 0 0;
    pointer-events: none;
}

/* Decorative accent dot */
.speech-bubble-inner::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 12px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    opacity: 0.8;
}

/* Message Text - Two Lines with Refined Typography */
.message-line-1 {
    position: relative;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666666;
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}

.message-line-2 {
    position: relative;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtle bounce animation for visibility */
@keyframes bubblePop {
    0% {
        opacity: 0;
        transform: translateY(-40%) scale(0.8);
    }

    50% {
        transform: translateY(-54%) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.speech-bubble.visible {
    animation: bubblePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ===== Scroll Mouse Indicator - Desktop Only ===== */
.scroll-mouse {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    transition:
        opacity 0.5s ease,
        transform 0.3s ease;
}

.scroll-mouse.visible {
    opacity: 1;
}

.scroll-mouse.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    pointer-events: none;
}

.scroll-mouse:hover {
    transform: translateX(-50%) translateY(-3px);
}

/* Mouse Body */
.scroll-mouse-body {
    width: 22px;
    height: 36px;
    border: 2.5px solid #000000;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Mouse Wheel */
.scroll-mouse-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: #000000;
    border-radius: 2px;
    animation: mouseWheel 1.5s ease-in-out infinite;
}

/* Scroll Arrows */
.scroll-mouse-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-mouse-arrows span {
    width: 8px;
    height: 8px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    transform: rotate(45deg);
    opacity: 0;
    animation: scrollArrow 1.5s ease-in-out infinite;
}

.scroll-mouse-arrows span:nth-child(1) {
    animation-delay: 0s;
}

.scroll-mouse-arrows span:nth-child(2) {
    margin-top: -4px;
    animation-delay: 0.15s;
}

@keyframes mouseWheel {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 0.3;
    }
}

@keyframes scrollArrow {

    0%,
    100% {
        opacity: 0.3;
        transform: rotate(45deg) translateY(0);
    }

    50% {
        opacity: 1;
        transform: rotate(45deg) translateY(2px);
    }
}

/* Legacy scroll indicator - hidden */
.scroll-indicator {
    display: none;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

.scroll-indicator span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    stroke: var(--primary);
}

@keyframes bounce {

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

    50% {
        transform: translateY(8px);
    }
}

/* ===== Marquee Section ===== */
.marquee-section {
    padding: 1.5rem 0;
    background: var(--dark);
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-wrapper:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
}

.marquee-item {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: all 0.4s var(--ease-out-expo);
}

.marquee-item:hover {
    color: var(--accent);
    -webkit-text-stroke: 1px var(--accent);
    text-shadow: 0 0 30px rgba(255, 107, 91, 0.5);
}

.marquee-divider {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 107, 91, 0.5);
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* ===== Main Content ===== */
.main-content {
    position: relative;
    z-index: 5;
}

/* ===== Section Title Styles ===== */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-title-modern {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-title-modern span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Products Section ===== */
.products-section {
    padding: 6rem 2rem;
    background: var(--gray-100);
}

/* ===== Bento Grid ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bento-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition:
        transform 0.6s var(--ease-out-expo),
        box-shadow 0.6s var(--ease-out-expo);
    transform-style: preserve-3d;
}

.bento-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.bento-card:hover::before {
    opacity: 0.03;
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(151, 58, 48, 0.1);
}

.bento-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.8s var(--ease-out-expo);
    pointer-events: none;
    z-index: 10;
}

.bento-card:hover .bento-card-shine {
    left: 150%;
}

.bento-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle,
            rgba(255, 107, 91, 0.15) 0%,
            transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.bento-card:hover .bento-card-glow {
    opacity: 1;
}

.bento-card--featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.bento-card--featured .bento-title,
.bento-card--featured .bento-text {
    color: white;
}

.bento-card--featured .bento-text {
    color: rgba(255, 255, 255, 0.7);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-1);
    border-radius: 100px;
    z-index: 5;
}

.featured-badge span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bento-media {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

.bento-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.bento-card:hover .bento-image {
    transform: scale(1.08);
}

.bento-content {
    position: relative;
    padding: 1.5rem 2rem 2rem;
    z-index: 2;
}

.bento-tag {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.bento-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.bento-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===== Magnetic Buttons ===== */
.magnetic-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--dark);
    border-radius: 100px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.magnetic-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
}

.magnetic-btn:hover::before {
    transform: translateY(0);
}

.magnetic-btn:hover {
    color: white;
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(151, 58, 48, 0.3);
}

.magnetic-btn svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.magnetic-btn:hover svg {
    transform: translateX(5px);
}

.btn-buy--primary {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
}

.btn-buy--primary::before {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.bento-card--featured .magnetic-btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 6rem 2rem;
    background: white;
}

.gallery-collage {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition:
        transform 0.5s var(--ease-out-expo),
        box-shadow 0.5s var(--ease-out-expo);
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 50%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

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

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Gallery Grid Positioning */
.gallery-card--1 {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-card--2 {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card--3 {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-card--4 {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-card--5 {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-card--6 {
    grid-column: span 2;
    grid-row: span 1;
}

/* ===== Pico Z Section ===== */
.picoz-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
    padding: 6rem 2rem;
}

.picoz-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.picoz-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.picoz-shape-1 {
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: var(--primary);
    animation: shape-float-1 15s ease-in-out infinite;
}

.picoz-shape-2 {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--accent);
    animation: shape-float-2 12s ease-in-out infinite;
}

.picoz-shape-3 {
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    animation: shape-float-3 18s ease-in-out infinite;
}

@keyframes shape-float-1 {

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

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

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

@keyframes shape-float-2 {

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

    50% {
        transform: translate(-40px, -20px) scale(1.15);
    }
}

@keyframes shape-float-3 {

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

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.picoz-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.picoz-content {
    color: white;
}

.picoz-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.picoz-badge span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.picoz-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent);
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px var(--accent);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px var(--accent);
    }
}

.picoz-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.picoz-title span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.picoz-subtitle {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.picoz-link {
    background: var(--gradient-1);
    border: none;
    color: white;
}

.picoz-link::before {
    background: linear-gradient(135deg,
            white 0%,
            rgba(255, 255, 255, 0.9) 100%);
}

.picoz-link:hover {
    color: var(--primary);
}

.picoz-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* ===== Pico Z 3D WebGL Container ===== */
.picoz-3d-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#picoz3DCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: grab;
    border-radius: 20px;
}

#picoz3DCanvas:active {
    cursor: grabbing;
}

/* Hide fallback when WebGL is available */
.picoz-3d-container.webgl-active .picoz-fallback {
    display: none;
}

/* Outer glow ring effect */
.picoz-3d-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle,
            transparent 30%,
            rgba(255, 107, 91, 0.1) 50%,
            rgba(151, 58, 48, 0.15) 70%,
            transparent 100%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: outer-ring-pulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Inner glow effect */
.picoz-3d-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
            rgba(255, 107, 91, 0.3) 0%,
            rgba(151, 58, 48, 0.2) 40%,
            transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(40px);
    border-radius: 50%;
    animation: inner-glow-pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes outer-ring-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
        opacity: 1;
    }
}

@keyframes inner-glow-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
}

/* Holographic scanline effect overlay */
.picoz-3d-container .holo-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 107, 91, 0.03) 2px,
            rgba(255, 107, 91, 0.03) 4px);
    pointer-events: none;
    z-index: 6;
    opacity: 0.5;
    border-radius: 20px;
}

/* Floating particles container */
.picoz-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.picoz-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow:
        0 0 10px var(--accent),
        0 0 20px var(--accent);
    animation: particle-float 8s ease-in-out infinite;
}

.picoz-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.picoz-particle:nth-child(2) {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.picoz-particle:nth-child(3) {
    top: 80%;
    left: 15%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.picoz-particle:nth-child(4) {
    top: 30%;
    left: 85%;
    animation-delay: 0.5s;
    animation-duration: 8s;
}

.picoz-particle:nth-child(5) {
    top: 70%;
    left: 90%;
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.picoz-particle:nth-child(6) {
    top: 10%;
    left: 80%;
    animation-delay: 2.5s;
    animation-duration: 10s;
}

.picoz-particle:nth-child(7) {
    top: 50%;
    left: 2%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.picoz-particle:nth-child(8) {
    top: 40%;
    left: 95%;
    animation-delay: 0.8s;
    animation-duration: 9s;
}

@keyframes particle-float {

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

    25% {
        transform: translateY(-30px) translateX(10px) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translateY(-50px) translateX(-5px) scale(0.8);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-20px) translateX(15px) scale(1.1);
        opacity: 0.9;
    }
}

/* Energy ring around the 3D model */
.picoz-energy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    border: 2px solid transparent;
    border-top-color: var(--accent);
    border-right-color: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
    animation: energy-ring-spin 8s linear infinite;
    pointer-events: none;
    z-index: 4;
    opacity: 0.6;
}

.picoz-energy-ring::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid transparent;
    border-bottom-color: var(--accent-glow);
    border-left-color: var(--primary-light);
    border-radius: 50%;
    animation: energy-ring-spin 6s linear infinite reverse;
}

@keyframes energy-ring-spin {
    0% {
        transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg);
    }
}

/* Status indicator */
.picoz-status {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 107, 91, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.picoz-status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: status-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent);
}

.picoz-status-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes status-pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Fallback styles */
.picoz-image-wrapper {
    position: relative;
    max-width: 500px;
}

.picoz-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.picoz-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(60px);
    opacity: 0.4;
    z-index: 1;
    animation: picoz-glow-pulse 4s ease-in-out infinite;
}

@keyframes picoz-glow-pulse {

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

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsive 3D container */
@media (max-width: 1024px) {
    .picoz-3d-container {
        max-width: 450px;
        height: 450px;
    }

    .picoz-3d-container::before {
        width: 350px;
        height: 350px;
    }

    .picoz-3d-container::after {
        width: 220px;
        height: 220px;
    }

    .picoz-energy-ring {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .picoz-3d-container {
        max-width: 350px;
        height: 350px;
    }

    .picoz-3d-container::before {
        width: 280px;
        height: 280px;
    }

    .picoz-3d-container::after {
        width: 180px;
        height: 180px;
    }

    .picoz-energy-ring {
        width: 220px;
        height: 220px;
    }

    .picoz-status {
        padding: 6px 12px;
    }

    .picoz-status-text {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .picoz-3d-container {
        max-width: 280px;
        height: 280px;
    }

    .picoz-3d-container::before {
        width: 220px;
        height: 220px;
    }

    .picoz-3d-container::after {
        width: 140px;
        height: 140px;
    }

    .picoz-energy-ring {
        width: 180px;
        height: 180px;
    }

    .picoz-particle {
        width: 3px;
        height: 3px;
    }
}

/* ===== Video Section ===== */
.youtube-section {
    padding: 6rem 2rem;
    background: var(--gray-100);
}

.youtube-container {
    max-width: 1100px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.video-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            var(--primary),
            var(--accent),
            var(--primary-light),
            var(--primary));
    animation: rotate-glow 8s linear infinite;
    z-index: 0;
}

@keyframes rotate-glow {
    100% {
        transform: rotate(360deg);
    }
}

.youtube-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 20px;
    z-index: 1;
    background: var(--dark);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 6rem 2rem;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.75rem 0;
    background: none;
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    text-align: left;
    transition: color 0.3s ease;
}

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

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-out-expo);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-500);
    stroke-width: 2.5;
    transition: all 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-icon {
    background: var(--gradient-1);
    transform: rotate(45deg);
}

.faq-item.active .faq-icon svg {
    stroke: white;
}

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

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

.faq-answer p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    padding-right: 3rem;
}

/* ===== Footer Modern ===== */
.footer-modern {
    position: relative;
    background: var(--dark);
    padding: 6rem 2rem 2rem;
    overflow: hidden;
}

.footer-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.footer-shape-1 {
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--primary);
}

.footer-shape-2 {
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent);
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1.25rem;
    transition: transform 0.3s var(--ease-out-expo);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-brand p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 320px;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
}

.footer-social-link:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(151, 58, 48, 0.3);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.875rem;
}

.footer-column a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-expo);
    z-index: 9990;
    box-shadow: 0 10px 30px rgba(151, 58, 48, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(151, 58, 48, 0.4);
}

/* ===== Floating Animation ===== */
.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-15px) rotate(-3deg);
    }
}

/* ===== Reveal Animations ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity 0.8s var(--ease-out-expo),
        transform 0.8s var(--ease-out-expo);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Page Hero Styles ===== */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%,
            rgba(151, 58, 48, 0.3) 0%,
            transparent 50%),
        radial-gradient(ellipse at 70% 50%,
            rgba(255, 107, 91, 0.2) 0%,
            transparent 50%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.page-hero-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.page-hero-title span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== About Page Styles ===== */
.about-mission-section {
    padding: 6rem 2rem;
    background: var(--gray-100);
}

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

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    transition:
        transform 0.5s var(--ease-out-expo),
        box-shadow 0.5s var(--ease-out-expo);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-card-icon svg {
    stroke: white;
}

.about-card h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-card p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 2rem;
    background: white;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-card-modern {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition:
        transform 0.5s var(--ease-out-expo),
        box-shadow 0.5s var(--ease-out-expo),
        background 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.feature-icon-modern svg {
    stroke: white;
}

.feature-card-modern h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-card-modern p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: var(--dark);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.values-content .section-eyebrow {
    color: var(--accent);
}

.values-content .section-title-modern {
    color: white;
}

.values-description {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-top: 1.5rem;
}

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

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 0.4s var(--ease-out-expo),
        background 0.3s ease;
}

.value-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.value-number {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.value-content h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.value-content p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ===== Features Page Styles ===== */
.features-hero-section {
    padding: 6rem 2rem;
    background: var(--gray-100);
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-showcase-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition:
        transform 0.5s var(--ease-out-expo),
        box-shadow 0.5s var(--ease-out-expo);
}

.feature-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-showcase-card h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-showcase-card p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Specs Section */
.specs-section-modern {
    padding: 6rem 2rem;
    background: var(--dark);
}

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

.spec-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 0.4s var(--ease-out-expo),
        background 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.spec-card h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.spec-card p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Contact Page Styles ===== */
.contact-section-modern {
    padding: 6rem 2rem;
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-modern {
    padding: 2rem;
}

.contact-info-modern h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
}

.contact-social-link:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

/* Contact Form */
.contact-form-modern {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-group-modern {
    margin-bottom: 1.5rem;
}

.form-group-modern label {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: 12px;
    transition:
        border-color 0.3s ease,
        background 0.3s ease;
    outline: none;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    border-color: var(--primary);
    background: white;
}

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

.submit-btn-modern {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    transition:
        transform 0.3s var(--ease-out-expo),
        box-shadow 0.3s ease;
}

.submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(151, 58, 48, 0.3);
}

/* ===== Manga Page Styles ===== */
.manga-intro-section {
    padding: 4rem 2rem;
    background: var(--gray-100);
    text-align: center;
}

.manga-intro-text {
    max-width: 700px;
    margin: 0 auto;
}

.manga-intro-text h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
}

.manga-intro-text p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8;
}

.manga-grid-section {
    padding: 4rem 2rem 6rem;
    background: var(--gray-100);
}

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

.manga-card-modern {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition:
        transform 0.5s var(--ease-out-expo),
        box-shadow 0.5s var(--ease-out-expo);
}

.manga-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.manga-cover-modern {
    height: 200px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.manga-card-content {
    padding: 2rem;
}

.manga-card-modern h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.manga-card-modern p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--dark);
    border: none;
    border-radius: 100px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    transition:
        background 0.3s ease,
        transform 0.3s var(--ease-out-expo);
}

.read-btn-modern:hover {
    background: var(--primary);
    transform: translateX(5px);
}

/* Manga Info Section */
.manga-info-section {
    padding: 6rem 2rem;
    background: var(--dark);
}

.manga-info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manga-info-content h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.manga-info-content p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* ===== RESPONSIVE STYLES ===== */

/* Large screens */
@media (max-width: 1200px) {
    .picoz-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .picoz-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .picoz-visual {
        order: -1;
    }

    .picoz-image-wrapper {
        max-width: 350px;
    }
}

/* Medium screens */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-card--1,
    .gallery-card--2,
    .gallery-card--3,
    .gallery-card--4,
    .gallery-card--5,
    .gallery-card--6 {
        grid-column: span 1;
        grid-row: span 1;
        height: 280px;
    }

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

    .features-grid-modern,
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .manga-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    /* Hero Brand Logo - Tablet */
    .hero-brand-logo {
        top: 15px;
        left: 15px;
    }

    .hero-brand-image {
        width: 130px;
    }

    /* Speech Bubble - Tablet */
    .speech-bubble {
        top: 42%;
        left: 56%;
    }

    .speech-bubble-inner {
        padding: 12px 20px;
        border-radius: 20px 20px 20px 6px;
        border-width: 2.5px;
        box-shadow: 3px 3px 0 #111111;
    }

    .message-line-1 {
        font-size: 0.85rem;
    }

    .message-line-2 {
        font-size: 1.05rem;
    }

    .speech-tail {
        left: -11px;
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-right-width: 13px;
    }

    .speech-tail::after {
        top: -7px;
        left: 5px;
        border-top-width: 7px;
        border-bottom-width: 7px;
        border-right-width: 9px;
    }

    /* Hide Mouse on Tablet/Mobile */
    .scroll-mouse {
        display: none;
    }

    .nav-menu-modern {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--dark);
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-out-expo);
    }

    .nav-menu-modern.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu-modern li {
        opacity: 0;
        transform: translateY(20px);
    }

    .nav-menu-modern.active li {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.4s var(--ease-out-expo);
    }

    .nav-menu-modern.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu-modern.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu-modern.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu-modern.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu-modern.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-link-modern {
        font-size: 1.5rem;
        color: white;
        padding: 1rem 2rem;
    }

    .nav-toggle-modern {
        display: flex;
    }

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

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

    .footer-brand p {
        max-width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .section-title-modern {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .picoz-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .scroll-indicator {
        display: none;
    }

    .marquee-item {
        font-size: 1.25rem;
    }

    .logo-web {
        top: 18px;
        left: 12px;
        padding: 10px 12px;
        transform: rotate(-2deg);
    }

    .logo-image {
        height: 50px;
    }

    .page-hero {
        min-height: 50vh;
        padding: 6rem 1.5rem 3rem;
    }

    .features-grid-modern,
    .features-showcase,
    .specs-grid {
        grid-template-columns: 1fr;
    }

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

    .about-card,
    .contact-form-modern {
        padding: 2rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {

    /* Hero Brand Logo - Mobile */
    .hero-brand-logo {
        top: 12px;
        left: 12px;
    }

    .hero-brand-image {
        width: 110px;
    }

    /* Speech Bubble - Mobile */
    .speech-bubble {
        top: 38%;
        left: 58%;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
    }

    .speech-bubble-inner {
        padding: 10px 16px;
        border-radius: 16px 16px 16px 4px;
        border-width: 2px;
        box-shadow: 2px 2px 0 #111111;
    }

    .speech-bubble-inner::after {
        width: 4px;
        height: 4px;
        top: 6px;
        right: 8px;
    }

    .message-line-1 {
        font-size: 0.8rem;
    }

    .message-line-2 {
        font-size: 1.1rem;
    }

    .speech-tail {
        bottom: 5px;
        left: -12px;
        width: 16px;
        height: 14px;
    }

    .speech-tail::before {
        border-width: 0 14px 12px 0;
    }

    .speech-tail::after {
        bottom: 2px;
        left: 3px;
        border-width: 0 11px 9px 0;
        border-width: 2px;
        min-width: 90px;
        box-shadow: 2px 2px 0 #111111;
    }

    .message-line-1 {
        font-size: 0.7rem;
    }

    .message-line-2 {
        font-size: 0.9rem;
    }

    .products-section,
    .gallery-section,
    .youtube-section,
    .faq-section {
        padding: 4rem 1rem;
    }

    .picoz-section {
        padding: 4rem 1rem;
        min-height: auto;
    }

    .bento-content {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 0;
    }

    .faq-answer p {
        padding-right: 0;
    }

    .gallery-collage {
        grid-template-columns: 1fr;
    }

    .gallery-card--1,
    .gallery-card--2,
    .gallery-card--3,
    .gallery-card--4,
    .gallery-card--5,
    .gallery-card--6 {
        height: 220px;
    }

    .logo-web {
        top: 12px;
        left: 8px;
        padding: 8px 10px;
    }

    .logo-image {
        height: 35px;
    }

    .preloader-text {
        font-size: 2rem;
    }

    .footer-modern {
        padding: 4rem 1rem 2rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    .about-mission-section,
    .why-choose-section,
    .values-section {
        padding: 4rem 1rem;
    }

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

    .contact-section-modern,
    .manga-intro-section,
    .manga-grid-section,
    .manga-info-section {
        padding: 4rem 1rem;
    }
}

/* Very small screens */
@media (max-width: 360px) {

    /* Hero Brand Logo - Small Mobile */
    .hero-brand-logo {
        top: 10px;
        left: 10px;
    }

    .hero-brand-image {
        width: 90px;
    }

    /* Speech Bubble - Small Mobile */
    .speech-bubble {
        top: 35%;
        left: 60%;
        filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.1));
    }

    .speech-bubble-inner {
        padding: 8px 12px;
        border-radius: 14px 14px 14px 3px;
        border-width: 1.5px;
        box-shadow: 1.5px 1.5px 0 #111111;
    }

    .speech-bubble-inner::after {
        display: none;
    }

    .message-line-1 {
        font-size: 0.7rem;
    }

    .message-line-2 {
        font-size: 0.95rem;
    }

    .speech-tail {
        bottom: 4px;
        left: -10px;
        width: 14px;
        height: 12px;
    }

    .speech-tail::before {
        border-width: 0 12px 10px 0;
    }

    .speech-tail::after {
        bottom: 1.5px;
        left: 2px;
        border-width: 0 9px 7px 0;
    }

    .nav-container-modern {
        padding: 0 1rem;
    }

    .section-eyebrow {
        font-size: 0.7rem;
    }

    .section-eyebrow::before,
    .section-eyebrow::after {
        width: 20px;
    }

    .bento-title {
        font-size: 1.25rem;
    }

    .logo-web {
        top: 10px;
        left: 6px;
        padding: 6px 8px;
    }

    .logo-image {
        height: 28px;
    }
}

/* ===== YouTube Video Section ===== */
.youtube-section {
    padding: 6rem 2rem;
    background: var(--gray-100);
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 107, 91, 0.2) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.video-wrapper:hover .video-glow {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .youtube-section {
        padding: 4rem 1.5rem;
    }

    .video-wrapper {
        border-radius: 16px;
    }
}

/* ===== Enhanced Video Player Overlay ===== */
.youtube-container {
    position: relative;
    cursor: pointer;
}

.youtube-container.playing {
    cursor: default;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 24px;
    transition: all 0.4s var(--ease-out-expo);
    z-index: 10;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-overlay:hover .play-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 32px rgba(255, 107, 91, 0.6));
}

.play-icon {
    width: 80px;
    height: auto;
    transition: all 0.4s var(--ease-out-expo);
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}

.play-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-play-overlay:hover .play-text {
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .play-icon {
        width: 60px;
    }

    .play-text {
        font-size: 0.85rem;
    }
}

/* ===== Home Page Liquid Video ===== */
.youtube-section {
    position: relative;
    height: 200vh;
    background: var(--dark);
    margin-top: 4rem;
}

.youtube-section .video-reveal-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.youtube-section .liquid-video-wrapper {
    position: relative;
    width: 70%;
    aspect-ratio: 16/9;
    border-radius: 40px;
    overflow: hidden;
    transform: scale(0.9);
    transition: border-radius 0.5s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.youtube-section .liquid-video-wrapper.is-full {
    border-radius: 0;
}

.youtube-section .youtube-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.1);
    pointer-events: none;
}


/* ===== Refined Home Page Liquid Video ===== */
.youtube-section.refined {
    height: 150vh;
    background: #ffffff !important;
    margin-top: 0;
}

.youtube-section.refined .video-reveal-container {
    background: #ffffff !important;
}

.youtube-section.refined .liquid-video-wrapper {
    width: 90%;
    transform: scale(0.95);
    box-shadow: none;
    border-radius: 60px;
}

.youtube-section.refined .youtube-video {
    transform: translate(-50%, -50%) scale(1.05);
}


/* ===== SYNCHRONIZED LIQUID VIDEO (Home & Detail) ===== */
.liquid-reveal-section {
    position: relative;
    height: 250vh;
    background: #ffffff !important;
    overflow: visible;
}

.liquid-reveal-section .video-reveal-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff !important;
}

.liquid-reveal-section .liquid-video-wrapper {
    position: relative;
    width: 60%;
    height: 60vh;
    border-radius: 40px;
    overflow: hidden;
    transform: scale(0.8);
    background: #000;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    will-change: width, height, border-radius;
}

.liquid-reveal-section .youtube-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.1);
    pointer-events: none;
}