@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&family=Almarai:wght@300;400;700;800&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   OFFICIAL BRAND DESIGN TOKENS (From Pantone & Pattern Guide)
   ========================================================================== */
:root {
    --font-heading: 'Alexandria', 'Almarai', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'IBM Plex Sans Arabic', 'Almarai', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Official Brand Colors */
    --gold-primary: #BC9A61;          /* Pantone 7556 C */
    --gold-primary-rgb: 188, 154, 97;
    --gold-muted: #9A7744;            /* Muted Gold */
    --gold-light: #dfc89e;            /* Highlight Gold */
    --gold-glow: rgba(188, 154, 97, 0.38);
    --gold-glow-subtle: rgba(188, 154, 97, 0.15);

    --luxury-black: #0B0B0B;          /* Pantone Black C */
    --luxury-black-rgb: 11, 11, 11;
    --deep-brown: #33281D;            /* Deep Brown / Charcoal Bronze */
    --deep-brown-rgb: 51, 40, 29;

    --soft-beige: #E8DDCA;            /* Soft Beige */
    --warm-ivory: #F7F3EB;            /* Warm Ivory */
    --pure-white: #FFFFFF;            /* White */

    /* Surface & Glass Backgrounds */
    --bg-dark: #070707;
    --bg-surface: rgba(18, 15, 12, 0.78);
    --bg-card: rgba(14, 12, 10, 0.84);
    --bg-card-hover: rgba(24, 20, 16, 0.92);

    /* Text Colors */
    --text-main: #F7F3EB;
    --text-muted: #c4bcb0;
    --text-dim: #8c8273;
    --text-gold: #BC9A61;

    /* Borders */
    --border-subtle: rgba(232, 221, 202, 0.1);
    --border-gold: rgba(188, 154, 97, 0.35);
    --border-gold-bright: rgba(188, 154, 97, 0.65);

    /* Spring & Motion */
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --glass-blur: 24px;
    --glass-saturate: 190%;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
    background-color: var(--luxury-black);
    color: var(--text-main);
    font-family: var(--font-body);
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    background-color: var(--luxury-black);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.7;
    background-image: radial-gradient(circle at 50% 0%, rgba(188, 154, 97, 0.08) 0%, transparent 60%);
}

::selection {
    background-color: var(--gold-primary);
    color: var(--luxury-black);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: rgba(188, 154, 97, 0.4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

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

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

img, svg {
    display: block;
    max-width: 100%;
}

/* ==========================================================================
   BRAND PATTERN TEXTURE OVERLAYS
   ========================================================================== */
.pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../pattern.webp');
    background-repeat: repeat;
    background-size: 32px 32px;
    opacity: 0.07;
    pointer-events: none;
    mix-blend-mode: screen;
}

.card-pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../pattern.webp');
    background-repeat: repeat;
    background-size: 28px 28px;
    opacity: 0.05;
    pointer-events: none;
    border-radius: inherit;
}

/* ==========================================================================
   PRELOADER SCREEN
   ========================================================================== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #080706;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    transition: opacity 0.8s var(--ease-smooth), visibility 0.8s;
}

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

.loader-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.loader-logo-wrap {
    width: 220px;
    max-width: 75vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo-img {
    width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px var(--gold-glow));
    animation: logoGlowPulse 2.4s infinite ease-in-out;
}

@keyframes logoGlowPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 18px var(--gold-glow)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 35px var(--gold-primary)); }
}

.loader-slogan {
    font-size: 0.92rem;
    color: var(--soft-beige);
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.2px;
}

.loader-progress-box {
    width: 290px;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.loader-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(232, 221, 202, 0.12);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.loader-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-muted), var(--gold-primary), var(--gold-light));
    box-shadow: 0 0 16px var(--gold-primary);
    transition: width 0.15s ease-out;
    border-radius: 99px;
}

.loader-stats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.78rem;
    color: var(--text-dim);
    font-family: monospace;
}

#loader-percent {
    color: var(--gold-light);
    font-weight: 700;
}

/* ==========================================================================
   CANVAS STAGE (60FPS FIXED HERO ENGINE)
   ========================================================================== */
#canvas-stage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.canvas-overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(11, 11, 11, 0.3) 0%, rgba(11, 11, 11, 0.82) 75%, rgba(11, 11, 11, 0.97) 100%),
                linear-gradient(180deg, rgba(11, 11, 11, 0.88) 0%, transparent 15%, transparent 80%, rgba(11, 11, 11, 0.96) 100%);
    pointer-events: none;
}

/* ==========================================================================
   BORDERLESS SEAMLESS LUXURY HEADER (CENTER LARGE LOGO & SPLIT NAVIGATION)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0.75rem 2.5rem 1rem;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(8, 7, 6, 0.92) 0%, rgba(8, 7, 6, 0.6) 65%, transparent 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: none;
    box-shadow: none;
    transition: background 0.3s ease;
}

.nav-container-seamless {
    pointer-events: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1560px;
    gap: 1.5rem;
    position: relative;
    border: none;
    box-shadow: none;
    background: transparent;
}

/* Split Menu Navs */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-menu-right {
    justify-content: flex-end;
    gap: 2rem;
}

.nav-menu-left {
    justify-content: flex-start;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--soft-beige);
    transition: color 0.25s ease, transform 0.25s var(--ease-spring), text-shadow 0.25s ease;
    position: relative;
    padding: 0.4rem 0;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 2px;
    transition: width 0.3s var(--ease-smooth);
    box-shadow: 0 0 10px var(--gold-primary);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    text-shadow: 0 0 15px var(--gold-glow);
}

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

.nav-link-special {
    color: var(--gold-light) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-weight: 700;
}

.offers-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e74c3c;
    box-shadow: 0 0 8px #e74c3c;
    animation: dotPulseAnim 1.3s infinite ease-in-out;
}

@keyframes dotPulseAnim {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

/* Center Logo (Large, Commanding, Crisp & Regal) */
.brand-logo-center-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    cursor: pointer;
    position: relative;
    transition: transform 0.35s var(--ease-spring);
    flex-shrink: 0;
}

.brand-logo-img-large {
    height: 86px;
    width: auto;
    max-width: 275px;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(188, 154, 97, 0.45));
    transition: transform 0.35s var(--ease-spring), filter 0.35s ease;
}

.brand-logo-center-luxury:hover .brand-logo-img-large {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 0 35px var(--gold-primary));
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(232, 221, 202, 0.08);
    border: 1px solid var(--border-gold);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
    background: rgba(188, 154, 97, 0.22);
    border-color: var(--gold-light);
}

/* Audio Interactive Extension Widget */
.audio-hud-widget {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(232, 221, 202, 0.06);
    border: 1px solid var(--border-gold);
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.25s var(--ease-smooth);
    user-select: none;
}

.audio-hud-widget:hover {
    background: rgba(188, 154, 97, 0.18);
    border-color: var(--gold-light);
    box-shadow: 0 0 15px var(--gold-glow-subtle);
}

.audio-equalizer-bars {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 15px;
    width: 15px;
}

.eq-bar {
    width: 2.5px;
    border-radius: 2px;
    background: var(--text-dim);
    transition: height 0.2s ease, background 0.2s ease;
}

.eq-bar-1 { height: 35%; }
.eq-bar-2 { height: 75%; }
.eq-bar-3 { height: 45%; }
.eq-bar-4 { height: 90%; }

.audio-hud-widget.active {
    background: linear-gradient(135deg, rgba(188, 154, 97, 0.28) 0%, rgba(51, 40, 29, 0.4) 100%);
    border-color: var(--gold-primary);
    box-shadow: 0 0 18px var(--gold-glow);
}

.audio-hud-widget.active .eq-bar {
    background: var(--gold-light);
}

.audio-hud-widget.active .eq-bar-1 { animation: eqBounce1 0.75s infinite ease-in-out alternate; }
.audio-hud-widget.active .eq-bar-2 { animation: eqBounce2 0.9s infinite ease-in-out alternate; }
.audio-hud-widget.active .eq-bar-3 { animation: eqBounce3 0.65s infinite ease-in-out alternate; }
.audio-hud-widget.active .eq-bar-4 { animation: eqBounce4 1.05s infinite ease-in-out alternate; }

@keyframes eqBounce1 { 0% { height: 20%; } 100% { height: 100%; } }
@keyframes eqBounce2 { 0% { height: 90%; } 100% { height: 30%; } }
@keyframes eqBounce3 { 0% { height: 30%; } 100% { height: 85%; } }
@keyframes eqBounce4 { 0% { height: 100%; } 100% { height: 40%; } }

.audio-widget-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: right;
}

.audio-widget-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
}

.audio-widget-status {
    font-size: 0.62rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.audio-hud-widget.active .audio-widget-status {
    color: #2ecc71;
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(188, 154, 97, 0.25) 0%, rgba(188, 154, 97, 0.08) 100%);
    color: #ffffff;
    border: 1.5px solid var(--border-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    pointer-events: auto;
    z-index: 102;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.08);
    border-color: var(--gold-primary);
    background: rgba(188, 154, 97, 0.35);
}

/* ==========================================================================
   SCROLL TRACK & SIDE CAPSULES LAYOUT
   ========================================================================== */
#scroll-wrapper,
#scroll-container {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
}

.scroll-track {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 45vh; /* 60%+ canvas visible space */
    padding-top: 18vh;
    padding-bottom: 25vh;
}

.capsule-row,
section[id],
.infinity-gallery-section,
.site-footer {
    scroll-margin-top: 130px;
}

.capsule-row {
    display: flex;
    width: 100%;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.capsule-row.align-right {
    justify-content: flex-start;
}

.capsule-row.align-left {
    justify-content: flex-end;
}

.capsule-row.align-center {
    justify-content: center;
}

.capsule-card {
    width: 100%;
    max-width: 440px;
    background: rgba(14, 12, 10, 0.78);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(232, 221, 202, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s ease, box-shadow 0.4s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.capsule-card.wide-card {
    max-width: 590px;
}

.capsule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.capsule-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-gold-bright);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 35px var(--gold-glow);
}

.capsule-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.95rem;
    border-radius: var(--radius-full);
    background: rgba(188, 154, 97, 0.14);
    border: 1px solid rgba(188, 154, 97, 0.4);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1.15rem;
    width: fit-content;
    position: relative;
    z-index: 2;
}

.capsule-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-primary);
    animation: blinkDot 2s infinite ease-in-out;
}

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

.capsule-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--pure-white);
    margin-bottom: 0.9rem;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.capsule-title.highlight-gold {
    background: linear-gradient(135deg, var(--pure-white) 35%, var(--gold-light) 75%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.capsule-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 2;
}

.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 1.25rem 0 1.65rem;
    position: relative;
    z-index: 2;
}

.hero-feature-tag {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.feature-icon-badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(188, 154, 97, 0.16);
    border: 1px solid rgba(188, 154, 97, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(188, 154, 97, 0.2);
}

.capsule-footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   MODERN ANIMATED ICONS (SVG + CSS Keyframes)
   ========================================================================== */
.anim-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(188, 154, 97, 0.12);
    border: 1px solid rgba(188, 154, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-spring);
}

.anim-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(188, 154, 97, 0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-mini-item:hover .anim-icon-wrap,
.capsule-card:hover .anim-icon-wrap {
    transform: scale(1.12) rotate(3deg);
    border-color: var(--gold-light);
    box-shadow: 0 0 20px var(--gold-glow);
}

.service-mini-item:hover .anim-icon-wrap::after {
    opacity: 1;
}

/* Specific icon keyframe animations */
.icon-spin-slow {
    animation: iconSpin 14s linear infinite;
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.icon-pulse-smooth {
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.icon-float-smooth {
    animation: iconFloat 4s ease-in-out infinite;
}

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

.icon-laser-scan {
    animation: laserScan 2.5s ease-in-out infinite;
}

@keyframes laserScan {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.85rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-muted) 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 25px var(--gold-glow);
    transition: all 0.3s var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: rotate(45deg) translateY(100%);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(188, 154, 97, 0.55);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    color: #000000;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.65rem;
    border-radius: var(--radius-full);
    background: rgba(232, 221, 202, 0.06);
    color: var(--soft-beige);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(188, 154, 97, 0.15);
    border-color: var(--gold-primary);
    color: var(--pure-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   SERVICES & INTERACTIVE GRIDS
   ========================================================================== */
.services-interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.35rem 0;
    position: relative;
    z-index: 2;
}

.service-mini-item {
    background: rgba(232, 221, 202, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.service-mini-item:hover {
    background: rgba(188, 154, 97, 0.12);
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(188, 154, 97, 0.2);
}

.service-mini-item h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--pure-white);
    transition: color 0.2s;
}

.service-mini-item:hover h4 {
    color: var(--gold-light);
}

.service-mini-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-mini-item .service-link-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-top: auto;
    padding-top: 0.4rem;
    transition: transform 0.2s;
}

.service-mini-item:hover .service-link-hint {
    transform: translateX(-4px);
    color: #ffffff;
}

/* Value Bullets */
.value-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 1.3rem 0;
    position: relative;
    z-index: 2;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.92rem;
    color: var(--text-main);
}

.value-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: rgba(188, 154, 97, 0.16);
    border: 1px solid rgba(188, 154, 97, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: bold;
}

/* ==========================================================================
   SECTORS CLOUD & CHIPS
   ========================================================================== */
.chips-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.35rem 0;
    position: relative;
    z-index: 2;
}

.sector-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(232, 221, 202, 0.04);
    border: 1px solid var(--border-subtle);
    font-size: 0.86rem;
    color: var(--text-main);
    transition: all 0.25s ease;
}

.sector-chip:hover {
    background: rgba(188, 154, 97, 0.15);
    border-color: var(--gold-primary);
    color: var(--pure-white);
    transform: scale(1.04);
}

/* ==========================================================================
   INTERACTIVE QUOTE ESTIMATOR CARD
   ========================================================================== */
.quote-estimator-card {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.quote-step-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gold-light);
}

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

.quote-option-btn {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(232, 221, 202, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: right;
}

.quote-option-btn:hover {
    background: rgba(232, 221, 202, 0.08);
    color: var(--pure-white);
}

.quote-option-btn.selected {
    background: rgba(188, 154, 97, 0.16);
    border-color: var(--gold-primary);
    color: var(--pure-white);
    box-shadow: 0 0 20px rgba(188, 154, 97, 0.25);
}

.quote-summary-box {
    background: rgba(0, 0, 0, 0.45);
    border: 1px dashed var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.quote-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.quote-estimated-badge {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold-light);
    text-shadow: 0 0 15px var(--gold-glow);
}

/* ==========================================================================
   CONTACT FORM & LOCATION CARD
   ========================================================================== */
.contact-grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem;
    margin-top: 1.15rem;
    position: relative;
    z-index: 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--soft-beige);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1.15rem;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all 0.25s ease;
    text-align: right;
    direction: rtl;
}

.form-input::placeholder, .form-textarea::placeholder {
    text-align: right;
    direction: rtl;
    color: rgba(232, 221, 202, 0.45);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 18px var(--gold-glow);
}

.form-select option {
    background: #110e0c;
    color: #ffffff;
}

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

.contact-quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.35rem;
    position: relative;
    z-index: 2;
}

.contact-link-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius-md);
    background: rgba(232, 221, 202, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-size: 0.88rem;
    transition: all 0.25s ease;
}

.contact-link-row:hover {
    background: rgba(188, 154, 97, 0.12);
    border-color: var(--gold-primary);
    color: #ffffff;
}

/* ==========================================================================
   FLOATING OFFERS BUTTON (DESKTOP & TABLETS)
   ========================================================================== */
.floating-offers-btn {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-full);
    background: rgba(14, 12, 10, 0.92);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border: 1px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 20px var(--gold-glow);
    cursor: pointer;
    transition: all 0.35s var(--ease-spring);
    pointer-events: auto;
}

.floating-offers-btn:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--gold-light);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-primary);
}

.offers-ping {
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gold-primary);
    animation: offersRipple 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
    pointer-events: none;
}

@keyframes offersRipple {
    75%, 100% { transform: scale(1.15, 1.35); opacity: 0; }
}

.offers-btn-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-muted) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px var(--gold-glow);
    flex-shrink: 0;
}

.offers-btn-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    line-height: 1.2;
}

.offers-btn-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #ffffff;
}

.offers-btn-badge {
    font-size: 0.68rem;
    color: var(--gold-light);
    font-weight: 700;
}

/* ==========================================================================
   FLOATING HUD CONTROLLER DOCK (COMMAND CENTER)
   ========================================================================== */
.floating-hud-dock {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.45rem 1.2rem;
    background: rgba(14, 12, 10, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1.2px solid rgba(188, 154, 97, 0.4);
    border-radius: var(--radius-full);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow-subtle);
    pointer-events: auto;
    transition: all 0.3s var(--ease-smooth);
}

.floating-hud-dock:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow);
}

.hud-divider {
    width: 1px;
    height: 18px;
    background: rgba(232, 221, 202, 0.18);
    flex-shrink: 0;
}

/* Audio in HUD Dock */
.hud-dock-audio {
    border: 1px solid rgba(188, 154, 97, 0.35);
    background: rgba(188, 154, 97, 0.08);
}

.hud-dock-audio:hover {
    background: rgba(188, 154, 97, 0.22);
    border-color: var(--gold-light);
}

/* CTA in HUD Dock */
.hud-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 1.15rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-muted) 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: all 0.25s var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.25);
    white-space: nowrap;
}

.hud-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(188, 154, 97, 0.65);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    color: #000000;
}

/* Action Buttons inside HUD */
.hud-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
}

.hud-offers-btn {
    background: rgba(188, 154, 97, 0.16);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
}

.hud-offers-btn:hover {
    background: rgba(188, 154, 97, 0.3);
    border-color: var(--gold-light);
    color: #ffffff;
    box-shadow: 0 0 12px var(--gold-glow);
}

.hud-action-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e74c3c;
    box-shadow: 0 0 6px #e74c3c;
    animation: dotPulseAnim 1.2s infinite ease-in-out;
}

.hud-whatsapp-btn {
    background: rgba(37, 211, 102, 0.16);
    border: 1px solid rgba(37, 211, 102, 0.45);
    color: #25d366;
}

.hud-whatsapp-btn:hover {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

/* Visibility Control */
.mobile-only-hud-action {
    display: none !important; /* Displayed only in mobile media query */
}

.desktop-only-hud-cta,
.desktop-only-divider {
    display: inline-flex !important;
}

.hud-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    color: var(--text-muted);
    font-family: monospace;
    white-space: nowrap;
}

.hud-progress-meter {
    width: 60px;
    height: 4px;
    background: rgba(232, 221, 202, 0.12);
    border-radius: 99px;
    overflow: hidden;
}

.hud-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-muted), var(--gold-primary));
    transition: width 0.1s linear;
}

.hud-btn {
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(232, 221, 202, 0.05);
    border: 1px solid var(--border-subtle);
    font-size: 0.76rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.hud-btn:hover {
    background: rgba(188, 154, 97, 0.22);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

/* Floating WhatsApp Direct Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    transition: all 0.3s var(--ease-spring);
    cursor: pointer;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.12) rotate(6deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
}

.whatsapp-ping {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pingRipple 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingRipple {
    75%, 100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   FULL-SCREEN OFFERS MODAL SLIDER
   ========================================================================== */
.offers-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-smooth), visibility 0.35s;
}

.offers-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.offers-modal-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(30, 24, 18, 0.94) 0%, rgba(6, 5, 5, 0.98) 100%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

.offers-modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    height: 90vh;
    max-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 1.8rem;
    margin: auto;
    box-sizing: border-box;
}

.offers-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.offers-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(188, 154, 97, 0.14);
    border: 1px solid var(--border-gold);
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
}

.offers-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 6px var(--gold-light);
}

.offers-modal-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0.25rem;
}

.offers-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.offers-slide-counter {
    font-family: monospace;
    font-size: 0.92rem;
    color: var(--text-dim);
    font-weight: 700;
}

#offers-current-index {
    color: var(--gold-light);
    font-size: 1.05rem;
}

.offers-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(232, 221, 202, 0.08);
    border: 1px solid var(--border-gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.offers-close-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background: rgba(188, 154, 97, 0.25);
    border-color: var(--gold-light);
}

/* Story Progress Bars */
.offers-story-bars {
    display: flex;
    gap: 6px;
    width: 100%;
    margin-top: 0.85rem;
}

.story-bar {
    flex: 1;
    height: 3.5px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    overflow: hidden;
    cursor: pointer;
}

.story-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.story-bar.active .story-bar-fill {
    width: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    box-shadow: 0 0 8px var(--gold-primary);
}

.story-bar.completed .story-bar-fill {
    width: 100%;
    background: var(--gold-muted);
}

/* Slider Viewport */
.offers-slider-viewport {
    overflow: hidden;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    margin: 1rem 0;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.offers-slider-viewport.grabbing {
    cursor: grabbing;
}

.offers-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.offer-slide-item {
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0.35rem;
}

.offer-card-inner {
    background: rgba(18, 15, 12, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 2.2rem 2.4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 35px var(--gold-glow-subtle);
    position: relative;
    overflow: hidden;
}

.offer-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.95rem;
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 700;
    background: rgba(188, 154, 97, 0.18);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    margin-bottom: 0.85rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.offer-card-badge svg {
    flex-shrink: 0;
}

/* Badge Color Themes */
.offer-card-badge.badge-gold {
    background: rgba(188, 154, 97, 0.18);
    border-color: rgba(188, 154, 97, 0.45);
    color: var(--gold-light);
}

.offer-card-badge.badge-blue {
    background: rgba(80, 160, 255, 0.18);
    border-color: rgba(80, 160, 255, 0.45);
    color: #93c5fd;
}

.offer-card-badge.badge-amber {
    background: rgba(255, 180, 50, 0.18);
    border-color: rgba(255, 180, 50, 0.45);
    color: #fde047;
}

.offer-card-badge.badge-green {
    background: rgba(46, 204, 113, 0.18);
    border-color: rgba(46, 204, 113, 0.45);
    color: #86efac;
}

.offer-card-badge.badge-orange {
    background: rgba(230, 126, 34, 0.18);
    border-color: rgba(230, 126, 34, 0.45);
    color: #fdba74;
}

.offer-card-tagline {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.offer-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0.25rem 0 0.75rem;
    line-height: 1.35;
}

.offer-card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.offer-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
    margin-bottom: 1.5rem;
}

.offer-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.55;
    transition: transform 0.2s ease;
}

.offer-features-list li:hover {
    transform: translateX(-3px);
}

/* Luxury Feature SVG Icon Badge */
.offer-feat-badge {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 8px;
    background: rgba(188, 154, 97, 0.12);
    border: 1px solid rgba(188, 154, 97, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
    margin-top: 1px;
    box-shadow: 0 0 10px rgba(188, 154, 97, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.offer-card-inner:hover .offer-feat-badge {
    border-color: rgba(188, 154, 97, 0.6);
    background: rgba(188, 154, 97, 0.2);
    box-shadow: 0 0 14px rgba(188, 154, 97, 0.25);
}

.offer-features-list li:hover .offer-feat-badge {
    transform: scale(1.15) rotate(5deg);
    color: #ffffff;
    background: var(--gold-primary);
    border-color: var(--gold-light);
    box-shadow: 0 0 16px var(--gold-primary);
}

.offer-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(232, 221, 202, 0.1);
}

.offer-price-box {
    display: flex;
    flex-direction: column;
}

.offer-old-price {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.offer-current-price {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1.1;
}

.offer-current-price span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.offer-discount-chip {
    font-size: 0.74rem;
    color: #e74c3c;
    font-weight: 700;
    margin-top: 0.2rem;
}

.offer-cta-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.92rem;
    white-space: nowrap;
}

/* Modal Footer Navigation */
.offers-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.offers-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    background: rgba(232, 221, 202, 0.06);
    border: 1px solid var(--border-gold);
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.offers-nav-btn:hover {
    background: rgba(188, 154, 97, 0.2);
    border-color: var(--gold-light);
    color: #ffffff;
}

.offers-dots-indicators {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
}

.offer-dot.active {
    width: 24px;
    border-radius: 99px;
    background: var(--gold-light);
    box-shadow: 0 0 10px var(--gold-glow);
}

.offers-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
    text-align: center;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    position: relative;
    z-index: 10;
    background: #060505;
    border-top: 1.5px solid var(--border-gold);
    padding: 4.5rem 2rem 7.5rem;
    margin-top: 0;
    overflow: hidden;
}

.footer-container,
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 0.9fr 1.6fr 1.3fr;
    gap: 2.2rem;
    align-items: start;
}

.footer-brand-logo-img {
    height: 65px;
    max-height: 70px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 1.2rem;
    display: block;
}

/* Luxury Footer Social Media Bar */
.footer-social-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(188, 154, 97, 0.12);
    border: 1px solid rgba(188, 154, 97, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.25s ease;
}

.footer-social-btn:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-muted));
    color: #080706;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 18px var(--gold-glow);
    border-color: var(--gold-primary);
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1.35rem;
}

.footer-col p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-dim);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1.45;
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(-3px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-icon-badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(188, 154, 97, 0.14);
    border: 1px solid rgba(188, 154, 97, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-list li:hover .footer-icon-badge {
    transform: scale(1.12);
    border-color: var(--gold-light);
    color: #ffffff;
    box-shadow: 0 0 14px var(--gold-glow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.8rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(232, 221, 202, 0.08);
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ==========================================================================
   MOBILE MENU DRAWER
   ========================================================================== */
/* ==========================================================================
   MOBILE MENU DRAWER
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-smooth), visibility 0.3s;
}

.mobile-drawer.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-drawer-logo {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px var(--gold-glow));
    margin-bottom: 0.5rem;
}

.mobile-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    text-align: center;
}

.mobile-drawer-link {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.mobile-drawer-link:hover, .mobile-drawer-link:active {
    color: var(--gold-primary);
    transform: scale(1.08);
}

.mobile-close-btn {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(232, 221, 202, 0.08);
    border: 1px solid var(--border-gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.mobile-close-btn:hover {
    transform: scale(1.1);
    background: rgba(188, 154, 97, 0.2);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-menu-right, .nav-menu-left {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .site-header {
        padding: 0.6rem 1.5rem;
    }

    .nav-container-seamless {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .brand-logo-img-large {
        height: 64px;
        max-width: 200px;
    }

    .scroll-track {
        gap: 28vh;
        padding-top: 14vh;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 85px;
    }

    .capsule-row,
    section[id],
    .infinity-gallery-section,
    .site-footer {
        scroll-margin-top: 85px;
    }

    .site-header {
        padding: 0.4rem 0.85rem;
        background: linear-gradient(180deg, rgba(8, 7, 6, 0.96) 0%, rgba(8, 7, 6, 0.7) 70%, transparent 100%);
    }

    .nav-container-seamless {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .brand-logo-img-large {
        height: 52px;
        max-width: 160px;
    }

    /* Compact Audio Widget in Mobile HUD */
    .hud-dock-audio {
        padding: 0.35rem 0.55rem;
        gap: 0.4rem;
    }

    .hud-dock-audio .audio-widget-info {
        display: none !important;
    }

    /* Hide desktop-only elements on mobile */
    .desktop-only-hud-cta,
    .desktop-only-divider {
        display: none !important;
    }

    .scroll-track {
        gap: 18vh;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 11vh;
    }

    .capsule-row.align-right,
    .capsule-row.align-left {
        justify-content: center;
    }

    .capsule-card {
        max-width: 100%;
        padding: 1.65rem 1.2rem;
        border-radius: var(--radius-lg);
    }

    .capsule-title {
        font-size: 1.55rem;
        line-height: 1.35;
    }

    .capsule-desc {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .services-interactive-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem;
    }

    .hero-features-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin: 1.1rem 0 1.4rem;
    }

    .hero-feature-tag {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.88rem;
        color: #ffffff;
        text-align: right;
    }

    .capsule-footer {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .capsule-footer .btn-primary,
    .capsule-footer .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .quote-options-grid {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

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

    /* Hide standalone floating buttons on mobile to prevent clutter */
    .floating-whatsapp-btn {
        display: none !important;
    }

    .floating-offers-btn {
        display: none !important;
    }

    /* Redesigned Floating HUD Dock for Mobile */
    .floating-hud-dock {
        bottom: 0.75rem;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 1.25rem);
        max-width: 440px;
        padding: 0.38rem 0.6rem;
        gap: 0.35rem;
        justify-content: space-between;
        background: rgba(12, 10, 8, 0.94);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(188, 154, 97, 0.2);
    }

    .mobile-only-hud-action {
        display: inline-flex !important;
    }

    .hud-offers-btn {
        display: inline-flex !important;
        padding: 0.35rem 0.65rem;
        font-size: 0.74rem;
    }

    .hud-whatsapp-btn {
        display: inline-flex !important;
        padding: 0.35rem 0.65rem;
        font-size: 0.74rem;
        font-weight: 700;
    }

    .hud-frame-text {
        display: none;
    }

    .hud-progress-meter {
        width: 45px;
    }

    .hud-percent-text {
        font-size: 0.72rem;
    }

    .hud-btn {
        padding: 0.35rem 0.55rem;
        font-size: 0.72rem;
    }

    /* Fullscreen Offers Modal on Mobile */
    .offers-modal-content {
        height: 95vh;
        max-height: 95vh;
        padding: 1rem 0.85rem;
    }

    .offers-modal-heading {
        font-size: 1.05rem;
    }

    .offer-card-inner {
        padding: 1.4rem 1.15rem;
        border-radius: var(--radius-lg);
    }

    .offer-card-title {
        font-size: 1.32rem;
    }

    .offer-card-desc {
        font-size: 0.86rem;
        margin-bottom: 0.9rem;
    }

    .offer-features-list {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        margin-bottom: 1.1rem;
    }

    .offer-features-list li {
        font-size: 0.82rem;
    }

    .offer-pricing-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        padding-top: 1rem;
    }

    .offer-price-box {
        align-items: center;
        text-align: center;
    }

    .offer-current-price {
        font-size: 1.6rem;
    }

    .offer-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.88rem;
    }

    .offers-nav-btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   INFINITY CANVAS / INFINITE GALLERY (HERO COMPONENT BEFORE FOOTER)
   ========================================================================== */
.infinity-gallery-section {
    position: relative;
    z-index: 50;
    width: 100%;
    max-width: 1560px;
    margin: 6rem auto 4rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.infinity-gallery-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.infinity-gallery-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.infinity-gallery-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.partners-categories-bar,
.infinity-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.filter-pill,
.infinity-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    background: rgba(232, 221, 202, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-pill:hover,
.infinity-filter-pill:hover {
    background: rgba(188, 154, 97, 0.15);
    border-color: var(--gold-primary);
    color: var(--pure-white);
}

.filter-pill.active,
.infinity-filter-pill.active {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-muted) 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 18px var(--gold-glow);
}

.infinity-gallery-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(14, 12, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
    overflow: hidden;
}

.infinity-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.infinity-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.infinity-header p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.infinity-canvas-wrapper,
.infinity-canvas-viewport,
#infinity-canvas-app {
    position: relative !important;
    width: 100%;
    height: 580px;
    background: radial-gradient(circle at center, rgba(35, 28, 20, 0.75) 0%, rgba(8, 7, 6, 0.98) 100%);
    border: 1.5px solid rgba(188, 154, 97, 0.35);
    border-radius: var(--radius-lg);
    overflow: hidden !important;
    cursor: grab;
    user-select: none;
    touch-action: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(232, 221, 202, 0.15);
}

.infinity-canvas-wrapper:active,
.infinity-canvas-viewport:active,
#infinity-canvas-app:active {
    cursor: grabbing;
}

#infinity-canvas-root,
#spiral-canvas-root,
#smear-canvas-root,
#orbit-canvas-root,
#wheel-canvas-root {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden !important;
}

.infinity-canvas-controls {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    display: flex;
    gap: 0.5rem;
    z-index: 60;
}

.canvas-ctrl-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(18, 15, 12, 0.85);
    border: 1px solid rgba(188, 154, 97, 0.4);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.canvas-ctrl-btn:hover {
    background: var(--gold-primary);
    color: #000;
    transform: scale(1.1);
}

/* 2D Canvas World */
.infinity-canvas-world {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    will-change: transform;
}

/* Logo Cards on the Canvas (1:1 Ratio for 591x591 px Logos) */
.infinity-logo-card {
    position: absolute;
    width: 175px;
    height: 175px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    background: rgba(18, 15, 12, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(188, 154, 97, 0.4);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(232, 221, 202, 0.12);
    transition: transform 0.35s var(--ease-spring), border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.infinity-logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../pattern.webp');
    background-repeat: repeat;
    background-size: 24px 24px;
    opacity: 0.04;
    pointer-events: none;
}

.infinity-logo-card:hover {
    transform: translateY(-6px) scale(1.06);
    border-color: var(--gold-light);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 25px var(--gold-glow);
    z-index: 100;
}

.infinity-logo-card.dimmed {
    opacity: 0.22;
    transform: scale(0.92);
    pointer-events: none;
}

.infinity-logo-card.highlighted {
    opacity: 1;
}

.infinity-card-inner {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.infinity-card-badge {
    font-size: 0.68rem;
    color: var(--gold-light);
    background: rgba(188, 154, 97, 0.12);
    border: 1px solid rgba(188, 154, 97, 0.25);
    padding: 0.15rem 0.6rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.infinity-logo-box {
    width: 100%;
    height: 90px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infinity-logo-img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.infinity-logo-card:hover .infinity-logo-img {
    transform: scale(1.08);
}

.infinity-card-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Floating Controls HUD */
.infinity-controls-hud {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 12, 10, 0.85);
    backdrop-filter: blur(16px);
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.infinity-hud-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(232, 221, 202, 0.08);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.infinity-hud-btn:hover {
    background: rgba(188, 154, 97, 0.25);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

.infinity-status-hint {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-dim);
    background: rgba(14, 12, 10, 0.75);
    backdrop-filter: blur(12px);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
}

/* Lightbox Modal */
.infinity-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-smooth);
}

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

.infinity-preview-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
}

.infinity-preview-card {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px var(--gold-glow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transform: scale(0.92);
    transition: transform 0.3s var(--ease-spring);
}

.infinity-preview-modal.active .infinity-preview-card {
    transform: scale(1);
}

.infinity-preview-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(232, 221, 202, 0.08);
    color: #ffffff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
}

.infinity-preview-img-box {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.infinity-preview-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px var(--gold-glow));
}

@media (max-width: 768px) {
    .infinity-gallery-section {
        width: 100vw;
        max-width: 100vw;
        margin: 4vh 0 0;
        padding: 0;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .infinity-gallery-wrapper {
        padding: 2.5rem 1rem 3rem;
    }

    .infinity-header h2 {
        font-size: 1.65rem;
    }

    .infinity-header p {
        font-size: 0.88rem;
    }

    .infinity-filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 0.4rem 0.6rem;
        gap: 0.5rem;
        scrollbar-width: none;
    }

    .infinity-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .infinity-filter-pill {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 0.45rem 1rem;
        font-size: 0.82rem;
    }

    .infinity-canvas-viewport {
        height: 520px;
        border-radius: var(--radius-md);
    }

    .infinity-status-hint {
        display: none;
    }

    .brand-logo-img {
        height: 48px;
        max-width: 130px;
    }
}


