/* ===== PREMIUM FOOTER (shared from index) ===== */
@keyframes pcgFooterReveal {
  from {
    opacity: 0;
    transform: translate(-30px, -30px);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.pcg-footer {
  background: #000000;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  font-family: "Inter", sans-serif;
  animation: pcgFooterReveal 1.3s ease-out both;
}

.pcg-footer::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(15, 81, 50, 0.04),
    transparent 70%
  );
  pointer-events: none;
}

.pcg-footer::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(15, 81, 50, 0.03),
    transparent 70%
  );
  pointer-events: none;
}

.pcg-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.pcg-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 0.8fr;
  gap: 48px;
  padding-bottom: 60px;
}

.pcg-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pcg-footer-brand .footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.pcg-footer-brand .footer-tagline {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.pcg-footer-brand .footer-desc {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.65;
  margin: 0;
  max-width: 260px;
}

.pcg-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00897b;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 137, 123, 0.2);
  margin-top: 4px;
  width: fit-content;
}

.pcg-footer-cta:hover {
  background: #004643;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 137, 123, 0.25);
}

.pcg-footer-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.pcg-footer-cta:hover svg {
  transform: translateX(3px);
}

.pcg-footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pcg-footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 4px;
}

.pcg-footer-col a {
  font-size: 14px;
  color: #d1d5db;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
  display: inline-block;
  position: relative;
}

.pcg-footer-col a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #00897b;
  transition: width 0.3s ease;
}

.pcg-footer-col a:hover {
  color: #00897b;
  transform: translateY(-3px);
}

.pcg-footer-col a:hover::after {
  width: 100%;
}

.pcg-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.pcg-footer-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pcg-footer-copy span {
  font-size: 13px;
  color: #9ca3af;
}

.pcg-footer-copy .copy-tagline {
  font-size: 11px;
  color: #c0c5cc;
  letter-spacing: 0.3px;
}

.pcg-footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pcg-footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pcg-footer-socials a:hover {
  background: #00897b;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 137, 123, 0.25);
}

.pcg-footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 991px) {
  .pcg-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .pcg-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .pcg-footer {
    padding: 60px 0 0;
  }

  .pcg-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .pcg-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 479px) {
  .pcg-footer {
    padding: 48px 0 0;
  }

  .pcg-footer-inner {
    padding: 0 20px;
  }

  .pcg-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pcg-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ===== FOOTER OFFICES ===== */
.pcg-footer-offices {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.pcg-footer-office {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 240px;
}

.pcg-footer-office i {
  color: #00897b;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pcg-footer-office-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pcg-footer-office-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.pcg-footer-office-addr {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 767px) {
  .pcg-footer-offices {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .pcg-footer-office {
    min-width: unset;
  }
}

/* ===== ABOUT PAGE — OFFICE ADDRESSES SECTION ===== */
.pcg-offices-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  /* background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(0,70,67,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 85%, rgba(0,137,123,0.035) 0%, transparent 60%),
    linear-gradient(180deg, #f0ede5 0%, #edeae3 30%, #e9ebe6 60%, #f0ede5 100%); */
}

.pcg-offices-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.pcg-offices-header {
  text-align: center;
  margin-bottom: 56px;
}

.pcg-offices-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border: 1px solid rgba(0,70,67,0.12);
  background: rgba(0,70,67,0.06);
  border-radius: 100px;
  margin-bottom: 20px;
}

.pcg-offices-badge i {
  color: #00897b;
  font-size: 13px;
}

.pcg-offices-badge span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #004643;
}

.pcg-offices-title {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.pcg-offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.pcg-office-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(0,70,67,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 2px 16px rgba(0,70,67,0.04);
}

.pcg-office-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,70,67,0.03) 0%, transparent 50%, rgba(0,137,123,0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

.pcg-office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,70,67,0.08);
  border-color: rgba(0,70,67,0.15);
}

.pcg-office-card-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pcg-office-card-flag i {
  font-size: 20px;
  color: #004643;
}

.pcg-office-card-flag span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #004643;
}

.pcg-office-card-name {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}

.pcg-office-card-addr {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #5a6366;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .pcg-offices-section {
    padding: 60px 0;
  }
  .pcg-offices-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pcg-offices-title {
    font-size: 28px;
  }
  .pcg-offices-inner {
    padding: 0 20px;
  }
  .pcg-office-card {
    padding: 28px 24px;
  }
}
