.php-footer-section {
  background-color: #112444;
  padding: 110px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 52px;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

/* ── Logo ── */
.php-footer-logo {
  width: 212px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

/* ── Center columns wrapper ── */
.php-footer-center {
  display: flex;
  gap: 52px;
  align-items: flex-start;
  flex-shrink: 0;
}

/* ── Nav links column ── */
.php-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 136px;
}

.php-footer-nav-link {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  text-decoration: none;
}

.php-footer-nav-link:hover {
  text-decoration: underline;
}

/* ── Info column (address + hours) ── */
.php-footer-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 290px;
}

.php-footer-info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.php-footer-info-label {
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
}

.php-footer-info-text {
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
}

/* ── Right column (phone, CTA, socials) ── */
.php-footer-right {
  display: flex;
  flex-direction: column;
  gap: 31px;
  align-items: flex-start;
  flex-shrink: 0;
}

.php-footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 44px;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}

.php-footer-phone svg {
  flex-shrink: 0;
}

.php-footer-book-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e15520;
  color: #ffffff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 44px;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}

/* ── Social icons ── */
.php-footer-socials {
  display: flex;
  gap: 34px;
  align-items: center;
}

.php-footer-social-link {
  display: block;
  width: 33px;
  height: 33px;
  flex-shrink: 0;
}

.php-footer-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ════════════════════════════════
   Tablet  ≤ 1024px
════════════════════════════════ */
@media (max-width: 1024px) {
  .php-footer-section {
    padding: 64px 48px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .php-footer-center {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
  }

  .php-footer-nav {
    width: 100%;
    align-items: center;
  }

  .php-footer-info {
    width: 100%;
    align-items: center;
  }

  .php-footer-info-block {
    align-items: center;
  }

  .php-footer-right {
    width: 100%;
    align-items: center;
    gap: 20px;
  }

  .php-footer-phone,
  .php-footer-book-cta {
    max-width: 360px;
  }

  .php-footer-nav-link,
  .php-footer-info-label,
  .php-footer-info-text {
    font-size: 17px;
  }

  .php-footer-socials{
    margin-top: 40px;
  }
}

/* ════════════════════════════════
   Mobile  ≤ 767px
════════════════════════════════ */
@media (max-width: 767px) {
  .php-footer-section {
    padding: 48px 20px 56px;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .php-footer-logo {
    width: 160px;
  }

  .php-footer-center {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    align-items: center;
  }

  .php-footer-nav {
    width: 100%;
    align-items: center;
    gap: 10px;
  }

  .php-footer-info {
    width: 100%;
    align-items: center;
  }

  .php-footer-info-block {
    align-items: center;
  }

  .php-footer-right {
    width: 100%;
    align-items: center;
  }

  .php-footer-phone,
  .php-footer-book-cta {
    width: 100%;
    max-width: 320px;
  }
}

