/* ==========================================================================
   AURA BEAUTY AI - STYLING SYSTEM
   ========================================================================== */

:root {
    /* Color Tokens */
    --color-bg: #F8FAFC;
    --color-white: #FFFFFF;
    --color-purple: #8B5CF6;
    --color-pink: #FF5FA2;
    --color-cyan: #22D3EE;
    --color-text-dark: #111827;
    --color-text-muted: #4B5563;
    --color-gray-soft: #E5E7EB;
    
    /* Gaps & Borders */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(229, 231, 235, 0.6);
    --glass-border-glow: 1px solid rgba(139, 92, 246, 0.15);
    --radius-premium: 24px;
    --radius-medium: 16px;
    --radius-circle: 50%;
    
    /* Shadows & Transitions */
    --shadow-premium: 0 20px 40px rgba(17, 24, 39, 0.03), 0 1px 3px rgba(17, 24, 39, 0.01);
    --shadow-glow-purple: 0 15px 30px rgba(139, 92, 246, 0.15);
    --shadow-glow-pink: 0 15px 30px rgba(255, 95, 162, 0.15);
    --shadow-glow-cyan: 0 15px 30px rgba(34, 211, 238, 0.15);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Scroll setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--color-bg);
    font-family: var(--font-body);
    color: var(--color-text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Hide scrollbar default, custom bar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gray-soft);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-purple);
}

/* Scroll Progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink), var(--color-cyan));
    z-index: 10000;
}

/* --------------------------------------------------------------------------
   CUSTOM CURSOR (Upgrade 11)
   -------------------------------------------------------------------------- */
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-purple);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10002;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-circle {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
}

/* Cursor hover triggers */
.custom-cursor-circle.hovered {
    width: 48px;
    height: 48px;
    border-color: var(--color-pink);
    background-color: rgba(255, 95, 162, 0.05);
}

@media screen and (max-width: 991px) {
    .custom-cursor-dot, .custom-cursor-circle {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   BACKGROUND GLOW BLOBS (Stripe style)
   -------------------------------------------------------------------------- */
.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.blob-1 {
    background-color: var(--color-purple);
    top: -100px;
    left: -150px;
    animation: driftBlob1 25s infinite alternate ease-in-out;
}

.blob-2 {
    background-color: var(--color-pink);
    top: 30%;
    right: -200px;
    animation: driftBlob2 20s infinite alternate ease-in-out;
}

.blob-3 {
    background-color: var(--color-cyan);
    bottom: -100px;
    left: 10%;
    animation: driftBlob1 30s infinite alternate ease-in-out 5s;
}

@keyframes driftBlob1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(120px, 80px) scale(1.15); }
}

@keyframes driftBlob2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 120px) scale(0.9); }
}

/* --------------------------------------------------------------------------
   STARTUP PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 10005;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader-content {
    text-align: center;
    max-width: 300px;
}

.preloader-logo-wrap {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px auto;
}

.preloader-svg {
    width: 100%;
    height: 100%;
}

.circle-path {
    stroke-dasharray: 260;
    stroke-dashoffset: 260;
    animation: drawCircle 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.leaf-path {
    opacity: 0;
    transform: scale(0.8);
    transform-origin: center;
    animation: showLeaf 2s infinite ease-in-out;
}

@keyframes drawCircle {
    0% { stroke-dashoffset: 260; transform: rotate(0deg); }
    50% { stroke-dashoffset: 0; transform: rotate(180deg); }
    100% { stroke-dashoffset: -260; transform: rotate(360deg); }
}

@keyframes showLeaf {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.preloader-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--color-purple);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
}

.preloader-bar-wrap {
    width: 100%;
    height: 4px;
    background-color: var(--color-gray-soft);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink), var(--color-cyan));
    border-radius: 10px;
    transition: width 0.1s ease;
}

.preloader-percentage {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   FLOATING GLASS NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0 5%;
    transition: top 0.4s ease;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.45);
    border: var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-premium);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Navbar glassify status on scroll */
.navbar.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(229, 231, 235, 0.8);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon-svg {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
}

.logo-accent {
    color: var(--color-purple);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
    padding: 6px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-purple);
    transition: var(--transition-fast);
}

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

.btn {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
    color: var(--color-white);
    box-shadow: var(--shadow-glow-purple);
}

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

.btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(139, 92, 246, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    border: var(--glass-border);
    color: var(--color-text-dark);
    box-shadow: var(--shadow-premium);
}

.btn-secondary:hover {
    background: var(--color-white);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn .bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   SECTION 1: BREATHTAKING HERO EXPERIENCE
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    perspective: 1000px;
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-layer {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    color: var(--color-purple);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.icon-gradient {
    width: 14px;
    height: 14px;
    color: var(--color-purple);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Hero Visual stack */
.hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(255, 95, 162, 0.05) 70%, transparent 100%);
    border-radius: 50%;
    z-index: 1;
}

/* Three.js product bottle position */
.hero-three-wrapper {
    position: absolute;
    width: 250px;
    height: 480px;
    right: -40px;
    bottom: -30px;
    z-index: 4;
    pointer-events: auto;
    transform: translateZ(50px);
}

.three-canvas-container {
    width: 100%;
    height: 100%;
    cursor: grab;
}
.three-canvas-container:active {
    cursor: grabbing;
}

/* Arch model visual focus */
.model-frame {
    width: 320px;
    height: 440px;
    border-radius: 200px 200px 24px 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.08), var(--shadow-glow-purple);
    z-index: 2;
    transform: translateZ(20px);
    background-color: var(--color-white);
}

.model-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.model-frame:hover .model-main-img {
    transform: scale(1.05);
}

/* Mini floating glass cards inside Hero */
.mini-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border: var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-medium);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-premium);
    z-index: 5;
    pointer-events: none;
    transform-style: preserve-3d;
}

.card-icon-box {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-medium);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon-box i {
    width: 16px;
    height: 16px;
    color: var(--color-white);
}

.purple-bg { background: linear-gradient(135deg, var(--color-purple), #a78bfa); }
.pink-bg { background: linear-gradient(135deg, var(--color-pink), #f472b6); }
.cyan-bg { background: linear-gradient(135deg, var(--color-cyan), #67e8f9); }
.accent-bg { background: linear-gradient(135deg, var(--color-purple), var(--color-cyan)); }

.mini-glass-card h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.mini-glass-card p {
    font-size: 0.65rem;
    color: var(--color-text-muted);
}

/* Position floating mini cards */
.card-clients {
    top: 50px;
    left: -40px;
    animation: driftCard 6s ease-in-out infinite alternate;
}

.card-rating {
    bottom: 80px;
    left: -50px;
    animation: driftCard 8s ease-in-out infinite alternate 1s;
}

.card-scan {
    top: 120px;
    right: -50px;
    animation: driftCard 7s ease-in-out infinite alternate 0.5s;
}

.card-treatments {
    bottom: 120px;
    right: -20px;
    animation: driftCard 9s ease-in-out infinite alternate 1.5s;
}

@keyframes driftCard {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(10px, -15px) rotate(1deg); }
}

.hero-scroll-btn-wrap {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.hero-scroll-btn .btn-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-purple), transparent);
    animation: pulseLine 2s infinite ease-in-out;
}

@keyframes pulseLine {
    0%, 100% { height: 20px; opacity: 0.4; }
    50% { height: 45px; opacity: 1; }
}

/* --------------------------------------------------------------------------
   SECTION HEADERS
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-purple);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
}

.title-separator {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
    margin: 16px auto 0 auto;
    border-radius: 10px;
}

/* --------------------------------------------------------------------------
   SECTION 2: BENTO SERVICES GRID
   -------------------------------------------------------------------------- */
.services-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.45);
    border: var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-premium);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.bento-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.08);
}

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

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

/* Glowing Border Sweep */
.bento-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, var(--color-purple), transparent 50%, var(--color-cyan)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 3;
}

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

.bento-card-inner {
    display: flex;
    height: 100%;
    width: 100%;
}

.bento-card-inner.col-flow {
    flex-direction: column;
}

.bento-img-wrap {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 0 var(--radius-premium) var(--radius-premium) 0;
}

.bento-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-img-wrap img {
    transform: scale(1.05);
}

.bento-card-inner.col-flow .bento-img-wrap {
    width: 100%;
}
.h-180 {
    height: 180px;
}

.bento-content {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.bento-icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-medium);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.bento-icon-box i {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.bg-purple { background: linear-gradient(135deg, var(--color-purple), #a78bfa); }
.bg-pink { background: linear-gradient(135deg, var(--color-pink), #f472b6); }
.bg-cyan { background: linear-gradient(135deg, var(--color-cyan), #67e8f9); }

.bento-content h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.bento-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.bento-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    padding-top: 20px;
    margin-top: 10px;
}

.bento-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-purple);
}

.bento-link {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.bento-link:hover {
    color: var(--color-pink);
}

.bento-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
    color: var(--color-white);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-glow-purple);
}

/* --------------------------------------------------------------------------
   SECTION 3: BEAUTY CONSULTATION
   -------------------------------------------------------------------------- */
.consultation-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.scanner-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
}

.scanner-upload-panel {
    padding: 40px;
    background: rgba(255, 255, 255, 0.55);
}

.scanner-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #10B981;
    border-radius: 50%;
    animation: activeGlow 1.5s infinite ease-in-out;
}

@keyframes activeGlow {
    0%, 100% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 1; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.2); }
}

.scanner-panel-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.luxury-select, .luxury-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.4);
    border: var(--glass-border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    outline: none;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.luxury-select:focus, .luxury-input:focus {
    border-color: var(--color-purple);
    background: var(--color-white);
}

/* Results diagnostic screen styles */
.scanner-results-panel {
    min-height: 550px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.results-placeholder {
    text-align: center;
    max-width: 400px;
}

.idle-scan-icon {
    width: 50px;
    height: 50px;
    color: rgba(139, 92, 246, 0.15);
    margin-bottom: 20px;
    animation: iconFloat 4s infinite ease-in-out;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.results-placeholder h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.results-placeholder p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Console logs rows during mapping */
.scanner-logs-console {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 5;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.log-row {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-text-muted);
    font-family: monospace;
    font-size: 0.85rem;
    opacity: 0.25;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.log-row.active {
    color: var(--color-text-dark);
    opacity: 1;
    transform: translateY(0);
}

.log-row.done {
    color: var(--color-purple);
    opacity: 0.9;
    transform: translateY(0);
}

.spin-icon {
    animation: spin 1s infinite linear;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.purple-color { color: var(--color-purple); }
.pink-color { color: var(--color-pink); }
.cyan-color { color: var(--color-cyan); }

/* Diagnostic Glass dashboard */
.results-dashboard {
    width: 100%;
}

.dashboard-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #10B981;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.dashboard-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    padding-bottom: 10px;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.metric-block {
    padding: 16px 20px;
    background: var(--color-white);
    box-shadow: var(--shadow-premium);
}

.metric-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.metric-block h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 4px 0;
}

.metric-confidence, .metric-status {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--color-purple);
}

.recommendations-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.rec-block {
    padding: 20px 24px;
    border-left: 3px solid var(--color-purple) !important;
    background: var(--color-white);
}

.rec-badge {
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 4px;
}

.rec-block h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.rec-block p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.dashboard-actions {
    display: flex;
    justify-content: flex-end;
}

/* Glass panel global layout cards */
.glass-card {
    background: rgba(255, 255, 255, 0.45);
    border: var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-premium);
    transform-style: preserve-3d;
}

/* --------------------------------------------------------------------------
   SECTION 4: BEFORE / AFTER SHOWCASE
   -------------------------------------------------------------------------- */
.comparison-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.slider-wrapper {
    max-width: 1000px;
    margin: 0 auto 50px auto;
    padding: 15px;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    user-select: none;
}

.slider-image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Before is bottom layer, after is clipped top layer */
.before-box {
    z-index: 10;
}

.after-box {
    z-index: 20;
    width: 50%; /* Changed dynamically by JS */
    overflow: hidden;
    border-right: 1.5px solid rgba(255, 255, 255, 0.2);
}

.slider-label {
    position: absolute;
    bottom: 24px;
    padding: 6px 16px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 25;
}

.before-tag {
    right: 24px;
    background: rgba(17, 24, 39, 0.85);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.after-tag {
    left: 24px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-purple);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Slider Drag handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* Adjusted dynamically by JS */
    height: 100%;
    width: 40px;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: ew-resize;
}

.handle-line {
    flex-grow: 1;
    width: 2px;
    background-color: var(--color-purple);
    box-shadow: 0 0 10px var(--color-purple);
}

.handle-button {
    width: 42px;
    height: 42px;
    background: var(--color-white);
    border: 2px solid var(--color-purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.25);
    transition: transform 0.2s ease;
}

.slider-handle:hover .handle-button {
    transform: scale(1.1);
}

.handle-button i {
    width: 16px;
    height: 16px;
    color: var(--color-purple);
}

.transformation-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-item {
    padding: 30px 35px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-num-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}

.detail-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.detail-item p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   SECTION 5: TRANSFORMATION JOURNEY (Horizontal Scroll)
   -------------------------------------------------------------------------- */
.journey-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.journey-pin-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    position: relative;
}

.journey-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 5%;
}

.journey-track {
    display: flex;
    gap: 35px;
    padding: 0 10vw;
    width: max-content;
    will-change: transform;
}

.journey-card {
    width: 360px;
    flex-shrink: 0;
    padding: 40px 35px;
    border-radius: var(--radius-premium);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.journey-card:hover {
    border-color: var(--color-purple);
    transform: translateY(-8px);
}

.step-label {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-white);
    padding: 4px 10px;
    border-radius: 20px;
}

.card-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.05);
    border: 1.5px solid rgba(139, 92, 246, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon-wrap i {
    width: 18px;
    height: 18px;
    color: var(--color-purple);
}

.journey-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
}

.journey-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   SECTION 6: LIVE STATS
   -------------------------------------------------------------------------- */
.stats-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-medium);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-premium);
}

.stat-icon-wrap i {
    width: 18px;
    height: 18px;
}

.color-purple i { color: var(--color-purple); }
.color-pink i { color: var(--color-pink); }
.color-cyan i { color: var(--color-cyan); }
.color-accent i { color: var(--color-pink); }

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   SECTION 7: MEET THE EXPERTS
   -------------------------------------------------------------------------- */
.experts-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.expert-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.45);
}

.expert-image-wrapper {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.expert-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(17, 24, 39, 0.85) 100%);
    opacity: 0.85;
}

.expert-info {
    text-align: center;
}

.expert-specialty {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-purple);
    display: block;
    margin-bottom: 6px;
}

.expert-info h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.expert-experience {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.expert-bio {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.expert-card:hover .expert-bio {
    height: 50px;
    opacity: 1;
    margin-top: 8px;
}

.expert-social-btn {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: var(--shadow-premium);
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    margin-top: 15px;
}

.expert-social-btn:hover {
    color: var(--color-pink);
    transform: translateY(-2px);
}

.expert-social-btn i {
    width: 14px;
    height: 14px;
}

/* --------------------------------------------------------------------------
   SECTION 8: VIDEO SHOWCASE
   -------------------------------------------------------------------------- */
.video-showcase-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.video-container-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0.85);
    border-radius: var(--radius-premium);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.12);
    transition: transform 0.1s linear, border-radius 0.4s ease;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.video-scrub-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 25%, transparent 75%, var(--color-bg) 100%),
                radial-gradient(circle at center, transparent 30%, var(--color-bg) 90%);
    z-index: 2;
    pointer-events: none;
}

.video-text-overlay {
    position: absolute;
    width: 100%;
    max-width: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.story-chapter {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.story-chapter.active {
    display: flex;
    animation: fadeUpStory 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeUpStory {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

.chapter-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-purple);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.story-chapter h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.story-chapter p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   SECTION 9: GOOGLE REVIEWS WALL (MASONRY)
   -------------------------------------------------------------------------- */
.reviews-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.floating-reviews-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 30px;
}

.review-card {
    position: absolute;
    width: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.6);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.review-card:hover {
    border-color: var(--color-purple);
    box-shadow: var(--shadow-glow-purple);
    z-index: 10;
    animation-play-state: paused;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.filled-star {
    width: 14px;
    height: 14px;
    fill: #FBBF24;
    color: #FBBF24;
}

.review-logo {
    color: var(--color-purple);
}

.review-logo i {
    width: 16px;
    height: 16px;
}

.review-comment {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-style: italic;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-user img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.review-user h4 {
    font-size: 0.8rem;
    font-weight: 700;
}

.review-user span {
    font-size: 0.65rem;
    color: var(--color-text-muted);
}

/* Google wall float tracks keyframes */
.float-anim-1 {
    top: 5%;
    left: 5%;
    animation: floatingReviews1 16s infinite alternate ease-in-out;
}
.float-anim-2 {
    top: 50%;
    left: 18%;
    animation: floatingReviews2 18s infinite alternate ease-in-out;
}
.float-anim-3 {
    top: 8%;
    left: 55%;
    animation: floatingReviews3 20s infinite alternate ease-in-out;
}
.float-anim-4 {
    top: 55%;
    left: 70%;
    animation: floatingReviews4 15s infinite alternate ease-in-out;
}

@keyframes floatingReviews1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, 30px) rotate(2deg); }
}
@keyframes floatingReviews2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-30px, -20px) rotate(-2deg); }
}
@keyframes floatingReviews3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(25px, -25px) rotate(3deg); }
}
@keyframes floatingReviews4 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-15px, 20px) rotate(-1deg); }
}

/* --------------------------------------------------------------------------
   SECTION 10: ONLINE BOOKING EXPERIENCE
   -------------------------------------------------------------------------- */
.booking-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
}

.booking-form .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.booking-form .form-group {
    flex: 1;
}

/* Live estimates container */
.booking-estimate-panel {
    padding: 20px 24px;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(139, 92, 246, 0.15);
    background: rgba(139, 92, 246, 0.02) !important;
    margin-bottom: 25px;
    animation: panelSlideDown 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes panelSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.estimate-header-label {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.estimate-header-label h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.estimate-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.est-label {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.est-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.booking-submit-btn {
    margin-top: 15px;
}

/* Booking success overlay receipt */
.booking-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-premium);
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.booking-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-card {
    text-align: center;
    max-width: 440px;
    width: 100%;
    background: var(--color-white);
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    position: relative;
    padding: 35px 30px;
}

/* Custom ticket notches */
.success-card::before, .success-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--color-bg);
    border-radius: 50%;
    top: 60%;
    border: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 4;
}

.success-card::before { left: -11px; }
.success-card::after { right: -11px; }

.success-ring-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;
}

.success-glow-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2.5px solid #10B981;
    border-radius: 50%;
    animation: scalePulse 2s infinite ease-in-out;
}

@keyframes scalePulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 15px rgba(16, 185, 129, 0.35); }
}

.success-check-icon {
    width: 28px;
    height: 28px;
    color: #10B981;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.success-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-sub {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.ticket-itinerary {
    padding: 16px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 3px solid var(--color-purple) !important;
    background: var(--color-bg);
    margin-bottom: 30px;
    font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   SECTION 11: INSTAGRAM GALLERY
   -------------------------------------------------------------------------- */
.gallery-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.instagram-masonry {
    column-count: 3;
    column-gap: 25px;
    width: 100%;
}

.gallery-card-item {
    margin-bottom: 25px;
    break-inside: avoid;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-medium);
    cursor: pointer;
}

.gallery-card-item img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: opacity 0.4s ease;
}

.gallery-item-overlay i {
    width: 22px;
    height: 22px;
    color: var(--color-white);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-overlay span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

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

.gallery-card-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-card-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

/* Lightbox V3 Overlay Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-wrapper {
    width: 90%;
    max-width: 960px;
    height: 75vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-image-box {
    position: relative;
    height: 100%;
    background: #090909;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: zoomLightbox 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes zoomLightbox {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-details-box {
    padding: 40px;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow-y: auto;
}

.lightbox-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-purple);
    text-transform: uppercase;
}

.lightbox-details-box h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    margin: 8px 0 15px 0;
    line-height: 1.3;
}

.lightbox-meta {
    border-top: 1px solid var(--color-gray-soft);
    border-bottom: 1px solid var(--color-gray-soft);
    padding: 15px 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.meta-title {
    color: var(--color-text-muted);
}

.meta-value {
    font-weight: 600;
    color: var(--color-text-dark);
}

.lightbox-description {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--color-white);
    font-size: 35px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-pink);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.lightbox-nav-btn:hover {
    background: var(--color-white);
    color: var(--color-text-dark);
}

.nav-prev { left: 20px; }
.nav-next { right: 20px; }

/* --------------------------------------------------------------------------
   SECTION 12: CONTACT EXPERIENCE
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
}

.contact-map-panel {
    padding: 12px;
    height: 420px;
    overflow: hidden;
}

.abstract-map-box {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: var(--radius-medium);
    position: relative;
}

.abstract-map-svg {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.road-path-gradient {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.sonar-ring-1 {
    animation: activeGlow 2s infinite ease-in-out;
}

.sonar-ring-2 {
    animation: sonarRange 3s infinite linear;
}

.sonar-ring-3 {
    animation: sonarRange 3s infinite linear 1s;
}

@keyframes sonarRange {
    0% { r: 5px; opacity: 0.8; }
    100% { r: 60px; opacity: 0; }
}

.gps-coordinates-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-white);
    border: var(--glass-border);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-premium);
}

.contact-info-panel {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-medium);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-icon-wrapper i {
    width: 16px;
    height: 16px;
    color: var(--color-white);
}

.info-card-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.info-card-item p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SECTION 13: PREMIUM FOOTER
   -------------------------------------------------------------------------- */
.footer {
    padding-top: 80px;
    position: relative;
    z-index: 2;
    background-color: var(--color-bg);
}

.footer-divider-line {
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--color-purple), var(--color-pink), transparent);
    margin-bottom: 70px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5% 40px 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.9fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-text-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.col-about {
    max-width: 260px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    text-decoration: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-white);
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.social-btn i {
    width: 15px;
    height: 15px;
}

.social-btn:hover {
    border-color: var(--color-purple);
    color: var(--color-purple);
    box-shadow: var(--shadow-glow-purple);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    text-decoration: none;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--color-purple);
    transform: translateX(4px);
}

.footer-hours-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-hours-block div {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    padding-bottom: 6px;
}

.footer-hours-block span {
    color: var(--color-text-muted);
}

.footer-hours-block strong {
    color: var(--color-text-dark);
}

.footer-hours-block .closed-day strong {
    color: var(--color-pink);
}

.footer-quick-booking {
    margin-top: 15px;
    font-size: 0.7rem;
    padding: 10px 20px;
}

/* Footer Insta previews (Upgrade 12) */
.footer-insta-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.insta-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-gray-soft);
}

.insta-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insta-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    color: var(--color-white);
    transition: opacity 0.3s ease;
}

.insta-preview-item:hover img {
    transform: scale(1.08);
}

.insta-preview-item:hover .insta-hover {
    opacity: 1;
}

.col-newsletter {
    max-width: 260px;
}

.col-newsletter p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.newsletter-group {
    display: flex;
    border-bottom: 1.5px solid var(--color-gray-soft);
    padding-bottom: 8px;
    transition: var(--transition-fast);
}

.newsletter-group:focus-within {
    border-color: var(--color-purple);
}

.newsletter-input {
    flex-grow: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-dark);
}

.newsletter-submit {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-success {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: #10B981;
    font-weight: 600;
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-soft);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branding-stamp-container {
    width: 60px;
    height: 60px;
}

.branding-stamp-svg {
    width: 100%;
    height: 100%;
    animation: spin 15s infinite linear;
}

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

.scroll-top-btn {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-dark);
    display: inline-flex;
    align-items: center;
}

.scroll-top-btn:hover {
    color: var(--color-purple);
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN & MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 3.4rem;
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .span-2 {
        grid-column: span 2;
    }
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .navbar {
        top: 12px;
        padding: 0 4%;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(17, 24, 39, 0.05);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-item {
        margin: 15px 0;
    }
    .nav-link {
        font-size: 1.1rem;
    }
    .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
        z-index: 1000;
    }
    
    /* Hamburger transforms */
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-left-content {
        order: 1;
    }
    .hero-right-content {
        order: 2;
        margin-top: 40px;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-scroll-btn-wrap {
        display: none;
    }
    
    .scanner-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .lightbox-wrapper {
        grid-template-columns: 1fr;
        height: 90vh;
    }
    .lightbox-details-box {
        padding: 24px;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2.1rem;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .span-2, .span-1 {
        grid-column: span 1;
    }
    .bento-card-inner {
        flex-direction: column;
    }
    .bento-img-wrap {
        width: 100%;
        height: 200px;
        border-radius: 0 0 var(--radius-premium) var(--radius-premium);
    }
    .comparison-slider {
        height: 380px;
    }
    .transformation-details {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .experts-grid {
        grid-template-columns: 1fr;
    }
    .booking-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .booking-wrapper {
        padding: 24px;
    }
    .instagram-masonry {
        column-count: 2;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .floating-reviews-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .review-card {
        position: relative !important;
        width: 100% !important;
        top: 0 !important;
        left: 0 !important;
        animation: none !important;
    }
}

@media screen and (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .instagram-masonry {
        column-count: 1;
    }
}
