/* ============================================
   Dr.FinJan - د.فنجان - Main Stylesheet
   Brand: Black + Gold (#C9A84C) + White
   Direction: RTL Arabic
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Cairo:wght@300;400;600;700;900&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07832;
  --black: #0A0A0A;
  --black-soft: #111111;
  --black-card: #1A1A1A;
  --black-border: #2A2A2A;
  --white: #FFFFFF;
  --white-soft: #F5F5F0;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --success: #27AE60;
  --danger: #E74C3C;
  --warning: #F39C12;
  --info: #3498DB;
  --font-main: 'Tajawal', 'Cairo', sans-serif;
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --shadow-black: 0 4px 20px rgba(0,0,0,0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); }

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black-soft); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* ====== LAYOUT ====== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ====== SECTION HEADERS ====== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .label {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.section-header h2 { color: var(--white); margin-bottom: 0.8rem; }
.section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1rem auto;
  border-radius: 2px;
}

/* ====== NAVBAR ====== */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 1.5rem; font-weight: 900; color: var(--gold);
}
.nav-logo .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 15px rgba(201,168,76,0.4);
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  color: var(--white-soft);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold) !important; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block; width: 25px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 12px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 700;
  transition: var(--transition); border: none; outline: none;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--white-soft); transform: translateY(-2px); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-block { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ====== CARDS ====== */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-gold); }
.card-body { padding: 1.5rem; }
.card-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--black-border); }
.card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--black-border); }

/* ====== PRODUCT CARD ====== */
.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.product-card .img-wrap {
  height: 220px; overflow: hidden; position: relative;
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.08); }
.product-card .badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--black);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
}
.product-card .info { padding: 1.25rem; }
.product-card .info h4 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--white); }
.product-card .info .desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 1rem; line-height: 1.5; }
.product-card .price { font-size: 1.2rem; font-weight: 800; color: var(--gold); }
.product-card .price span { font-size: 0.8rem; color: var(--gray); font-weight: 400; }
.product-card .stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.5rem; }

/* ====== HERO ====== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero_bg.jpg');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, rgba(10,10,10,0.85) 100%);
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.hero h1 span { color: var(--gold); }
.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gray-light); max-width: 600px; margin-bottom: 2rem;
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.hero-stat .lbl { font-size: 0.8rem; color: var(--gray); margin-top: 0.25rem; }

/* ====== FEATURES GRID ====== */
.feature-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-card .icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1.25rem;
}
.feature-card h4 { color: var(--white); margin-bottom: 0.6rem; font-size: 1rem; }
.feature-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }

/* ====== FORM ELEMENTS ====== */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; margin-bottom: 0.5rem;
  color: var(--gray-light); font-size: 0.9rem; font-weight: 600;
}
.form-control {
  width: 100%; padding: 12px 16px;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  color: var(--white); font-family: var(--font-main);
  font-size: 0.95rem; outline: none;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-control::placeholder { color: var(--gray); }
select.form-control option { background: var(--black-soft); color: var(--white); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ====== BADGES & PILLS ====== */
.badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.badge-gold { background: rgba(201,168,76,0.2); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.badge-green { background: rgba(39,174,96,0.15); color: #27AE60; border: 1px solid rgba(39,174,96,0.3); }
.badge-red { background: rgba(231,76,60,0.15); color: #E74C3C; border: 1px solid rgba(231,76,60,0.3); }
.badge-blue { background: rgba(52,152,219,0.15); color: #3498DB; border: 1px solid rgba(52,152,219,0.3); }
.badge-orange { background: rgba(243,156,18,0.15); color: #F39C12; border: 1px solid rgba(243,156,18,0.3); }

/* ====== TABS ====== */
.tabs-nav {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  background: var(--black-soft);
  padding: 6px; border-radius: 50px; margin-bottom: 2rem;
  border: 1px solid var(--black-border);
}
.tab-btn {
  padding: 10px 22px; border-radius: 50px;
  background: transparent; border: none;
  color: var(--gray); font-size: 0.9rem; font-weight: 600;
  transition: var(--transition); cursor: pointer;
}
.tab-btn.active { background: var(--gold); color: var(--black); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ====== STATS BAR ====== */
.stat-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.stat-bar-item {
  padding: 1.5rem; text-align: center;
  border-left: 1px solid var(--black-border);
}
.stat-bar-item:last-child { border-left: none; }
.stat-bar-item .val { font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.stat-bar-item .key { font-size: 0.8rem; color: var(--gray); margin-top: 0.25rem; }

/* ====== FOOTER ====== */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo {
  font-size: 1.6rem; font-weight: 900; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p { color: var(--gray); font-size: 0.9rem; line-height: 1.8; }
.footer-links h5 { color: var(--white); font-weight: 700; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--gray); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-right: 4px; }
.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  color: var(--gray); font-size: 0.85rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ====== PROGRESS BAR ====== */
.progress-wrap { margin-bottom: 0.75rem; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 0.4rem; font-size: 0.85rem; color: var(--gray-light); }
.progress-track {
  height: 8px; background: var(--black-border); border-radius: 50px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 50px; transition: width 1s ease;
}

/* ====== TOAST ====== */
.toast-container { position: fixed; bottom: 2rem; left: 2rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.75rem; }
.toast {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  box-shadow: var(--shadow-black);
  min-width: 280px; max-width: 360px;
  animation: slideInLeft 0.3s ease;
}
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--danger); }
.toast.warning { border-color: var(--warning); }
.toast-icon { font-size: 1.3rem; flex-shrink: 0; }
.toast-msg { flex: 1; font-size: 0.9rem; color: var(--white); }
.toast-close { background: none; border: none; color: var(--gray); font-size: 1rem; cursor: pointer; }

/* ====== VIP CARD ====== */
.vip-card {
  width: 100%; max-width: 420px; height: 240px;
  border-radius: 20px; padding: 2rem;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2200 40%, #1A1400 100%);
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,168,76,0.2);
  position: relative; overflow: hidden;
  cursor: pointer; transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.vip-card::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.vip-card .tier-badge {
  position: absolute; top: 1.25rem; left: 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black); padding: 4px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 1px;
}
.vip-card .logo { color: var(--gold); font-size: 1.2rem; font-weight: 900; margin-bottom: 1rem; }
.vip-card .points { font-size: 2.2rem; font-weight: 900; color: var(--gold); margin-bottom: 0.25rem; }
.vip-card .points-lbl { font-size: 0.8rem; color: var(--gray); margin-bottom: 1.5rem; }
.vip-card .card-num { font-size: 0.85rem; color: var(--gray-light); letter-spacing: 2px; }
.vip-card .card-name { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-top: 0.3rem; }

/* ====== MAP ====== */
#map { height: 480px; border-radius: var(--radius-lg); border: 1px solid var(--black-border); overflow: hidden; }
.leaflet-container { background: #1a1a1a !important; }
.map-popup { font-family: var(--font-main); direction: rtl; min-width: 200px; }
.map-popup h4 { color: var(--gold); font-weight: 800; margin-bottom: 0.4rem; font-size: 0.95rem; }
.map-popup p { font-size: 0.82rem; color: #333; margin: 2px 0; }

/* ====== STATUS DOTS ====== */
.status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-left: 0.4rem; }
.status-dot.active { background: var(--success); box-shadow: 0 0 6px var(--success); }
.status-dot.inactive { background: var(--gray); }
.status-dot.charging { background: var(--warning); box-shadow: 0 0 6px var(--warning); animation: pulse 1.5s infinite; }
.status-dot.maintenance { background: var(--danger); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ====== SOCIAL POSTS ====== */
.post-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: var(--transition); margin-bottom: 1rem;
}
.post-card:hover { border-color: rgba(201,168,76,0.2); }
.post-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.post-avatar { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold); overflow: hidden; flex-shrink: 0; }
.post-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-author h5 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.1rem; }
.post-author span { font-size: 0.8rem; color: var(--gray); }
.post-body p { color: var(--gray-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1rem; }
.post-body img { width: 100%; border-radius: var(--radius); margin-bottom: 1rem; max-height: 280px; object-fit: cover; }
.post-actions { display: flex; gap: 0.75rem; }
.post-action-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: transparent; border: 1px solid var(--black-border);
  color: var(--gray); padding: 7px 14px; border-radius: 50px;
  font-size: 0.82rem; font-family: var(--font-main); transition: var(--transition);
}
.post-action-btn:hover { border-color: var(--gold); color: var(--gold); }
.post-action-btn.liked { border-color: var(--danger); color: var(--danger); }

/* ====== BATTERY BAR ====== */
.battery {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600;
}
.battery-bar {
  width: 36px; height: 14px; border: 1.5px solid currentColor;
  border-radius: 3px; padding: 2px; position: relative;
}
.battery-bar::after {
  content: ''; position: absolute;
  top: 50%; right: -5px; transform: translateY(-50%);
  width: 3px; height: 6px; background: currentColor;
  border-radius: 0 2px 2px 0;
}
.battery-fill { height: 100%; border-radius: 1px; background: currentColor; }

/* ====== LOADING ====== */
.loader {
  display: flex; align-items: center; justify-content: center;
  padding: 3rem; gap: 0.5rem;
}
.loader-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  animation: bounce 1.2s infinite;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%, 80%, 100% { transform: scale(0.6); } 40% { transform: scale(1.2); } }

/* ====== ANIMATIONS ====== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.animate-in { animation: slideUp 0.5s ease forwards; }
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite linear;
}
.glow { text-shadow: 0 0 30px rgba(201,168,76,0.5); }

/* ====== DIVIDER ====== */
.divider { height: 1px; background: var(--black-border); margin: 2rem 0; }
.divider-gold { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 2rem 0; }

/* ====== PAGE HEADER ====== */
.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, rgba(201,168,76,0.05) 0%, transparent 100%);
  text-align: center; border-bottom: 1px solid var(--black-border);
}
.page-header .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: var(--gray); font-size: 0.85rem; margin-bottom: 1rem; }
.page-header .breadcrumb span { color: var(--gold); }
.page-header h1 { margin-bottom: 0.75rem; }
.page-header p { color: var(--gray); max-width: 600px; margin: 0 auto; }

/* ====== MODAL ====== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); width: 90%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(30px); transition: var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; border-bottom: 1px solid var(--black-border);
}
.modal-header h3 { font-size: 1.1rem; color: var(--white); }
.modal-close { background: none; border: none; color: var(--gray); font-size: 1.5rem; cursor: pointer; transition: var(--transition); }
.modal-close:hover { color: var(--white); }
.modal-body { padding: 1.5rem; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-bar-item { border-left: none; border-bottom: 1px solid var(--black-border); }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; position: fixed; top: 72px; right: 0; left: 0; background: rgba(10,10,10,0.98); flex-direction: column; padding: 1.5rem; gap: 0.5rem; border-bottom: 1px solid var(--black-border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { min-height: 90vh; }
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  #map { height: 350px; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .tabs-nav { justify-content: center; }
  .btn-lg { padding: 13px 28px; }
  .vip-card { height: 210px; padding: 1.5rem; }
}
