/* ============================================
   LOCATIONS PAGE — Premium Minimal Glass Fix
   ============================================ */

/* Breadcrumb inline (inside hero) */
.breadcrumb-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
}
.breadcrumb-inline a {
  color: #18C7D8;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-inline a:hover {
  color: #fff;
}
.breadcrumb-inline span {
  color: #C7D2DA;
}

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 480px;
  max-height: 650px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #06141F 0%, #0B2239 100%);
  color: #fff;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 4rem;
}
.page-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
  position: absolute;
  top: 0; left: 0;
}
.page-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(6,20,31,0.82) 0%, rgba(11,34,57,0.72) 100%);
  z-index: 2;
}
.page-hero .container {
  position: relative;
  z-index: 3;
}
.page-hero h1 {
  font-size: 2.7rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.25;
}
.page-hero h1 .highlight { color: #18C7D8; }
.page-hero .hero-desc {
  font-size: 1.1rem;
  color: #DDFBFF;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.page-hero .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.page-hero .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.page-hero .btn-outline:hover {
  border-color: #18C7D8;
  color: #18C7D8;
}

/* Breadcrumb fix */
.breadcrumb-container {
  background: rgba(6,20,31,0.96);
  padding: 0.65rem 0;
  position: relative;
  z-index: 10;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  padding: 0; margin: 0;
  font-size: 0.875rem;
}
.breadcrumb li { color: #C7D2DA; }
.breadcrumb li a { color: #18C7D8; text-decoration: none; }
.breadcrumb li:not(:last-child)::after {
  content: '\276E';
  margin-right: 0.4rem;
  color: #6B7280;
  font-size: 0.75rem;
}

/* Section utilities */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0B2239;
  margin-bottom: 0.75rem;
}
.section-header p {
  color: #6B7280;
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
}
.section-header.on-dark h2 { color: #fff; }
.section-header.on-dark p { color: #C7D2DA; }

.section-bg-light { background: #f4feff; }
.section-bg-white { background: #ffffff; }
.section-padding-lg { padding: 5rem 0; }

/* ============================================
   AREA CARDS — Light clean design
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 1.1rem;
}
.area-card {
  background: #ffffff;
  border: 1px solid rgba(24,199,216,0.18);
  border-radius: 14px;
  padding: 1.4rem 1rem 1.1rem;
  text-align: center;
  text-decoration: none !important;
  color: #06141F;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.area-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 32px rgba(24,199,216,0.18);
  border-color: #18C7D8;
  background: linear-gradient(135deg, #f0feff 0%, #fff 100%);
}
.area-card-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #18C7D8 0%, #0fa8b8 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  margin-bottom: 0.2rem;
}
.area-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0B2239;
  margin: 0;
  line-height: 1.3;
}
.area-card .area-sub {
  font-size: 0.78rem;
  color: #6B7280;
  margin: 0;
}
.area-card .area-link {
  font-size: 0.79rem;
  color: #18C7D8;
  font-weight: 600;
  border: 1px solid rgba(24,199,216,0.5);
  padding: 0.28rem 0.85rem;
  border-radius: 20px;
  transition: all 0.2s;
  display: inline-block;
}
.area-card:hover .area-link {
  background: #18C7D8;
  color: #06141F;
  border-color: #18C7D8;
}

/* ============================================
   SERVICES MINI GRID on locations page
   ============================================ */
.loc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.loc-service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.loc-service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(24,199,216,0.2);
  border-color: rgba(24,199,216,0.35);
}
.loc-service-img {
  height: 185px;
  overflow: hidden;
  flex-shrink: 0;
}
.loc-service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.loc-service-card:hover .loc-service-img img {
  transform: scale(1.07);
}
.loc-service-body {
  padding: 1.2rem 1.1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.loc-service-body h3 {
  font-size: 1.05rem;
  color: #0B2239;
  margin: 0;
  font-weight: 700;
}
.loc-service-body p {
  font-size: 0.88rem;
  color: #6B7280;
  margin: 0;
  flex: 1;
  line-height: 1.55;
}
.loc-service-body .svc-link {
  font-size: 0.85rem;
  color: #18C7D8;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
  text-decoration: none;
}

/* ============================================
   GALLERY GRID on locations page
   ============================================ */
.loc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.2rem;
}
.loc-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 235px;
}
.loc-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.loc-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}
.loc-gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(6,20,31,0.88));
  padding: 2rem 1.2rem 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.loc-gallery-item:hover .loc-gallery-overlay { opacity: 1; }
.loc-gallery-overlay a {
  background: #18C7D8;
  color: #06141F;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 0.5rem 1.3rem;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
}

/* ============================================
   CTA Section
   ============================================ */
.loc-cta {
  background: linear-gradient(135deg, #06141F 0%, #0B2239 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.loc-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(24,199,216,0.08) 2px, transparent 2px);
  background-size: 28px 28px;
}
.loc-cta .container { position: relative; z-index: 2; }
.loc-cta h2 { color: #fff; font-size: 2rem; margin-bottom: 1rem; }
.loc-cta p {
  color: #C7D2DA;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}
.loc-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Btn utilities */
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.stagger-1 { animation-delay: 0.2s; }

/* Steps section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  counter-reset: step;
  max-width: 900px;
  margin: 0 auto;
}
.step-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(24,199,216,0.15);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #18C7D8 0%, #0fa8b8 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #06141F;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}
.step-item h4 { color: #0B2239; font-size: 1.05rem; margin-bottom: 0.4rem; }
.step-item p { color: #6B7280; font-size: 0.9rem; margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .page-hero h1 { font-size: 2.1rem; }
  .page-hero { padding-top: 120px; min-height: 420px; max-height: none; }
}
@media (max-width: 768px) {
  .page-hero { padding-top: 90px; padding-bottom: 3rem; min-height: auto; max-height: none; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero .hero-desc { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .loc-services-grid { grid-template-columns: 1fr; }
  .loc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-gallery-item { height: 175px; }
  .section-header h2 { font-size: 1.65rem; }
  .loc-cta { padding: 4rem 0; }
  .loc-cta h2 { font-size: 1.6rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .breadcrumb-inline { font-size: 0.78rem; }
  body { padding-bottom: 60px; }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .loc-gallery-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.55rem; }
  .page-hero { padding-top: 80px; }
  .area-card { padding: 1rem 0.7rem 0.8rem; }
  .area-card h3 { font-size: 0.88rem; }
  .area-card-icon { width: 36px; height: 36px; font-size: 0.85rem; }
}
