/* ═══════════════════════════════════════════════════════════
   LOCATION PAGES — TopShineCleaning
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────── */
.loc-hero {
  background: linear-gradient(150deg, #0b1829 0%, #14233B 50%, #1b3056 100%);
  position: relative; overflow: hidden;
  padding: 72px 0 0;
}
.loc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 90% 20%, rgba(201,154,59,.08) 0%, transparent 60%);
  pointer-events: none;
}
.loc-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: end;
}
@media (max-width: 900px) { .loc-hero-inner { grid-template-columns: 1fr; gap: 36px; } }

/* breadcrumb */
.loc-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.4);
  margin-bottom: 20px; flex-wrap: wrap;
}
.loc-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.loc-breadcrumb a:hover { color: var(--primary); }
.loc-breadcrumb span { color: rgba(255,255,255,.2); }

/* city pill */
.loc-city-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary);
  background: rgba(201,154,59,.1); border: 1px solid rgba(201,154,59,.28);
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px;
}
.loc-city-pill i { font-size: 11px; }

/* hero title */
.loc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600; color: #fff;
  line-height: 1.15; margin: 0 0 18px;
}
.loc-hero-sub {
  font-size: 15.5px; color: rgba(255,255,255,.6);
  line-height: 1.75; max-width: 600px; margin-bottom: 28px;
}

/* trust badges */
.loc-trust-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 40px;
}
.loc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px; padding: 8px 16px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75);
}
.loc-badge i { color: var(--primary); font-size: 12px; }

/* hero image panel */
.loc-hero-img {
  width: 100%; border-radius: 16px 16px 0 0;
  overflow: hidden; align-self: flex-end;
  height: 340px;
}
.loc-hero-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.loc-hero-img-ph {
  width: 100%; height: 340px;
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(201,154,59,.07));
  border-radius: 16px 16px 0 0; display: flex;
  align-items: center; justify-content: center;
  font-size: 80px; color: rgba(201,154,59,.2);
}
@media (max-width: 900px) { .loc-hero-img, .loc-hero-img-ph { display: none; } }

/* wave divider */
.loc-wave {
  display: block; width: 100%;
  line-height: 0; margin-top: -2px;
}
.loc-wave svg { display: block; width: 100%; height: 60px; }

/* ── Intro Section ─────────────────────────────────────────── */
.loc-intro { padding: 72px 0 60px; }
.loc-intro-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: start;
}
@media (max-width: 860px) { .loc-intro-grid { grid-template-columns: 1fr; gap: 36px; } }
.loc-intro-text { font-size: 16px; line-height: 1.9; color: var(--text); }
.loc-intro-text p { margin-bottom: 1.2em; }
.loc-intro-text p:last-child { margin-bottom: 0; }
.loc-intro-aside {}

/* stats card */
.loc-stats-card {
  background: linear-gradient(145deg, #0f1c2e, #14233B);
  border-radius: 16px; padding: 32px 28px; color: #fff;
  margin-bottom: 20px;
}
.loc-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.loc-stat {}
.loc-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 700; color: var(--primary);
  line-height: 1;
}
.loc-stat-label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; font-weight: 500; }
.loc-stats-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 20px 0; }
.loc-stats-cta {
  display: block; background: var(--primary); color: #fff;
  text-align: center; text-decoration: none; padding: 13px 24px;
  border-radius: 8px; font-weight: 700; font-size: 13px; letter-spacing: .5px;
  text-transform: uppercase; transition: background .2s;
}
.loc-stats-cta:hover { background: #B88C2A; }

/* checklist */
.loc-check-list { list-style: none; padding: 0; margin: 0; }
.loc-check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--dark); padding: 9px 0;
  border-bottom: 1px solid var(--border); line-height: 1.5;
}
.loc-check-list li:last-child { border-bottom: none; }
.loc-check-list li i { color: var(--primary); font-size: 13px; flex-shrink: 0; margin-top: 3px; }

/* ── Why Choose Us ─────────────────────────────────────────── */
.loc-why { background: var(--section); padding: 72px 0; }
.loc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; margin-top: 40px;
}
.loc-feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 30px 26px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.loc-feature-card:hover {
  transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.09);
  border-color: var(--primary);
}
.loc-feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(201,154,59,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary); margin-bottom: 18px;
  transition: background .2s, color .2s;
}
.loc-feature-card:hover .loc-feature-icon { background: var(--primary); color: #fff; }
.loc-feature-card h4 { font-size: 15px; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.loc-feature-card p  { font-size: 13.5px; color: var(--text); line-height: 1.65; margin: 0; }

/* ── Section 2 (optional content block) ───────────────────── */
.loc-section2 { padding: 72px 0; }
.loc-section2-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 860px) { .loc-section2-grid { grid-template-columns: 1fr; gap: 36px; } }
.loc-section2-content { font-size: 16px; line-height: 1.88; color: var(--text); }
.loc-section2-content p  { margin-bottom: 1.15em; }
.loc-section2-content ul { padding-left: 0; list-style: none; margin-bottom: 1.2em; }
.loc-section2-content ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 14.5px; line-height: 1.6;
}
.loc-section2-content ul li:last-child { border-bottom: none; }
.loc-section2-content ul li strong { color: var(--secondary); }
.loc-section2-deco {
  background: linear-gradient(145deg, var(--section), #fff);
  border-radius: 20px; padding: 40px 32px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
}
.loc-deco-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: 10px;
  padding: 14px 18px; border: 1px solid var(--border);
  font-size: 13.5px; font-weight: 600; color: var(--secondary);
}
.loc-deco-item i { color: var(--primary); font-size: 18px; flex-shrink: 0; }

/* ── Contact / Quote Form ──────────────────────────────────── */
.loc-form-section {
  background: linear-gradient(160deg, #0b1829, #14233B);
  padding: 80px 0; position: relative; overflow: hidden;
}
.loc-form-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 10% 80%, rgba(201,154,59,.07) 0%, transparent 55%);
  pointer-events: none;
}
.loc-form-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
@media (max-width: 860px) { .loc-form-inner { grid-template-columns: 1fr; gap: 36px; } }

.loc-form-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600; color: #fff; line-height: 1.2;
  margin-bottom: 20px;
}
.loc-form-sub { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 32px; }
.loc-contact-items { display: flex; flex-direction: column; gap: 14px; }
.loc-contact-item {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.7); font-size: 14px;
  text-decoration: none; transition: color .15s;
}
.loc-contact-item:hover { color: var(--primary); }
.loc-contact-item-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(201,154,59,.12); border: 1px solid rgba(201,154,59,.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 15px; flex-shrink: 0;
}

.loc-form-card {
  background: #fff; border-radius: 18px; padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.loc-form-card h3 {
  font-size: 22px; color: var(--secondary); margin-bottom: 6px;
}
.loc-form-divider {
  width: 40px; height: 3px; background: var(--primary);
  border-radius: 2px; margin-bottom: 24px;
}

/* ── Locations All / Listing Page ──────────────────────────── */
.loc-all-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1100px) { .loc-all-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 820px) { .loc-all-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .loc-all-grid { grid-template-columns: 1fr; } }

.loc-all-card {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px 24px;
  text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.loc-all-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20,35,59,.09);
  border-color: rgba(201,154,59,.65);
  background: #fffdf8;
}
.loc-all-card-city {
  font-size: 23px; font-weight: 700; color: var(--secondary);
  font-family: 'Cormorant Garamond', serif;
}
.loc-all-card-prov { font-size: 14px; font-weight: 500; color: var(--text); }

/* City-wise service page cards */
.loc-other-services-grid {
  width: 100%;
  margin: 0 auto;
  column-gap: 22px;
  row-gap: 22px;
}
.loc-other-service-card {
  min-height: 146px;
  align-items: flex-start;
  padding: 22px 20px;
}
.loc-other-service-content {
  min-width: 0;
}
.loc-other-service-title {
  color: var(--secondary);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
}
.loc-other-service-location {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.35;
}
.loc-other-service-location i,
.loc-other-service-arrow {
  color: var(--primary);
}
.loc-other-service-arrow {
  flex: 0 0 auto;
  margin: 56px 0 0 10px;
}
@media (max-width: 520px) {
  .loc-other-service-card { min-height: 126px; }
  .loc-other-service-title { font-size: 21px; }
  .loc-other-service-arrow { margin-top: 43px; }
}
