/* 
   Aradly (عرضلي) Landing Page Stylesheet
   Design System: Cyber-Pulse
   Color scheme: Dark-first, Cyber Purple, Neon Green, Hot Pink, Glassmorphism
*/

/* Reset & Base Variables */
:root {
    --bg-dark: #0B0F19;
    --surface: #0f131d;
    --surface-dim: #0f131d;
    --surface-bright: #353944;
    --surface-container: #1c1f2a;
    --surface-container-high: #262a35;
    
    /* Branding Colors */
    --cyber-purple: #BD00FF;
    --cyber-purple-glow: rgba(189, 0, 255, 0.45);
    --neon-green: #00FFC2;
    --neon-green-glow: rgba(0, 255, 194, 0.45);
    --hot-pink: #FF007A;
    --hot-pink-glow: rgba(255, 0, 122, 0.45);
    
    /* Text & UI Colors */
    --text-primary: #dfe2f1;
    --text-muted: #9d8ba0;
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Fonts & Radii */
    --font-ar: 'Cairo', sans-serif;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--surface-container);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--cyber-purple);
}

/* Ambient Background Glows */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.25;
}

.glow-1 {
    width: 450px;
    height: 450px;
    background: var(--cyber-purple);
    top: 5%;
    right: -100px;
    animation: floatGlow 15s infinite alternate;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-green);
    top: 35%;
    left: -200px;
    animation: floatGlow 20s infinite alternate-reverse;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: var(--hot-pink);
    bottom: 10%;
    right: 15%;
    animation: floatGlow 18s infinite alternate;
}

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

/* Utility Containers & Typography */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4 {
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

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

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

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-smooth);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyber-purple) 0%, #9900cf 100%);
    color: var(--text-white);
    box-shadow: 0 4px 20px var(--cyber-purple-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px var(--cyber-purple);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

/* Header Section */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.glass-header {
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    max-width: 1200px;
    height: 80px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* WEB-BRAND-1B: the logo is the official app icon only — no wordmark text. */
.logo {
    display: flex;
    align-items: center;
}

/* .logo-accent is still used by section titles (not part of the logo). */
.logo-accent {
    color: var(--cyber-purple);
    background: linear-gradient(to left, var(--cyber-purple), #ff00ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge-live-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 122, 0.1);
    border: 1px solid rgba(255, 0, 122, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--hot-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--hot-pink);
    animation: pulse 1.5s infinite;
}

.badge-live-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--hot-pink);
}

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

.hero-title {
    font-size: 3.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-white) 30%, #a9b5df 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
    color: #a0a6b5;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.store-icons-small {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.store-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.store-item i {
    font-size: 1.25rem;
    color: var(--text-primary);
}

/* Smartphone Simulator Component */
.hero-simulator {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-wrapper {
    position: relative;
    z-index: 10;
}

.phone-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: -20px;
    right: -20px;
    background: radial-gradient(circle, var(--cyber-purple-glow) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.8;
}

.phone-frame {
    width: 290px;
    height: 580px;
    background-color: #080a0f;
    border: 10px solid #232733;
    border-radius: 36px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7),
                0 0 0 2px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 18px;
    background-color: #232733;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 100;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #0b0d13;
    position: relative;
}

/* Simulator Feed Items */
.feed-item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feed-item.active {
    opacity: 1;
    z-index: 2;
}

/* Video simulation graphics */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #0b0e14;
    overflow: hidden;
}

.video-placeholder-graphic {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

.radar-scan {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--cyber-purple), transparent);
    top: 0;
    animation: scanAnimation 4s linear infinite;
    box-shadow: 0 0 15px var(--cyber-purple);
}

@keyframes scanAnimation {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

.car-body, .apartment-body, .mobile-body, .furniture-body, .service-body {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 20px rgba(189, 0, 255, 0.2);
    animation: pulseIcon 3s infinite ease-in-out;
}

@keyframes pulseIcon {
    0% { transform: scale(0.95); opacity: 0.1; color: rgba(255, 255, 255, 0.05); }
    50% { transform: scale(1.05); opacity: 0.3; color: var(--cyber-purple); }
    100% { transform: scale(0.95); opacity: 0.1; color: rgba(255, 255, 255, 0.05); }
}

/* Feed Overlay Elements */
.feed-top-bar {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.city-badge {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 4px;
}

.volume-btn {
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
}

.feed-sidebar {
    position: absolute;
    right: 8px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.sidebar-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--cyber-purple);
    box-shadow: 0 0 10px var(--cyber-purple-glow);
    padding: 1px;
    background-color: var(--bg-dark);
}

.sidebar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.online-dot {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--neon-green);
    border-radius: 50%;
    border: 2px solid #080a0f;
    box-shadow: 0 0 6px var(--neon-green);
}

.sidebar-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sidebar-action i {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 2px;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.sidebar-action:hover i {
    transform: scale(1.1);
    color: var(--cyber-purple);
    border-color: var(--cyber-purple);
    box-shadow: 0 0 8px var(--cyber-purple-glow);
}

.sidebar-action.liked i {
    color: var(--hot-pink) !important;
    border-color: var(--hot-pink) !important;
    box-shadow: 0 0 8px var(--hot-pink-glow) !important;
}

.action-count {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-primary);
}

.feed-details {
    padding: 16px 12px 12px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    position: relative;
    z-index: 5;
    width: 100%;
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.seller-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
}

.verified-badge {
    color: var(--neon-green);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 2px;
}

.ad-title {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #f0f0f5;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.category-chip {
    background: rgba(255, 255, 255, 0.1);
    color: #e5e5f0;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
}

.ad-price {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--cyber-purple);
    text-shadow: 0 0 10px var(--cyber-purple-glow);
}

.ad-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ad-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 0;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.btn-ad-call {
    background-color: var(--surface-bright);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ad-call:hover {
    background-color: #424653;
}

.btn-ad-whatsapp {
    background-color: #00875a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ad-whatsapp:hover {
    background-color: #00a870;
    box-shadow: 0 0 10px rgba(0, 168, 112, 0.4);
}

/* Simulator controls */
.simulator-controls {
    position: absolute;
    left: -48px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.sim-ctrl-btn {
    width: 36px;
    height: 36px;
    background: var(--surface-container);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sim-ctrl-btn:hover {
    background: var(--cyber-purple);
    border-color: var(--cyber-purple);
    box-shadow: 0 0 10px var(--cyber-purple);
    transform: scale(1.1);
}

/* How It Works Section */
.how-section {
    padding: 100px 0;
    position: relative;
    background-color: #0d101a;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4.5rem auto;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyber-purple);
    box-shadow: 0 10px 30px rgba(189, 0, 255, 0.08);
}

.step-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.75rem auto;
}

.step-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(189,0,255,0.1) 0%, rgba(189,0,255,0.2) 100%);
    border: 1px solid var(--cyber-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--cyber-purple);
    box-shadow: 0 0 15px var(--cyber-purple-glow);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 26px;
    background: var(--neon-green);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.glow-purple-icon {
    background: rgba(189, 0, 255, 0.1);
    border: 1px solid var(--cyber-purple);
    color: var(--cyber-purple);
    box-shadow: 0 0 15px var(--cyber-purple-glow);
}

.glow-green-icon {
    background: rgba(0, 255, 194, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.glow-pink-icon {
    background: rgba(255, 0, 122, 0.1);
    border: 1px solid var(--hot-pink);
    color: var(--hot-pink);
    box-shadow: 0 0 15px var(--hot-pink-glow);
}

.feature-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-info p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-graphic {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-circle-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-card-glass {
    position: absolute;
    width: 250px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    top: 15%;
    right: 10%;
    z-index: 2;
    transition: var(--transition-smooth);
}

.feature-card-glass:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-header-card {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.glass-dot {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.shield-badge, .trending-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.shield-badge {
    background: rgba(0, 255, 194, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 194, 0.2);
}

.trending-badge {
    background: rgba(189, 0, 255, 0.1);
    color: var(--cyber-purple);
    border: 1px solid rgba(189, 0, 255, 0.2);
}

.feature-card-glass h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.feature-card-glass p {
    font-size: 0.8rem;
    line-height: 1.5;
}

.second-card {
    top: 45%;
    left: 10%;
    z-index: 3;
}

/* ========================================
   Features Cards Grid - Redesigned
   ======================================== */

.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

/* Last card spans full width */
.feat-wide {
    grid-column: 1 / -1;
}

/* Base card style */
.feat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Accent glow blob per card */
.feat-card-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(50px);
    top: -20px;
    right: -20px;
    z-index: 0;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.feat-card:hover .feat-card-glow {
    opacity: 0.7;
}

.feat-glow-wide {
    width: 250px;
    height: 180px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    right: auto;
}

/* Color variants */
.feat-purple .feat-card-glow  { background: var(--cyber-purple); }
.feat-green  .feat-card-glow  { background: var(--neon-green); }
.feat-pink   .feat-card-glow  { background: var(--hot-pink); }

.feat-purple:hover { border-color: rgba(189,0,255,0.35); box-shadow: 0 8px 30px rgba(189,0,255,0.1); }
.feat-green:hover  { border-color: rgba(0,255,194,0.35); box-shadow: 0 8px 30px rgba(0,255,194,0.1); }
.feat-pink:hover   { border-color: rgba(255,0,122,0.35); box-shadow: 0 8px 30px rgba(255,0,122,0.1); }
.feat-stat:hover   { border-color: rgba(189,0,255,0.2); box-shadow: 0 8px 30px rgba(189,0,255,0.07); }

/* Icon bubble */
.feat-card-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feat-purple .feat-card-icon {
    background: rgba(189,0,255,0.12);
    color: var(--cyber-purple);
    border: 1px solid rgba(189,0,255,0.3);
    box-shadow: 0 0 15px rgba(189,0,255,0.2);
}

.feat-green .feat-card-icon {
    background: rgba(0,255,194,0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0,255,194,0.3);
    box-shadow: 0 0 15px rgba(0,255,194,0.2);
}

.feat-pink .feat-card-icon {
    background: rgba(255,0,122,0.1);
    color: var(--hot-pink);
    border: 1px solid rgba(255,0,122,0.3);
    box-shadow: 0 0 15px rgba(255,0,122,0.2);
}

/* Card body text */
.feat-card-body {
    position: relative;
    z-index: 1;
    flex: 1;
}

.feat-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.6rem;
}

.feat-card-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #8e95af;
}

/* Tag label at bottom */
.feat-card-tag {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.feat-purple .feat-card-tag {
    background: rgba(189,0,255,0.1);
    color: var(--cyber-purple);
    border: 1px solid rgba(189,0,255,0.25);
}

.feat-green .feat-card-tag {
    background: rgba(0,255,194,0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0,255,194,0.25);
}

.feat-pink .feat-card-tag {
    background: rgba(255,0,122,0.1);
    color: var(--hot-pink);
    border: 1px solid rgba(255,0,122,0.25);
}

/* Wide stat card */
.feat-stat {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 2rem 3rem;
    background: linear-gradient(135deg,
        rgba(189,0,255,0.05) 0%,
        rgba(15,19,29,0.8) 40%,
        rgba(0,255,194,0.04) 100%
    );
    border-color: rgba(255,255,255,0.08);
}

.feat-stats-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.feat-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.feat-stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 20px currentColor;
}

.feat-stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
}

.feat-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
    flex-shrink: 0;
}

.feat-wide-desc {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    color: #8e95af;
    line-height: 1.6;
    flex: 1;
    border-right: 2px solid rgba(255,255,255,0.1);
    padding-right: 2rem;
}

/* Responsive features grid */
@media (max-width: 1100px) {
    .features-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feat-wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .features-cards-grid {
        grid-template-columns: 1fr;
    }
    .feat-stat {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
        gap: 1.5rem;
    }
    .feat-wide-desc {
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-right: 0;
        padding-top: 1.25rem;
    }
    .feat-stats-row {
        gap: 1.5rem;
    }
    .feat-stat-num {
        font-size: 2rem;
    }
}



/* Categories Grid */
.categories-section {
    padding: 100px 0;
    background-color: #0d101a;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.categories-grid div:nth-child(4), .categories-grid div:nth-child(5) {
    grid-column: span 1;
}

/* Make it nice layout - if 5 items, we can offset or lay out nicely */
@media (min-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    #cat-cars { grid-column: span 2; }
    #cat-real-estate { grid-column: span 2; }
    #cat-electronics { grid-column: span 2; }
    #cat-furniture { grid-column: span 3; }
    #cat-services { grid-column: span 3; }
}

.category-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 220px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyber-purple);
    box-shadow: 0 10px 25px rgba(189, 0, 255, 0.1);
}

.category-card:hover .category-bg {
    transform: scale(1.08);
}

.category-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-icon {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: auto;
    transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    color: var(--cyber-purple);
}

.category-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.category-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #a0a5b5;
}

/* CTA Download Section */
.cta-section {
    padding: 100px 0;
    overflow: hidden;
}

.cta-container {
    background: linear-gradient(135deg, rgba(15,19,29,0.8) 0%, rgba(28,31,42,0.8) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    backdrop-filter: blur(10px);
    position: relative;
}

.cta-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-download-buttons {
    display: flex;
    gap: 1.25rem;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--glass-border);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-lg);
    color: var(--text-white);
    transition: var(--transition-smooth);
    min-width: 180px;
}

.store-btn:hover {
    background-color: var(--surface-container);
    border-color: var(--cyber-purple);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--cyber-purple-glow);
}

.store-btn i {
    font-size: 1.75rem;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

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

.store-name {
    font-size: 1rem;
    font-weight: 700;
}

.cta-graphic {
    display: flex;
    justify-content: center;
    position: relative;
}

.double-phone-wrapper {
    position: relative;
    width: 260px;
    height: 380px;
}

.phone-mock-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 6px solid #232733;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.glow-shadow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--neon-green-glow) 0%, transparent 60%);
    z-index: -1;
    opacity: 0.6;
}

/* Footer Styles */
.main-footer {
    background-color: #07090f;
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: var(--surface-container);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.social-links a:hover {
    background: var(--cyber-purple);
    border-color: var(--cyber-purple);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-grid h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--cyber-purple);
}

.footer-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-grid ul a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-grid ul a:hover {
    color: var(--text-white);
    padding-right: 5px;
}

.footer-contact p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.contact-email {
    font-weight: 700;
    color: var(--text-white) !important;
}

.contact-email i {
    color: var(--cyber-purple);
    margin-left: 6px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
}

/* Animations */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    .hero-container {
        gap: 2rem;
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .cta-container {
        padding: 3rem;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-description {
        margin: 0 auto 2.5rem auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .store-icons-small {
        justify-content: center;
    }
    .phone-wrapper {
        margin-top: 2rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .features-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .features-graphic {
        order: -1;
        height: 300px;
    }
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-description {
        margin: 0 auto 2.5rem auto;
    }
    .cta-download-buttons {
        justify-content: center;
    }
    .cta-graphic {
        margin-top: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-cta {
        display: none;
    }
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(11, 15, 25, 0.95);
        backdrop-filter: blur(15px);
        transition: var(--transition-smooth);
        z-index: 999;
    }
    .main-nav.active {
        left: 0;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        padding: 4rem 0;
        gap: 2.5rem;
    }
    .nav-link {
        font-size: 1.25rem;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cta-download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   CTA Phone Mockup - Pure CSS Design
   ======================================== */

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

.cta-phone-scene {
    position: relative;
    width: 240px;
    height: 480px;
}

/* Glowing ring behind phone */
.cta-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(189,0,255,0.25) 0%, rgba(0,255,194,0.08) 50%, transparent 70%);
    animation: ctaGlowPulse 3s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes ctaGlowPulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Phone frame */
.cta-phone-mock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 440px;
    background: #0a0c12;
    border: 8px solid #20232e;
    border-radius: 32px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 25px 60px rgba(0,0,0,0.8),
        0 0 40px rgba(189,0,255,0.2),
        inset 0 0 20px rgba(0,0,0,0.5);
    z-index: 2;
    overflow: hidden;
}

.cta-phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 14px;
    background: #20232e;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
}

.cta-phone-screen {
    width: 100%;
    height: 100%;
    background: #080b12;
    overflow: hidden;
    border-radius: 24px;
}

/* Feed preview inside phone */
.cta-feed-preview {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cta-feed-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0f0818 0%, #1a0a2e 40%, #0a1020 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(189,0,255,0.9), transparent);
    top: 0;
    box-shadow: 0 0 12px rgba(189,0,255,0.7);
    animation: ctaScan 3s linear infinite;
}

@keyframes ctaScan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.cta-icon-main {
    font-size: 5rem;
    color: rgba(189, 0, 255, 0.15);
    animation: ctaIconPulse 3s ease-in-out infinite;
}

@keyframes ctaIconPulse {
    0% { color: rgba(189,0,255,0.1); transform: scale(0.95); }
    50% { color: rgba(189,0,255,0.35); transform: scale(1.05); }
    100% { color: rgba(189,0,255,0.1); transform: scale(0.95); }
}

.cta-overlay-bottom {
    position: relative;
    z-index: 5;
    padding: 12px 10px 10px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cta-ad-tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: #e0e0ef;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    width: fit-content;
}

.cta-ad-price {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--cyber-purple);
    text-shadow: 0 0 10px rgba(189,0,255,0.6);
}

.cta-wa-btn {
    background: #00875a;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,135,90,0.3);
}

.cta-sidebar-actions {
    position: absolute;
    left: 8px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 6;
}

.cta-act {
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

/* Floating badges around the phone */
.float-badge {
    position: absolute;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    white-space: nowrap;
}

.badge-verified {
    top: 12%;
    right: -15px;
    color: var(--neon-green);
    border-color: rgba(0,255,194,0.25);
    background: rgba(0,255,194,0.06);
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-live {
    top: 35%;
    left: -20px;
    color: var(--hot-pink);
    border-color: rgba(255,0,122,0.25);
    background: rgba(255,0,122,0.06);
    animation: floatBadge 5s ease-in-out infinite 0.8s;
}

.badge-stats {
    bottom: 22%;
    right: -18px;
    color: var(--cyber-purple);
    border-color: rgba(189,0,255,0.25);
    background: rgba(189,0,255,0.06);
    animation: floatBadge 4.5s ease-in-out infinite 1.5s;
}

.badge-pulse {
    width: 7px;
    height: 7px;
    background: var(--hot-pink);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--hot-pink);
    animation: pulse 1.2s infinite;
    display: inline-block;
}

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

/* Override old cta-graphic styles */
.double-phone-wrapper,
.phone-mock-img,
.glow-shadow {
    display: none;
}

/* Responsive for CTA section */
@media (max-width: 992px) {
    .cta-phone-scene {
        width: 200px;
        height: 400px;
    }
    .cta-phone-mock {
        width: 185px;
        height: 370px;
    }
    .float-badge {
        font-size: 0.65rem;
        padding: 5px 9px;
    }
    .badge-verified { right: -5px; }
    .badge-live { left: -5px; }
    .badge-stats { right: -5px; }
}

@media (max-width: 768px) {
    .cta-phone-scene {
        width: 170px;
        height: 340px;
        margin: 2rem auto 0;
    }
    .cta-phone-mock {
        width: 158px;
        height: 318px;
    }
}


/* ---- WEB-BRAND-1B: the official app icon IS the logo (no text beside it) ---- */
.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 14px rgba(0, 210, 155, 0.35);
}
