/* ==========================================================================
   ESCORT SNEARBY - ULTRA LUXURY MALE COMPANIONSHIP & ESCORT SERVICES
   Unified Modern Luxury CSS Design System
   ========================================================================== */

:root {
    /* Color Palette - Obsidian Noir & Radiant Champagne Gold */
    --bg-main: #09090D;
    --bg-surface: #111118;
    --bg-surface-elevated: #181824;
    --bg-card: rgba(22, 22, 32, 0.75);
    --bg-card-hover: rgba(30, 30, 46, 0.9);
    --bg-glass: rgba(18, 18, 28, 0.65);
    
    --gold-primary: #D4AF37;
    --gold-light: #F6E6B4;
    --gold-dark: #9E7D23;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --gold-shimmer: linear-gradient(90deg, #D4AF37, #FFF2A1, #D4AF37);
    --rose-accent: #E05688;
    --royal-purple: #7C3AED;
    --royal-purple-glow: rgba(124, 58, 237, 0.35);

    --text-primary: #FBFBFC;
    --text-secondary: #C8C8DC;
    --text-muted: #85859C;
    --text-gold: #E5C07B;

    --border-subtle: rgba(212, 175, 55, 0.2);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(212, 175, 55, 0.45);

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 35px rgba(212, 175, 55, 0.2);
    --shadow-deep: 0 25px 60px rgba(0, 0, 0, 0.7);

    /* Typography */
    --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(124, 58, 237, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 65%, rgba(212, 175, 55, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(224, 86, 136, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

/* Background Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---------------- Layout & Utility Classes ---------------- */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 110px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}

.section-eyebrow i {
    font-size: 0.75rem;
    color: var(--gold-light);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #FFFFFF 30%, #F5E5C9 80%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------------- Buttons & Interactive CTAs ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.5px;
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #121008;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
    font-weight: 700;
}

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

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.55);
    color: #000;
}

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

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold-primary);
    color: var(--gold-light);
    transform: translateY(-3px);
}

.btn-telegram {
    background: #229ED9;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(34, 158, 217, 0.4);
    white-space: nowrap;
}

.btn-telegram:hover {
    background: #1b8ec3;
    box-shadow: 0 12px 30px rgba(34, 158, 217, 0.6);
    transform: translateY(-3px);
}

/* ---------------- Top Bar & Header ---------------- */
.top-notice-bar {
    background: linear-gradient(90deg, #13111C 0%, #1F192B 50%, #13111C 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 8px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    position: relative;
    z-index: 1002;
}

.top-notice-bar span {
    color: var(--gold-light);
    font-weight: 600;
}

.top-notice-bar a {
    color: var(--gold-primary);
    text-decoration: underline;
    margin-left: 6px;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(9, 9, 13, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-bottom-color: rgba(212, 175, 55, 0.35);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    width: 38px;
    height: 38px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121008;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

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

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FFFFFF;
    line-height: 1.1;
}

.logo-title span {
    color: var(--gold-primary);
}

.logo-tagline {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

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

/* Location Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    width: 250px;
    background: rgba(17, 17, 24, 0.96);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 8px;
    box-shadow: var(--shadow-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-light);
}

.city-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.city-badge.active-city {
    background: var(--gold-gradient);
    color: #121008;
    font-weight: 700;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-actions .btn-telegram {
    padding: 10px 22px;
    font-size: 0.92rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

/* ---------------- Hero Section & Slider ---------------- */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 80px;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s ease-in-out, transform 7s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(9, 9, 13, 0.6) 0%, rgba(9, 9, 13, 0.94) 85%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.hero-vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.hero-vip-badge i {
    color: var(--gold-primary);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.hero-description {
    font-size: 1.22rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.hero-features-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.strip-item i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(18, 18, 28, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--gold-gradient);
    color: #121008;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.arrow-prev { left: 30px; }
.arrow-next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.dot-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot-indicator.active {
    width: 32px;
    border-radius: var(--radius-pill);
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ---------------- Gentleman Profiles Section ---------------- */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.15);
}

.profile-img-wrap {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.profile-badge-status {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(18, 18, 28, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    color: #4ADE80;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulseGlow 1.8s infinite;
}

.profile-tag-city {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold-gradient);
    color: #121008;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-info {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.profile-name-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.profile-name {
    font-size: 1.45rem;
    color: #FFFFFF;
}

.profile-age {
    font-size: 0.95rem;
    color: var(--gold-light);
    font-weight: 600;
}

.profile-headline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.profile-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.meta-item {
    font-size: 0.84rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: var(--gold-primary);
    width: 14px;
}

.profile-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 22px;
    flex-grow: 1;
}

/* ---------------- Services Grid ---------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

.service-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
    background: var(--gold-gradient);
    color: #121008;
    transform: scale(1.08) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 22px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-perks {
    list-style: none;
    margin-bottom: 26px;
    padding: 0;
}

.service-perks li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-perks li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

/* ---------------- Visual Showcase & Lightbox ---------------- */
.gallery-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, #12121A 50%, var(--bg-main) 100%);
}

.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-tab:hover, .filter-tab.active {
    background: var(--gold-gradient);
    color: #121008;
    border-color: transparent;
    font-weight: 700;
}

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

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 12px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.2);
}

.gallery-image, .gallery-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: zoom-in;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-card:hover .gallery-image,
.gallery-card:hover .gallery-img {
    transform: scale(1.05);
}

.book-btn, .gallery-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--gold-gradient);
    color: #121008;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    border: none;
    cursor: pointer;
}

.book-btn:hover, .gallery-book-btn:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.55);
    transform: translateY(-2px);
    color: #000000;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content-box {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content, .lightbox-img {
    max-width: 88vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
    margin-top: 14px;
    text-align: center;
    color: var(--gold-light);
    font-size: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 2.2rem;
    cursor: pointer;
    width: 52px;
    height: 52px;
    background: rgba(22, 22, 32, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    user-select: none;
    z-index: 10001;
}

.lb-arrow:hover {
    background: var(--gold-gradient);
    color: #121008;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.lb-prev { left: 30px; }
.lb-next { right: 30px; }

.lb-close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: #FFFFFF;
    font-size: 2.2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    background: rgba(22, 22, 32, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10002;
    transition: var(--transition-fast);
}

.lb-close:hover {
    background: #EF4444;
    color: #FFFFFF;
    border-color: transparent;
}

@media (max-width: 768px) {
    .lb-prev { left: 10px; width: 40px; height: 40px; font-size: 1.6rem; }
    .lb-next { right: 10px; width: 40px; height: 40px; font-size: 1.6rem; }
    .lb-close { top: 15px; right: 15px; width: 40px; height: 40px; font-size: 1.8rem; }
}

.lb-prev {
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
}

.lb-next {
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}

/* ---------------- Discreet Process / How It Works ---------------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 34px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--border-glow);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* ---------------- Why Choose Us / Guarantees ---------------- */
.features-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-deep);
}

.split-img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.floating-discretion-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(14, 14, 20, 0.88);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-glow);
    padding: 20px;
    border-radius: var(--radius-md);
}

.floating-discretion-card h4 {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-discretion-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.reason-item {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: var(--transition-fast);
}

.reason-item:hover {
    border-color: var(--border-subtle);
    transform: translateX(6px);
}

.reason-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.reason-text h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.reason-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---------------- Testimonials Track ---------------- */
.testimonials-section {
    background: #0E0E14;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 25px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-left: 4px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-row {
    color: #FBBF24;
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testimonial-quote {
    font-size: 0.98rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-info h4 {
    font-size: 1rem;
    color: #FFFFFF;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gold-light);
}

.verified-badge {
    font-size: 0.75rem;
    color: #4ADE80;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ---------------- FAQ Accordion ---------------- */
.faq-wrap {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item.active {
    border-color: var(--border-glow);
}

.faq-question {
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 600;
    color: #FFFFFF;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    background: var(--gold-gradient);
    color: #121008;
}

.faq-answer {
    padding: 0 26px 22px;
    display: none;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ---------------- CTA Banner Section ---------------- */
.cta-banner-section {
    background: linear-gradient(135deg, rgba(26, 20, 36, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
    padding: 90px 0;
    position: relative;
}

.cta-banner-card {
    max-width: 820px;
    margin: 0 auto;
}

.cta-banner-card h2 {
    font-size: 2.6rem;
    margin-bottom: 18px;
}

.cta-banner-card p {
    font-size: 1.1rem;
    margin-bottom: 34px;
}

/* ---------------- Legal & Content Pages (Privacy, Terms, Service Detail) ---------------- */
.legal-header {
    background: linear-gradient(180deg, #151520 0%, var(--bg-main) 100%);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.legal-header h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.legal-container {
    max-width: 960px;
    margin: 60px auto 100px;
}

.legal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 45px 40px;
    margin-bottom: 30px;
}

.legal-card h2 {
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-card p {
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.8;
}

.legal-card ul {
    padding-left: 20px;
    margin-bottom: 18px;
}

.legal-card li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    list-style-type: square;
}

/* ---------------- Footer ---------------- */
footer {
    background: #08080C;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 90px 0 35px;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.discreet-badge-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--gold-light);
}

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

.footer-links-list a {
    font-size: 0.92rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a i {
    font-size: 0.75rem;
    color: var(--gold-primary);
}

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

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-info-list li i {
    color: var(--gold-primary);
    margin-top: 4px;
    font-size: 1rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--gold-light);
}

/* ---------------- Floating Quick Actions ---------------- */
.floating-telegram-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #229ED9 0%, #17739e 100%);
    color: #FFFFFF;
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(34, 158, 217, 0.45);
    z-index: 999;
    animation: pulseFloating 2.5s infinite;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-telegram-btn:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 15px 35px rgba(34, 158, 217, 0.7);
    color: #FFFFFF;
}

.floating-telegram-btn i {
    font-size: 1.3rem;
}

/* Discreet Exit Floating Icon */
.floating-exit-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(18, 18, 26, 0.85);
    backdrop-filter: blur(12px);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-fast);
}

.floating-exit-btn:hover {
    background: #EF4444;
    color: #FFFFFF;
}

/* ---------------- Keyframes & Animations ---------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

@keyframes pulseFloating {
    0% { box-shadow: 0 0 0 0 rgba(34, 158, 217, 0.6); }
    70% { box-shadow: 0 0 0 16px rgba(34, 158, 217, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 158, 217, 0); }
}

/* ---------------- Responsive Styles ---------------- */
@media (max-width: 1200px) {
    .profiles-grid, .services-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .features-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .split-img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    
    .mobile-toggle {
        display: block;
    }

    .top-notice-bar {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(12, 12, 18, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-subtle);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
        z-index: 1001;
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(22, 22, 32, 0.8);
        margin-top: 10px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .profiles-grid, .services-grid, .gallery-grid, .steps-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .slider-arrow {
        display: none;
    }

    .floating-telegram-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .floating-telegram-btn span {
        display: none;
    }

    .floating-telegram-btn i {
        font-size: 1.4rem;
        margin: 0;
    }

    .floating-exit-btn {
        bottom: 20px;
        left: 20px;
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
