/* =========================================================
   EDEN EXPEDITIONS FOOTER
   LIGHT / PREMIUM / SIGNATURE
========================================================= */

.eden-footer {
  --orange: #ff5533;
  --black: #20201e;
  --text: #333330;
  --muted: #666661;
  --light: #f7f6f1;
  --border: #dcdcd6;

  width: 100%;
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  overflow: hidden;
}

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

.eden-footer a {
  text-decoration: none;
}

/* MAIN FOOTER */
.eden-footer-main {
  width: 100%;
  padding: 82px 20px 72px;
  background: #ffffff;
}

.eden-footer-container {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 70px;
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* LOGO */
.eden-footer-logo {
  display: inline-flex;
  align-items: center;
  width: 210px;
  height: auto;
  margin-bottom: 25px;
  transition: transform .25s ease, opacity .25s ease;
}

.eden-footer-logo img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: 210px !important;
  object-fit: contain;
  object-position: left center;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.eden-footer-logo:hover {
  transform: translateY(-2px);
  opacity: .88;
}

/* BRAND TEXT */
.eden-footer-brand p {
  max-width: 350px;
  margin: 0 0 27px;
  color: #555550;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
}

/* CUSTOM TOUR BUTTON */
.eden-footer-custom {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-height: 52px;
  padding: 0 18px;
  background: var(--orange);
  color: #ffffff;
  transition: background .25s ease, transform .25s ease;
}

.eden-footer-custom span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.15px;
}

.eden-footer-custom b {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s ease;
}

.eden-footer-custom:hover {
  background: var(--black);
  color: #ffffff;
  transform: translateY(-2px);
}

.eden-footer-custom:hover b {
  transform: translateX(5px);
}

/* COLUMNS */
.eden-footer-column h4 {
  position: relative;
  margin: 0 0 25px;
  padding-bottom: 14px;
  color: #1f1f1d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eden-footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.eden-footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.eden-footer-column li {
  margin: 0 0 15px;
}

.eden-footer-column li a {
  display: inline-block;
  color: #555550;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  transition: color .2s ease, transform .2s ease;
}

.eden-footer-column li a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

/* CONTACT SECTION */
.eden-footer-contact-section {
  width: 100%;
  padding: 32px 20px;
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eden-footer-contact-container {
  display: grid;
  grid-template-columns: 1.7fr .8fr 1.2fr .8fr;
  gap: 45px;
  width: min(1180px, 92%);
  margin: 0 auto;
}

.eden-contact-box {
  min-width: 0;
}

.eden-contact-label {
  display: block;
  margin-bottom: 10px;
  color: #888881;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.eden-contact-box p {
  margin: 0;
  color: #3d3d39;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75;
}

.eden-contact-box > a {
  display: inline-block;
  color: #30302d;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.75;
  word-break: break-word;
  transition: color .2s ease;
}

.eden-contact-box > a:hover {
  color: var(--orange);
}

.eden-contact-box > a b {
  color: var(--orange);
  font-size: 15px;
  font-weight: 400;
  margin-left: 5px;
}

/* PAYMENT */
.eden-footer-payment {
  width: 100%;
  padding: 25px 20px;
  background: #ffffff;
}

.eden-footer-payment-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  width: min(1180px, 92%);
  margin: 0 auto;
}

.eden-payment-copy span {
  display: block;
  color: #30302d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.eden-payment-copy p {
  margin: 5px 0 0;
  color: #85857e;
  font-size: 10px;
  line-height: 1.5;
}

.eden-payment-methods {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eden-payment-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #dcdcd6;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
}

.eden-visa {
  color: #173b8f;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  font-style: italic;
}

.eden-mastercard {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 26px;
}

.eden-mastercard i,
.eden-mastercard b {
  position: absolute;
  top: 2px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
}

.eden-mastercard i {
  left: 4px;
  background: #eb001b;
}

.eden-mastercard b {
  right: 4px;
  background: #f79e1b;
}

.eden-mastercard em {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  white-space: nowrap;
  font-size: 4px;
  font-style: normal;
  font-weight: 700;
}

.eden-paypal {
  color: #003087;
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
}

.eden-amex {
  color: #1269a9;
  font-size: 6px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

/* BOTTOM */
.eden-footer-bottom {
  width: 100%;
  padding: 21px 20px;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.eden-footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  width: min(1180px, 92%);
  margin: 0 auto;
}

.eden-footer-bottom p {
  margin: 0;
  color: #777770;
  font-size: 10px;
  font-weight: 500;
}

.eden-footer-signature {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #777770;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.eden-footer-signature i {
  display: block;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}

/* RESPONSIVE DESIGN */
@media(max-width: 950px) {
  .eden-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 55px 45px;
  }
  .eden-footer-contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px 45px;
  }
}

@media(max-width: 600px) {
  .eden-footer-main {
    padding: 60px 20px 50px;
  }
  .eden-footer-container {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 42px;
  }
  .eden-footer-logo {
    width: 190px;
    margin-bottom: 22px;
  }
  .eden-footer-logo img {
    max-width: 190px !important;
  }
  .eden-footer-brand p {
    max-width: 100%;
    font-size: 13px;
  }
  .eden-footer-column h4 {
    margin-bottom: 20px;
  }
  .eden-footer-column li {
    margin-bottom: 13px;
  }
  .eden-footer-column li a {
    font-size: 13px;
  }
  .eden-footer-contact-section {
    padding: 35px 20px;
  }
  .eden-footer-contact-container {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 26px;
  }
  .eden-contact-box p,
  .eden-contact-box > a {
    font-size: 12px;
  }
  .eden-footer-payment {
    padding: 28px 20px;
  }
  .eden-footer-payment-container {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }
  .eden-payment-methods {
    flex-wrap: wrap;
  }
  .eden-footer-bottom {
    padding: 20px;
  }
  .eden-footer-bottom-container {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 13px;
  }
}

@media(max-width: 380px) {
  .eden-footer-logo {
    width: 170px;
  }
  .eden-footer-logo img {
    max-width: 170px !important;
  }
  .eden-payment-card {
    width: 62px;
    height: 38px;
  }
}
