/* ========== ROOT VARIABLES ========== */
:root {
    --red: #DC2626;
    --red-dark: #B91C1C;
    --red-light: #FEE2E2;
    --red-50: #FEF2F2;
    --gold: #C9A227;
    --gold-light: #D4B84A;
    --gold-dark: #A68B1F;
    --gold-50: #FDF9E7;
    --green: #16a34a;
    --green-light: #dcfce7;
    --cream: #FFFBF5;
    --cream-100: #FFF8F0;
    --cream-200: #F5EDE4;
    --cream-300: #E8DFD4;
    --black: #0D0D0D;
    --black-light: #1A1A1A;
    --black-soft: #2D2D2D;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --white: #FFFFFF;
}

/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--black); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ========== HEADER ========== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--cream-200); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo svg { height: 40px; width: auto; flex-shrink: 0; }
.logo-text { display: flex; align-items: baseline; gap: 2px; }
.logo-from { font-size: 11px; font-weight: 500; color: var(--gray-400); letter-spacing: 0.5px; }
.logo-turk { font-size: 26px; font-weight: 800; color: var(--black); letter-spacing: -0.5px; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--gray-600); transition: color 0.2s; }
.nav a:hover { color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.mobile-menu-btn { display: none; background: none; padding: 8px; }
.mobile-menu-btn i { width: 24px; height: 24px; color: var(--black); }
.mobile-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--cream-200); padding: 16px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.mobile-nav.active { display: block; }
.mobile-nav a { display: block; padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--gray-600); border-bottom: 1px solid var(--cream-200); }
.mobile-nav a:last-child { border-bottom: none; }

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-size: 14px; font-weight: 600; border-radius: 50px; transition: all 0.2s; border: none; cursor: pointer; }
.btn i { width: 18px; height: 18px; }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--black-soft); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--cream); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ========== HERO ========== */
.hero { position: relative; padding: 140px 0 180px; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 60%, var(--cream-100) 100%); overflow: visible; }
.hero::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 1; }
.hero-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--cream-300); padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--gray-600); margin-bottom: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.hero-badge .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
.hero h1 { font-size: 58px; font-weight: 800; line-height: 1.08; letter-spacing: -2px; margin-bottom: 20px; color: var(--black); }
.hero h1 span { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 19px; color: var(--gray-500); margin-bottom: 44px; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ========== CUSTOM DROPDOWN SEARCH ========== */
.search-box { background: var(--white); padding: 8px; border-radius: 100px; box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 0 0 1px var(--cream-200); display: flex; align-items: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 100; }
.search-field { flex: 1; position: relative; }
.search-field:first-child::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 32px; background: var(--cream-200); }
.dropdown-trigger { display: flex; align-items: center; gap: 12px; padding: 16px 20px; cursor: pointer; border-radius: 50px; transition: background 0.2s; }
.dropdown-trigger:hover { background: var(--cream); }
.dropdown-trigger .icon { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.dropdown-trigger .text { flex: 1; font-size: 15px; font-weight: 500; color: var(--black); }
.dropdown-trigger .text.placeholder { color: var(--gray-400); }
.dropdown-trigger .chevron { width: 18px; height: 18px; color: var(--gray-400); transition: transform 0.2s; }
.search-field.open .dropdown-trigger .chevron { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--white); border-radius: 16px; box-shadow: 0 12px 48px rgba(0,0,0,0.15); border: 1px solid var(--cream-200); padding: 8px; z-index: 9999; display: none; min-width: 240px; }
.search-field.open .dropdown-menu { display: block; }
.dropdown-menu .option { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 10px; cursor: pointer; transition: all 0.15s; font-size: 14px; font-weight: 500; color: var(--gray-600); }
.dropdown-menu .option:hover { background: var(--cream); color: var(--black); }
.dropdown-menu .option.selected { background: var(--red-50); color: var(--red); }
.dropdown-menu .option i { width: 18px; height: 18px; opacity: 0.6; }
.search-box .btn { padding: 16px 28px; border-radius: 100px; margin-left: 4px; }

.quick-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 28px; font-size: 14px; position: relative; z-index: 50; }
.quick-links span { color: var(--gray-400); padding: 6px 0; }
.quick-links a { color: var(--gray-500); font-weight: 500; padding: 6px 14px; border-radius: 8px; transition: all 0.15s; border: 1px solid transparent; }
.quick-links a:hover { color: var(--red); background: var(--red-50); border-color: var(--red-light); }

/* ========== SECTIONS ========== */
.section { padding: 100px 0; }
.section-cream { background: var(--cream); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.section-header h2 { font-size: 38px; font-weight: 800; color: var(--black); letter-spacing: -1px; margin-bottom: 8px; }
.section-header p { font-size: 17px; color: var(--gray-500); }
.section-header a { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--black); padding: 10px 20px; border: 1.5px solid var(--gray-200); border-radius: 50px; transition: all 0.2s; }
.section-header a:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.section-header a i { width: 16px; height: 16px; }

/* ========== CATEGORIES ========== */
.categories { margin-top: -80px; position: relative; padding-bottom: 100px; }
.categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.category-card { background: var(--white); padding: 28px 16px; border-radius: 20px; text-align: center; border: 1px solid var(--cream-200); box-shadow: 0 4px 24px rgba(0,0,0,0.03); transition: all 0.3s ease; }
.category-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--gold-50); }
.category-card .icon { width: 64px; height: 64px; margin: 0 auto 16px; background: var(--cream); border-radius: 18px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.category-card .icon i { width: 28px; height: 28px; color: var(--gold-dark); transition: all 0.3s; }
.category-card:hover .icon { background: var(--black); transform: scale(1.05) rotate(-3deg); }
.category-card:hover .icon i { color: var(--gold); }
.category-card h3 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.category-card span { font-size: 13px; color: var(--gray-400); }

/* ========== DESTINATIONS ========== */
.destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 200px); gap: 20px; }
.destination-card { position: relative; border-radius: 24px; overflow: hidden; cursor: pointer; }
.destination-card.large { grid-column: span 2; grid-row: span 2; }
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.destination-card:hover img { transform: scale(1.08); }
.destination-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); transition: all 0.3s; }
.destination-card:hover::after { background: linear-gradient(to top, rgba(220,38,38,0.9) 0%, rgba(220,38,38,0.2) 50%, transparent 100%); }
.destination-card .content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 10; }
.destination-card .badge { display: inline-block; background: var(--gold); color: var(--black); font-size: 10px; font-weight: 700; padding: 6px 12px; border-radius: 50px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.destination-card h3 { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.destination-card.large h3 { font-size: 36px; }
.destination-card .content span:not(.badge) { font-size: 14px; color: rgba(255,255,255,0.75); }

/* ========== BUSINESS CARDS ========== */
.business-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.business-card { display: flex; flex-direction: column; background: var(--white); border-radius: 24px; overflow: hidden; border: 1px solid var(--cream-200); transition: all 0.3s ease; height: 100%; }
.business-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.12); border-color: transparent; }
.business-card .image { position: relative; width: 100%; height: 200px; overflow: hidden; background: var(--cream); }
.business-card .image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.business-card:hover .image img { transform: scale(1.05); }
.business-card .badge-premium { position: absolute; top: 16px; left: 16px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--black); font-size: 10px; font-weight: 700; padding: 8px 14px; border-radius: 50px; display: flex; align-items: center; gap: 5px; text-transform: uppercase; letter-spacing: 0.5px; z-index: 5; }
.business-card .badge-premium i { width: 12px; height: 12px; }
.business-card .badge-rating { position: absolute; top: 16px; right: 16px; background: var(--white); padding: 8px 12px; border-radius: 10px; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); color: var(--black); z-index: 5; }
.business-card .badge-rating i { width: 14px; height: 14px; color: var(--gold); }
.business-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.business-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.business-card .tag { font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.3px; }
.business-card .tag-primary { background: var(--red-50); color: var(--red); }
.business-card .tag-gray { background: var(--cream); color: var(--gray-600); }
.business-card h3 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 8px; transition: color 0.2s; }
.business-card:hover h3 { color: var(--red); }
.business-card .excerpt { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.business-card .card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--cream-200); margin-top: auto; }
.business-card .verified { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-500); }
.business-card .verified i { width: 16px; height: 16px; color: var(--gold); }
.business-card .price { font-size: 15px; font-weight: 700; color: var(--black); }

.no-business-notice { grid-column: 1 / -1; text-align: center; padding: 60px 40px; background: var(--white); border-radius: 24px; border: 2px dashed var(--cream-200); }
.no-business-notice i { width: 48px; height: 48px; color: var(--gold); margin-bottom: 16px; }
.no-business-notice h3 { font-size: 20px; margin-bottom: 8px; color: var(--black); }
.no-business-notice p { color: var(--gray-500); margin-bottom: 20px; }

/* ========== STATS ========== */
.stats-section { background: var(--cream); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { padding: 32px; background: var(--white); border-radius: 24px; border: 1px solid var(--cream-200); }
.stat-item .number { font-size: 48px; font-weight: 800; color: var(--black); margin-bottom: 8px; line-height: 1; }
.stat-item .number span { color: var(--red); }
.stat-item .label { font-size: 14px; color: var(--gray-500); font-weight: 500; }

/* ========== FEATURES ========== */
.features-section { background: var(--cream); padding: 100px 0; position: relative; overflow: hidden; }
.features-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 60%); border-radius: 50%; pointer-events: none; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { text-align: center; padding: 40px 28px; border-radius: 24px; background: var(--white); border: 1px solid var(--cream-200); transition: all 0.3s; box-shadow: 0 4px 24px rgba(0,0,0,0.03); }
.feature:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--gold-50); }
.feature .icon { width: 72px; height: 72px; margin: 0 auto 24px; background: linear-gradient(135deg, var(--gold-50) 0%, var(--cream) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gold-light); }
.feature .icon i { width: 32px; height: 32px; color: var(--gold-dark); }
.feature:hover .icon { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); border-color: transparent; }
.feature:hover .icon i { color: var(--white); }
.feature h3 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.feature p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ========== CTA SECTION ========== */
.cta-section { background: var(--white); padding: 100px 0; position: relative; overflow: hidden; }
.cta-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-50); border: 1px solid var(--gold-light); color: var(--gold-dark); font-size: 12px; font-weight: 600; padding: 10px 18px; border-radius: 50px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.cta-badge i { width: 16px; height: 16px; }
.cta-text h2 { font-size: 42px; font-weight: 800; color: var(--black); margin-bottom: 16px; line-height: 1.15; letter-spacing: -1px; }
.cta-text p { font-size: 17px; color: var(--gray-500); margin-bottom: 28px; line-height: 1.7; }
.cta-features { list-style: none; margin-bottom: 32px; }
.cta-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--gray-600); margin-bottom: 12px; }
.cta-features li i { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.cta-buttons { display: flex; gap: 12px; }
.cta-image { position: relative; }
.cta-image img { width: 100%; height: 480px; object-fit: cover; border-radius: 32px; box-shadow: 0 32px 64px rgba(0,0,0,0.12); }
.cta-stats { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); display: flex; gap: 16px; background: var(--white); padding: 20px 32px; border-radius: 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); border: 1px solid var(--cream-200); }
.cta-stat { text-align: center; padding: 0 20px; }
.cta-stat:first-child { border-right: 1px solid var(--cream-200); }
.cta-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--black); line-height: 1; margin-bottom: 4px; }
.cta-stat span { font-size: 13px; color: var(--gray-500); }

/* ========== FOOTER ========== */
.footer { background: var(--cream); color: var(--black); padding: 80px 0 40px; border-top: 1px solid var(--cream-200); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo-footer { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-brand .logo-footer svg { height: 36px; }
.footer-brand .logo-text-footer { font-size: 24px; font-weight: 800; color: var(--black); }
.footer-brand p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 44px; height: 44px; background: var(--white); border: 1px solid var(--cream-200); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.footer-social a:hover { background: var(--black); border-color: var(--black); transform: translateY(-2px); }
.footer-social a:hover i { color: var(--white); }
.footer-social a i { width: 20px; height: 20px; color: var(--gray-500); }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--black); margin-bottom: 24px; }
.footer-col li { margin-bottom: 14px; }
.footer-col a { font-size: 14px; color: var(--gray-500); transition: all 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid var(--cream-200); }
.footer-bottom p { font-size: 13px; color: var(--gray-400); }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 13px; color: var(--gray-500); transition: color 0.2s; }
.footer-links a:hover { color: var(--black); }

/* ========== LANDING PAGE HERO ========== */
.landing-hero { position: relative; height: 420px; margin-top: 72px; }
.landing-hero .image { position: absolute; inset: 0; }
.landing-hero .image img { width: 100%; height: 100%; object-fit: cover; }
.landing-hero .image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%); }
.landing-hero .content { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 48px; }

.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { width: 14px; height: 14px; color: rgba(255,255,255,0.4); }
.breadcrumb span { color: var(--white); }

.landing-hero h1 { font-size: 48px; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -1px; }
.landing-hero > .content > .container > p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 600px; margin-bottom: 24px; }

.hero-stats { display: flex; gap: 32px; }
.hero-stat { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 14px; }
.hero-stat i { width: 20px; height: 20px; color: var(--gold); }
.hero-stat strong { font-weight: 700; }

/* ========== LANDING CONTENT ========== */
.landing-content { padding: 48px 0 80px; background: var(--cream); min-height: 600px; }

.landing-tabs { display: flex; flex-wrap: wrap; gap: 8px; background: var(--white); padding: 12px; border-radius: 16px; margin-bottom: 32px; border: 1px solid var(--cream-200); }
.landing-tabs a { padding: 10px 20px; font-size: 14px; font-weight: 500; color: var(--gray-600); border-radius: 10px; transition: all 0.2s; }
.landing-tabs a:hover { background: var(--cream); color: var(--black); }
.landing-tabs a.active { background: var(--black); color: var(--white); }

.subcategory-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.subcategory-pills a { padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--gray-600); background: var(--white); border: 1px solid var(--cream-200); border-radius: 50px; transition: all 0.2s; }
.subcategory-pills a:hover { border-color: var(--black); color: var(--black); }
.subcategory-pills a.active { background: var(--red); color: var(--white); border-color: var(--red); }

.no-results { text-align: center; padding: 80px 20px; }
.no-results i { width: 48px; height: 48px; color: var(--gray-300); margin-bottom: 16px; }
.no-results h3 { color: var(--gray-600); margin-bottom: 8px; }
.no-results p { color: var(--gray-400); margin-bottom: 24px; }

/* ========== SEO CONTENT ========== */
.seo-content { padding: 80px 0; background: var(--white); }
.seo-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; color: var(--black); }
.seo-content h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; color: var(--black); }
.seo-content p { font-size: 16px; line-height: 1.8; color: var(--gray-600); margin-bottom: 16px; }
.seo-content ul { margin: 16px 0; padding-left: 24px; }
.seo-content li { font-size: 16px; line-height: 1.8; color: var(--gray-600); margin-bottom: 8px; list-style: disc; }

/* ========== RELATED SECTION ========== */
.related-section { padding: 80px 0; background: var(--cream); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.related-grid h3 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.related-grid h3 i { width: 18px; height: 18px; color: var(--red); }
.related-links { display: flex; flex-direction: column; gap: 10px; }
.related-link { font-size: 14px; color: var(--gray-600); padding: 10px 14px; background: var(--white); border-radius: 10px; border: 1px solid var(--cream-200); transition: all 0.2s; }
.related-link:hover { border-color: var(--red); color: var(--red); background: var(--red-50); }

/* ========== FAQ ========== */
.faq-section { padding: 80px 0; background: var(--white); }
.faq-section h2 { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--cream); border-radius: 16px; margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; font-size: 16px; font-weight: 600; color: var(--black); background: none; border: none; cursor: pointer; text-align: left; }
.faq-question i { width: 20px; height: 20px; color: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 20px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ========== LANDING CTA ========== */
.landing-cta { padding: 100px 0; background: linear-gradient(135deg, var(--black) 0%, var(--red-dark) 100%); text-align: center; }
.landing-cta h2 { font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.landing-cta p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.landing-cta .cta-buttons { display: flex; justify-content: center; gap: 16px; }

/* ========== SINGLE BUSINESS ========== */
.business-single { margin-top: 72px; padding: 40px 0 80px; background: var(--cream); min-height: 100vh; }
.business-single-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }

/* Gallery */
.business-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 160px); gap: 12px; margin-bottom: 32px; }
.business-gallery .main { grid-column: span 3; grid-row: span 2; border-radius: 20px; overflow: hidden; }
.business-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.business-gallery .main img { border-radius: 20px; }

/* Header */
.business-header { background: var(--white); padding: 32px; border-radius: 20px; margin-bottom: 24px; border: 1px solid var(--cream-200); }
.business-header .badges { display: flex; gap: 10px; margin-bottom: 16px; }
.business-header h1 { font-size: 32px; font-weight: 800; color: var(--black); margin-bottom: 8px; line-height: 1.2; }
.business-header .tagline { font-size: 17px; color: var(--gray-500); margin-bottom: 20px; }
.business-header .meta { display: flex; flex-wrap: wrap; gap: 24px; }
.business-header .meta-item { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--gray-600); }
.business-header .meta-item i { width: 18px; height: 18px; color: var(--gold); }
.business-header .meta-item strong { color: var(--black); font-weight: 700; }

/* Stats */
.business-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.business-stat { background: var(--white); padding: 24px; border-radius: 16px; text-align: center; border: 1px solid var(--cream-200); }
.business-stat .value { font-size: 28px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.business-stat .label { font-size: 13px; color: var(--gray-500); }

/* Section */
.business-section { background: var(--white); padding: 32px; border-radius: 20px; margin-bottom: 24px; border: 1px solid var(--cream-200); }
.business-section h2 { font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--cream-200); }
.business-section .content { font-size: 16px; line-height: 1.8; color: var(--gray-600); }
.business-section .content p { margin-bottom: 16px; }
.business-section .content h3 { font-size: 18px; font-weight: 700; margin: 24px 0 12px; color: var(--black); }
.business-section .content ul { padding-left: 20px; margin: 16px 0; }
.business-section .content li { margin-bottom: 8px; list-style: disc; }

/* Services */
.services-list { display: flex; flex-direction: column; gap: 12px; }
.service-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--cream); border-radius: 12px; }
.service-name { font-size: 15px; font-weight: 600; color: var(--black); }
.service-price { font-size: 16px; font-weight: 700; color: var(--red); }

/* Sidebar */
.business-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--white); padding: 28px; border-radius: 20px; border: 1px solid var(--cream-200); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.sidebar-card .btn { width: 100%; margin-bottom: 12px; justify-content: center; }
.sidebar-card .btn:last-of-type { margin-bottom: 24px; }

/* Price Display */
.price-display { text-align: center; padding: 20px; background: linear-gradient(135deg, var(--gold-50) 0%, var(--cream) 100%); border-radius: 16px; margin-bottom: 24px; border: 1px solid var(--gold-light); }
.price-label { font-size: 13px; color: var(--gray-500); margin-bottom: 4px; }
.price-value { font-size: 36px; font-weight: 800; color: var(--black); }

/* Contact Info */
.contact-info { padding-top: 20px; border-top: 1px solid var(--cream-200); }
.contact-info-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--cream-200); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item i { width: 20px; height: 20px; color: var(--gray-400); margin-top: 2px; flex-shrink: 0; }
.contact-info-item .label { font-size: 12px; color: var(--gray-400); margin-bottom: 2px; }
.contact-info-item .value { font-size: 14px; color: var(--black); font-weight: 500; word-break: break-word; }
.contact-info-item .value a { color: var(--red); }
.contact-info-item .value a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 1024px) {
    .business-single-grid { grid-template-columns: 1fr; }
    .business-sidebar { position: static; }
    .business-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .business-gallery .main { grid-column: span 2; height: 300px; }
    .business-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .business-single { padding: 24px 0 60px; }
    .business-gallery { grid-template-columns: 1fr; }
    .business-gallery .main { grid-column: span 1; height: 250px; }
    .business-gallery img:not(.main img) { display: none; }
    .business-header { padding: 24px; }
    .business-header h1 { font-size: 24px; }
    .business-header .meta { flex-direction: column; gap: 12px; }
    .business-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .business-stat { padding: 16px; }
    .business-stat .value { font-size: 22px; }
    .business-section { padding: 24px; }
    .sidebar-card { padding: 20px; }
    .price-value { font-size: 28px; }
}

/* ========== AUTH PAGES ========== */
.auth-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 24px 60px; background: var(--cream); }
.auth-box { background: var(--white); padding: 48px 40px; border-radius: 28px; width: 100%; max-width: 440px; box-shadow: 0 8px 40px rgba(0,0,0,0.06); border: 1px solid var(--cream-200); }
.auth-box h1 { font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 8px; color: var(--black); }
.auth-box .subtitle { text-align: center; color: var(--gray-500); margin-bottom: 32px; font-size: 15px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--cream-200); border-radius: 12px; font-size: 15px; transition: all 0.2s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-50); }
.auth-box .btn { width: 100%; margin-top: 8px; }
.auth-links { text-align: center; margin-top: 24px; font-size: 14px; color: var(--gray-500); }
.auth-links a { color: var(--red); font-weight: 600; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .nav { display: none; }
    .mobile-menu-btn { display: block; }
    .header-actions .btn-outline { display: none; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .business-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-content { grid-template-columns: 1fr; gap: 48px; }
    .cta-image { order: -1; }
    .cta-image img { height: 350px; }
    .cta-stats { position: relative; bottom: auto; left: auto; transform: none; justify-content: center; margin-top: -60px; }
}

@media (max-width: 640px) {
    .header-inner { height: 64px; }
    .logo svg { height: 32px; }
    .logo-turk { font-size: 22px; }
    .header-actions .btn span { display: none; }
    
    .hero { padding: 100px 0 140px; }
    .hero h1 { font-size: 32px; letter-spacing: -1px; }
    .hero p { font-size: 15px; }
    
    .search-box { flex-direction: column; border-radius: 24px; }
    .search-field:first-child::after { display: none; }
    .search-box .btn { width: 100%; margin: 8px 0 0 0; }
    
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .category-card { padding: 20px 12px; border-radius: 16px; }
    .category-card .icon { width: 52px; height: 52px; border-radius: 14px; }
    .category-card h3 { font-size: 13px; }
    
    .destinations-grid { grid-template-columns: 1fr; }
    .destination-card.large { grid-column: span 1; }
    
    .business-grid { grid-template-columns: 1fr; gap: 16px; }
    
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-item { padding: 20px 16px; }
    .stat-item .number { font-size: 32px; }
    
    .related-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .cta-buttons { flex-direction: column; }
    .cta-text h2 { font-size: 28px; }
    .cta-image img { height: 280px; }
    
    .section { padding: 60px 0; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .section-header h2 { font-size: 28px; }
    
    .landing-hero { height: 380px; }
    .landing-hero h1 { font-size: 28px; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .landing-tabs { overflow-x: auto; flex-wrap: nowrap; gap: 4px; padding: 8px; }
    .landing-tabs a { white-space: nowrap; padding: 8px 14px; font-size: 13px; }
    
    .landing-cta h2 { font-size: 24px; }
    .landing-cta .cta-buttons { flex-direction: column; }
}

/* ========== PRICING PAGE ========== */
.pricing-page { padding-top: 72px; }

/* Pricing Hero */
.pricing-hero { padding: 80px 0 120px; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); text-align: center; }
.pricing-hero-content { max-width: 700px; margin: 0 auto; }
.pricing-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--cream-300); padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--gray-600); margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.pricing-badge .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.pricing-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px; color: var(--black); }
.pricing-hero h1 span { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-hero p { font-size: 18px; color: var(--gray-500); line-height: 1.7; }

/* Pricing Cards Section */
.pricing-cards-section { margin-top: -60px; padding-bottom: 100px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

/* Pricing Card */
.pricing-card { background: var(--white); border-radius: 24px; border: 1px solid var(--cream-200); padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.04); transition: all 0.3s ease; position: relative; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }

/* Featured Card (Pro) */
.pricing-card.featured { border: 2px solid var(--red); transform: scale(1.05); box-shadow: 0 12px 40px rgba(220,38,38,0.15); z-index: 10; }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: var(--white); font-size: 11px; font-weight: 700; padding: 6px 16px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Platinum Card */
.pricing-card.platinum { border: 2px solid var(--gold); }
.platinum-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--black); font-size: 11px; font-weight: 700; padding: 6px 16px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Card Header */
.pricing-card-header { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--cream-200); margin-bottom: 24px; }
.plan-name { font-size: 14px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.plan-price .currency { font-size: 24px; font-weight: 700; color: var(--black); }
.plan-price .price-amount { font-size: 56px; font-weight: 800; color: var(--black); line-height: 1; letter-spacing: -2px; }
.plan-price .price-period { font-size: 14px; color: var(--gray-500); }
.plan-after { font-size: 13px; color: var(--gray-400); margin-top: 8px; }

/* Card Body */
.pricing-card-body { padding-bottom: 24px; }
.includes-text { font-size: 13px; font-weight: 600; color: var(--gray-500); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.features-list { display: flex; flex-direction: column; gap: 12px; }
.features-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.features-list li i { width: 18px; height: 18px; flex-shrink: 0; }
.features-list li.included { color: var(--black); }
.features-list li.included i { color: var(--green, #16a34a); }
.features-list li.included.highlight { font-weight: 600; }
.features-list li.included.highlight i { color: var(--gold); }
.features-list li.not-included { color: var(--gray-400); }
.features-list li.not-included i { color: var(--gray-300); }

/* Card Footer */
.pricing-card-footer { padding-top: 24px; border-top: 1px solid var(--cream-200); }
.btn-block { width: 100%; }
.value-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--gold-dark); }
.value-note i { width: 14px; height: 14px; }

/* Comparison Section */
.comparison-section { padding: 100px 0; }
.section-header-center { text-align: center; margin-bottom: 48px; }
.section-header-center h2 { font-size: 36px; font-weight: 800; color: var(--black); letter-spacing: -1px; margin-bottom: 12px; }
.section-header-center p { font-size: 17px; color: var(--gray-500); }

/* Comparison Table */
.comparison-table-wrapper { overflow-x: auto; background: var(--white); border-radius: 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.04); border: 1px solid var(--cream-200); }
.comparison-table { width: 100%; min-width: 700px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 16px 24px; text-align: center; border-bottom: 1px solid var(--cream-200); }
.comparison-table th { font-size: 15px; font-weight: 700; color: var(--black); background: var(--cream); }
.comparison-table th.feature-col { text-align: left; width: 35%; }
.comparison-table th.featured-col { background: var(--red-50); color: var(--red); }
.comparison-table td.feature-name { text-align: left; font-weight: 500; color: var(--gray-700); }
.comparison-table .category-row td { background: var(--cream-100); font-size: 12px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; text-align: left; }
.comparison-table .price-row td { background: var(--cream); padding: 20px 24px; }
.comparison-table .table-price { display: block; font-size: 24px; font-weight: 800; color: var(--black); }
.comparison-table .table-period { font-size: 12px; color: var(--gray-500); }
.comparison-table .check { width: 20px; height: 20px; color: var(--green, #16a34a); }
.comparison-table .x-mark { width: 20px; height: 20px; color: var(--gray-300); }
.comparison-table .gold-check { width: 20px; height: 20px; color: var(--gold); }
.feature-info { display: inline-flex; margin-left: 4px; cursor: help; }
.feature-info i { width: 14px; height: 14px; color: var(--gray-400); }

/* FAQ Section */
.faq-section { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--cream); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.faq-item:hover { background: var(--cream-100); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; background: none; border: none; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--black); text-align: left; }
.faq-question i { width: 20px; height: 20px; color: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* CTA Section */
.cta-section { padding: 80px 0; background: var(--cream); }
.cta-box { background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%); border-radius: 32px; padding: 60px; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-content h2 { font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-content p { font-size: 16px; color: rgba(255,255,255,0.7); }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* Pricing Page Responsive */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .cta-box { flex-direction: column; text-align: center; padding: 40px 24px; }
    .cta-actions { flex-direction: column; width: 100%; }
}

@media (max-width: 768px) {
    .pricing-hero { padding: 60px 0 100px; }
    .pricing-hero h1 { font-size: 36px; }
    .pricing-cards-section { margin-top: -40px; }
    .comparison-section { padding: 60px 0; }
    .section-header-center h2 { font-size: 28px; }
    .faq-question { font-size: 14px; padding: 16px 20px; }
}

/* ========== DASHBOARD PAGE ========== */
.dashboard-page { padding-top: 72px; min-height: 100vh; background: var(--cream); }
.dashboard-page > .container { max-width: 1400px; }
.dashboard-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 32px 0; min-height: calc(100vh - 72px); }

/* Dashboard Sidebar */
.dashboard-sidebar { position: sticky; top: 104px; height: fit-content; }
.user-card { background: var(--white); border-radius: 20px; padding: 24px; text-align: center; margin-bottom: 16px; border: 1px solid var(--cream-200); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.user-avatar { position: relative; display: inline-block; margin-bottom: 16px; }
.user-avatar img { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--cream-200); }
.user-avatar .plan-badge { position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; white-space: nowrap; border: 2px solid var(--white); }
.plan-badge.plan-starter { background: var(--gray-100); color: var(--gray-600); }
.plan-badge.plan-pro { background: var(--red); color: var(--white); }
.plan-badge.plan-platinum { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); }
.user-info h3 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.user-info p { font-size: 13px; color: var(--gray-500); word-break: break-all; }

.dashboard-nav { background: var(--white); border-radius: 20px; padding: 12px; border: 1px solid var(--cream-200); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.dashboard-nav a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; font-size: 14px; font-weight: 500; color: var(--gray-600); transition: all 0.2s; margin-bottom: 4px; }
.dashboard-nav a:last-child { margin-bottom: 0; }
.dashboard-nav a:hover { background: var(--cream); color: var(--black); }
.dashboard-nav a.active { background: var(--red-50); color: var(--red); font-weight: 600; }
.dashboard-nav a.logout { color: var(--gray-400); }
.dashboard-nav a.logout:hover { color: var(--red); background: var(--red-50); }
.dashboard-nav a i { width: 20px; height: 20px; flex-shrink: 0; }
.dashboard-nav a span { flex: 1; }
.dashboard-nav a .badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 10px; background: var(--cream); color: var(--gray-600); }
.dashboard-nav a .badge.pro { background: var(--red); color: var(--white); }
.dashboard-nav a .badge.gold { background: var(--gold); color: var(--black); }
.nav-divider { height: 1px; background: var(--cream-200); margin: 12px 8px; }

/* Dashboard Main */
.dashboard-main { background: var(--white); border-radius: 24px; padding: 32px; border: 1px solid var(--cream-200); box-shadow: 0 4px 20px rgba(0,0,0,0.04); min-width: 0; }
.dashboard-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }
.dashboard-header h1 { font-size: 28px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.dashboard-header p { font-size: 15px; color: var(--gray-500); }

/* Alerts */
.alert { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; font-size: 14px; font-weight: 500; }
.alert i { width: 20px; height: 20px; flex-shrink: 0; }
.alert-success { background: #D1FAE5; color: #065F46; }
.alert-error { background: var(--red-50); color: var(--red); }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.stats-grid.large { gap: 20px; }
.stat-card { background: var(--cream); border-radius: 16px; padding: 20px; display: flex; align-items: center; gap: 16px; transition: transform 0.2s, box-shadow 0.2s; }
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.stat-card.gold { background: linear-gradient(135deg, var(--gold-50), #FEF3C7); }
.stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon i { width: 24px; height: 24px; }
.stat-icon.views { background: #DBEAFE; color: #2563EB; }
.stat-icon.phone { background: #D1FAE5; color: #059669; }
.stat-icon.whatsapp { background: #D1FAE5; color: #25D366; }
.stat-icon.email { background: #FEE2E2; color: #DC2626; }
.stat-icon.businesses { background: var(--gold-50); color: var(--gold-dark); }
.stat-content { flex: 1; min-width: 0; }
.stat-value { display: block; font-size: 24px; font-weight: 800; color: var(--black); line-height: 1.2; }
.stat-label { font-size: 13px; color: var(--gray-500); }

/* Quick Actions */
.quick-actions { margin-bottom: 32px; }
.quick-actions h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--black); }
.actions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.action-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 16px; background: var(--cream); border-radius: 16px; text-align: center; transition: all 0.2s; border: 1px solid transparent; }
.action-card:hover { background: var(--cream-200); transform: translateY(-2px); border-color: var(--cream-300); }
.action-card.highlight { background: var(--red-50); border-color: var(--red-light); }
.action-card.highlight:hover { background: var(--red-light); }
.action-card i { width: 24px; height: 24px; color: var(--gray-600); }
.action-card.highlight i { color: var(--red); }
.action-card span { font-size: 13px; font-weight: 600; color: var(--black); }

/* Businesses List */
.section-header-inline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.section-header-inline h2 { font-size: 18px; font-weight: 700; color: var(--black); }
.section-header-inline a { font-size: 14px; font-weight: 600; color: var(--red); }
.section-header-inline a:hover { text-decoration: underline; }
.businesses-list { display: flex; flex-direction: column; gap: 12px; }
.business-row { display: grid; grid-template-columns: 60px 1fr auto auto auto; gap: 16px; align-items: center; padding: 16px; background: var(--cream); border-radius: 16px; transition: all 0.2s; }
.business-row:hover { background: var(--cream-200); }
.business-row .business-image { width: 60px; height: 60px; border-radius: 12px; overflow: hidden; background: var(--cream-200); flex-shrink: 0; }
.business-row .business-image img { width: 100%; height: 100%; object-fit: cover; }
.business-row .placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--gray-300); }
.business-row .business-info { min-width: 0; }
.business-row .business-info h3 { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.business-row .business-info p { font-size: 13px; color: var(--gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.business-stats-mini { display: flex; gap: 16px; }
.business-stats-mini span { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--gray-500); }
.business-stats-mini i { width: 14px; height: 14px; }
.status-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.3px; }
.status-badge.status-publish { background: #D1FAE5; color: #059669; }
.status-badge.status-pending { background: #FEF3C7; color: #D97706; }
.status-badge.status-draft { background: var(--gray-100); color: var(--gray-500); }
.status-badge.status-active { background: #D1FAE5; color: #059669; }
.business-actions { display: flex; gap: 8px; }
.btn-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--cream-200); color: var(--gray-500); transition: all 0.2s; cursor: pointer; }
.btn-icon:hover { border-color: var(--black); color: var(--black); }
.btn-icon.primary { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-icon.primary:hover { background: var(--red-dark); }
.btn-icon i { width: 16px; height: 16px; }

/* Referral Banner */
.referral-banner { display: flex; justify-content: space-between; align-items: center; gap: 32px; background: linear-gradient(135deg, var(--gold-50), #FEF3C7); border-radius: 20px; padding: 24px 32px; margin-top: 32px; }
.referral-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.referral-content p { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; }
.referral-code-box .label { font-size: 12px; color: var(--gray-500); display: block; margin-bottom: 8px; }
.code-input { display: flex; gap: 8px; }
.code-input input { flex: 1; padding: 10px 14px; border: 1px solid var(--cream-300); border-radius: 8px; font-size: 13px; background: var(--white); min-width: 250px; }
.referral-stats-mini { display: flex; gap: 32px; }
.mini-stat { text-align: center; }
.mini-stat .value { display: block; font-size: 28px; font-weight: 800; color: var(--black); }
.mini-stat .label { font-size: 12px; color: var(--gray-500); }

/* Businesses Table */
.businesses-table { background: var(--cream); border-radius: 16px; overflow: hidden; }
.table-header, .table-row { display: grid; grid-template-columns: 2fr 1fr 100px 100px; gap: 16px; align-items: center; padding: 16px 20px; }
.table-header { background: var(--cream-200); font-size: 12px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.table-row { border-bottom: 1px solid var(--cream-200); }
.table-row:last-child { border-bottom: none; }
.col-name { display: flex; align-items: center; gap: 16px; }
.col-name .business-image { width: 50px; height: 50px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.col-name .business-info h3 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.col-name .business-info p { font-size: 12px; color: var(--gray-500); }
.mini-stats { display: flex; gap: 12px; }
.mini-stats span { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gray-500); }
.mini-stats i { width: 14px; height: 14px; }
.col-actions { display: flex; gap: 8px; justify-content: flex-end; }

/* Analytics Chart */
.analytics-chart { background: var(--cream); border-radius: 20px; padding: 24px; margin-top: 24px; }
.analytics-chart h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.chart-container { height: 300px; }

/* Upgrade Banner */
.upgrade-banner { display: flex; justify-content: space-between; align-items: center; background: var(--cream); border-radius: 16px; padding: 20px 24px; margin-bottom: 24px; border: 2px dashed var(--cream-300); }
.upgrade-content { display: flex; align-items: center; gap: 16px; }
.upgrade-content i { width: 24px; height: 24px; color: var(--gray-400); }
.upgrade-content h3 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.upgrade-content p { font-size: 13px; color: var(--gray-500); }

/* Referral Box */
.referral-box { background: var(--cream); border-radius: 20px; padding: 32px; margin-bottom: 24px; }
.referral-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.referral-box > p { color: var(--gray-600); margin-bottom: 20px; }
.referral-link-box { display: flex; gap: 12px; margin-bottom: 16px; }
.referral-link-box input { flex: 1; padding: 14px 18px; border: 1px solid var(--cream-300); border-radius: 12px; font-size: 14px; background: var(--white); }
.referral-code { font-size: 14px; color: var(--gray-500); }
.referral-code strong { color: var(--gold-dark); }

/* Referred Users */
.referred-users { margin-top: 32px; }
.referred-users h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.users-list { display: flex; flex-direction: column; gap: 12px; }
.user-row { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--cream); border-radius: 12px; }
.user-avatar-small img { width: 40px; height: 40px; border-radius: 50%; }
.user-details { flex: 1; }
.user-details strong { display: block; font-size: 14px; margin-bottom: 2px; }
.user-details span { font-size: 12px; color: var(--gray-500); }

/* Current Plan */
.current-plan { background: var(--cream); border-radius: 20px; padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.current-plan.plan-pro { background: linear-gradient(135deg, var(--red-50), #FEE2E2); }
.current-plan.plan-platinum { background: linear-gradient(135deg, var(--gold-50), #FEF3C7); }
.plan-info .plan-label { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.plan-info h2 { font-size: 32px; font-weight: 800; margin: 8px 0; }
.plan-status { font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.plan-status.status-active { background: #D1FAE5; color: #059669; }
.plan-features-list { display: flex; flex-direction: column; gap: 10px; }
.plan-features-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.plan-features-list i { width: 18px; height: 18px; color: var(--green); }

/* Upgrade Plans */
.upgrade-plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.upgrade-plan-card { background: var(--white); border: 2px solid var(--cream-200); border-radius: 24px; padding: 32px; position: relative; }
.upgrade-plan-card.featured { border-color: var(--red); }
.upgrade-plan-card .featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; }
.upgrade-plan-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.upgrade-plan-card .plan-price { margin-bottom: 8px; }
.upgrade-plan-card .plan-price .currency { font-size: 20px; font-weight: 700; }
.upgrade-plan-card .plan-price .amount { font-size: 48px; font-weight: 800; }
.upgrade-plan-card .plan-note { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.upgrade-plan-card .plan-features-list { margin-bottom: 24px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Platinum Message */
.platinum-message { text-align: center; padding: 48px; background: linear-gradient(135deg, var(--gold-50), #FEF3C7); border-radius: 24px; margin-top: 32px; }
.platinum-message i { width: 48px; height: 48px; color: var(--gold); margin-bottom: 16px; }
.platinum-message h3 { font-size: 20px; margin-bottom: 8px; }
.platinum-message p { color: var(--gray-600); }

/* Empty State */
.empty-state { text-align: center; padding: 60px 40px; }
.empty-state i { width: 64px; height: 64px; color: var(--gray-300); margin-bottom: 20px; }
.empty-state h3 { font-size: 20px; margin-bottom: 8px; }
.empty-state p { color: var(--gray-500); margin-bottom: 24px; }

/* ========== EDIT BUSINESS PAGE ========== */
.edit-business-page { padding-top: 72px; min-height: 100vh; background: var(--cream); padding-bottom: 60px; }
.edit-header { padding: 32px 0; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--gray-500); margin-bottom: 16px; }
.back-link:hover { color: var(--red); }
.back-link i { width: 18px; height: 18px; }
.edit-header h1 { font-size: 32px; font-weight: 800; margin-bottom: 4px; }
.edit-header p { font-size: 15px; color: var(--gray-500); }

.edit-layout { display: grid; grid-template-columns: 320px 1fr; gap: 32px; }

/* Edit Sidebar - Gallery */
.edit-sidebar { position: sticky; top: 104px; height: fit-content; }
.gallery-section, .videos-section { background: var(--white); border-radius: 20px; padding: 24px; margin-bottom: 20px; border: 1px solid var(--cream-200); }
.section-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.section-title h2 { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; }
.section-title h2 i { width: 20px; height: 20px; color: var(--gray-400); }
.photo-count, .video-count { font-size: 12px; color: var(--gray-500); background: var(--cream); padding: 4px 10px; border-radius: 20px; }

.limit-warning { display: flex; align-items: center; gap: 8px; background: #FEF3C7; color: #D97706; padding: 12px; border-radius: 10px; font-size: 13px; margin-bottom: 16px; }
.limit-warning i { width: 16px; height: 16px; flex-shrink: 0; }
.limit-warning a { color: var(--red); font-weight: 600; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery-item { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: var(--cream); cursor: move; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.is-featured { box-shadow: 0 0 0 3px var(--gold); }
.gallery-item-actions { position: absolute; top: 6px; right: 6px; display: flex; gap: 4px; opacity: 0; transition: opacity 0.2s; }
.gallery-item:hover .gallery-item-actions { opacity: 1; }
.btn-star, .btn-delete { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: all 0.2s; }
.btn-star { background: var(--white); color: var(--gray-400); }
.btn-star:hover, .btn-star.active { background: var(--gold); color: var(--white); }
.btn-delete { background: var(--white); color: var(--gray-400); }
.btn-delete:hover { background: var(--red); color: var(--white); }
.btn-star i, .btn-delete i { width: 14px; height: 14px; }
.featured-label { position: absolute; bottom: 6px; left: 6px; background: var(--gold); color: var(--black); font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; }
.drag-handle { position: absolute; top: 6px; left: 6px; width: 24px; height: 24px; background: rgba(0,0,0,0.5); border-radius: 4px; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; cursor: grab; }
.gallery-item:hover .drag-handle { opacity: 1; }
.drag-handle i { width: 14px; height: 14px; color: var(--white); }

.gallery-upload { aspect-ratio: 1; border: 2px dashed var(--cream-300); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer; transition: all 0.2s; }
.gallery-upload:hover { border-color: var(--red); background: var(--red-50); }
.gallery-upload i { width: 24px; height: 24px; color: var(--gray-400); }
.gallery-upload span { font-size: 11px; color: var(--gray-500); }
.gallery-upload.uploading { opacity: 0.5; pointer-events: none; }

.gallery-hint { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-400); margin-top: 16px; }
.gallery-hint i { width: 14px; height: 14px; }

.sortable-ghost { opacity: 0.4; }

/* Video Inputs */
.video-inputs { display: flex; flex-direction: column; gap: 10px; }
.video-input-row { display: flex; align-items: center; gap: 10px; }
.video-input-row i { width: 20px; height: 20px; color: var(--gray-400); flex-shrink: 0; }
.video-input-row input { flex: 1; padding: 10px 14px; border: 1px solid var(--cream-200); border-radius: 10px; font-size: 13px; }
.video-input-row input:focus { border-color: var(--red); outline: none; }

.upgrade-prompt { background: var(--white); border-radius: 20px; padding: 32px; text-align: center; border: 2px dashed var(--cream-300); }
.upgrade-prompt i { width: 32px; height: 32px; color: var(--gray-300); margin-bottom: 12px; }
.upgrade-prompt h4 { font-size: 15px; margin-bottom: 8px; }
.upgrade-prompt p { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }

/* Edit Main Form */
.edit-main { background: var(--white); border-radius: 24px; padding: 40px; border: 1px solid var(--cream-200); }
.form-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--cream-200); }
.form-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.form-section h2 { font-size: 20px; font-weight: 700; margin-bottom: 24px; color: var(--black); }
.form-group { margin-bottom: 20px; }
.form-group label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.form-group label i { width: 16px; height: 16px; color: var(--gray-400); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 1px solid var(--cream-200); border-radius: 12px; font-size: 15px; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); outline: none; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-with-prefix { display: flex; align-items: center; border: 1px solid var(--cream-200); border-radius: 12px; overflow: hidden; }
.input-with-prefix span { padding: 14px; background: var(--cream); color: var(--gray-500); font-size: 15px; }
.input-with-prefix input { border: none; border-radius: 0; }

.form-actions { display: flex; justify-content: flex-end; gap: 12px; padding-top: 32px; border-top: 1px solid var(--cream-200); margin-top: 32px; }

/* Dashboard Responsive */
@media (max-width: 1024px) {
    .dashboard-layout { grid-template-columns: 1fr; }
    .dashboard-sidebar { position: static; display: grid; grid-template-columns: 1fr 2fr; gap: 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .actions-grid { grid-template-columns: repeat(2, 1fr); }
    .edit-layout { grid-template-columns: 1fr; }
    .edit-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .gallery-section, .videos-section { margin-bottom: 0; }
}

@media (max-width: 768px) {
    .dashboard-sidebar { grid-template-columns: 1fr; }
    .edit-sidebar { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .business-row { grid-template-columns: 50px 1fr; gap: 12px; }
    .business-stats-mini, .business-actions { grid-column: 2; }
    .table-header { display: none; }
    .table-row { grid-template-columns: 1fr; gap: 12px; }
    .form-row { grid-template-columns: 1fr; }
    .referral-banner { flex-direction: column; text-align: center; }
    .current-plan { grid-template-columns: 1fr; }
    .upgrade-plans { grid-template-columns: 1fr; }
    .dashboard-main { padding: 20px; }
    .actions-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .actions-grid { grid-template-columns: 1fr; }
    .business-row { grid-template-columns: 1fr; }
    .business-row .business-image { width: 100%; height: 150px; }
    .business-stats-mini, .business-status, .business-actions { grid-column: 1; justify-content: flex-start; }
    .dashboard-header { flex-direction: column; }
    .dashboard-header .btn { width: 100%; }
}
