/* ═══════════════════════════════════════════════
   PROPERTY FOR EQUITY — Header & Footer v1.0
   ═══════════════════════════════════════════════ */

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--t-base), box-shadow var(--t-base);
}

.site-header.scrolled {
  background: rgba(13,27,42,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--s7);
  max-width: 1320px;
  margin: 0 auto;
}

/* ── Logo ── */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.logo-icon svg path { fill: currentColor; }

.logo-text span {
  color: var(--gold);
}

/* ── Navigation ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--s6);
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  transition: color var(--t-fast);
  padding: var(--s2) 0;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.nav-dropdown > .nav-link::after {
  content: '';
  display: none;
}

.dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--t-fast);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: var(--s3) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t-base);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: var(--s3) var(--s5);
  font-size: var(--text-sm);
  color: var(--text);
  transition: background var(--t-fast), color var(--t-fast);
}

.dropdown-menu a:hover {
  background: var(--soft);
  color: var(--navy);
}

.dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: var(--s2) var(--s5);
}

/* Header CTA — HIDDEN */
.header-cta {
  display: none;
}

.header-phone {
  display: none;
}

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  position: absolute;
  left: 0;
  transition: all var(--t-base);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav-toggle.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  bottom: 9px;
  transform: rotate(-45deg);
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  padding: var(--s7);
  overflow-y: auto;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  padding: var(--s4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav .mobile-nav-cta {
  display: none;
}

.mobile-nav .mobile-nav-cta .btn {
  display: none;
}

/* ── Floating Contacts — HIDDEN ── */
.floating-contacts {
  display: none;
}

.float-btn {
  display: none;
}

.float-whatsapp { display: none; }
.float-call { display: none; }
.float-text { display: none; }

/* ── Mobile Sticky Bar — HIDDEN ── */
.mobile-cta-bar {
  display: none !important;
}

.mobile-cta-bar .btn {
  display: none !important;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: var(--s10) 0 var(--s7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: var(--s7);
  margin-bottom: var(--s9);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .site-logo {
  margin-bottom: var(--s5);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.5);
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s5);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: var(--text-sm);
  padding: var(--s2) 0;
  transition: color var(--t-fast);
}
.footer-col a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  padding: var(--s2) 0;
  font-size: var(--text-sm);
}

.footer-contact-item .contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--s6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: var(--s5);
}

.footer-legal a {
  color: rgba(255,255,255,0.4);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav { display: block; }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s6);
  }
  .site-footer { padding-bottom: 0; }
}

@media (max-width: 640px) {
  .header-inner { padding: 0 var(--s4); height: 64px; }
  .mobile-nav { top: 64px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--s4); text-align: center; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   ANCHOR CHIPS BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.anchor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: var(--s6) var(--s4);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.anchor-chips a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--navy);
  background: var(--white);
  text-decoration: none;
  transition: all var(--t-fast);
}

.anchor-chips a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Responsive nav adjustments */
@media (max-width: 1200px) {
  .main-nav {
    gap: var(--s4);
  }

  .nav-link {
    font-size: 0.82rem;
  }
}

/* ── Footer polish (v15) ── */
.footer-brand .footer-operator {
  margin-top: var(--s4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  line-height: var(--lh-relaxed);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--s4);
}
.footer-brand .footer-operator strong {
  color: var(--gold);
  font-weight: var(--fw-semibold);
}
.footer-col .btn-outline-light {
  display: inline-flex;
  padding: var(--s2) var(--s4);
  font-size: var(--text-xs);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-full);
  transition: all var(--t-fast);
}
.footer-col .btn-outline-light:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
