/* ===== HEADER / NAVBAR ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  position: relative;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}
.site-logo:hover .logo-icon { transform: scale(1.1); }
.logo-icon svg { width: 28px; height: 28px; color: white; }
.logo-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: bounce-soft 3s ease-in-out infinite;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--color-foreground); }
.logo-text .tagline { font-size: 0.625rem; font-weight: 500; color: var(--color-muted-foreground); letter-spacing: 0.1em; }

.main-nav { display: none; }
@media (min-width: 1024px) { .main-nav { display: flex; align-items: center; gap: 0.25rem; } }
.main-nav a, .main-nav button {
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--color-foreground);
  border-radius: var(--radius-full);
  transition: all 0.2s;
}
.main-nav a:hover, .main-nav button:hover, .main-nav a.active {
  background: rgba(79, 195, 247, 0.1);
  color: var(--color-primary);
}

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.25rem; }
.nav-dropdown-toggle svg { width: 16px; height: 16px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu ul {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--color-border);
  padding: 0.5rem;
}
.nav-dropdown-menu a { display: block; padding: 0.625rem 1rem; font-size: 0.875rem; border-radius: var(--radius-md); }

.header-actions { display: none; }
@media (min-width: 1024px) { .header-actions { display: flex; align-items: center; gap: 0.75rem; } }
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  color: var(--color-primary);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background 0.2s;
}
.header-phone:hover { background: rgba(79, 195, 247, 0.1); }
.header-phone svg { width: 16px; height: 16px; }

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.mobile-menu-toggle:hover { background: rgba(79, 195, 247, 0.1); }
.mobile-menu-toggle svg { width: 24px; height: 24px; }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 1rem;
  right: 1rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  padding: 1rem;
  animation: slide-up 0.3s ease;
}
.mobile-menu.active { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu a { display: block; padding: 0.75rem 1rem; font-weight: 500; border-radius: var(--radius-md); transition: background 0.2s; }
.mobile-menu a:hover { background: rgba(79, 195, 247, 0.1); }
.mobile-menu-services { padding: 0.5rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); margin: 0.5rem 0; }
.mobile-menu-services-title { font-size: 0.75rem; font-weight: 600; color: var(--color-muted-foreground); text-transform: uppercase; letter-spacing: 0.05em; padding: 0 1rem; margin-bottom: 0.5rem; }
.mobile-menu-services a { font-size: 0.875rem; }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--color-border); margin-top: 0.5rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--color-foreground); color: white; }
.footer-main { padding: 4rem 0; }
.footer-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand p { color: rgba(255, 255, 255, 0.7); margin: 1.5rem 0; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--color-primary); }
.footer-social svg { width: 20px; height: 20px; }
.footer-heading { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer-links a { display: block; color: rgba(255, 255, 255, 0.7); padding: 0.375rem 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--color-primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact-item svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; margin-top: 0.25rem; }
.footer-contact-item span { color: rgba(255, 255, 255, 0.7); }
.footer-hours { margin-top: 1.5rem; padding: 1rem; background: rgba(255, 255, 255, 0.05); border-radius: var(--radius-md); }
.footer-hours p { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.footer-hours span { font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-bottom p, .footer-bottom a { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }
.footer-bottom a:hover { color: white; }
.footer-legal { display: flex; gap: 1.5rem; }
