:root { --primary: #00f2ff; --bg: #050a14; --card: #111827; --green: #10b981; }
* { margin:0; padding:0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { background: var(--bg); color: white; line-height: 1.6; }

/* Location Gate */
.location-gate { position: fixed; inset: 0; background: rgba(5,10,20,0.98); z-index: 5000; display: flex; align-items: center; justify-content: center; }
.gate-box { padding: 30px; background: #111827; border: 1px solid var(--primary); border-radius: 20px; text-align: center; max-width: 320px; box-shadow: 0 0 20px rgba(0, 242, 255, 0.2); }
.gate-box i { font-size: 3rem; color: var(--primary); margin-bottom: 15px; }

/* Header */
.main-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background: #0f172a; border-bottom: 2px solid var(--primary); position: sticky; top:0; z-index: 100; }
.logo { font-size: 1.4rem; cursor: pointer; }
.logo span { color: var(--primary); font-weight: bold; }
.user-icon { background:none; border:none; color:white; font-size: 1.6rem; cursor:pointer; }

/* Hero & Search */
.search-hero { padding: 30px 5%; background: linear-gradient(to bottom, #0f172a, #050a14); text-align: center; }
.search-box { position: relative; max-width: 500px; margin: auto; }
.search-box input { width: 100%; padding: 14px 45px; border-radius: 12px; border: none; outline: none; background: #fbfafa; color: #000; font-size: 1rem; }
.search-box i { position: absolute; left: 15px; top: 16px; color: #666; }

/* Tags */
.tags-container { display: flex; gap: 8px; justify-content: center; margin-top: 15px; flex-wrap: wrap; }
.k-tag { background: #1e293b; padding: 8px 16px; border-radius: 25px; font-size: 0.85rem; cursor: pointer; color: var(--primary); border: 1px solid #334155; transition: 0.3s; }
.k-tag:hover { background: var(--primary); color: #000; }

/* Cards & Grid */
.container { padding: 20px 5%; }
.section-title { margin-bottom: 20px; font-size: 1.2rem; border-left: 4px solid var(--primary); padding-left: 10px; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.card { background: var(--card); border-radius: 18px; padding: 22px; border: 1px solid #1e293b; transition: transform 0.2s; }
.card:hover { transform: translateY(-5px); }
.addr-box { background: rgba(0, 242, 255, 0.08); border-left: 4px solid var(--primary); padding: 12px; margin: 12px 0; font-size: 0.9rem; border-radius: 4px; }

/* Actions */
.card-actions { display: flex; gap: 10px; margin-top: 20px; }
.call-btn { flex: 2; background: var(--green); color: white; text-align: center; padding: 12px; border-radius: 10px; text-decoration: none; font-weight: bold; font-size: 1rem; }
.share-btn { flex: 1; background: #25d366; color: white; border: none; border-radius: 10px; cursor: pointer; font-size: 1.3rem; }

/* Profile & Legal */
.profile-top-bar { display: flex; align-items: center; gap: 20px; padding: 15px 5%; background: #111827; border-bottom: 1px solid var(--primary); margin-bottom: 15px; }
.nav-back { background: #1e293b; color: white; border: 1px solid var(--primary); padding: 8px 15px; border-radius: 8px; cursor: pointer; }
.legal-box { background: #111827; padding: 25px; border-radius: 15px; border: 1px solid #334155; }

/* Forms */
.slide-panel { position: fixed; right: -100%; top:0; width: 100%; max-width: 350px; height: 100%; background: #0f172a; transition: 0.4s; z-index: 1000; padding: 25px; border-left: 3px solid var(--primary); overflow-y: auto; }
.slide-panel.active { right: 0; }
.mode-selector { display: flex; background: #000; padding: 4px; border-radius: 10px; margin-bottom: 20px; }
.mode-selector button { flex: 1; background: none; border: none; color: white; padding: 10px; cursor: pointer; font-weight: bold; }
.mode-selector button.active { background: var(--primary); color: #000; border-radius: 8px; }

input, textarea { width: 100%; margin-top: 12px; padding: 12px; border-radius: 10px; background: #050a14; border: 1px solid #334155; color: white; font-size: 1rem; }
.submit-btn { width: 100%; padding: 14px; background: var(--primary); border: none; border-radius: 10px; font-weight: bold; margin-top: 20px; cursor: pointer; font-size: 1.1rem; }

/* Floating Action Button */
.fab-btn { position: fixed; bottom: 30px; right: 25px; background: var(--primary); padding: 16px 28px; border-radius: 50px; font-weight: bold; border: none; box-shadow: 0 8px 20px rgba(0,0,0,0.6); z-index: 99; cursor: pointer; color: #000; font-size: 1rem; }

.main-footer { padding: 40px 5%; text-align: center; border-top: 1px solid #1e293b; }
.footer-links { color: var(--primary); cursor: pointer; margin-bottom: 15px; display: inline-block; }

.view-section { display: none; }
.view-section.active { display: block; }

@media (max-width: 600px) {
    .main-header { padding: 10px 4%; }
    .fab-btn { padding: 14px 24px; bottom: 20px; }
}
