/* ============================================
   AMERICAN SELF STORAGE - Main Stylesheet
   Modern, mobile-first, Fortune 500 quality
   ============================================ */

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

:root {
  --primary: #1e3a5f;
  --primary-light: #2c5282;
  --primary-dark: #0f2137;
  --accent: #dc2626;
  --accent-hover: #b91c1c;
  --accent-light: #fef2f2;
  --gold: #f59e0b;
  --gold-hover: #d97706;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --success: #059669;
  --info: #0284c7;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.2s ease;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --container: 1280px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  padding: 12px 24px; border-radius: var(--radius-sm); border: none;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; white-space: nowrap; line-height: 1.2;
}
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-light); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-hover); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-ghost { background: transparent; color: var(--gray-600); border: 1px solid var(--gray-300); }
.btn-ghost:hover { background: var(--gray-50); color: var(--gray-800); border-color: var(--gray-400); }
.btn-white { background: var(--white); color: var(--primary-dark); }
.btn-white:hover { background: var(--gray-100); }
.btn-lg { padding: 16px 32px; font-size: 17px; border-radius: var(--radius); }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-xs { padding: 6px 12px; font-size: 13px; border-radius: 4px; }
.btn-phone { background: var(--accent); color: var(--white); }
.btn-phone:hover { background: var(--accent-hover); color: var(--white); }

/* === HEADER === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo-link { flex-shrink: 0; }
.logo { height: 48px; width: auto; }
.nav-list { display: flex; gap: 8px; }
.nav-link {
  font-weight: 500; font-size: 15px; color: var(--gray-700);
  padding: 8px 16px; border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--primary); background: var(--gray-50); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { font-size: 14px; padding: 8px 20px; }
.phone-text { font-weight: 700; }

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative;
  padding: 10px 8px; z-index: 1001;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.mobile-toggle span {
  display: block; width: 100%; height: 3px; background: var(--gray-700);
  border-radius: 2px; transition: all 0.3s; pointer-events: none;
  position: absolute; left: 8px; right: 8px;
}
.mobile-toggle span:nth-child(1) { top: 12px; }
.mobile-toggle span:nth-child(2) { top: 20px; }
.mobile-toggle span:nth-child(3) { top: 28px; }
.mobile-toggle.active span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative; padding: 140px 0 80px; min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -12px;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  z-index: 0;
  opacity: 0; filter: blur(0px);
  animation: heroBgIn 1.4s ease 0.2s forwards, heroBgBlur 1.8s ease 1.6s forwards;
}
@keyframes heroBgIn {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroBgBlur {
  from { filter: blur(0px); }
  to { filter: blur(var(--hero-blur, 0px)); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0;
  animation: heroOverlayIn 1.2s ease 0.5s forwards;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: heroOverlayIn 1.5s ease 0.6s forwards;
}
.hero-shimmer {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.hero-shimmer::after {
  content: "";
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 45%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.08) 55%, transparent 60%);
  animation: heroShimmer 2.2s ease 0.6s forwards;
}
@keyframes heroShimmer {
  0% { left: -60%; }
  100% { left: 160%; }
}
@keyframes heroOverlayIn {
  to { opacity: 1; }
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-content { color: var(--white); }
.hero-title {
  font-family: var(--font-display); font-size: 52px; font-weight: 800;
  line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
  opacity: 0; transform: translateY(24px);
  animation: heroFadeUp 0.7s ease 0.6s forwards;
}
.hero-subtitle {
  font-size: 19px; line-height: 1.7; opacity: 0;
  margin-bottom: 32px; max-width: 520px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.2);
  transform: translateY(20px);
  animation: heroFadeUp 0.7s ease 0.85s forwards;
}
.hero-stats {
  display: flex; gap: 40px; margin-bottom: 36px;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp 0.7s ease 1.05s forwards;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--gold); text-shadow: 0 2px 6px rgba(0,0,0,0.4); }
.stat-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; font-weight: 500; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp 0.6s ease 1.2s forwards;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Search Box */
.hero-search {
  perspective: 1000px;
  opacity: 0; transform: translateY(30px);
  animation: heroFadeUp 0.8s ease 1.0s forwards;
}
.search-box {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-xl);
}
.search-title {
  font-size: 20px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 16px;
}
.search-row {
  display: flex; gap: 10px; margin-bottom: 12px;
}
.search-input-wrap {
  position: relative; flex: 1;
}
.search-input-wrap .search-icon-default,
.search-input-wrap .search-icon-loading {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--gray-400); font-size: 16px;
}
.search-input-wrap .search-icon-loading { color: var(--primary); }
.search-input {
  width: 100%; padding: 14px 16px 14px 44px;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-size: 16px; font-family: var(--font-sans);
  transition: border-color var(--transition);
}
.search-input:focus { outline: none; border-color: var(--primary); }
.search-btn {
  padding: 14px 28px; font-size: 16px; font-weight: 700;
  white-space: nowrap; border-radius: var(--radius);
  flex-shrink: 0;
}
.search-feedback {
  padding: 10px 14px; margin-bottom: 12px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.search-feedback.has-results {
  background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0;
}
.search-feedback.no-results {
  background: #fef2f2; color: #991b1b; border: 1px solid #fecaca;
}
.search-feedback i { font-size: 14px; }
.search-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  padding: 6px 14px; border: 1px solid var(--gray-200);
  border-radius: 20px; font-size: 13px; font-weight: 500;
  background: var(--white); color: var(--gray-600);
  cursor: pointer; transition: all var(--transition); font-family: var(--font-sans);
}
.filter-chip:hover { border-color: var(--primary); color: var(--primary); }
.filter-chip.active {
  background: var(--primary); color: var(--white);
  border-color: var(--primary);
}

/* === SECTION HELPERS === */
.section-header { text-align: center; margin-bottom: 48px; }
.section-title {
  font-family: var(--font-display); font-size: 38px; font-weight: 800;
  color: var(--gray-900); margin-bottom: 12px; letter-spacing: -0.02em;
}
.section-subtitle { font-size: 18px; color: var(--gray-500); max-width: 640px; margin: 0 auto; }

/* === LOCATIONS SECTION === */
.loc-section { padding: 80px 0; background: var(--gray-50); }

/* City Quick Nav */
.loc-quicknav {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 20px;
}
.qnav-pill {
  padding: 7px 18px; border: 2px solid var(--gray-200); border-radius: 24px;
  font-size: 13px; font-weight: 600; background: var(--white); color: var(--gray-600);
  cursor: pointer; transition: all var(--transition); font-family: var(--font-sans);
}
.qnav-pill:hover { border-color: var(--primary); color: var(--primary); }
.qnav-pill.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Feature Toolbar */
.loc-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 28px;
}
.loc-toolbar-left { display: flex; flex-wrap: wrap; gap: 8px; }
.ft-chip {
  padding: 6px 14px; border: 1px solid var(--gray-200); border-radius: 6px;
  font-size: 13px; font-weight: 500; background: var(--white); color: var(--gray-500);
  cursor: pointer; transition: all var(--transition); font-family: var(--font-sans);
  display: inline-flex; align-items: center; gap: 5px;
}
.ft-chip i { font-size: 11px; }
.ft-chip:hover { border-color: var(--primary); color: var(--primary); }
.ft-chip.active { background: var(--primary-dark); color: var(--white); border-color: var(--primary-dark); }
.loc-count { font-size: 13px; color: var(--gray-400); font-weight: 500; }

/* Location Grid */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.loc-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200);
  display: flex; flex-direction: column; transition: all 0.3s ease;
  overflow: hidden;
}
.loc-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); transform: translateY(-4px); }
.loc-card.hidden { display: none; }
.loc-card.selected { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(30,58,95,0.15), var(--shadow-md); }

/* Location Card Image */
.loc-card-img {
  position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.loc-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.loc-card:hover .loc-card-img img { transform: scale(1.08); }
.loc-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.loc-card-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: rgba(255,255,255,0.3);
}

.loc-card-body { padding: 18px 18px 12px; flex: 1; }
.loc-card-name {
  font-size: 15px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 4px; line-height: 1.3;
}
.loc-card-addr { font-size: 12px; color: var(--gray-500); margin-bottom: 10px; line-height: 1.4; }
.loc-card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.lc-tag {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 8px; border-radius: 3px; font-size: 10px; font-weight: 600;
  background: var(--gray-100); color: var(--gray-600); text-transform: uppercase;
  letter-spacing: 0.03em;
}
.lc-tag i { font-size: 8px; }
.loc-card-price { font-size: 13px; color: var(--gray-500); }
.loc-card-price strong, .price-num { color: var(--success); font-size: 15px; font-weight: 700; }
.loc-card-seo { font-size: 11px; color: var(--gray-400); line-height: 1.4; margin-top: 6px; }

.loc-card-foot {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 14px;
  border-top: 1px solid var(--gray-100); background: var(--gray-50);
}
.loc-view-btn { flex: 1 1 auto; justify-content: center; font-size: 12px; padding: 8px 10px; min-width: 0; }
.loc-call-btn { font-size: 12px; padding: 8px 10px; min-width: 0; }
.loc-details-btn { font-size: 12px; padding: 8px 10px; min-width: 0; }

/* Detail Panel */
.loc-detail-panel {
  margin-top: 24px; background: var(--white); border-radius: var(--radius-lg);
  border: 2px solid var(--primary); box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: panelSlide 0.3s ease;
}
@keyframes panelSlide {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.ldp-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px; padding: 24px 28px; background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}
.ldp-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.ldp-address { font-size: 14px; opacity: 0.85; margin-bottom: 8px; }
.ldp-meta { display: flex; gap: 20px; font-size: 13px; opacity: 0.75; }
.ldp-meta span { display: flex; align-items: center; gap: 6px; }
.ldp-actions { display: flex; gap: 8px; align-items: flex-start; flex-shrink: 0; flex-wrap: wrap; }
.ldp-actions .btn-accent { font-size: 15px; padding: 10px 20px; }
.ldp-actions .btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.25); }
.ldp-actions .btn-ghost:hover { background: rgba(255,255,255,0.2); }
.ldp-close { }

.ldp-units { padding: 24px 28px; }

/* Unit tables inside detail panel */
.ldp-cat { margin-bottom: 20px; }
.ldp-cat:last-child { margin-bottom: 0; }
.ldp-cat-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--primary-dark);
  padding: 8px 0; border-bottom: 2px solid var(--primary); margin-bottom: 2px;
}
.ldp-cat-title i { font-size: 13px; color: var(--primary); }
.ldp-table { width: 100%; }
.ldp-row {
  display: grid; grid-template-columns: 100px 60px 1fr 100px 80px;
  gap: 10px; align-items: center; padding: 10px 8px;
  border-bottom: 1px solid var(--gray-100); font-size: 14px;
}
.ldp-row:last-child { border-bottom: none; }
.ldp-hdr {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gray-400);
  background: var(--gray-50); border-radius: 4px; border-bottom: none;
}
.ldp-size { font-size: 15px; font-weight: 700; color: var(--gray-900); }
.ldp-ht { color: var(--gray-500); font-size: 13px; }
.ldp-tags { display: flex; flex-wrap: wrap; gap: 3px; }
.ldp-tag {
  display: inline-flex; align-items: center; gap: 2px;
  padding: 1px 7px; border-radius: 3px; font-size: 10px; font-weight: 600;
}
.ldp-tag i { font-size: 8px; }
.tag-climate { background: #eff6ff; color: #1d4ed8; }
.tag-driveup { background: #f0fdf4; color: #15803d; }
.tag-indoor { background: #faf5ff; color: #7e22ce; }
.tag-parking { background: #fff7ed; color: #c2410c; }
.tag-enclosed { background: #f0f9ff; color: #0369a1; }
.tag-ada { background: #fefce8; color: #a16207; }
.ldp-price { font-weight: 700; font-size: 15px; color: var(--gray-900); }
.ldp-price-old { text-decoration: line-through; color: var(--gray-400); font-size: 12px; font-weight: 400; margin-right: 3px; }
.ldp-price-promo { color: var(--accent); }
.ldp-action { text-align: right; }
.ldp-disclaimer {
  font-size: 12px; color: var(--gray-400); text-align: center;
  padding: 12px 8px 4px; border-top: 1px solid var(--gray-100);
  margin-top: 8px;
}

.no-results {
  text-align: center; padding: 48px 20px; color: var(--gray-400);
}
.no-results i { font-size: 40px; margin-bottom: 12px; display: block; }
.no-results p { font-size: 16px; margin-bottom: 16px; }

/* === SIZE GUIDE === */
.size-guide { padding: 80px 0; background: var(--white); }
.sizes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 40px;
}
.size-card {
  background: var(--gray-50); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.size-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateY(-3px); }
.size-visual {
  padding: 28px 24px 20px; text-align: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}
.size-icon { font-size: 32px; margin-bottom: 8px; opacity: 0.9; }
.size-name { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.size-sqft { font-size: 14px; opacity: 0.8; }
.size-info { padding: 20px 24px 24px; }
.size-compare {
  font-size: 14px; font-weight: 600; color: var(--primary);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em;
}
.size-fits { list-style: none; }
.size-fits li {
  padding: 5px 0; font-size: 14px; color: var(--gray-600);
  display: flex; align-items: center; gap: 8px;
}
.size-fits li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 10px; color: var(--success);
}
.size-cta { text-align: center; padding-top: 8px; }
.size-cta p { font-size: 18px; color: var(--gray-600); margin-bottom: 16px; }

/* === FEATURES === */
.features-section { padding: 80px 0; background: var(--gray-50); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--white); padding: 32px 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  text-align: center; transition: all 0.3s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white); font-size: 24px; border-radius: 14px;
}
.feature-card h3, .feature-name { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* === SPECIALS === */
.specials-section { padding: 60px 0; background: var(--white); }
.specials-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 48px 56px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  border-radius: var(--radius-xl); color: var(--white);
}
.specials-content h2 { font-family: var(--font-display); font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.specials-content p { font-size: 17px; opacity: 0.9; max-width: 520px; }

/* === FAQ === */
.faq-section { padding: 80px 0; background: var(--white); }
.faq-grid { max-width: 800px; margin: 0 auto 40px; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-item.active { border-color: var(--primary); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 24px; border: none; background: var(--white);
  font-size: 16px; font-weight: 600; color: var(--gray-900);
  cursor: pointer; text-align: left; font-family: var(--font-sans);
}
.faq-question:hover { background: var(--gray-50); }
.faq-icon { font-size: 12px; color: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.faq-answer a { color: var(--accent); font-weight: 600; }
.faq-cta { text-align: center; }
.faq-cta p { font-size: 18px; color: var(--gray-600); margin-bottom: 16px; }

/* === SEO CONTENT === */
.seo-content-section { padding: 64px 0; background: var(--white); border-top: 1px solid var(--gray-200); }
.seo-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.seo-col p { font-size: 15px; line-height: 1.8; color: var(--gray-600); margin-bottom: 16px; }
.seo-col p:last-child { margin-bottom: 0; }
.seo-col a { color: var(--primary); font-weight: 500; }
.seo-col a:hover { text-decoration: underline; }
@media (max-width: 768px) { .seo-content-grid { grid-template-columns: 1fr; } }

/* === FOOTER === */
.site-footer { padding: 60px 0 0; background: var(--gray-900); color: var(--gray-400); }
.footer-grid {
  display: grid; grid-template-columns: 280px 1fr 160px 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 44px; width: auto; margin-bottom: 16px; filter: brightness(10); }
.footer-tagline { font-size: 14px; margin-bottom: 16px; color: var(--gray-400); }
.footer-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 18px; font-weight: 700;
}
.footer-phone:hover { color: var(--gold-hover); }
.footer-locations h3, .footer-links h3, .footer-seo h3 {
  font-size: 15px; font-weight: 700; color: var(--white);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-loc-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.footer-loc-list li a {
  display: block; font-size: 13px; color: var(--gray-400);
  padding: 4px 0; transition: color var(--transition);
}
.footer-loc-list li a:hover { color: var(--white); }
.footer-loc-list li a strong, .footer-loc-name { display: block; font-size: 13px; color: var(--gray-300); font-weight: 700; }
.footer-loc-list li a span { font-size: 11px; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { font-size: 14px; color: var(--gray-400); }
.footer-links ul li a:hover { color: var(--white); }
.footer-heading-sm { font-size: 12px; margin-top: 16px; margin-bottom: 8px; }
.footer-city-links { font-size: 13px; color: var(--gray-400); line-height: 1.8; }
.footer-city-links a { color: var(--gray-400); }
.footer-city-links a:hover { color: var(--white); }
.footer-pipe { color: var(--gray-600); margin: 0 2px; }
.footer-seo p { font-size: 13px; line-height: 1.7; }
.footer-keywords {
  margin-top: 16px; font-size: 11px; color: var(--gray-600);
  line-height: 1.8;
}
.footer-bottom {
  text-align: center; padding: 20px 0; font-size: 13px; color: var(--gray-600);
}
.footer-credit {
  margin-top: 6px; font-size: 11px; color: var(--gray-600);
}
.footer-credit a {
  color: var(--gray-500); text-decoration: none;
  border-bottom: 1px dotted var(--gray-600);
}
.footer-credit a:hover { color: var(--gold); border-color: var(--gold); }

/* === MOBILE STICKY CTA === */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999; padding: 12px 16px;
  background: var(--white); border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}
.mobile-call-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px; background: var(--accent); color: var(--white);
  border-radius: var(--radius); font-size: 17px; font-weight: 700;
  text-decoration: none;
}
.mobile-call-btn:hover { background: var(--accent-hover); color: var(--white); }

/* === POPUP MODAL === */
.popup-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.popup-overlay[hidden] { display: none; }
.popup-modal {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 480px; width: 100%; padding: 40px; text-align: center;
  box-shadow: var(--shadow-xl); position: relative;
  animation: popupIn 0.3s ease;
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-close {
  position: absolute; top: 8px; right: 8px; z-index: 10;
  background: var(--gray-100); border: none; font-size: 22px; color: var(--gray-500);
  cursor: pointer; line-height: 1;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.popup-close:hover { background: var(--gray-200); color: var(--gray-800); }
.popup-image { width: 100%; border-radius: var(--radius); margin-bottom: 20px; }
.popup-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 12px; color: var(--gray-900); }
.popup-body { font-size: 16px; color: var(--gray-600); margin-bottom: 24px; line-height: 1.7; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .loc-grid { grid-template-columns: repeat(3, 1fr); }
  .sizes-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .specials-banner { flex-direction: column; text-align: center; padding: 36px 32px; }
  .ldp-header { flex-direction: column; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: block; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg); padding: 12px 0; z-index: 1000;
  }
  .main-nav.open .nav-list { flex-direction: column; gap: 0; }
  .main-nav.open .nav-link {
    display: block; padding: 14px 24px; font-size: 16px;
    border-bottom: 1px solid var(--gray-100);
  }
  .main-nav.open .nav-link:last-child { border-bottom: none; }
  .mobile-toggle { display: flex; }
  .phone-text { display: none; }
  .header-phone { padding: 8px 12px; }

  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 28px; }
  .search-row { flex-direction: column; }
  .search-btn { width: 100%; justify-content: center; padding: 14px; }

  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 16px; }
  .loc-section { padding: 48px 0; }
  .size-guide { padding: 48px 0; }
  .features-section { padding: 48px 0; }
  .faq-section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }

  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-quicknav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .qnav-pill { flex-shrink: 0; }
  .loc-toolbar { flex-direction: column; align-items: flex-start; }

  .ldp-row { grid-template-columns: 1fr 1fr; gap: 4px; padding: 10px 8px; }
  .ldp-hdr { display: none; }
  .ldp-size { grid-column: 1; }
  .ldp-price, .ldp-action { text-align: right; }
  .ldp-ht { grid-column: 1; }
  .ldp-action { grid-column: 2; }
  .ldp-tags { grid-column: 1 / -1; }
  .ldp-units { padding: 16px; }
  .ldp-header { padding: 20px; }

  .sizes-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .size-card { border-radius: 10px; }
  .size-visual { padding: 16px 12px 12px; }
  .size-name { font-size: 22px; }
  .size-info { padding: 12px 14px 16px; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 20px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-loc-list { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 40px 0 0; }

  .mobile-cta { display: block; }
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 30px; }
  .hero { padding: 110px 0 40px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 12px 18px; font-size: 15px; flex: 1; justify-content: center; min-width: 0; }
  .search-box { padding: 20px; }
  .loc-grid { grid-template-columns: 1fr; gap: 12px; }
  .sizes-grid { grid-template-columns: 1fr; }
  .loc-card-foot { flex-direction: row; flex-wrap: wrap; }
  .loc-card-foot .btn { flex: 1 1 auto; justify-content: center; text-align: center; font-size: 11px; padding: 7px 8px; }
  .ldp-header { padding: 16px; }
  .ldp-units { padding: 12px; }
  .ldp-actions { flex-direction: column; width: 100%; }
  .ldp-actions .btn { justify-content: center; }
  .specials-banner { padding: 28px 20px; }
  .specials-content h2 { font-size: 24px; }
}

/* === ANIMATION === */
@media (prefers-reduced-motion: no-preference) {
  .location-card { animation: fadeUp 0.4s ease both; }
  .location-card:nth-child(2) { animation-delay: 0.05s; }
  .location-card:nth-child(3) { animation-delay: 0.1s; }
  .location-card:nth-child(4) { animation-delay: 0.15s; }
  .location-card:nth-child(5) { animation-delay: 0.2s; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
