:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary: #EC4899;
    --accent: #F472B6;
    --dark: #0F172A;
    --darker: #020617;
    --light: #F8FAFC;
    --glass: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header & Nav */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--light);
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-cta {
    background: var(--secondary);
    padding: 8px 18px;
    border-radius: 10px;
    color: white !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

/* Search Autocomplete */
.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box {
    padding: 12px 20px !important;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0 !important;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 8px 0;
    color: white;
    outline: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.search-box input::placeholder {
    color: #64748b;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: none;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    display: none;
    z-index: 100;
    box-shadow: var(--shadow);
}

.search-dropdown.open {
    display: block;
}

.search-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover,
.search-item.active {
    background: rgba(139, 92, 246, 0.2);
}

.search-score {
    font-size: 0.75rem;
    background: linear-gradient(135deg, #D4A529, #F5D061, #D4A529);
    color: #1a1a2e;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Breadcrumbs */
.breadcrumbs ol {
    font-size: 0.8rem;
    color: #64748b;
}

.breadcrumbs a {
    color: #64748b !important;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--secondary) !important;
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(139, 92, 246, 0.15), transparent);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-elite {
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

/* Sticky Anchors */
.sticky-anchors {
    position: sticky;
    top: 85px;
    z-index: 900;
}

.sticky-anchors a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.7;
    transition: all 0.3s;
}

.sticky-anchors a:hover {
    opacity: 1;
    color: var(--secondary);
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.premium-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

/* Profiles */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.profiles-grid--city {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.profile-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #1e293b;
}

.profile-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

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

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
}

.status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: #10B981;
    border-radius: 50%;
    border: 2px solid var(--darker);
    box-shadow: 0 0 10px #10B981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

/* Profile phone link (numtour) */
.profile-tel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 14px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.profile-tel:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

/* Numtour button styling */
.style_group_gsm {
    font-weight: 700;
    font-style: normal;
}

/* CTA Profiles Link */
.cta-profiles {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-profiles:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

/* Profiles Page V2 — vertical cards */
.profiles-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pcard {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.pcard:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.pcard__photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1e293b;
}

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

.pcard__photo .status-badge {
    top: 10px;
    right: 10px;
}

.pcard__body {
    padding: 14px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pcard__name {
    font-size: 1rem;
    display: block;
}

.pcard__loc {
    font-size: 0.78rem;
    color: var(--secondary);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pcard__bio {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-top: 6px;
    font-style: italic;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pcard__body .trk_profile_tel_container {
    margin-top: auto;
}

.pcard__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 12px;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
}

.pcard__cta:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(236, 72, 153, 0.4);
}

/* Spots */
.spot-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    margin-bottom: 20px;
    transition: background 0.3s;
}

.spot-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.spot-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary);
    min-width: 45px;
}

/* Stats INSEE */
.badge-source {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
}

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

.stat-box {
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.stat-box i {
    width: 20px;
    height: 20px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--light);
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Prestige */
.badge-prestige {
    background: linear-gradient(135deg, #D4A529, #F5D061, #D4A529);
    color: #1a1a2e;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(212, 165, 41, 0.3);
}

.prestige-meter {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.prestige-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 10px;
}

/* Expert Card */
.expert-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    flex-shrink: 0;
}

/* SEO Content */
.seo-content h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--light);
}

.seo-content h3 {
    font-size: 1.2rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--light);
}

.seo-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.seo-content strong {
    color: var(--light);
}

/* FAQ */
.faq-item {
    padding: 25px !important;
    margin-bottom: 15px !important;
}

/* Maillage */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.nearby-link {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.nearby-link i {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

.nearby-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary);
    transform: translateX(5px);
}

/* Footer */
footer {
    background: #020617;
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-col {
    min-width: 0;
}

.footer-title {
    color: var(--light);
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-socials a {
    color: #94a3b8;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}


/* 404 */
.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* ==================== CHAT ==================== */

#chatOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    overscroll-behavior: contain;
    touch-action: none;
}

#chatOverlay.chat-open {
    display: flex;
}

#chatBox {
    width: 400px;
    max-width: 95vw;
    height: 600px;
    max-height: 90vh;
    background: #0f172a;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

#chatHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(236,72,153,0.2));
    border-bottom: 1px solid var(--glass-border);
}

#chatHeaderInfo {
    display: flex;
    align-items: center;
    gap: 12px;
}

#chatAvatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

#chatName {
    color: var(--light);
    font-size: 0.95rem;
    display: block;
}

#chatStatus {
    color: #4ade80;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

#chatStatus::before {
    content: '';
    width: 7px;
    height: 7px;
    background: currentColor;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

#chatClose {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    transition: color 0.2s;
}

#chatClose:hover {
    color: white;
}

#chatMessages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    touch-action: pan-y;
    overscroll-behavior: contain;
}

.chat-msg {
    display: flex;
    max-width: 82%;
}

.chat-msg--bot {
    align-self: flex-start;
}

.chat-msg--user {
    align-self: flex-end;
}

.chat-bubble {
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-msg--bot .chat-bubble {
    background: rgba(255,255,255,0.08);
    color: var(--light);
    border-bottom-left-radius: 4px;
}

.chat-msg--user .chat-bubble {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-bottom-right-radius: 4px;
}

/* System message */
.chat-msg--system {
    align-self: center;
    max-width: 90%;
}

.chat-bubble-system {
    background: rgba(236, 72, 153, 0.12);
    border: 1px dashed rgba(236, 72, 153, 0.3);
    color: #e2e8f0;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.5;
}

/* Typing indicator */
.chat-typing {
    display: flex;
    gap: 5px;
    padding: 12px 18px;
}

.chat-typing span {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    animation: chatTypingDot 1.4s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes chatTypingDot {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1); }
}

#chatInputBox {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-top: 1px solid var(--glass-border);
    background: rgba(15,23,42,0.9);
}

#chatInput {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 10px 18px;
    color: var(--light);
    font-size: 16px;
    outline: none;
    font-family: inherit;
}

#chatInput::placeholder {
    color: #64748b;
}

#chatInput:focus {
    border-color: var(--primary);
}

#chatSend {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s;
}

#chatSend:hover {
    transform: scale(1.1);
}

#chatCallBox {
    padding: 16px 20px;
    border-top: 1px solid var(--glass-border);
    background: rgba(15,23,42,0.95);
}

#chatCallBox .trk_profile_tel_container {
    width: 100%;
}

#chatCallBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 16px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    animation: callPulse 2s infinite;
    transition: transform 0.2s;
}

#chatCallBtn:hover {
    transform: scale(1.03);
}

@keyframes callPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
}

@media (max-width: 480px) {
    /* Full-screen chat like dating apps */
    #chatOverlay {
        align-items: stretch;
        justify-content: stretch;
        padding: 0;
    }

    #chatBox {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
        border: none;
    }

    #chatHeader {
        padding: 10px 14px;
        min-height: 56px;
        position: sticky;
        top: 0;
        z-index: 2;
    }

    #chatAvatar {
        width: 36px;
        height: 36px;
    }

    #chatName {
        font-size: 0.9rem;
    }

    #chatStatus {
        font-size: 0.7rem;
    }

    #chatClose {
        font-size: 1.4rem;
        padding: 8px;
    }

    #chatMessages {
        flex: 1;
        padding: 12px;
        gap: 8px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .chat-msg {
        max-width: 78%;
    }

    .chat-bubble {
        padding: 10px 14px;
        font-size: 0.9rem;
        border-radius: 16px;
        line-height: 1.45;
    }

    .chat-bubble-system {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .chat-typing {
        padding: 10px 14px;
    }

    .chat-typing span {
        width: 7px;
        height: 7px;
    }

    #chatInputBox {
        padding: 8px 10px;
        padding-bottom: max(8px, env(safe-area-inset-bottom));
        gap: 8px;
        position: sticky;
        bottom: 0;
        z-index: 2;
        background: #0f172a;
    }

    #chatInput {
        padding: 10px 14px;
        font-size: 16px;
        min-width: 0;
        border-radius: 20px;
    }

    #chatSend {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1rem;
    }

    #chatCallBox {
        padding: 12px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }

    #chatCallBtn {
        padding: 14px;
        font-size: 0.95rem;
        border-radius: 14px;
    }
}

/* Responsive grids for home sections */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-2x2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-2x2 { grid-template-columns: 1fr; }
}

/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ==================== RESPONSIVE ==================== */

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

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

@media (max-width: 768px) {
    /* Hamburger visible */
    .hamburger {
        display: flex;
    }

    /* Mobile nav drawer */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        border-left: 1px solid var(--glass-border);
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-cta {
        text-align: center;
        margin-top: 15px;
    }

    /* Sticky anchors hidden on mobile */
    .sticky-anchors {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* Profile grid home */
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .profile-overlay {
        padding: 10px;
    }

    .profile-overlay strong {
        font-size: 0.85rem;
    }

    .profile-overlay div[style*="italic"] {
        display: none;
    }

    .profiles-grid--city {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .profiles-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pcard__body {
        padding: 12px 14px 16px;
    }

    .pcard__name {
        font-size: 0.95rem;
    }

    .pcard__bio {
        display: none;
    }

    .pcard__cta {
        font-size: 0.78rem;
        padding: 8px 0;
    }

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

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

    /* Cards padding */
    .premium-card {
        padding: 25px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .spot-item {
        flex-direction: column;
        gap: 15px;
    }

    /* SEO content padding */
    .seo-content {
        padding: 0;
    }

    .premium-card[style*="padding: 50px"] {
        padding: 25px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .premium-card {
        padding: 20px;
        border-radius: 18px;
    }

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

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

    .search-item {
        padding: 12px 18px;
    }
}
