/* Modern Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --accent-gold: #B8860B;
    --pure-white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --pure-black: #000000;
    --deep-black: #0A0A0A;

    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-hard: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.3);
}

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

html,
body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

section {
    scroll-margin-top: 80px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--pure-white);
    background: var(--pure-black);
    cursor: none;
}

/* Custom Orchid Cursor */
.orchid-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.orchid-flower {
    position: relative;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    animation: orchidFloat 3s ease-in-out infinite;
}

.petal {
    position: absolute;
    width: 8px;
    height: 12px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF69B4);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform-origin: center bottom;
    opacity: 0.9;
}

.petal-1 {
    top: -2px;
    left: 8px;
    transform: rotate(0deg);
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.petal-2 {
    top: 2px;
    left: 14px;
    transform: rotate(72deg);
    background: linear-gradient(45deg, #FFA500, #FF69B4);
}

.petal-3 {
    top: 8px;
    left: 11px;
    transform: rotate(144deg);
    background: linear-gradient(45deg, #FF69B4, #DA70D6);
}

.petal-4 {
    top: 8px;
    left: 5px;
    transform: rotate(216deg);
    background: linear-gradient(45deg, #DA70D6, #FFD700);
}

.petal-5 {
    top: 2px;
    left: 2px;
    transform: rotate(288deg);
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.orchid-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
}

.center-dot {
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #8B4513, #654321);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-pattern {
    width: 6px;
    height: 6px;
    border: 1px solid rgba(139, 69, 19, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: centerPulse 2s ease-in-out infinite;
}

.orchid-stem {
    width: 2px;
    height: 12px;
    background: linear-gradient(to bottom, #228B22, #006400);
    margin: 0 auto;
    border-radius: 1px;
    position: relative;
    top: -2px;
}

.cursor-trail {
    position: fixed;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.6;
}

/* Cursor Hover States */
.orchid-cursor.hover {
    transform: translate(-50%, -50%) scale(1.3);
}

.orchid-cursor.hover .orchid-flower {
    animation: orchidBloom 0.6s ease-out;
}

.orchid-cursor.hover .petal {
    transform-origin: center bottom;
    animation: petalSpread 0.6s ease-out;
}

.cursor-trail.hover {
    transform: translate(-50%, -50%) scale(1.2);
    border-color: rgba(255, 105, 180, 0.4);
    opacity: 0.8;
}

/* Cursor Click State */
.orchid-cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
}

.orchid-cursor.click .orchid-flower {
    animation: orchidPulse 0.3s ease-out;
}

/* Optimized Orchid Cursor Animations */
@keyframes orchidFloat {

    0%,
    100% {
        transform: translate3d(0, 0px, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -2px, 0) rotate(2deg);
    }
}

@keyframes centerPulse {

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

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

@keyframes orchidBloom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes petalSpread {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes orchidPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

/* Orchid Particle Effects */
@keyframes orchidParticle {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(calc(-50% + var(--vx)), calc(-50% + var(--vy))) scale(0);
        opacity: 0;
    }
}

@keyframes orchidBurst {
    0% {
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(0) translateY(-30px);
        opacity: 0;
    }
}

/* Enhanced Orchid Cursor for Different States */
.orchid-cursor.text-hover .orchid-flower {
    animation: orchidTextHover 2s ease-in-out infinite;
}

.orchid-cursor.button-hover .petal {
    animation: petalGlow 1s ease-in-out infinite alternate;
}

@keyframes orchidTextHover {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        filter: hue-rotate(0deg);
    }

    50% {
        transform: translateY(-3px) rotate(5deg);
        filter: hue-rotate(30deg);
    }
}

@keyframes petalGlow {
    0% {
        filter: brightness(1) saturate(1);
    }

    100% {
        filter: brightness(1.2) saturate(1.3);
    }
}

/* Special cursor states for different elements */
.gallery-item:hover~.orchid-cursor .orchid-flower,
.gallery-item:hover .orchid-cursor .orchid-flower {
    animation: orchidExcited 0.5s ease-in-out infinite;
}

@keyframes orchidExcited {

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

    25% {
        transform: scale(1.1) rotate(2deg);
    }

    75% {
        transform: scale(1.1) rotate(-2deg);
    }
}

/* Hide default cursor */
* {
    cursor: none !important;
}

body {
    cursor: none;
}

/* Performance optimizations for reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .orchid-cursor,
    .cursor-trail,
    .particle-system,
    .loading-particles {
        display: none !important;
    }
}

/* Mobile cursor fallback */
@media (max-width: 768px) {

    .orchid-cursor,
    .cursor-trail {
        display: none;
    }

    * {
        cursor: auto !important;
    }

    body {
        cursor: auto;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--pure-black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.loading-logo {
    margin-bottom: 3rem;
}

.loading-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.loading-subtext {
    font-size: 1.2rem;
    color: var(--pure-white);
    opacity: 0.7;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.loading-bar {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    width: 0%;
    animation: loadingProgress 3s ease-in-out forwards;
}

.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom-color: rgba(255, 215, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: rotate(360deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--pure-white);
    opacity: 0.7;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--secondary-gold);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    width: 0%;
    transition: width 0.3s ease;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--pure-white);
    transition: var(--transition-smooth);
    transform-origin: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    border-radius: 50%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 40%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation-delay: 10s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    top: 80%;
    right: 5%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation-delay: 15s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 60%;
    transform: rotate(45deg);
    animation-delay: 7s;
}

.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: slideUp 1s ease 0.2s both;
}

.badge-text {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--pure-white);
}

.title-word {
    display: block;
    overflow: hidden;
}

.title-char {
    display: inline-block;
    animation: charSlide 0.8s ease forwards;
    opacity: 0;
    transform: translateY(100px);
}

.title-char:nth-child(1) {
    animation-delay: 0.1s;
}

.title-char:nth-child(2) {
    animation-delay: 0.15s;
}

.title-char:nth-child(3) {
    animation-delay: 0.2s;
}

.title-char:nth-child(4) {
    animation-delay: 0.25s;
}

.title-char:nth-child(5) {
    animation-delay: 0.3s;
}

.title-char:nth-child(6) {
    animation-delay: 0.35s;
}

.title-char:nth-child(7) {
    animation-delay: 0.4s;
}

.title-char:nth-child(8) {
    animation-delay: 0.45s;
}

.title-char:nth-child(9) {
    animation-delay: 0.5s;
}

.title-char:nth-child(10) {
    animation-delay: 0.55s;
}

.title-char:nth-child(11) {
    animation-delay: 0.6s;
}

.title-word:nth-child(2) .title-char:nth-child(1) {
    animation-delay: 0.8s;
}

.title-word:nth-child(2) .title-char:nth-child(2) {
    animation-delay: 0.85s;
}

.title-word:nth-child(2) .title-char:nth-child(3) {
    animation-delay: 0.9s;
}

.title-word:nth-child(2) .title-char:nth-child(4) {
    animation-delay: 0.95s;
}

.title-word:nth-child(2) .title-char:nth-child(5) {
    animation-delay: 1s;
}

.title-word:nth-child(2) .title-char:nth-child(6) {
    animation-delay: 1.05s;
}

.title-word:nth-child(2) .title-char:nth-child(7) {
    animation-delay: 1.1s;
}

.title-word:nth-child(2) .title-char:nth-child(8) {
    animation-delay: 1.15s;
}

.title-word:nth-child(2) .title-char:nth-child(9) {
    animation-delay: 1.2s;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.6;
}

.subtitle-line {
    display: block;
    opacity: 0;
    animation: slideUp 1s ease forwards;
}

.subtitle-line:nth-child(1) {
    animation-delay: 1.5s;
}

.subtitle-line:nth-child(2) {
    animation-delay: 1.7s;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: slideUp 1s ease 2s both;
}

.cta-button {
    position: relative;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-black);
}

.cta-button.secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--primary-gold);
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pure-white);
    transition: var(--transition-smooth);
    z-index: 1;
}

.cta-button:hover .btn-bg {
    left: 0;
}

.cta-button.primary:hover .btn-text {
    color: var(--pure-black);
}

.cta-button.secondary:hover .btn-text {
    color: var(--pure-black);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    animation: slideUp 1s ease 2.2s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-item {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: floatComplex 8s ease-in-out infinite;
    transition: var(--transition-smooth);
}

.floating-item:nth-child(1) {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.floating-item:nth-child(2) {
    top: 45%;
    right: 35%;
    animation-delay: 2s;
}

.floating-item:nth-child(3) {
    top: 70%;
    right: 10%;
    animation-delay: 4s;
}

.floating-item:nth-child(4) {
    top: 25%;
    right: 50%;
    animation-delay: 6s;
}

.floating-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.item-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.floating-item:hover .item-glow {
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    animation: slideUp 1s ease 2.5s both;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    position: relative;
    background: var(--off-white);
    width: 100%;
    overflow: hidden;
}

.gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-pattern {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section-badge span {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--pure-black);
}

.title-main {
    display: block;
}

.title-accent {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    color: var(--accent-gold);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    transition: var(--transition-smooth);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--pure-black);
    transform: translateY(-2px);
}

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

/* Full Circle Carousel Styles */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 6rem 0;
    perspective: 1200px;
    perspective-origin: center center;
    overflow: hidden;
}

.carousel-stage {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 550px;
    overflow: visible;
    transform-style: preserve-3d;
}

.carousel-track {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    left: 0;
    top: 0;
}

.carousel-card {
    position: absolute;
    width: 380px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    pointer-events: none;
    backface-visibility: visible;
    will-change: transform, opacity;
}

.carousel-card.active {
    pointer-events: auto;
    z-index: 100;
}

.carousel-card.adjacent {
    pointer-events: auto;
    z-index: 50;
}

.card-inner {
    width: 100%;
    height: 100%;
    background: var(--pure-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.carousel-card.active .card-inner {
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.3), 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
    transform: scale(1);
}

.carousel-card:not(.active) .card-inner {
    transform: scale(0.9);
}

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-card.active:hover .card-image img {
    transform: scale(1.1);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.4), rgba(255, 165, 0, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.carousel-card.active:hover .card-glow {
    opacity: 1;
}

.card-content {
    padding: 1.5rem;
}

.card-category {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pure-black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-description {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.card-price {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.card-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--pure-black);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.card-btn:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.card-btn svg {
    transition: var(--transition-smooth);
}

.card-btn:hover svg {
    transform: rotate(45deg);
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border: none;
    color: var(--pure-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow-left {
    left: 2rem;
}

.carousel-arrow-right {
    right: 2rem;
}

.carousel-arrow svg {
    transition: transform 0.3s ease;
}

.carousel-arrow:hover svg {
    transform: scale(1.2);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.gallery-item {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.gallery-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Process Section Carousel */
#process {
    background: linear-gradient(180deg, var(--pure-black) 0%, #0a0a0a 100%);
    padding: 6rem 0;
}

#process .section-title {
    color: var(--pure-white);
}

#process .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.process-carousel {
    position: relative;
    width: 100%;
    margin: 4rem 0;
    perspective: 1200px;
    perspective-origin: center center;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-carousel-stage {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 550px;
    overflow: visible;
    transform-style: preserve-3d;
}

.process-carousel-track {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    left: 0;
    top: 0;
}

.process-slide {
    position: absolute;
    width: 320px;
    height: auto;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    pointer-events: none;
    backface-visibility: visible;
    background: var(--pure-white);
    will-change: transform, opacity;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.process-slide.active {
    pointer-events: auto;
    z-index: 100;
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.3), 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
}

.process-video {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.process-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.process-content {
    padding: 1.5rem;
    text-align: center;
}

.process-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.process-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.process-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border: none;
    color: var(--pure-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.process-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

.process-arrow-left {
    left: 1rem;
}

.process-arrow-right {
    right: 1rem;
}

.process-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.process-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.process-indicator:hover {
    background: rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

.process-indicator.active {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.process-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.process-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-black);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.cta-btn.secondary:hover {
    background: var(--primary-gold);
    color: var(--pure-black);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

.item-container {
    background: var(--pure-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.item-container:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.item-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.8), rgba(255, 165, 0, 0.8));
    opacity: 0;
    transition: var(--transition-smooth);
}

.item-container:hover .image-overlay {
    opacity: 1;
}

.item-content {
    padding: 2rem;
}

.item-category {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.item-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pure-black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.item-description {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.item-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--pure-black);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.item-btn:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.item-btn svg {
    transition: var(--transition-smooth);
}

.item-btn:hover svg {
    transform: rotate(45deg);
}

/* Animations */
@keyframes loadingProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes glow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

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

@keyframes float {

    0%,
    100% {
        transform: translate3d(0, 0px, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -20px, 0) rotate(5deg);
    }
}

@keyframes floatComplex {

    0%,
    100% {
        transform: translate3d(0px, 0px, 0) rotate(0deg);
    }

    25% {
        transform: translate3d(10px, -15px, 0) rotate(2deg);
    }

    50% {
        transform: translate3d(-5px, -25px, 0) rotate(-1deg);
    }

    75% {
        transform: translate3d(-10px, -10px, 0) rotate(3deg);
    }
}

@keyframes pulse {

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

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

@keyframes scrollLine {

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

    50% {
        transform: translateY(20px);
        opacity: 0.5;
    }
}

@keyframes gridMove {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(50px, 50px, 0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-visual {
        width: 40%;
    }

    .floating-item {
        width: 120px;
        height: 120px;
    }

    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
    }

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

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

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

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
        padding-bottom: 4rem;
        min-height: auto;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }

    .floating-item {
        width: 100px;
        height: 100px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        text-align: center;
        width: 100%;
    }

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

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Carousel Responsive - Tablet */
    .carousel-wrapper {
        padding: 2rem 0;
    }

    .carousel-stage {
        height: 500px;
    }

    .carousel-card {
        width: 280px;
        height: 420px;
    }

    .carousel-arrow {
        width: 50px;
        height: 50px;
    }

    .carousel-arrow-left {
        left: 0.5rem;
    }

    .carousel-arrow-right {
        right: 0.5rem;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.85rem;
    }

    /* Process Carousel - Tablet */
    .process-slide {
        width: 300px;
    }

    .process-video {
        height: 400px;
    }

    .process-arrow {
        width: 45px;
        height: 45px;
    }

    .process-cta {
        padding: 2rem;
    }

    .process-cta h3 {
        font-size: 1.6rem;
    }
}



@media (max-width: 480px) {
    body {
        cursor: auto;
    }

    .orchid-cursor,
    .cursor-trail {
        display: none !important;
    }

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

    .loading-bar {
        width: 220px;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 5rem 0 0;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background: var(--pure-black);
    }

    .hero-content {
        position: relative;
        z-index: 10;
        padding: 1.5rem 1rem;
        background: transparent;
        margin: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.6rem !important;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .title-word {
        display: block;
        margin-bottom: 0.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        opacity: 0.8;
        padding: 0 1rem;
        line-height: 1.5;
    }

    /* Reduce geometric shapes on small phones */
    .geometric-shapes {
        opacity: 0.3;
    }

    .shape {
        opacity: 0.05 !important;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin: 0 auto 3rem;
        width: 100%;
        max-width: 280px;
        align-items: center;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 240px;
    }

    /* Hero Visuals Mobile - Adjusted for clarity */
    .hero-visual {
        position: relative;
        width: 100%;
        height: 320px;
        margin-top: 0;
        display: block;
        background: var(--pure-black);
    }

    .floating-item {
        width: 120px;
        height: 120px;
        border-radius: 15px;
    }

    .floating-item:nth-child(1) {
        top: 5%;
        left: 10%;
    }

    .floating-item:nth-child(2) {
        top: 0%;
        right: 10%;
        left: auto;
    }

    .floating-item:nth-child(3) {
        bottom: 5%;
        left: 30%;
        top: auto;
    }

    .floating-item:nth-child(4) {
        display: none;
    }

    .scroll-indicator {
        position: relative;
        bottom: auto;
        margin: 1rem auto 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: var(--pure-black);
        padding-bottom: 2rem;
    }

    .scroll-line {
        height: 30px;
        margin-bottom: 0.5rem;
    }

    .scroll-text {
        writing-mode: horizontal-tb;
        font-size: 0.7rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-top: 2rem;
        width: 100%;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .gallery {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.22rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    /* Carousel Responsive - Mobile */
    .carousel-wrapper {
        padding: 1.5rem 0;
    }

    .carousel-stage {
        height: 480px;
        margin-top: 1rem;
    }

    .carousel-card {
        width: 240px;
        height: 380px;
    }

    .carousel-arrow {
        width: 44px;
        height: 44px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 215, 0, 0.9);
        z-index: 200;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .carousel-arrow-left {
        left: 0.5rem;
    }

    .carousel-arrow-right {
        right: 0.5rem;
    }

    .carousel-arrow svg {
        width: 16px;
        height: 16px;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 1rem;
    }

    .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .card-description {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }

    .card-price {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .carousel-indicators {
        gap: 6px;
        margin-top: 0.5rem;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    /* Process Carousel - Mobile */
    #process {
        padding: 3.5rem 0;
    }

    .process-carousel-stage {
        height: 480px;
        margin-top: 1rem;
    }

    .process-slide {
        width: 240px;
    }

    .process-video {
        height: 320px;
    }

    .process-arrow {
        width: 44px;
        height: 44px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 215, 0, 0.9);
        z-index: 200;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .process-arrow-left {
        left: 0.5rem;
    }

    .process-arrow-right {
        right: 0.5rem;
    }

    .process-content h3 {
        font-size: 1.1rem;
    }

    .process-content p {
        font-size: 0.8rem;
    }

    .process-indicators {
        gap: 6px;
    }

    .process-indicator {
        width: 8px;
        height: 8px;
    }

    .process-cta {
        padding: 1.5rem;
        margin-top: 2rem;
        border-radius: 16px;
    }

    .process-cta h3 {
        font-size: 1.3rem;
    }

    .process-cta p {
        font-size: 0.85rem;
    }

    .cta-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* G
allery Detail Page Styles */
.gallery-detail {
    padding: 8rem 0 4rem;
    background: var(--off-white);
    min-height: 100vh;
}

.back-navigation {
    margin-bottom: 2rem;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--accent-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.back-btn:hover {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-black);
    transform: translateY(-2px);
}

.detail-header {
    text-align: center;
    margin-bottom: 4rem;
}

.detail-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

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

.detail-image-container {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpDetail 0.6s ease forwards;
}

.detail-image {
    position: relative;
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 215, 0, 0.1);
    aspect-ratio: 1;
}

.detail-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.detail-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.detail-image:hover .image-overlay {
    opacity: 1;
}

.zoom-btn {
    background: var(--pure-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.zoom-btn:hover {
    background: var(--primary-gold);
    color: var(--pure-white);
    transform: scale(1.1);
}

.detail-cta {
    text-align: center;
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.detail-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--pure-black);
    margin-bottom: 1rem;
}

.detail-cta p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cta-btn.primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-black);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--primary-gold);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-btn.secondary:hover {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-black);
}

.no-images {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--dark-gray);
}

.no-images p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Enhanced Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.modal-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.modal-close,
.zoom-controls button {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-black);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close:hover,
.zoom-controls button:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.zoom-controls {
    display: flex;
    gap: 5px;
}

.modal-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.modal-image-container img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    user-select: none;
    -webkit-user-drag: none;
}

/* Zoom States */
.modal-image-container img[style*="scale(1)"] {
    cursor: zoom-in;
}

.modal-image-container img[style*="scale"]:not([style*="scale(1)"]) {
    cursor: grab;
}

.modal-image-container img[style*="scale"]:not([style*="scale(1)"]):active {
    cursor: grabbing;
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal-controls {
        top: 10px;
        right: 10px;
        gap: 8px;
    }

    .modal-close,
    .zoom-controls button {
        width: 40px;
        height: 40px;
    }

    .zoom-controls {
        gap: 4px;
    }

    .modal-image-container img {
        max-width: 98vw;
        max-height: 98vh;
    }
}

/* Zoom Animation */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.image-modal.active .modal-image-container img {
    animation: zoomIn 0.3s ease-out;
}

/* Animations */
@keyframes slideUpDetail {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Gallery Detail */
@media (max-width: 768px) {
    .gallery-detail {
        padding: 6rem 0 2rem;
    }

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

    .detail-cta {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .modal-close {
        top: -40px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .detail-title {
        font-size: 2rem;
    }

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

    .back-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* =
==== FOOTER STYLES ===== */
.footer {
    position: relative;
    background: linear-gradient(135deg,
            var(--pure-black) 0%,
            var(--deep-black) 50%,
            #0D0D0D 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-left: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 215, 0, 0.2),
            transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
}

.social-link:hover svg {
    transform: scale(1.1);
}

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

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-column .toggle-icon {
    display: none;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
    margin-left: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    display: inline-block;
}

.footer-column a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.footer-column a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 215, 0, 0.3),
            transparent);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.heart-icon {
    width: 16px;
    height: 16px;
    color: #ff6b6b;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {

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

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

/* Footer Decorative Elements */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.05) 0%,
            transparent 50%);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

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

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

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

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 3rem 0 1.5rem;
    }

    .footer-main {
        gap: 2rem;
    }

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

    .footer-column {
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        padding-bottom: 1rem;
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    .footer-column h4 {
        margin-bottom: 0;
        padding: 0.5rem 0;
    }

    .footer-column h4::after {
        display: none;
    }

    .footer-column .toggle-icon {
        display: block;
    }

    .footer-column ul {
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        margin-top: 0;
    }

    .footer-column.active ul {
        max-height: 500px;
        opacity: 1;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .footer-column.active .toggle-icon {
        transform: rotate(-135deg);
        margin-top: 5px;
    }

    .footer-logo h3 {
        font-size: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

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

@media (max-width: 480px) {
    .footer-content {
        padding: 2rem 0 1rem;
    }

    .footer-logo h3 {
        font-size: 1.8rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .footer-column a {
        font-size: 0.9rem;
    }

    .copyright,
    .footer-credits {
        font-size: 0.8rem;
    }
}

/* Footer Animation on Scroll */
.footer.animate-in {
    animation: footerSlideUp 1s ease-out;
}

@keyframes footerSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* Enhanced Footer Hover Effects */
.footer-column:hover h4 {
    color: var(--secondary-gold);
    transform: translateX(5px);
}

.footer-column:hover h4::after {
    width: 50px;
    background: linear-gradient(90deg, var(--secondary-gold), var(--primary-gold));
}

/* Footer Brand Hover Effect */
.footer-brand:hover .footer-logo h3 {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.02);
}

/* Smooth Transitions for All Footer Elements */
.footer * {
    transition: var(--transition-smooth);
}

/* 
===== WATCH PROCESS SECTION ===== */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg,
            var(--pure-black) 0%,
            var(--deep-black) 50%,
            #0A0A0A 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%,
            rgba(255, 215, 0, 0.03) 0%,
            transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header .section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    backdrop-filter: blur(10px);
    max-width: 320px;
    margin: 0 auto;
}

.process-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.process-video {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--deep-black);
    border-radius: 15px;
}

.process-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: var(--transition-smooth);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.process-item:hover .video-overlay {
    opacity: 0;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-black);
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.play-button svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

.process-content {
    padding: 1.5rem;
    text-align: center;
}

.process-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
}

.process-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-black);
    border: 2px solid transparent;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.cta-btn.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.cta-btn svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.cta-btn:hover svg {
    transform: translateX(3px);
}

/* Process Section Responsive Design */
@media (max-width: 1024px) {
    .process-section {
        padding: 4rem 0;
    }

    .section-header .section-title {
        font-size: 2.5rem;
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .process-video {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header .section-title {
        font-size: 2rem;
    }

    .section-header .section-subtitle {
        font-size: 1rem;
    }

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

    .process-slide {
        width: 280px;
    }

    .process-video {
        height: 350px;
        max-width: 300px;
        margin: 0 auto;
    }

    .process-content {
        padding: 1rem;
    }

    .process-content h3 {
        font-size: 1.2rem;
    }

    .process-cta {
        padding: 2rem 1rem;
    }

    .process-cta h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-header .section-title {
        font-size: 1.8rem;
    }

    .process-slide {
        width: 240px;
    }

    .process-video {
        height: 300px;
        max-width: 250px;
        margin: 0 auto;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button svg {
        width: 20px;
        height: 20px;
    }

    .process-cta h3 {
        font-size: 1.3rem;
    }

    .process-cta p {
        font-size: 1rem;
    }
}

/* Enhanced Animation Effects */
.process-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.process-item:nth-child(1) {
    animation-delay: 0.1s;
}

.process-item:nth-child(2) {
    animation-delay: 0.2s;
}

.process-item:nth-child(3) {
    animation-delay: 0.3s;
}

.process-item:nth-child(4) {
    animation-delay: 0.4s;
}

.process-item:nth-child(5) {
    animation-delay: 0.5s;
}

.process-item:nth-child(6) {
    animation-delay: 0.6s;
}

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

/* Process Section Background Effects */
.process-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
            rgba(255, 215, 0, 0.05) 0%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* E
xtra small phones (320px and below) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-content {
        margin: 0.5rem;
        padding: 0.8rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    /* Further reduce shapes on very small screens */
    .shape {
        opacity: 0.03 !important;
    }

    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4,
    .shape-5 {
        transform: scale(0.7);
    }
}

/* Landscape orientation fix for small phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 0.5rem 0;
    }

    .hero-content {
        margin: 0.5rem;
        padding: 0.5rem;
    }

    .hero-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-actions {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    /* Hide shapes in landscape on small screens */
    .geometric-shapes {
        display: none;
    }
}

/* Enhanced
 Process Grid for Reel Aspect Ratio */
@media (min-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        gap: 2.5rem;
    }

    .process-video {
        height: 550px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 2rem;
    }

    .process-video {
        height: 450px;
    }
}

/* Ensure proper aspect ratio maintenance */
.process-video iframe {
    object-fit: cover;
    border-radius: 15px;
}

/* Process Slide Hover Effects */
.process-slide:hover {
    transform: translateY(-5px) scale(0.95);
    border-color: rgba(255, 215, 0, 0.4);
}

.process-slide.active:hover {
    transform: translateY(-5px) scale(1.02);
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem !important;
    }

    .carousel-card {
        width: 240px;
        height: 360px;
    }

    .process-slide {
        width: 240px;
    }

    .process-video {
        height: 320px;
    }
}