/* =========================================================
   SEN PARTY RENTALS — SHARED FOOTER
   File: assets/footer.css
========================================================= */

/* =========================================================
   VARIABLES
========================================================= */

:root {
  --footer-red: #d90429;
  --footer-red-dark: #a90020;
  --footer-orange: #ff4d00;

  --footer-black: #050506;
  --footer-dark: #0d0e11;
  --footer-card: #15161b;

  --footer-white: #ffffff;
  --footer-text: #f8f8fa;
  --footer-muted: #b2b5bd;
  --footer-border: rgba(255, 255, 255, 0.11);

  --footer-gradient:
    linear-gradient(
      135deg,
      var(--footer-red),
      var(--footer-orange)
    );

  --footer-shadow:
    0 18px 45px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   RESET
========================================================= */

.site-footer,
.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.site-footer {
  position: relative;
  z-index: 10;
  width: 100%;
  overflow: hidden;
  color: var(--footer-text);
  background: var(--footer-black);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer button {
  font: inherit;
}

.site-footer img {
  display: block;
  max-width: 100%;
}

.site-footer .container {
  width: min(1240px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
  position: relative;
  overflow: hidden;
  padding: 76px 0 60px;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(217, 4, 41, 0.24),
      transparent 28%
    ),
    radial-gradient(
      circle at 5% 100%,
      rgba(255, 77, 0, 0.12),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #070708,
      #111216 60%,
      #240006
    );
}

.footer-main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--footer-gradient);
}

.footer-main::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -230px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(217, 4, 41, 0.11);
  filter: blur(18px);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(265px, 1.35fr)
    minmax(155px, 0.72fr)
    minmax(190px, 0.9fr)
    minmax(255px, 1fr);
  gap: 44px;
}

/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
  min-width: 0;
}

.footer-heading {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 13px;
  color: var(--footer-white);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: var(--footer-gradient);
}

/* =========================================================
   BUSINESS BRAND
========================================================= */

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-wrap {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  place-items: center;
  overflow: hidden;
  border: 3px solid #ff3b60;
  border-radius: 19px;
  background: #ffffff;
  box-shadow:
    0 0 0 5px rgba(255, 59, 96, 0.1),
    0 12px 30px rgba(217, 4, 41, 0.28);
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.footer-brand-text strong {
  color: var(--footer-white);
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.footer-brand-text small {
  margin-top: 6px;
  color: var(--footer-muted);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.45;
}

.footer-description {
  max-width: 390px;
  margin: 25px 0 23px;
  color: var(--footer-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* =========================================================
   CONTACT INFORMATION
========================================================= */

.footer-contact-list {
  display: grid;
  gap: 13px;
}

.footer-contact-list a,
.footer-contact-list > span {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--footer-muted);
  font-size: 0.87rem;
  line-height: 1.5;
}

.footer-contact-list a {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--footer-white);
  transform: translateX(4px);
}

.footer-contact-list i {
  width: 18px;
  margin-top: 3px;
  color: #ff4668;
  text-align: center;
}

/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
  display: grid;
  gap: 3px;
}

.footer-links a {
  position: relative;
  display: flex;
  min-height: 39px;
  align-items: center;
  padding-left: 16px;
  color: var(--footer-muted);
  font-size: 0.87rem;
  font-weight: 650;
  line-height: 1.4;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--footer-red);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.footer-links a:hover {
  color: var(--footer-white);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  background: var(--footer-orange);
  transform: scale(1.35);
}

/* =========================================================
   BOOKING CARD
========================================================= */

.footer-booking-column {
  padding: 26px;
  border: 1px solid var(--footer-border);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.03)
    );
  box-shadow: var(--footer-shadow);
  backdrop-filter: blur(10px);
}

.footer-small-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #ff708b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-booking-heading {
  margin: 0 0 12px;
  color: var(--footer-white);
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.footer-booking-text {
  margin: 0 0 20px;
  color: var(--footer-muted);
  font-size: 0.88rem;
  line-height: 1.66;
}

.footer-action-buttons {
  display: grid;
  gap: 10px;
}

.footer-book-button,
.footer-call-button {
  display: flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 0.85rem;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.footer-book-button {
  color: #ffffff;
  background: var(--footer-gradient);
  box-shadow: 0 12px 26px rgba(217, 4, 41, 0.26);
}

.footer-call-button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-book-button:hover,
.footer-call-button:hover {
  transform: translateY(-2px);
}

.footer-book-button:hover {
  box-shadow: 0 16px 34px rgba(217, 4, 41, 0.34);
}

.footer-call-button:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
}

/* =========================================================
   SERVICE AND PAYMENT INFORMATION
========================================================= */

.footer-service-area,
.footer-payment-info {
  display: grid;
  gap: 7px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--footer-border);
}

.footer-service-area strong,
.footer-payment-info strong {
  color: var(--footer-white);
  font-size: 0.82rem;
}

.footer-service-area p,
.footer-payment-info p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 0.78rem;
  line-height: 1.58;
}

/* =========================================================
   SERVICE STRIP
========================================================= */

.footer-service-strip {
  position: relative;
  border-top: 1px solid var(--footer-border);
  border-bottom: 1px solid var(--footer-border);
  background: #0b0c0f;
}

.footer-service-strip-inner {
  display: grid;
  min-height: 108px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.footer-service-item {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 26px;
  border-right: 1px solid var(--footer-border);
}

.footer-service-item:last-child {
  border-right: 0;
}

.footer-service-item > i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: var(--footer-gradient);
}

.footer-service-item span {
  display: grid;
  gap: 4px;
  color: var(--footer-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.footer-service-item strong {
  color: var(--footer-white);
  font-size: 0.87rem;
}

/* =========================================================
   BOTTOM FOOTER
========================================================= */

.footer-bottom {
  background: #050506;
}

.footer-bottom-inner {
  display: grid;
  min-height: 90px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.footer-copyright {
  margin: 0;
  color: #999da6;
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer-legal-links a {
  color: #aeb1b8;
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.footer-back-to-top {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--footer-border);
  border-radius: 10px;
  color: #ffffff;
  background: #17181d;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.footer-back-to-top:hover {
  border-color: rgba(217, 4, 41, 0.65);
  background: var(--footer-red);
  transform: translateY(-2px);
}

/* =========================================================
   KEYBOARD ACCESSIBILITY
========================================================= */

.footer-brand:focus-visible,
.footer-contact-list a:focus-visible,
.footer-links a:focus-visible,
.footer-book-button:focus-visible,
.footer-call-button:focus-visible,
.footer-legal-links a:focus-visible,
.footer-back-to-top:focus-visible {
  outline: 3px solid rgba(255, 70, 104, 0.55);
  outline-offset: 3px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1080px) {

  .footer-grid {
    grid-template-columns:
      minmax(260px, 1.2fr)
      minmax(160px, 0.8fr)
      minmax(210px, 1fr);
  }

  .footer-booking-column {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 16px 24px;
  }

  .footer-small-label,
  .footer-booking-heading {
    grid-column: 1 / -1;
  }

  .footer-booking-text {
    margin: 0;
  }

  .footer-action-buttons {
    min-width: 230px;
  }

  .footer-service-area,
  .footer-payment-info {
    margin-top: 4px;
  }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 780px) {

  .site-footer .container {
    width: min(100% - 24px, 1240px);
  }

  .footer-main {
    padding: 62px 0 48px;
  }

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

  .footer-business,
  .footer-booking-column {
    grid-column: 1 / -1;
  }

  .footer-booking-column {
    display: block;
  }

  .footer-service-strip-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .footer-service-item {
    justify-content: flex-start;
    padding: 18px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--footer-border);
  }

  .footer-service-item:last-child {
    border-bottom: 0;
  }

  .footer-bottom-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 17px;
    padding: 28px 0;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 540px) {

  .site-footer .container {
    width: min(100% - 22px, 1240px);
  }

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

  .footer-business,
  .footer-booking-column {
    grid-column: auto;
  }

  .footer-logo-wrap {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    border-radius: 16px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand-text strong {
    font-size: 1.12rem;
  }

  .footer-heading {
    margin-bottom: 18px;
  }

  .footer-booking-column {
    padding: 22px;
  }

  .footer-legal-links {
    gap: 12px;
  }

  .footer-back-to-top {
    width: 100%;
  }

}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .site-footer *,
  .site-footer *::before,
  .site-footer *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}