/* ============================================
   PREMIUM SHARED - HVAC LANDING PAGES
   Gravity HVAC - Cards, dropdowns, shared UI
   ============================================ */

:root {
  --g-primary: #DB0545;
  --g-primary-dark: #A01B5B;
  --g-dark: #000000;
  --g-light-bg: #ffffff;
  --g-border: #e0e0e0;
  --g-text: #444444;
  --g-muted: #666666;
  --g-gradient-light: linear-gradient(135deg, #DB0545 0%, #A01B5B 100%);
  --g-gradient-dark: linear-gradient(135deg, #A01B5B 0%, #DB0545 100%);
}

/* City Cards - Service area grid */
.city-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.city-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-decoration: none;
  color: var(--g-dark);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--g-primary);
  background: white;
}

.city-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  color: var(--g-dark);
  transition: color 0.3s;
}

.city-card p {
  font-size: 0.825rem;
  color: var(--g-muted);
  margin: 0;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.city-card .card-arrow {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  color: var(--g-primary);
  transition: transform 0.3s;
  opacity: 0.7;
}

.city-card:hover .card-arrow {
  transform: translateX(5px);
  opacity: 1;
}

@media (max-width: 1200px) {
  .city-card-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
  .city-card-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .city-card-grid { grid-template-columns: repeat(2, 1fr); padding: 0 1rem; }
}
@media (max-width: 480px) {
  .city-card-grid { grid-template-columns: 1fr; }
}

.nav-dropdown.active .nav-dropdown-menu,
.mobile-dropdown.active .mobile-dropdown-menu {
  display: block !important;
  max-height: 1000px !important;
  opacity: 1 !important;
  visibility: visible !important;
  padding: 1rem 0 !important;
}

.nav-dropdown-menu {
  display: none;
  transition: all 0.3s ease;
}
