/* ============================================================
   LUXMODEL — Premium Creator Platform
   style.css — Core Styles
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* --- CSS Variables --- */
:root {
    --bg-primary: #030308;
    --bg-secondary: #07070f;
    --bg-card: rgba(255, 255, 255, 0.035);
    --bg-card-hover: rgba(255, 255, 255, 0.065);

    --neon-pink: #ff2d78;
    --neon-purple: #a855f7;
    --neon-blue: #3b82f6;
    --neon-cyan: #06b6d4;
    --neon-orange: #f97316;
    --neon-gold: #fbbf24;

    --grad-primary: linear-gradient(135deg, #ff2d78 0%, #a855f7 50%, #3b82f6 100%);
    --grad-warm: linear-gradient(135deg, #f97316 0%, #ff2d78 100%);
    --grad-cool: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
    --grad-text: linear-gradient(90deg, #ff2d78, #a855f7, #3b82f6, #ff2d78);

    --text-primary: #f8f8ff;
    --text-secondary: rgba(248, 248, 255, 0.6);
    --text-muted: rgba(248, 248, 255, 0.35);

    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(168, 85, 247, 0.4);

    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);

    --shadow-glow-pink: 0 0 30px rgba(255, 45, 120, 0.3);
    --shadow-glow-purple: 0 0 30px rgba(168, 85, 247, 0.3);
    --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.3);

    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --nav-height: 72px;
    --section-pad: clamp(64px, 8vw, 120px);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-purple) var(--bg-secondary);
}

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

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--grad-cool);
    border-radius: 99px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

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

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

button {
    cursor: none;
    font-family: var(--font-body);
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* --- Custom Cursor --- */
#cursor-dot,
#cursor-ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

#cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-pink);
    box-shadow: 0 0 12px var(--neon-pink), 0 0 24px var(--neon-pink);
    transition: transform 0.1s;
}

#cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(168, 85, 247, 0.6);
    transition: transform 0.12s, width 0.3s var(--transition-bounce), height 0.3s var(--transition-bounce), border-color 0.3s;
}

body.cursor-hover #cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--neon-pink);
    background: rgba(255, 45, 120, 0.06);
}

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

/* --- Particles Canvas --- */
#particles-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-xl {
    font-family: var(--font-display);
    font-size: clamp(72px, 12vw, 180px);
    line-height: 0.9;
    letter-spacing: 0.02em;
}

.display-lg {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 120px);
    line-height: 0.95;
}

.heading-xl {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
}

.heading-lg {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
}

.heading-md {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 700;
    line-height: 1.2;
}

.heading-sm {
    font-family: var(--font-heading);
    font-size: clamp(16px, 1.5vw, 22px);
    font-weight: 600;
}

.body-lg {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
}

.body-md {
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.65;
}

.body-sm {
    font-size: 13px;
    line-height: 1.5;
}

.label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Gradient Text */
.grad-text {
    background: var(--grad-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s linear infinite;
}

.grad-text-static {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes textShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px clamp(16px, 4vw, 48px);
}

.container-wide {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 64px);
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 2;
}

.section-sm {
    padding: calc(var(--section-pad) * 0.6) 0;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: var(--radius-full);
    color: var(--neon-purple);
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(32px, 5vw, 60px);
    flex-wrap: wrap;
}

.grid {
    display: grid;
    gap: 24px;
}

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

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

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

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 4px 24px rgba(168, 85, 247, 0.35), 0 0 0 0 rgba(255, 45, 120, 0.4);
    transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.btn-primary:hover {
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.55), 0 0 0 6px rgba(255, 45, 120, 0.12);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-glow-purple);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--glass);
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-icon {
    padding: 12px;
    border-radius: var(--radius-sm);
}

/* Glow pulse on primary CTA */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 4px 24px rgba(168, 85, 247, 0.35);
    }

    50% {
        box-shadow: 0 4px 40px rgba(255, 45, 120, 0.6), 0 0 60px rgba(168, 85, 247, 0.4);
    }
}

.btn-glow {
    animation: glowPulse 3s ease-in-out infinite;
}

/* ============================================================
   GLASS CARD
   ============================================================ */
.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-smooth);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(168, 85, 247, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow-purple);
    transform: translateY(-4px);
}

/* Gradient border card */
.grad-border-card {
    position: relative;
    border-radius: var(--radius-lg);
}

.grad-border-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.grad-border-card:hover::before {
    opacity: 1;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(3, 3, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 32px;
    padding-top: 13px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--grad-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    color: #fff;
    box-shadow: 0 0 16px rgba(168, 85, 247, 0.5);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 0.04em;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--glass);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--neon-pink);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--neon-pink);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-search-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-size: 15px;
}

.nav-search-btn:hover {
    color: var(--text-primary);
    border-color: var(--neon-purple);
}

.nav-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: var(--glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 8, 0.98);
    backdrop-filter: blur(40px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 64px);
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 30px var(--neon-pink);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height) + 40px) 0 80px;
    text-align: center;
    z-index: 2;
}

/* Blob animations */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blobFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--neon-pink);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    top: 50%;
    right: -100px;
    animation-delay: -3s;
    animation-duration: 10s;
}

.hero-blob-3 {
    width: 400px;
    height: 400px;
    background: var(--neon-blue);
    bottom: -50px;
    left: 30%;
    animation-delay: -6s;
    animation-duration: 12s;
}

@keyframes blobFloat {

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

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 45, 120, 0.1);
    border: 1px solid rgba(255, 45, 120, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    animation: fadeSlideDown 0.8s ease both;
}

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

@keyframes pulse {

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

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 13vw, 200px);
    line-height: 0.88;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.9s ease 0.1s both;
}

.hero-title span {
    display: block;
}

.hero-title .line-1 {
    color: var(--text-primary);
}

.hero-title .line-2 {
    background: var(--grad-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s linear infinite, fadeSlideUp 0.9s ease 0.2s both;
}

.hero-title .line-3 {
    /* color: transparent; */
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
}

.hero-sub {
    max-width: 560px;
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--text-secondary);
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeSlideUp 0.9s ease 0.3s both;
    text-align: justify;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeSlideUp 0.9s ease 0.4s both;
}

/* Hero Search */
.hero-search {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 560px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 20px;
    gap: 12px;
    backdrop-filter: blur(20px);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    animation: fadeSlideUp 0.9s ease 0.5s both;
}

.hero-search:focus-within {
    border-color: var(--neon-purple);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1), var(--shadow-glow-purple);
}

.hero-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
}

.hero-search input::placeholder {
    color: var(--text-muted);
}

.hero-search-btn {
    padding: 12px 24px;
    border-radius: var(--radius-full);
    background: var(--grad-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.hero-search-btn:hover {
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5);
}

/* Hero Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 5vw, 64px);
    margin-top: 64px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.9s ease 0.6s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: 0.02em;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Floating elements */
.hero-float {
    position: absolute;
    pointer-events: none;
    animation: floatEl 6s ease-in-out infinite;
}

.hero-float-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.hero-float-2 {
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.hero-float-3 {
    bottom: 20%;
    left: 12%;
    animation-delay: -4s;
}

.hero-float-4 {
    bottom: 25%;
    right: 8%;
    animation-delay: -1s;
}

@keyframes floatEl {

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

    50% {
        transform: translateY(-16px) rotate(5deg);
    }
}

.float-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    white-space: nowrap;
}

.float-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grad-primary);
    flex-shrink: 0;
    overflow: hidden;
}

.float-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   MODEL / CREATOR CARDS
   ============================================================ */
.model-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.model-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 0;
}

.model-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--glass);
    z-index: 0;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), var(--shadow-glow-purple);
}

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

.model-card-inner {
    position: relative;
    z-index: 1;
    background: rgba(7, 7, 15, 0.92);
    border-radius: calc(var(--radius-lg) - 1px);
    overflow: hidden;
    height: 100%;
}

.model-card-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.model-card:hover .model-card-img {
    transform: scale(1.06);
}

.model-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(3, 3, 8, 0.98) 0%, rgba(3, 3, 8, 0.7) 60%, transparent 100%);
}

.model-card-top {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.model-card-rank {
    padding: 4px 10px;
    background: rgba(3, 3, 8, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--neon-gold);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.model-card-cat {
    padding: 4px 10px;
    background: rgba(3, 3, 8, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 11px;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
}

.model-card-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-badge {
    color: var(--neon-blue);
    font-size: 14px;
    flex-shrink: 0;
}

.model-card-username {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

.model-card-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.model-card-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-secondary);
}

.model-card-stat i {
    font-size: 11px;
}

.like-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.like-btn:hover,
.like-btn.liked {
    background: rgba(255, 45, 120, 0.1);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 12px rgba(255, 45, 120, 0.3);
}

.like-btn.liked {
    animation: heartPop 0.3s var(--transition-bounce);
}

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

    50% {
        transform: scale(1.4);
    }

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

/* ============================================================
   TRENDING SLIDER
   ============================================================ */
.slider-section {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: sliderScroll 35s linear infinite;
    margin-top: 55px !important;
}

.slider-track:hover {
    animation-play-state: paused;
}

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

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

.slider-card {
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}

.slider-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.slider-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 14px 14px;
    background: linear-gradient(to top, rgba(3, 3, 8, 0.9) 0%, transparent 100%);
}

.slider-card-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}

.slider-card-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.slider-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    background: var(--grad-warm);
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.cat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 3, 8, 0.2) 0%, rgba(3, 3, 8, 0.7) 100%);
    transition: background var(--transition-smooth);
}

.cat-card:hover::after {
    background: linear-gradient(135deg, rgba(3, 3, 8, 0.05) 0%, rgba(3, 3, 8, 0.5) 100%);
}

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

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

.cat-card:hover {
    box-shadow: var(--shadow-glow-purple), 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.cat-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 1;
}

.cat-card-icon {
    font-size: 24px;
    margin-bottom: 6px;
    display: block;
}

.cat-card-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.cat-card-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.cat-card-color {
    height: 3px;
    border-radius: 2px;
    margin-bottom: 8px;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, rgba(255, 45, 120, 0.05) 0%, rgba(168, 85, 247, 0.08) 50%, rgba(59, 130, 246, 0.05) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-subtle);
    align-self: center;
    justify-self: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    flex: 0 0 360px;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: var(--shadow-glow-purple);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--neon-gold);
    font-size: 13px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--neon-purple);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-nav {
    display: flex;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-subtle);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.testimonial-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--neon-purple);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: var(--radius-md);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.open {
    border-color: rgba(168, 85, 247, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    gap: 16px;
    user-select: none;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    color: var(--text-muted);
}

.faq-item.open .faq-icon {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 45, 120, 0.08) 0%, rgba(168, 85, 247, 0.12) 50%, rgba(59, 130, 246, 0.08) 100%);
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    min-width: 220px;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-input:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

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

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 16px 0 24px;
}

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

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--glass);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer-social:hover {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.3);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.footer-link {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5);
    z-index: 900;
    opacity: 0;
    transform: translateY(16px);
    transition: all var(--transition-smooth);
    pointer-events: none;
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.7);
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
#toast-container {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(7, 7, 15, 0.95);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    font-size: 14px;
    max-width: 320px;
    transform: translateX(120%);
    transition: transform 0.4s var(--transition-bounce);
    pointer-events: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.toast-text {
    flex: 1;
    color: var(--text-primary);
}

.toast-close {
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
}

.toast-success {
    border-color: rgba(16, 185, 129, 0.4);
}

.toast-success .toast-icon {
    color: #10b981;
}

.toast-error {
    border-color: rgba(255, 45, 120, 0.4);
}

.toast-error .toast-icon {
    color: var(--neon-pink);
}

.toast-info {
    border-color: rgba(59, 130, 246, 0.4);
}

.toast-info .toast-icon {
    color: var(--neon-blue);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {

    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {

    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* --- Shared fade animations --- */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 64px;
    letter-spacing: 0.04em;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 160px;
    height: 2px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--grad-primary);
    border-radius: 2px;
    animation: loaderFill 1.8s ease forwards;
}

@keyframes loaderFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ============================================================
   SKELETON LOADING
   ============================================================ */
.skeleton {
    background: linear-gradient(90deg, var(--glass) 25%, rgba(255, 255, 255, 0.06) 50%, var(--glass) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeletonShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ============================================================
   EXPLORE PAGE SPECIFIC
   ============================================================ */
.explore-hero {
    padding: calc(var(--nav-height) + 48px) 0 48px;
    text-align: center;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-search {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 260px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 12px 18px;
    transition: all var(--transition-fast);
}

.filter-search:focus-within {
    border-color: var(--neon-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.filter-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
}

.filter-search input::placeholder {
    color: var(--text-muted);
}

.filter-search i {
    color: var(--text-muted);
    font-size: 14px;
}

.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 9px 18px;
    border-radius: var(--radius-full);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.filter-pill:hover {
    border-color: var(--neon-purple);
    color: var(--text-primary);
}

.filter-pill.active {
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.35);
}

.sort-select {
    padding: 10px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
}

.sort-select option {
    background: #0a0a14;
}

.trending-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.trending-tag {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.trending-tag:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.trending-tag i {
    font-size: 10px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.model-card.hidden {
    display: none;
}

/* ============================================================
   DETAILS PAGE
   ============================================================ */
.details-cover {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.details-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-primary) 0%, rgba(3, 3, 8, 0.5) 50%, rgba(3, 3, 8, 0.2) 100%);
}

.details-main {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.details-content {}

.details-profile {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 28px;
}

.details-avatar {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    border: 3px solid transparent;
    background: var(--grad-primary) border-box, var(--bg-primary) padding-box;
    background-clip: padding-box;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.details-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-meta {}

.details-name {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-username {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 4px;
}

.details-cats {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.details-cat {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.cat-fashion {
    background: rgba(255, 45, 120, 0.1);
    border: 1px solid rgba(255, 45, 120, 0.3);
    color: var(--neon-pink);
}

.cat-lifestyle {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--neon-purple);
}

.cat-travel {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--neon-blue);
}

.details-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
    padding: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    flex-wrap: wrap;
}

.details-stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.details-stat-num {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
}

.details-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Tabs */
.tabs {
    margin-bottom: 32px;
}

.tab-nav {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    width: fit-content;
    margin-bottom: 28px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-btn.active {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.4);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 8, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: opacity var(--transition-fast);
    font-size: 18px;
}

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

/* Sidebar */
.details-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.sidebar-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(20px);
    margin-bottom: 16px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link-item:hover {
    border-color: var(--neon-purple);
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.05);
}

.social-link-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Comments */
.comment-form {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.comment-input-wrap {
    flex: 1;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    transition: border-color var(--transition-fast);
}

.comment-input-wrap:focus-within {
    border-color: var(--neon-purple);
}

.comment-input {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    resize: none;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    display: flex;
    gap: 12px;
}

.comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.comment-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}

.comment-time {
    font-size: 12px;
    color: var(--text-muted);
}

.comment-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.comment-action {
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 4px;
}

.comment-action:hover {
    color: var(--neon-pink);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
    padding: calc(var(--nav-height) + 80px) 0 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
}

.team-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow-purple);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    border: 3px solid transparent;
    background: var(--grad-primary) border-box, var(--bg-primary) padding-box;
    background-clip: padding-box;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--neon-purple);
    margin-bottom: 12px;
}

.team-bio {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--neon-pink), var(--neon-purple), var(--neon-blue));
    opacity: 0.4;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-purple);
    box-shadow: 0 0 12px var(--neon-purple);
    border: 2px solid var(--bg-primary);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--neon-purple);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.contact-input,
.contact-select,
.contact-textarea {
    padding: 14px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: all var(--transition-fast);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: var(--text-muted);
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.contact-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-select option {
    background: #0a0a14;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}

.contact-info-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
}

.contact-info-val {
    font-size: 15px;
    font-weight: 500;
}

/* ============================================================
   CATEGORIES PAGE
   ============================================================ */
.categories-hero {
    padding: calc(var(--nav-height) + 80px) 0 60px;
    text-align: center;
}

.cat-big-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.cat-big-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 1px solid var(--glass-border);
}

.cat-big-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), var(--shadow-glow-purple);
}

.cat-big-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-big-card:hover .cat-big-img {
    transform: scale(1.06);
}

.cat-big-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 3, 8, 0.95) 0%, rgba(3, 3, 8, 0.3) 60%, transparent 100%);
}

.cat-big-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.cat-big-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.cat-big-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.cat-big-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.cat-big-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cat-big-count {
    font-size: 13px;
    color: var(--text-secondary);
}

.cat-big-pill {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#lightbox.open {
    opacity: 1;
    visibility: visible;
}

#lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}

#lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

#lightbox-close:hover {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
}

/* ============================================================
   VIRAL POSTS / GRID
   ============================================================ */
.viral-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.viral-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
}

.viral-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow-pink);
    z-index: 2;
}

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

.viral-card:hover img {
    transform: scale(1.06);
}

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

.viral-card-2 {
    grid-column: span 4;
}

.viral-card-3 {
    grid-column: span 3;
}

.viral-card-4 {
    grid-column: span 4;
}

.viral-card-5 {
    grid-column: span 3;
}

.viral-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 14px 14px;
    background: linear-gradient(to top, rgba(3, 3, 8, 0.92) 0%, transparent 100%);
    transform: translateY(8px);
    opacity: 0;
    transition: all var(--transition-smooth);
}

.viral-card:hover .viral-card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.viral-card-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
}

.viral-card-likes {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--neon-pink);
    margin-top: 4px;
}

/* ============================================================
   MISC HELPERS
   ============================================================ */
.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-pink {
    color: var(--neon-pink);
}

.text-purple {
    color: var(--neon-purple);
}

.text-blue {
    color: var(--neon-blue);
}

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

.mb-8 {
    margin-bottom: 8px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mt-auto {
    margin-top: auto;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.w-full {
    width: 100%;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.hidden-xs {}

.divider {
    width: 100%;
    height: 1px;
    background: var(--border-subtle);
    margin: 40px 0;
}

/* Inline glow dot */
.glow-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-green, #22c55e);
    box-shadow: 0 0 8px currentColor;
    margin-right: 6px;
}


/* BUTTONS */

.slider-action-btn{
  flex:1;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
  backdrop-filter:blur(10px);
}

.call-btn{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.call-btn:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.14);
}

.whatsapp-btn{
  background:#25D366;
  color:#fff;
}

.whatsapp-btn:hover{
  transform:translateY(-2px);
  opacity:.9;
}


.whatsapp-icon{
  background:#25D366 !important;
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:none;
  cursor:pointer;
  transition:.3s ease;
  color: white !important;
}

.whatsapp-icon:hover{
  transform:translateY(-3px);
}

.call-btn2{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:none;
  cursor:pointer;
  transition:.3s ease;
  background-color: red;
  color: white;
}

.like-btn:hover{
  transform:translateY(-3px);
}

.seo-content-section{
  width:100%;
  padding:60px 20px;
  background:#070b14;
  color:#fff;
}

.seo-block{
  max-width:1200px;
  margin:0 auto 70px;
}

.seo-block h1{
  font-size:48px;
  line-height:1.2;
  font-weight:800;
  margin-bottom:25px;
  text-align:center;

  background:var(--grad-primary);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.seo-block h2{
  font-size:34px;
  line-height:1.3;
  font-weight:700;
  margin-bottom:25px;
  position:relative;
  padding-left:18px;
  color:#fff;
}

.seo-block h2::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  width:5px;
  height:85%;
  border-radius:30px;
  background:var(--grad-primary);
}

.seo-block h3{
  font-size:22px;
  font-weight:700;
  margin-bottom:12px;
  color:#fff;
}

.seo-block p{
  font-size:17px;
  line-height:1.9;
  color:#d5d9e2;
  margin-bottom:20px;
}

.seo-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  margin-top:35px;
}

.seo-item{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:30px;
  border-radius:24px;
  transition:0.35s ease;
  backdrop-filter:blur(12px);
  position:relative;
  overflow:hidden;
}

.seo-item::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--grad-primary);
  opacity:0;
  transition:0.35s ease;
}

.seo-item:hover::before{
  opacity:0.08;
}

.seo-item:hover{
  transform:translateY(-6px);
  border-color:#a855f7;
  box-shadow:0 15px 40px rgba(168,85,247,0.18);
}

.seo-item h3,
.seo-item p{
  position:relative;
  z-index:2;
}

.booking-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
  margin-top:35px;
}

.step{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:30px 25px;
  position:relative;
  overflow:hidden;
  transition:0.35s ease;
  backdrop-filter:blur(12px);
}

.step::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--grad-primary);
  opacity:0;
  transition:0.35s ease;
}

.step:hover::before{
  opacity:0.08;
}

.step:hover{
  transform:translateY(-5px);
  border-color:#a855f7;
  box-shadow:0 15px 35px rgba(59,130,246,0.18);
}

.step span{
  width:58px;
  height:58px;
  border-radius:50%;
  background:var(--grad-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:700;
  margin-bottom:20px;
  color:#fff;
  position:relative;
  z-index:2;
}

.step p{
  margin:0;
  font-size:15px;
  line-height:1.8;
  position:relative;
  z-index:2;
}

.seo-content-section strong{
  background:var(--grad-primary);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

@media(max-width:992px){

  .seo-block h1{
    font-size:38px;
  }

  .seo-block h2{
    font-size:28px;
  }

}

@media(max-width:768px){

  .seo-content-section{
    padding:50px 15px;
  }

  .seo-block{
    margin-bottom:50px;
  }

  .seo-block h1{
    font-size:30px;
  }

  .seo-block h2{
    font-size:24px;
    padding-left:14px;
  }

  .seo-block p{
    font-size:15px;
    line-height:1.8;
  }

  .seo-item{
    padding:24px;
  }

  .step{
    padding:24px 20px;
  }

}

@media(max-width:480px){

  .seo-block h1{
    font-size:26px;
  }

  .seo-block h2{
    font-size:22px;
  }

  .seo-block p{
    font-size:14px;
  }

  .step span{
    width:50px;
    height:50px;
    font-size:18px;
  }

}

.side-contact-bar{
  position:fixed;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  z-index:9999;

  display:flex;
  flex-direction:column;
  gap:16px;
}

/* BUTTON */
.side-btn{
  width:68px;
  height:68px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:22px;

  text-decoration:none;
  color:#fff;

  position:relative;
  overflow:hidden;

  background:rgba(13,18,32,0.9);

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(14px);

  transition:0.35s ease;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.35);
}

/* GRADIENT GLOW */
.side-btn::before{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    135deg,
    #ff2d78 0%,
    #a855f7 50%,
    #3b82f6 100%
  );

  opacity:0.14;

  transition:0.35s ease;
}

/* ICON */
.side-btn i{
  position:relative;
  z-index:2;

  font-size:26px;
}

/* HOVER */
.side-btn:hover{
  transform:translateX(-8px) scale(1.05);

  border-color:rgba(168,85,247,0.5);

  box-shadow:
    0 18px 40px rgba(168,85,247,0.28);
}

.side-btn:hover::before{
  opacity:0.28;
}

/* ACTIVE EFFECT */
.side-btn:active{
  transform:scale(0.95);
}

/* CALL ICON */
.call-side-btn i{
  color:#ff4f8f;
}

/* WHATSAPP ICON */
.whatsapp-side-btn i{
  color:#25d366;
}

/* PULSE RING */
.side-btn::after{
  content:"";
  position:absolute;

  width:100%;
  height:100%;

  border-radius:inherit;

  border:1px solid rgba(168,85,247,0.35);

  animation:pulseRing 2.5s infinite;
}

@keyframes pulseRing{

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

  70%{
    transform:scale(1.18);
    opacity:0;
  }

  100%{
    opacity:0;
  }

}

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

  .side-contact-bar{
    right:12px;
    gap:14px;
  }

  .side-btn{
    width:58px;
    height:58px;
    border-radius:18px;
  }

  .side-btn i{
    font-size:22px;
  }

}


/* ========== PREMIUM FOOTER ========== */

.footer{
  position:relative;
  width:100%;

  overflow:hidden;

  background:#070b14;

  border-top:1px solid rgba(255,255,255,0.08);
}

/* BG EFFECT */
.footer::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255,45,120,0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(59,130,246,0.12),
      transparent 30%
    );

  pointer-events:none;
}

.footer-container{
  position:relative;
  z-index:2;

  max-width:1300px;
  margin:auto;

  padding:60px 24px 40px;
}

/* TOP LINKS */
.footer-top-links{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;

  margin-bottom:32px;
}

.footer-top-links a{
  position:relative;

  text-decoration:none;

  font-size:16px;
  font-weight:600;

  background:linear-gradient(
    135deg,
    #ff2d78 0%,
    #a855f7 50%,
    #3b82f6 100%
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  transition:0.35s ease;
}

.footer-top-links a:hover{
  opacity:0.8;
}

.footer-top-links span{
  color:rgba(255,255,255,0.45);
}

/* EMAIL */
.footer-mail{
  margin-bottom:28px;

  color:#fff;

  font-size:18px;
  line-height:1.8;
  font-weight:500;
}

.footer-mail a{
  text-decoration:none;

  background:linear-gradient(
    135deg,
    #ff2d78 0%,
    #a855f7 50%,
    #3b82f6 100%
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  font-weight:700;
}

/* COPYRIGHT */
.footer-copy{
  margin-bottom:28px;
}

.footer-copy p{
  color:#d6d9e0;

  font-size:16px;
  line-height:1.8;
}

.footer-copy a{
  text-decoration:none;

  background:linear-gradient(
    135deg,
    #ff2d78 0%,
    #a855f7 50%,
    #3b82f6 100%
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  font-weight:700;
}

/* DMCA */
.footer-dmca{
  margin-top:10px;
}

.footer-dmca img{
  width:170px;
  border-radius:8px;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.25);
}

/* LINE */
.footer::after{
  content:"";
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:1px;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(168,85,247,0.8),
    transparent
  );
}

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



  .footer-container{
    padding:45px 18px 30px;
  }

  .footer-top-links{
    gap:8px;
    margin-bottom:24px;
  }

  .footer-top-links a{
    font-size:14px;
  }

  .footer-mail{
    font-size:15px;
  }

  .footer-copy p{
    font-size:14px;
  }

  .footer-dmca img{
    width:140px;
  }

}

/* HERO LOCATION DROPDOWN */

.hero-location-dropdown{
  display:flex;
  justify-content:center;
  margin-bottom: 15px;
}

.location-select-wrap{
  position:relative;

  width:350px;
  max-width:100%;
}

.location-select-wrap i{
  position:absolute;

  left:18px;
  top:50%;

  transform:translateY(-50%);

  z-index:2;

  font-size:18px;

  background:linear-gradient(
    135deg,
    #ff2d78 0%,
    #a855f7 50%,
    #3b82f6 100%
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.location-select{
  width:100%;
  height:64px;

  padding:0 20px 0 50px;

  border-radius:20px;

  border:1px solid rgba(255,255,255,0.08);

  background:
    rgba(255,255,255,0.05);

  backdrop-filter:blur(14px);

  color:#fff;

  font-size:16px;
  font-weight:600;

  outline:none;

  cursor:pointer;

  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  transition:0.35s ease;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.25);
}

/* OPTIONS */
.location-select option{
  background:#0d1220;
  color:#fff;
}

/* HOVER */
.location-select:hover{
  border-color:rgba(168,85,247,0.45);

  box-shadow:
    0 15px 35px rgba(168,85,247,0.18);
}

/* FOCUS */
.location-select:focus{
  border-color:#a855f7;

  box-shadow:
    0 0 0 4px rgba(168,85,247,0.12);
}

/* CUSTOM ARROW */
.location-select-wrap::after{
  content:"\f078";

  font-family:"Font Awesome 6 Free";
  font-weight:900;

  position:absolute;

  right:18px;
  top:50%;

  transform:translateY(-50%);

  color:#a855f7;

  pointer-events:none;
}

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

  .location-select{
    height:50px;
    border-radius:18px;
    font-size:15px;
  }

}