#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==========================================================================
   Footer Component Styles
   ========================================================================== */

.site-footer {
  position: relative;
  background-color: var(--color-1, #2c2d2d);
  color: #ffffff;
  overflow: hidden;
  margin-top: auto;
  margin-bottom: 0 !important;
}

/* Background Top-Right Gradient Circle from Figma */
.site-footer::after {
  content: "";
  position: absolute;
  top: -180px;
  right: 50px;
  width: 359px;
  height: 359px;
  border-radius: 50%;
  opacity: 0.14;
  background: linear-gradient(360deg, #f0eadc 0%, #2c2d2d 73.56%);
  pointer-events: none;
  z-index: 1;
}

/* Footer Container */
.site-footer .footer-container {
  padding-top: 145px;
  padding-bottom: 0;
}

/* Top Left Decorative Cream Dot from Figma */
.footer-decor-dot {
  position: absolute;
  top: 80px;
  left: 50px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: var(--color-2, #f0eadc);
  opacity: 1;
  pointer-events: none;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   Footer Main Columns
   -------------------------------------------------------------------------- */
.footer-main-row {
  margin-bottom: 48px;
}

/* Section Headings */
.footer-heading {
  font-family:
    var(--font-clash-display), "Clash Display", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 30px !important;
  line-height: 100% !important;
  letter-spacing: 0% !important;
  color: #ffffff !important;
  margin: 0 0 24px 0 !important;
}

/* --------------------------------------------------------------------------
   Quick Links Column (2-Column Grid)
   -------------------------------------------------------------------------- */
.footer-quick-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link-item {
  margin: 0;
}

.footer-link {
  font-family: var(--font-archivo), "Archivo", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 16px !important;
  line-height: 22px !important;
  letter-spacing: 0% !important;
  color: #f0eadc !important;
  text-decoration: none !important;
  display: inline-block;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-white) !important;
}

/* --------------------------------------------------------------------------
   Bengaluru Column
   -------------------------------------------------------------------------- */
.footer-bengaluru-col {
  padding-right: 20px;
}

.footer-address {
  font-family: var(--font-archivo), "Archivo", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 16px !important;
  line-height: 22px !important;
  letter-spacing: 0% !important;
  color: rgba(255, 255, 255, 0.82) !important;
  margin-bottom: 20px;
}

.footer-address p {
  margin: 0 0 4px 0;
  line-height: 22px;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}

.footer-address p:last-child {
  margin-bottom: 0;
}

.footer-contact-info-block {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-row {
  font-family: var(--font-archivo), "Archivo", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 16px !important;
  line-height: 22px !important;
  letter-spacing: 0% !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

.footer-contact-row a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.footer-contact-row a:hover {
  color: var(--color-2, #f0eadc) !important;
}

.footer-email-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-email-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
}

.footer-email-subsequent {
  padding-left: 0;
}

/* Social Icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-social-link:hover {
  opacity: 0.8;
}

.footer-social-icon {
  width: 24px !important;
  height: 24px !important;
  display: block;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   Mumbai & Hyderabad Column
   -------------------------------------------------------------------------- */
.footer-branch-group {
  margin-bottom: 24px;
}

.footer-branch-group:last-of-type {
  margin-bottom: 24px;
}

.footer-branch-group .footer-heading {
  margin-bottom: 16px !important;
}

/* Contact Us Button in Footer */
.footer-contact-btn-wrap {
  margin-top: 24px;
}

.footer-contact-btn.primary-btn {
  background-color: var(--color-2, #f0eadc) !important;
  color: #2c2d2d !important;
  padding: 6px 6px 6px 18px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-family:
    var(--font-clash-display), "Clash Display", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  min-width: 140px !important;
  gap: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border: none !important;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
  width: fit-content;
}

.footer-contact-btn .btn-svg-container {
  width: 29px !important;
  height: 29px !important;
  background-color: #2c2d2d !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.footer-contact-btn .btn-svg-container svg {
  width: 11px !important;
  height: 11px !important;
  display: block !important;
  transition: transform 0.2s ease !important;
}

.footer-contact-btn:hover {
  background-color: #f7f2e7 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2) !important;
}

.footer-contact-btn:hover svg {
  transform: rotate(45deg) !important;
}

/* Mobile-only social icons wrapper */
.footer-mobile-socials {
  display: none;
  margin-top: 24px;
}

/* --------------------------------------------------------------------------
   Large PHOTOSTOP Graphic
   -------------------------------------------------------------------------- */
.footer-banner-wrap {
  width: 100%;
  padding-top: 116px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-banner-img {
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* --------------------------------------------------------------------------
   Bottom Copyright & Legal Row
   -------------------------------------------------------------------------- */
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0 20px 0;
  margin-bottom: 0;
  font-family: var(--font-archivo), "Archivo", sans-serif;
  font-size: 14px;
  color: #f0eadc;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-family: inherit;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: var(--color-2, #f0eadc) !important;
}

.footer-copyright-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.footer-honeycomb-text {
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries (Mobile & Tablet)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .site-footer::after {
    top: -70px;
    right: 0;
    width: 150px;
    height: 150px;
  }

  .footer-decor-dot {
    top: 36px;
    left: 0;
    width: 18px;
    height: 18px;
  }

  .footer-heading {
    font-size: 26px !important;
    margin-bottom: 18px !important;
  }

  .footer-bengaluru-col {
    padding-right: 0;
    margin-top: 32px;
  }

  .footer-branch-group {
    margin: 0 0 20px 0 !important;
  }

  /* Show social links below contact button on mobile, hide in Bengaluru column */
  .footer-desktop-socials {
    display: none;
  }

  .footer-mobile-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  }

  .footer-banner-wrap {
    margin: 32px 0 24px 0;
  }

  .footer-banner-img {
    height: auto;
    max-height: 80px;
    object-fit: contain;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .footer-copyright-text,
  .footer-honeycomb-text {
    text-align: left;
  }
  .footer-main-row {
    margin: 0;
  }
  .site-footer .footer-container {
    padding-top: 100px;
  }
}

@media (max-width: 576px) {
  .footer-quick-links-grid {
    column-gap: 16px;
    row-gap: 12px;
  }

  .footer-link,
  .footer-address,
  .footer-contact-row {
    font-size: 15px !important;
    line-height: 20px !important;
  }

  .footer-legal-links {
    gap: 16px;
  }
}
