/* ===== ROOT ===== */
.premium-footer {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: #000;
  font-family: "Poppins", sans-serif;
}

/* BACKGROUND IMAGE */
.footer-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab")
    center / cover no-repeat;
  z-index: 1;
}

/* DARK OVERLAY */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 2;
}

/* CTA */
.footer-cta {
  position: relative;
  z-index: 4;
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 20px 0;
  text-align: center;
  color: #fff;
}
.footer-cta h1 {
  font-size: clamp(35px, 5vw, 58px);
  font-weight: 700;
  line-height: 1;
}

.footer-cta h1 span {
  font-weight: 800;
}

.footer-cta p {
  max-width: 560px;
  margin: 20px auto 0;
  opacity: 0.9;
}

/* CTA BUTTON */
.cta-circle {
  margin: -17px auto 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(139, 26, 74, 0.5);
  color: #fff;
  font-weight: 600;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: all 0.35s ease;
}
.cta-circle:hover {
  transform: scale(1.08);
  background: var(--gold);
  color: #111;
}

/* WATERMARK */
.footer-watermark {
  position: absolute;
  bottom: 285px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 800;
  color: rgba(212, 148, 58, 0.18);
  text-shadow: 0 0 40px rgba(139, 26, 74, 0.6);
  z-index: 3;
  pointer-events: none;
}

/* FOOTER CARD */
.footer-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 95%);
  background: #fff;
  border-radius: 40px;
  padding: 70px 80px 40px;
  z-index: 5;
  box-shadow: 0 -40px 80px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 28px;
  font-weight: 700;
}

.footer-brand span {
  color: var(--gold);
}

.footer-brand p {
  margin-top: 14px;
  color: #555;
}

/* LINKS */
.footer-links h5 {
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: #444;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

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

/* CONTACT */
.footer-contact h4 {
  font-size: 22px;
  font-weight: 700;
}

.footer-contact .email {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: #000;
  border-bottom: 2px solid var(--gold);
  text-decoration: none;
}

.socials {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #666;
}

.socials span {
  cursor: pointer;
  transition: color 0.3s;
}

.socials span:hover {
  color: var(--gold);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* ================= TABLET (max-width: 992px) ================= */
@media (max-width: 992px) {
  .footer-watermark {
    display: none;
  }

  .premium-footer {
    min-height: auto;
  }

  .footer-card {
    position: relative;
    left: auto;
    transform: none;
    width: 92%;
    margin: 0 auto 30px;
    padding: 50px 40px 30px;
    border-radius: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-contact {
    grid-column: 1 / -1;
    text-align: center;
  }

  .socials {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-cta {
    padding: 70px 20px 40px;
  }

  .cta-circle {
    margin: 20px auto 30px;
  }
}

/* ================= PHONE (max-width: 768px) ================= */
@media (max-width: 768px) {
  .premium-footer {
    min-height: auto;
  }

  .footer-cta {
    padding: 60px 16px 30px;
  }

  .footer-cta h1 {
    font-size: 32px;
  }

  .footer-cta p {
    font-size: 14px;
  }

  .cta-circle {
    width: 100px;
    height: 100px;
    font-size: 13px;
    margin: 16px auto 24px;
  }

  .footer-card {
    width: 94%;
    padding: 36px 24px 24px;
    border-radius: 24px;
    margin-bottom: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-contact h4 {
    font-size: 20px;
  }

  .socials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom {
    margin-top: 24px;
    font-size: 12px;
    padding-top: 16px;
  }
}

/* ================= SMALL PHONE (max-width: 480px) ================= */
@media (max-width: 480px) {
  .footer-cta h1 {
    font-size: 26px;
  }

  .footer-card {
    width: 96%;
    padding: 30px 18px 20px;
    border-radius: 20px;
  }

  .footer-contact h4 {
    font-size: 18px;
    word-break: break-word;
  }

  .cta-circle {
    width: 90px;
    height: 90px;
    font-size: 12px;
  }
}
