/* ═══════════════════════════════════════════════
   PLANT LOCATIONS — plantlocation.css
   Brand: SRE Groups | Teal #1a7a7a + Gold #ffcf23
   Font: Poppins | Depends on: styles.css
════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   PAGE-LEVEL VARIABLES
───────────────────────────────────────────────*/
:root {
  --pl-rmc:         #1a7a7a;
  --pl-rmc-light:   #e8f5f5;
  --pl-aac:         #145f5f;
  --pl-aac-light:   #d4f0f0;
  --pl-agg:         #b8860b;
  --pl-agg-light:   #fef9e7;
  --pl-soon:        #6b7280;
  --pl-soon-light:  #f3f4f6;
  --pl-card-rad:    14px;
  --pl-shadow:      0 4px 24px rgba(26, 122, 122, 0.10);
  --pl-shadow-hov:  0 14px 44px rgba(26, 122, 122, 0.18);
}


/* ─────────────────────────────────────────────
   LOADER
───────────────────────────────────────────────*/
.sre-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.sre-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.sre-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sre-loader__logo {
  height: 52px;
  width: auto;
}

.sre-loader__bar {
  width: 160px;
  height: 3px;
  background: #e8f5f5;
  border-radius: 99px;
  overflow: hidden;
}

.sre-loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--color-accent, #ffcf23);
  border-radius: 99px;
  animation: loader-slide 1.4s ease-in-out infinite;
}

@keyframes loader-slide {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(160%); }
  100% { transform: translateX(400%); }
}


/* ─────────────────────────────────────────────
   PAGE HERO
───────────────────────────────────────────────*/
.pl-page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background-image: url('../images/home-hero.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.pl-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 40, 40, 0.92) 0%,
    rgba(26, 122, 122, 0.72) 100%
  );
  z-index: 0;
}

/* Decorative circle accent */
.pl-page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 64px solid rgba(255, 207, 35, 0.07);
  z-index: 1;
  pointer-events: none;
}

.pl-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 110px 24px 64px;
}

/* Breadcrumb */
.pl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.60);
}

.pl-breadcrumb a {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: color 0.2s;
}

.pl-breadcrumb a:hover {
  color: #fff;
}

.pl-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
}

.pl-breadcrumb__current {
  color: rgba(255, 255, 255, 0.90);
}

/* Hero Title */
.pl-page-hero__title {
  font-family: var(--font-family, 'Poppins', sans-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: var(--fw-extrabold, 800);
  color: #fff;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.pl-hero-highlight {
  color: var(--color-accent, #ffcf23);
}

.pl-page-hero__sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  line-height: 1.75;
  margin: 0;
}


/* ─────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────────*/
.pl-stats-strip {
  background: #fff;
  border-bottom: 1px solid var(--color-border, #d4e8e8);
  box-shadow: 0 4px 20px rgba(26, 122, 122, 0.07);
  position: relative;
  z-index: 10;
}

.pl-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.pl-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--color-border, #d4e8e8);
  transition: background 0.25s ease;
}

.pl-stat:last-child {
  border-right: none;
}

.pl-stat:hover {
  background: var(--color-primary-light, #e8f5f5);
}

.pl-stat__icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 4px;
}

.pl-stat__num {
  font-family: var(--font-family, 'Poppins', sans-serif);
  font-size: 2.6rem;
  font-weight: var(--fw-extrabold, 800);
  color: var(--color-primary, #1a7a7a);
  line-height: 1;
}

.pl-stat__label {
  font-size: 0.72rem;
  font-weight: var(--fw-semibold, 600);
  color: var(--color-text-muted, #6b8f8f);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ─────────────────────────────────────────────
   FILTER TABS
───────────────────────────────────────────────*/
.pl-filter-section {
  padding: 40px 0 0;
  background: var(--color-bg, #f7fafa);
}

.pl-filter-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pl-filter-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pl-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid var(--color-border, #d4e8e8);
  border-radius: 50px;
  background: #fff;
  color: var(--color-text, #1a2e2e);
  font-family: var(--font-family, 'Poppins', sans-serif);
  font-size: var(--font-sm, 0.85rem);
  font-weight: var(--fw-semibold, 600);
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.pl-filter-btn:hover {
  border-color: var(--color-primary, #1a7a7a);
  color: var(--color-primary, #1a7a7a);
  background: var(--color-primary-light, #e8f5f5);
}

.pl-filter-btn.active {
  background: var(--color-primary, #1a7a7a);
  border-color: var(--color-primary, #1a7a7a);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 122, 122, 0.30);
}


/* ─────────────────────────────────────────────
   PLANT CARDS SECTION
───────────────────────────────────────────────*/
.pl-cards-section {
  background: var(--color-bg, #f7fafa);
  padding: 36px 0 80px;
}

.pl-cards-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pl-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


/* ── PLANT CARD ──────────────────────────── */
.pl-card {
  background: #fff;
  border-radius: var(--pl-card-rad);
  overflow: hidden;
  border: 1px solid var(--color-border, #d4e8e8);
  box-shadow: var(--pl-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pl-shadow-hov);
}

/* Badge */
.pl-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: var(--fw-bold, 700);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-family, 'Poppins', sans-serif);
}

.pl-badge--rmc  { background: var(--color-primary, #1a7a7a);       color: #fff; }
.pl-badge--aac  { background: var(--pl-aac, #145f5f);               color: #fff; }
.pl-badge--agg  { background: var(--color-accent, #ffcf23);         color: var(--color-text, #1a2e2e); }
.pl-badge--soon { background: var(--pl-soon, #6b7280);              color: #fff; }

/* Map */
.pl-card__map {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-primary-light, #e8f5f5);
  flex-shrink: 0;
}

.pl-card__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  pointer-events: none;
  transition: filter 0.3s;
}

.pl-card:hover .pl-card__map iframe {
  pointer-events: auto;
  filter: brightness(1.04);
}

/* Map placeholder — coming soon */
.pl-card__map--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7fafa 0%, #e8f5f5 100%);
}

.pl-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted, #6b8f8f);
  text-align: center;
}

.pl-map-placeholder p {
  font-size: 0.78rem;
  font-weight: var(--fw-semibold, 600);
  margin: 0;
  opacity: 0.65;
}

/* Body */
.pl-card__body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

/* Top row */
.pl-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.pl-card__name {
  font-family: var(--font-family, 'Poppins', sans-serif);
  font-size: 1.05rem;
  font-weight: var(--fw-bold, 700);
  color: var(--color-text, #1a2e2e);
  line-height: 1.3;
  margin: 0;
}

/* Status chip */
.pl-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: var(--fw-bold, 700);
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-family, 'Poppins', sans-serif);
}

.pl-status--active {
  background: #dcfce7;
  color: #15803d;
}

.pl-status__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #15803d;
  animation: pulse-green 1.8s infinite;
  flex-shrink: 0;
}

.pl-status--soon {
  background: var(--color-accent-light, #fef9e7);
  color: #b45309;
}

.pl-status__dot--soon {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b45309;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Address */
.pl-card__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-style: normal;
  font-size: 0.80rem;
  color: var(--color-text-muted, #6b8f8f);
  line-height: 1.55;
  font-family: var(--font-family, 'Poppins', sans-serif);
}

/* Meta list */
.pl-card__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--color-border, #d4e8e8);
  padding-top: 14px;
}

.pl-card__meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.80rem;
  color: var(--color-text, #1a2e2e);
  font-weight: var(--fw-medium, 500);
  font-family: var(--font-family, 'Poppins', sans-serif);
}

.pl-meta__icon {
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

/* Action buttons */
.pl-card__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}

.pl-card__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: var(--radius-md, 8px);
  font-size: 0.78rem;
  font-weight: var(--fw-bold, 700);
  text-decoration: none;
  transition: all 0.22s ease;
  border: 1.5px solid transparent;
  font-family: var(--font-family, 'Poppins', sans-serif);
  cursor: pointer;
}

/* Call button — teal filled */
.pl-btn--call {
  background: var(--color-primary, #1a7a7a);
  color: #fff;
  border-color: var(--color-primary, #1a7a7a);
}

.pl-btn--call:hover {
  background: var(--color-primary-dark, #145f5f);
  border-color: var(--color-primary-dark, #145f5f);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26, 122, 122, 0.30);
}

/* Directions button — gold outlined */
.pl-btn--dir {
  background: var(--color-accent-light, #fef9e7);
  color: var(--color-text, #1a2e2e);
  border-color: rgba(255, 207, 35, 0.5);
}

.pl-btn--dir:hover {
  background: var(--color-accent, #ffcf23);
  color: var(--color-text, #1a2e2e);
  border-color: var(--color-accent, #ffcf23);
  box-shadow: 0 4px 12px rgba(255, 207, 35, 0.40);
}

/* Notify button — ghost */
.pl-btn--notify {
  background: var(--color-primary-light, #e8f5f5);
  color: var(--color-primary, #1a7a7a);
  border-color: var(--color-border, #d4e8e8);
}

.pl-btn--notify:hover {
  background: var(--color-primary, #1a7a7a);
  color: #fff;
  border-color: var(--color-primary, #1a7a7a);
}

/* Coming soon card */
.pl-card--soon {
  opacity: 0.85;
}

.pl-card--soon .pl-card__name {
  color: var(--color-text-muted, #6b8f8f);
}

/* Hidden card (filtered out) */
.pl-card.hidden {
  display: none;
}


/* ─────────────────────────────────────────────
   FULL MAP SECTION
───────────────────────────────────────────────*/
.pl-map-section {
  background: #fff;
  padding: 80px 0;
}

.pl-map-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header — reusable */
.pl-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 48px;
}

.pl-section-tag {
  display: inline-block;
  background: var(--color-primary-light, #e8f5f5);
  color: var(--color-primary, #1a7a7a);
  font-size: var(--font-xs, 0.62rem);
  font-weight: var(--fw-semibold, 600);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  font-family: var(--font-family, 'Poppins', sans-serif);
}

.pl-section-title {
  font-family: var(--font-family, 'Poppins', sans-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: var(--fw-extrabold, 800);
  color: var(--color-text, #1a2e2e);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Gold underline bar */
.pl-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent, #ffcf23);
  border-radius: 4px;
  margin: 12px auto 0;
}

.pl-title-highlight {
  color: var(--color-accent, #ffcf23);
}

.pl-section-sub {
  font-size: var(--font-md, 0.92rem);
  color: var(--color-text-muted, #6b8f8f);
  max-width: 520px;
  line-height: 1.8;
  margin: 0;
  font-family: var(--font-family, 'Poppins', sans-serif);
}

/* Full map iframe wrapper */
.pl-fullmap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--pl-shadow-hov);
  border: 1px solid var(--color-border, #d4e8e8);
}

.pl-fullmap iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
}

/* Legend bar */
.pl-fullmap__legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 16px 24px;
  background: #fff;
  border-top: 1px solid var(--color-border, #d4e8e8);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: var(--fw-semibold, 600);
  color: var(--color-text, #1a2e2e);
  font-family: var(--font-family, 'Poppins', sans-serif);
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot--rmc  { background: var(--color-primary, #1a7a7a); }
.legend-dot--aac  { background: var(--pl-aac, #145f5f); }
.legend-dot--agg  { background: var(--color-accent, #ffcf23); border: 1px solid #d4a800; }
.legend-dot--soon { background: var(--pl-soon, #6b7280); }


/* ─────────────────────────────────────────────
   DELIVERY SECTION
───────────────────────────────────────────────*/
.pl-delivery-section {
  background: var(--color-bg, #f7fafa);
  padding: 80px 0;
}

.pl-delivery-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pl-delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}

.pl-delivery-card {
  background: #fff;
  border-radius: var(--pl-card-rad);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--color-border, #d4e8e8);
  box-shadow: var(--pl-shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  border-bottom: 3px solid transparent;
}

.pl-delivery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--pl-shadow-hov);
  border-bottom-color: var(--color-accent, #ffcf23);
}

.pl-delivery-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg, 12px);
  background: var(--color-primary, #1a7a7a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(26, 122, 122, 0.25);
  transition: transform 0.25s ease;
}

.pl-delivery-card:hover .pl-delivery-icon {
  transform: rotate(-4deg) scale(1.07);
}

.pl-delivery-card h4 {
  font-family: var(--font-family, 'Poppins', sans-serif);
  font-size: var(--font-md, 0.92rem);
  font-weight: var(--fw-bold, 700);
  color: var(--color-text, #1a2e2e);
  margin: 0 0 10px;
}

.pl-delivery-card p {
  font-size: var(--font-sm, 0.85rem);
  color: var(--color-text-muted, #6b8f8f);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font-family, 'Poppins', sans-serif);
}


/* ─────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────────*/
.pl-cta-banner {
  background: linear-gradient(
    120deg,
    rgba(10, 40, 40, 0.97) 0%,
    rgba(26, 122, 122, 0.95) 60%,
    rgba(20, 95, 95, 0.97) 100%
  ),
  url('../images/home-construction.jpg') center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Decorative circles */
.pl-cta-banner::before,
.pl-cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.pl-cta-banner::before {
  width: 360px;
  height: 360px;
  border: 56px solid rgba(255, 255, 255, 0.04);
  top: -100px;
  right: 8%;
  z-index: 0;
}

.pl-cta-banner::after {
  width: 200px;
  height: 200px;
  border: 40px solid rgba(255, 207, 35, 0.08);
  bottom: -60px;
  left: 6%;
  z-index: 0;
}

.pl-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.pl-cta-text h2 {
  font-family: var(--font-family, 'Poppins', sans-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: var(--fw-extrabold, 800);
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}

.pl-cta-text p {
  font-size: var(--font-md, 0.92rem);
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
  max-width: 480px;
  line-height: 1.7;
  font-family: var(--font-family, 'Poppins', sans-serif);
}

.pl-cta-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Gold CTA button */
.pl-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent, #ffcf23);
  color: var(--color-text, #1a2e2e);
  padding: 14px 30px;
  border-radius: var(--radius-md, 8px);
  font-size: var(--font-sm, 0.85rem);
  font-weight: var(--fw-bold, 700);
  font-family: var(--font-family, 'Poppins', sans-serif);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(255, 207, 35, 0.45);
}

.pl-cta-btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.pl-cta-btn-primary:hover {
  background: var(--color-accent-dark, #fcc706);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 207, 35, 0.55);
}

.pl-cta-btn-primary:hover svg {
  transform: translateX(4px);
}

/* White outline button */
.pl-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-md, 8px);
  font-size: var(--font-sm, 0.85rem);
  font-weight: var(--fw-semibold, 600);
  font-family: var(--font-family, 'Poppins', sans-serif);
  border: 2px solid rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pl-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.80);
}


/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────*/
.site-footer {
  background: var(--color-text, #1a2e2e);
  padding: 64px 0 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand p {
  font-size: var(--font-sm, 0.85rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 16px 0 20px;
  font-family: var(--font-family, 'Poppins', sans-serif);
}

.footer-logo {
  height: 48px;
  width: auto;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md, 8px);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: var(--fw-bold, 700);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: var(--font-family, 'Poppins', sans-serif);
}

.footer-socials a:hover {
  background: var(--color-accent, #ffcf23);
  color: var(--color-text, #1a2e2e);
}

.footer-heading {
  font-size: var(--font-sm, 0.85rem);
  font-weight: var(--fw-bold, 700);
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: 0.5px;
  font-family: var(--font-family, 'Poppins', sans-serif);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: var(--font-sm, 0.85rem);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: var(--font-family, 'Poppins', sans-serif);
}

.footer-links a:hover {
  color: var(--color-accent, #ffcf23);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--font-sm, 0.85rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  font-family: var(--font-family, 'Poppins', sans-serif);
}

.footer-contact li span:first-child {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--color-accent, #ffcf23);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  font-size: var(--font-xs, 0.62rem);
  color: rgba(255, 255, 255, 0.40);
  margin: 0;
  font-family: var(--font-family, 'Poppins', sans-serif);
  letter-spacing: 0.3px;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: var(--font-xs, 0.62rem);
  color: rgba(255, 255, 255, 0.40);
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: var(--font-family, 'Poppins', sans-serif);
}

.footer-legal a:hover {
  color: var(--color-accent, #ffcf23);
}


/* ─────────────────────────────────────────────
   SCROLL TO TOP BUTTON
───────────────────────────────────────────────*/
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary, #1a7a7a);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26, 122, 122, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 500;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--color-accent, #ffcf23);
  color: var(--color-text, #1a2e2e);
}


/* ─────────────────────────────────────────────
   REVEAL ANIMATION
   ⚠️ Content is VISIBLE by default (no opacity: 0).
      JavaScript progressively enhances with animation.
───────────────────────────────────────────────*/
.reveal-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .pl-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 968px) {
  .pl-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-stat {
    border-right: none;
    border-bottom: 1px solid var(--color-border, #d4e8e8);
  }

  .pl-stat:nth-child(odd) {
    border-right: 1px solid var(--color-border, #d4e8e8);
  }

  .pl-stat:last-child,
  .pl-stat:nth-last-child(2) {
    border-bottom: none;
  }

  .pl-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .pl-cta-text p {
    max-width: 100%;
  }

  .pl-cta-btns {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .pl-page-hero__content {
    padding: 100px 20px 48px;
  }

  .pl-cards-grid {
    grid-template-columns: 1fr;
  }

  .pl-filter-tabs {
    gap: 8px;
  }

  .pl-filter-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .pl-delivery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .pl-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-section-title {
    font-size: 1.7rem;
  }

  .pl-fullmap iframe {
    height: 320px;
  }

  .pl-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .pl-cta-btn-primary,
  .pl-cta-btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}