/* ============================================================
   TAVAZO — Footer (Compact, Ajmal/Mirzam inspired)
   ============================================================ */

.footer {
  background-color: var(--tavazo-teal-darker);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.7;
}


/* ── Newsletter Bar ── */

.footer__newsletter {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer__newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer__newsletter-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.footer__newsletter-form {
  display: flex;
  max-width: 360px;
  width: 100%;
}

.footer__newsletter-input {
  flex: 1;
  padding: 10px 16px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: 50px 0 0 50px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  backdrop-filter: blur(8px);
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer__newsletter-input:focus {
  border-color: var(--tavazo-gold);
}

.footer__newsletter-btn {
  padding: 10px 24px;
  background: rgba(194, 158, 83, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(194, 158, 83, 0.5);
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer__newsletter-btn:hover {
  background: rgba(194, 158, 83, 1);
  box-shadow: 0 4px 16px rgba(194, 158, 83, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}


/* ── Main Content Grid ── */

.footer__content {
  padding: 48px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Brand column */
.footer__logo {
  height: 80px;
  filter: none;
  margin-bottom: 16px;
  display: block;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--tavazo-gold);
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}

.footer__brand-subtitle {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer__about-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.footer__social a:hover {
  border-color: var(--tavazo-gold);
  color: var(--tavazo-gold);
}

.footer__social svg {
  width: 15px;
  height: 15px;
}

/* Headings */
.footer__heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--tavazo-gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  padding-bottom: 0;
  position: relative;
}

.footer__heading::after {
  display: none;
}

/* Links */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  display: inline;
}

.footer__link::before {
  display: none;
}

.footer__link:hover {
  color: var(--tavazo-gold-light);
  padding-left: 0;
}

/* Contact lines */
.footer__contact-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__contact-lines p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__contact-highlight {
  color: rgba(255, 255, 255, 0.8) !important;
  margin-top: 8px !important;
}

.footer__contact-hours {
  margin-top: 8px !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Mini map inside Visit Us column */
.footer__mini-map {
  margin-top: 16px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__mini-map iframe {
  width: 100%;
  height: 100px;
  filter: none;
  display: block;
}


/* ── Bottom Bar ── */

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__payment-icons {
  display: flex;
  gap: 6px;
}

.footer__payment-icon {
  width: 36px;
  height: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  border-radius: 2px;
}


/* ── Map Strip ── */
.footer__map {
  position: relative;
  height: 120px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) brightness(0.35) contrast(1.1);
  transition: filter 0.5s ease;
}

.footer__map:hover iframe {
  filter: grayscale(0.5) brightness(0.5) contrast(1);
}


/* ── Responsive ── */

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* Brand spans full width, centered */
  .footer__col-brand {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__about-text {
    max-width: 360px;
    margin: 0 auto;
  }

  .footer__social {
    justify-content: center;
  }

  /* Visit Us + map span full width */
  .footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer__mini-map {
    display: block;
    margin-top: 16px;
  }

  .footer__mini-map iframe {
    height: 120px;
  }

  /* Newsletter stacks */
  .footer__newsletter-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer__newsletter-form {
    max-width: 100%;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer__content {
    padding: 28px 0 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer__logo { height: 50px; margin-bottom: 10px; }
  .footer__brand-name { font-size: 16px; }
  .footer__brand-subtitle { font-size: 8px; margin-bottom: 10px; }
  .footer__about-text { font-size: 12px; margin-bottom: 12px; }

  .footer__social a { width: 28px; height: 28px; }
  .footer__social svg { width: 13px; height: 13px; }

  .footer__heading { font-size: 10px; margin-bottom: 10px; }
  .footer__links { gap: 6px; }
  .footer__link { font-size: 12px; }

  .footer__contact-lines p { font-size: 12px; }

  .footer__newsletter { padding: 14px 0; }
  .footer__newsletter-label { font-size: 11px; }
  .footer__newsletter-form {
    flex-direction: column;
    gap: 8px;
  }
  .footer__newsletter-input {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 9px 14px;
    font-size: 12px;
  }
  .footer__newsletter-btn {
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 10px;
  }

  .footer__bottom { padding: 12px 0; }
  .footer__copyright { font-size: 10px; }
  .footer__payment-icons { gap: 4px; }
  .footer__payment-icon { width: 30px; height: 18px; font-size: 7px; }
}
