/* ===== CSS Variables - 2026 Modern Blue & Gold Theme ===== */
:root {
    /* Primary Colors - Electric Blue */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;

    /* Secondary Colors - Warm Gold */
    --secondary: #f59e0b;
    --gold: #fbbf24;
    --gold-dark: #d97706;

    /* 2026 Accent Colors */
    --accent-cyan: #22d3ee;
    --accent-blue: #3b82f6;
    --accent-amber: #fcd34d;
    --accent-orange: #fb923c;

    /* Dark Mode Base - Deep Navy */
    --dark: #0c1222;
    --dark-lighter: #162032;
    --dark-card: #1e2a3a;
    --dark-accent: #243447;
    --text: #f1f5f9;
    --text-muted: #94a3b8;

    /* Glassmorphism 2.0 - Blue Tint */
    --glass: rgba(14, 165, 233, 0.08);
    --glass-border: rgba(56, 189, 248, 0.15);
    --glass-glow: rgba(14, 165, 233, 0.2);

    /* Neo-Brutalism Elements */
    --brutal-border: 3px solid rgba(56, 189, 248, 0.8);
    --brutal-shadow: 6px 6px 0px rgba(14, 165, 233, 0.7);
    --brutal-shadow-hover: 8px 8px 0px rgba(14, 165, 233, 0.9);

    /* Gradients - Blue to Gold */
    --gradient: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #6366f1 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
    --gradient-mixed: linear-gradient(135deg, #0ea5e9 0%, #f59e0b 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-card: linear-gradient(180deg, rgba(14, 165, 233, 0.1) 0%, transparent 100%);

    /* Shadows & Effects */
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(14, 165, 233, 0.3);
    --shadow-gold: 0 0 40px rgba(251, 191, 36, 0.25);

    /* Border Radius */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Light Mode */
[data-theme="light"] {
    --dark: #f8fafc;
    --dark-lighter: #e2e8f0;
    --dark-card: #ffffff;
    --text: #1e293b;
    --text-muted: #64748b;
    --glass: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

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

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

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== 2026 Kinetic Typography ===== */
@keyframes textReveal {
    from {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        opacity: 0;
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    }

    50% {
        text-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
    }
}

@keyframes letterPop {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }

    50% {
        transform: scale(1.1) translateY(-5px);
    }

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

.kinetic-title {
    animation: textReveal 1s ease-out forwards;
}

.kinetic-glow {
    animation: textGlow 3s ease-in-out infinite;
}

/* ===== Neo-Brutalism Components ===== */
.brutal-card {
    border: var(--brutal-border);
    box-shadow: var(--brutal-shadow);
    transition: var(--transition-bounce);
    border-radius: var(--radius-brutal);
}

.brutal-card:hover {
    box-shadow: var(--brutal-shadow-hover);
    transform: translate(-2px, -2px);
}

.brutal-btn {
    border: 3px solid currentColor;
    box-shadow: 4px 4px 0px currentColor;
    transition: var(--transition-bounce);
    font-weight: 700;
}

.brutal-btn:hover {
    box-shadow: 6px 6px 0px currentColor;
    transform: translate(-2px, -2px);
}

.brutal-btn:active {
    box-shadow: 2px 2px 0px currentColor;
    transform: translate(2px, 2px);
}

/* Neon Text Effects */
.neon-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.neon-border {
    border: 2px solid transparent;
    background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
        var(--gradient-neon) border-box;
}

.animate-fadeInDown {
    animation: fadeInDown 0.6s ease-out forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.5s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

input,
select,
textarea {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass);
    border-color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ===== Theme Toggle ===== */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 10px;
}

.theme-toggle:hover {
    background: var(--primary);
    transform: rotate(30deg) scale(1.1);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo .highlight {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    gap: 12px;
}

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

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse at top right, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.1;
    filter: blur(100px);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 1em;
    margin-top: 10px;
}

/* Mobile: Larger gradient-text */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .gradient-text {
        font-size: 2.5rem !important;
        margin-top: 12px;
        font-weight: 900;
    }
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-inline: auto;
}

.search-box {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 8px;
    backdrop-filter: blur(10px);
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text);
    padding: 12px 16px;
    font-size: 1rem;
    outline: none;
}

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

.search-box .btn {
    padding: 12px 24px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat {
    text-align: center;
}

.stat span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* ===== Sections ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

/* ===== Categories ===== */
.categories {
    background: var(--dark-lighter);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.category-card .icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

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

/* ===== Listings ===== */
.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab {
    padding: 10px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.tab:hover,
.tab.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

/* Tab Dropdown Styles */
.tab-dropdown {
    position: relative;
    display: inline-block;
}

.tab-submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    min-width: 150px;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tab-submenu.active {
    display: block;
}

.tab-submenu button {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 0.9rem;
    text-align: right;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.tab-submenu button:hover {
    background: var(--glass);
    color: var(--primary-light);
}

.tab-submenu button.active {
    background: var(--primary);
    color: white;
}

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

@media (min-width: 768px) {
    .listings-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .listings-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.listing-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* ===== Featured/Premium Ad Cards ===== */
.listing-card.featured {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.05));
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
    position: relative;
}

.listing-card.featured::before {
    content: '⭐ مميز';
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-gold);
    color: #1a1a2e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.listing-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

.listing-card.featured .price {
    color: var(--gold);
    font-weight: 800;
}

.listing-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.listing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.listing-img .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    margin: 0;
    background: var(--primary);
    padding: 6px 12px;
    font-size: 0.8rem;
}

.listing-img .badge.gold {
    background: var(--gradient-gold);
    color: var(--dark);
}

/* Click Hint Overlay */
.click-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 15px 15px;
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.85;
    transition: var(--transition);
    pointer-events: none;
}

.listing-img:hover .click-hint {
    opacity: 1;
    background: linear-gradient(transparent, rgba(99, 102, 241, 0.9));
}

/* Share Dropdown */
.share-dropdown {
    position: absolute;
    top: 12px;
    left: 50px;
    z-index: 50;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.share-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 35, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 8px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.share-dropdown.active .share-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
}

.share-menu button {
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    text-align: right;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 4px;
}

.share-menu button:last-child {
    margin-bottom: 0;
}

.share-menu button:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateX(-3px);
}

.listing-info {
    padding: 20px;
}

.listing-info .cat {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.listing-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.listing-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.listing-location {
    margin-bottom: 8px;
}

.listing-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.listing-info .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

/* ===== Subscriptions ===== */
.subscriptions {
    background: var(--dark-lighter);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.2);
}

.pricing-card .popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.plan-desc.gold {
    color: var(--gold);
    font-weight: 600;
}

.pricing-card .price {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.pricing-card .price span {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card ul {
    text-align: right;
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text);
}

.pricing-card li.disabled {
    color: var(--text-muted);
}

.payment-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== How It Works ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    position: relative;
}

.step .num {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.step h3 {
    margin-bottom: 8px;
}

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

/* ===== CTA ===== */
.cta {
    text-align: center;
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-lighter);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand p {
    color: var(--text-muted);
    margin: 16px 0;
}

.social {
    display: flex;
    gap: 12px;
}

.social a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social a:hover {
    transform: scale(1.2);
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    padding: 8px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text);
    transform: translateX(-5px);
}

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

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    color: var(--text-muted);
    font-size: 1.5rem;
}

.modal h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* ===== Ad Banners (Google AdSense) ===== */
.ad-banner {
    padding: 20px 0;
    background: var(--dark);
}

.ad-container {
    background: var(--glass);
    border: 1px dashed var(--glass-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    position: relative;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-horizontal {
    min-height: 90px;
}

.ad-label {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
    background: var(--dark);
    padding: 2px 8px;
    border-radius: 4px;
}

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

.adsbygoogle {
    display: block;
    width: 100%;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

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

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--dark-lighter);
        width: 100%;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--glass-border);
    }

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

    .hero-stats {
        gap: 25px;
    }

    .stat span {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ===== Ad Detail Modal ===== */
.ad-detail {
    text-align: right;
}

.ad-detail-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.ad-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ad-detail-category {
    font-size: 0.9rem;
    color: var(--text-muted);
    background: var(--glass);
    padding: 6px 12px;
    border-radius: 50px;
}

.ad-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.ad-detail-info {
    background: var(--glass);
    border-radius: var(--radius);
    padding: 15px;
    margin-bottom: 20px;
}

.ad-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.ad-detail-row:last-child {
    border-bottom: none;
}

.ad-detail-row span {
    color: var(--text-muted);
}

.ad-detail-row strong {
    color: var(--text);
}

.price-highlight {
    color: var(--secondary) !important;
    font-size: 1.1rem;
}

.ad-detail-description {
    margin-bottom: 20px;
}

.ad-detail-description h4 {
    margin-bottom: 10px;
    color: var(--text);
}

.ad-detail-description p {
    color: var(--text-muted);
    line-height: 1.8;
    white-space: pre-wrap;
}

.ad-detail-whatsapp {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 15px;
}

/* ===== Command Palette (Ctrl+K) - 2026 Feature ===== */
.command-palette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
}

.command-palette-overlay.active {
    display: flex;
}

.command-palette {
    width: 90%;
    max-width: 600px;
    background: var(--dark-card);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5), 0 0 60px var(--glass-glow);
    animation: scaleIn 0.2s ease-out;
}

.command-input-wrapper {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.command-input-wrapper .search-icon {
    font-size: 1.4rem;
    color: var(--neon-cyan);
}

.command-input {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text);
    outline: none;
}

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

.command-shortcut {
    background: var(--glass);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

.command-results {
    max-height: 400px;
    overflow-y: auto;
}

.command-result-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--glass-border);
}

.command-result-item:hover,
.command-result-item.active {
    background: var(--glass);
}

.command-result-item:hover {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.2), transparent);
}

.command-result-item .icon {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border-radius: var(--radius-sm);
}

.command-result-item .text {
    flex: 1;
}

.command-result-item .title {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.command-result-item .subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.command-footer {
    padding: 12px 20px;
    background: var(--glass);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.command-footer kbd {
    background: var(--dark-card);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    margin: 0 2px;
}

/* ===== Gold & Currency Prices Section ===== */
.prices-section {
    padding: 20px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(192, 192, 192, 0.05));
}

.prices-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.prices-badge {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.prices-update {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.price-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.price-card.gold {
    border-left: 3px solid #ffd700;
}

.price-card.gold-lira {
    border-left: 3px solid #daa520;
}

.price-card.silver {
    border-left: 3px solid #c0c0c0;
}

.price-card.dollar {
    border-left: 3px solid #22c55e;
}

.price-icon {
    font-size: 1.8rem;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.price-value {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
}

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

    .prices-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .prices-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .price-card {
        padding: 12px;
        gap: 8px;
    }

    .price-icon {
        font-size: 1.4rem;
    }

    .price-value {
        font-size: 0.95rem;
    }
}

/* ===== Image Gallery Styles ===== */
.ad-gallery {
    position: relative;
    margin-bottom: 15px;
}

.gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-main .ad-detail-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--primary);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-thumb:hover {
    opacity: 0.9;
}

.gallery-thumb.active {
    border-color: var(--primary);
    opacity: 1;
}