/* ==========================================
   VA WINE COOLING — LOCATION PAGE STYLES
   ========================================== */

/* LOCATION HERO */
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,26,26,0.85);
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* LOCAL INTRO GRID */
.local-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.local-map-wrap { display: flex; flex-direction: column; gap: 16px; }
.local-map-wrap iframe {
  width: 100%;
  height: 340px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: block;
}
.map-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a1212;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
}
.map-callout > i { color: #e67e22; font-size: 1.2rem; flex-shrink: 0; }
.map-callout strong { display: block; font-size: 0.9rem; }
.map-callout span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* NEARBY SECTION */
.nearby-section { background: #3a3030; padding: 64px 0; }
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.nearby-city {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  color: #e0d0d0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.nearby-city:hover { background: #8B1A1A; color: #fff; border-color: #8B1A1A; }
.nearby-city i { color: #e67e22; font-size: 0.8rem; }

/* FAQ ACCORDION */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid #e8e0d8;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1212;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover { color: #8B1A1A; }
.faq-q[aria-expanded="true"] { color: #8B1A1A; }
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-q i { transition: transform 0.2s; flex-shrink: 0; color: #8B1A1A; }
.faq-a { display: none; padding: 0 24px 18px; }
.faq-a p { color: #555; font-size: 0.92rem; line-height: 1.7; }
.faq-a.open { display: block; }

/* SERVICES HUB PAGE */
.services-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-hub-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-left: 5px solid #c0a0a0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-hub-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); border-color: #8B1A1A; }
.service-hub-card--emergency { border-color: #8B1A1A; }
.shc-icon {
  background: rgba(139,26,26,0.08);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.shc-icon i { color: #8B1A1A; font-size: 1.5rem; }
.shc-body h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #1a1212;
  margin-bottom: 10px;
  line-height: 1.3;
}
.shc-body p { color: #555; font-size: 0.9rem; line-height: 1.65; margin-bottom: 14px; }
.shc-link { color: #8B1A1A; font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; }

/* LOCATIONS HUB */
.locations-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.location-hub-card {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.2s, transform 0.2s;
}
.location-hub-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-3px); }
.location-hub-card i { color: #e67e22; font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.location-hub-card h3 { color: #f0e8e0; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.location-hub-card p { color: #c0a8a8; font-size: 0.82rem; line-height: 1.5; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .local-intro-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: repeat(3, 1fr); }
  .services-hub-grid { grid-template-columns: 1fr; }
  .locations-hub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-hub-grid { grid-template-columns: 1fr; }
}

/* Location hub light cards */
.locations-hub-grid-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.location-light-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e8e0d8;
  transition: border-color 0.2s, transform 0.2s;
}
.location-light-card:hover { border-color: #8B1A1A; transform: translateY(-2px); }
.location-light-card > i { color: #8B1A1A; font-size: 1.1rem; flex-shrink: 0; margin-top: 3px; }
.location-light-card strong { display: block; color: #1a1212; font-size: 0.95rem; margin-bottom: 3px; }
.location-light-card span { color: #777; font-size: 0.8rem; line-height: 1.4; }
@media (max-width: 768px) { .locations-hub-grid-light { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .locations-hub-grid-light { grid-template-columns: 1fr; } }

/* ==========================================
   BLOG SECTION
   ========================================== */
.blog-section {
  background: #1a1212;
  padding: 72px 0;
}
.section-title-blog {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #f0e8e0;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.section-sub-blog {
  text-align: center;
  color: #c0a8a8;
  font-size: 0.95rem;
  margin-bottom: 44px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.blog-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(139,26,26,0.5);
}
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.blog-tag {
  background: #8B1A1A;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.blog-date {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #f0e8e0;
  line-height: 1.4;
  flex-grow: 1;
}
.blog-card p {
  color: #c0a8a8;
  font-size: 0.85rem;
  line-height: 1.6;
}
.blog-read-more {
  color: #e67e22;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.blog-card:hover .blog-read-more { color: #f39c12; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================
   BLOG ARTICLE PAGE
   ========================================== */
.blog-article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 0;
}
.blog-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #1a1212;
  margin: 16px 0 20px;
  line-height: 1.3;
}
.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-lede {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  border-left: 4px solid #8B1A1A;
  padding-left: 18px;
  margin-bottom: 28px;
  font-style: italic;
}
.blog-body p {
  color: #444;
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.blog-article-cta {
  background: #f5f0eb;
  border-radius: 12px;
  padding: 28px;
  margin: 36px 0;
  border-left: 5px solid #8B1A1A;
}
.blog-cta-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-cta-inner > i { color: #8B1A1A; font-size: 1.8rem; flex-shrink: 0; margin-top: 4px; }
.blog-cta-inner > div { flex: 1; min-width: 180px; }
.blog-cta-inner strong { display: block; color: #1a1212; font-size: 0.95rem; margin-bottom: 4px; }
.blog-cta-inner p { color: #555; font-size: 0.87rem; margin: 0; }
.blog-cta-btns { display: flex; gap: 10px; flex-shrink: 0; align-items: center; flex-wrap: wrap; }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid #1a1212;
  border-radius: 6px;
  color: #1a1212;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: #1a1212; color: #fff; }
.blog-tags { display: flex; align-items: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.blog-tags strong { color: #555; font-size: 0.85rem; }

/* SIDEBAR */
.blog-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 80px; }
.sidebar-box {
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 4px solid #8B1A1A;
}
.sidebar-box h4 { color: #1a1212; font-size: 0.9rem; font-weight: 900; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.sidebar-box h4 i { color: #8B1A1A; }
.sidebar-box p { color: #555; font-size: 0.85rem; line-height: 1.6; margin-bottom: 12px; }
.sidebar-link { color: #8B1A1A; font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; }
.sidebar-area-list { list-style: none; padding: 0; margin: 0; }
.sidebar-area-list li { border-bottom: 1px solid #f0e8e0; padding: 6px 0; }
.sidebar-area-list li:last-child { border-bottom: none; }
.sidebar-area-list a { color: #555; font-size: 0.88rem; }
.sidebar-area-list a:hover { color: #8B1A1A; }

/* BLOG INDEX */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.08);
  align-items: center;
  margin-bottom: 8px;
}
.blog-featured-img { min-height: 260px; }
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-index-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  border: 1px solid #e8e0d8;
  transition: transform 0.2s, border-color 0.2s;
}
.blog-index-card:hover { transform: translateY(-3px); border-color: #8B1A1A; }
.blog-index-card h3 { font-family: 'Playfair Display', serif; font-size: 0.97rem; color: #1a1212; line-height: 1.4; flex-grow: 1; }
.blog-index-card p { color: #666; font-size: 0.84rem; line-height: 1.6; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-article-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { display: none; }
  .blog-index-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .blog-index-grid { grid-template-columns: 1fr; }
  .blog-cta-inner { flex-direction: column; }
}
