/* ===== SHARED NAV STYLES ===== */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(22,33,62,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(212,175,55,0.2); padding: 0 20px; }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(212,175,55,0.4); }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name { color: var(--gold-color); font-weight: 700; font-size: 1rem; line-height: 1.1; }
.nav-brand-tagline { color: #888; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link-item { color: #ccc; text-decoration: none; padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; transition: all 0.3s; white-space: nowrap; }
.nav-link-item:hover { color: var(--gold-color); background: rgba(212,175,55,0.1); }
.nav-link-item.active { color: var(--gold-color); }
.nav-link-item.cta { background: linear-gradient(135deg, var(--gold-color) 0%, #b8962e 100%); color: #1a1a2e; font-weight: 700; }
.nav-link-item.cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(212,175,55,0.3); }
.nav-phone { color: #4ade80; font-weight: 700; font-size: 1rem; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.nav-phone:hover { color: #6ee7a0; }
.menu-btn { background: transparent; border: none; padding: 8px; cursor: pointer; display: flex; flex-direction: column; gap: 5px; }
.menu-btn span { display: block; width: 24px; height: 3px; background: var(--gold-color); border-radius: 2px; transition: all 0.3s; }
.menu-btn:hover span { background: #f5d67b; }
@media (max-width: 991px) { .nav-links { display: none; } }
@media (max-width: 576px) { .nav-brand-name { font-size: 0.9rem; } .nav-phone .phone-text { display: none; } }

/* Offcanvas */
.offcanvas { background: var(--card-bg) !important; border-right: 1px solid rgba(255,255,255,0.1) !important; }
.offcanvas-header { border-bottom: 1px solid rgba(255,255,255,0.1); }
.offcanvas-title { color: var(--gold-color); font-weight: 700; }
.nav-menu-item { display: flex; align-items: center; gap: 12px; padding: 16px 20px; color: #fff; text-decoration: none; border-radius: 12px; margin: 8px 0; transition: all 0.3s; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
.nav-menu-item:hover { background: rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.3); color: var(--gold-color); transform: translateX(5px); }
.nav-menu-item.active-menu { border-color: rgba(212,175,55,0.3); background: rgba(212,175,55,0.1); }
.nav-menu-item span.emoji { font-size: 1.5rem; }
.nav-menu-item .menu-text h6 { margin: 0; font-weight: 600; font-size: 1rem; }
.nav-menu-item .menu-text p { margin: 0; font-size: 0.8rem; color: #888; }

/* Shared footer */
.shared-footer { padding: 30px 20px; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); }
.shared-footer a { color: var(--gold-color); text-decoration: none; }
.shared-footer a:hover { text-decoration: underline; }
