/* Epic footer redesign styles */

:root {
  --epic-footer-bg: #150904;
  --epic-footer-bg-alt: #2b140d;
  --epic-footer-highlight: #c9ab81;
  --epic-footer-text: #f4ede6;
  --epic-footer-muted: rgba(244, 237, 230, 0.7);
}

.epic-footer {
  color: var(--epic-footer-text);
  background: repeating-linear-gradient(
      45deg,
      rgba(68, 41, 32, 0.045) 0 18px,
      transparent 18px 36px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(68, 41, 32, 0.042) 0 18px,
      transparent 18px 36px
    ),
    linear-gradient(
      120deg,
      var(--epic-footer-bg),
      var(--epic-footer-bg-alt) 55%,
      #190d09 100%
    );
  padding: 3.75rem 0 1.75rem;
}

.epic-footer__top {
  margin-bottom: 2.5rem;
}

.epic-footer__column {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: 0 1.25rem;
  border-left: 1px solid rgba(201, 171, 129, 0.25);
  min-height: 100%;
}
.epic-footer__column::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(201, 171, 129, 0.45),
    transparent
  );
  opacity: 0.6;
}

.epic-footer__row > [class*="col"]:first-child .epic-footer__column {
  padding-left: 0;
  border-left: none;
}

.epic-footer__row > [class*="col"]:first-child .epic-footer__column::before {
  display: none;
}

.epic-footer__logo {
  margin-bottom: 1rem;
}

.epic-footer__logo img {
  width: 150px;
  height: auto;
  display: block;
}

.epic-footer__intro {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--epic-footer-muted);
  max-width: 320px;
}

.epic-footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.epic-footer__contact-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  column-gap: 0.85rem;
}

.epic-footer__contact-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 171, 129, 0.65);
  color: var(--epic-footer-highlight);
  font-size: 0.95rem;
}

.epic-footer__contact-text,
.epic-footer__contact-text a {
  color: var(--epic-footer-muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.epic-footer__contact-text a:hover {
  color: var(--epic-footer-highlight);
}

.epic-footer__hours-title {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--epic-footer-highlight);
}

.epic-footer__hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  max-width: 280px;
}

.epic-footer__hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.94rem;
  color: var(--epic-footer-muted);
}

.epic-footer__section-title {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--epic-footer-highlight);
  margin-bottom: 0.75rem;
}

.epic-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.epic-footer__link a {
  color: var(--epic-footer-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.4rem;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.epic-footer__link a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--epic-footer-highlight);
}

.epic-footer__link a:hover {
  color: var(--epic-footer-highlight);
  letter-spacing: 0.08em;
}

.epic-footer__newsletter-copy {
  color: var(--epic-footer-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.epic-footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.epic-footer__newsletter-field {
  display: flex;
  width: 100%;
  gap: 0;
}

.epic-footer__newsletter-field input[type="email"] {
  flex: 1;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 171, 129, 0.55);
  border-right: none;
  border-radius: 0;
  padding: 0.85rem 1rem;
  color: var(--epic-footer-text);
  font-size: 0.95rem;
  outline: none;
}

.epic-footer__newsletter-field input[type="email"]::placeholder {
  color: rgba(244, 237, 230, 0.45);
}

.epic-footer__newsletter-field input[type="email"]:focus {
  border-color: var(--epic-footer-highlight);
}

.epic-footer__newsletter-btn {
  border: 1px solid var(--epic-footer-highlight);
  background: linear-gradient(120deg, var(--epic-footer-highlight), #9c784c);
  color: #1b0e09;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  letter-spacing: 0.08em;
  border-radius: 0;
}

.epic-footer__newsletter-btn:hover {
  background: linear-gradient(120deg, #dfc299, var(--epic-footer-highlight));
}

.epic-footer__bottom {
  border-top: 1px solid rgba(201, 171, 129, 0.3);
  padding-top: 1.35rem;
}

.epic-footer__legal,
.epic-footer__policies {
  color: var(--epic-footer-muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.epic-footer__legal a {
  color: var(--epic-footer-highlight);
  text-decoration: none;
}

.epic-footer__legal a:hover {
  color: #f6dcb4;
}

.epic-footer__policies {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.epic-footer__policies a {
  color: var(--epic-footer-highlight);
  text-decoration: none;
}

.epic-footer__policies a:hover {
  color: #f6dcb4;
}

.epic-footer__policies span {
  color: var(--epic-footer-muted);
}

@media (max-width: 1199.98px) {
  .epic-footer__column {
    padding: 0 1rem 0 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .epic-footer {
    padding: 3rem 0 1.5rem;
  }

  .epic-footer__column {
    border-left: none;
    padding: 1.5rem 0;
  }

  .epic-footer__column::before {
    display: none;
  }

  .epic-footer__newsletter-field {
    flex-direction: column;
  }

  .epic-footer__newsletter-field input[type="email"] {
    border-right: 1px solid rgba(201, 171, 129, 0.55);
  }

  .epic-footer__newsletter-btn {
    width: 100%;
    text-align: center;
  }

  .epic-footer__hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}

@media (max-width: 575.98px) {
  .epic-footer {
    padding: 2.75rem 0 1.25rem;
  }

  .epic-footer__section-title {
    font-size: 1.05rem;
  }

  .epic-footer__intro,
  .epic-footer__newsletter-copy {
    max-width: 100%;
  }
}

/* Contact modal (fresh design) */
.smt-fresh-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(
    120deg,
    rgba(12, 20, 32, 0.72),
    rgba(23, 17, 10, 0.68)
  );
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 999;
}

.smt-fresh-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.smt-fresh-modal__panel {
  position: relative;
  width: min(880px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: radial-gradient(
      circle at 12% 20%,
      rgba(201, 171, 129, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(95, 120, 162, 0.08),
      transparent 30%
    ),
    linear-gradient(135deg, #fdfbf8, #f7f3ec);
  border: 1px solid rgba(201, 171, 129, 0.28);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(8, 12, 20, 0.28);
  padding: 28px 28px 24px;
  transform: translateY(30px);
  transition: transform 0.28s ease;
}

.smt-fresh-modal.is-open .smt-fresh-modal__panel {
  transform: translateY(0);
}

.smt-fresh-modal__panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
  opacity: 0.55;
}

.smt-fresh-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  background: #fff;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.smt-fresh-modal__close:hover {
  background: #f7f3ec;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);
}

.smt-fresh-modal__header {
  padding-right: 52px;
  margin-bottom: 18px;
}

.smt-fresh-modal__eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.78rem;
  color: #b48652;
  margin: 0 0 8px;
}

.smt-fresh-modal__title {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #1e2330;
  margin: 0 0 8px;
}

.smt-fresh-modal__subtitle {
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.smt-fresh-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.smt-fresh-form__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.smt-fresh-field input,
.smt-fresh-field textarea,
.smt-fresh-field select {
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.smt-fresh-field--full {
  grid-column: 1 / -1;
}

.smt-fresh-field__label {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #2d3342;
}

.smt-fresh-field input,
.smt-fresh-field textarea {
  width: 100%;
  border: 1px solid rgba(31, 41, 55, 0.14);
  background: #fff;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 0.98rem;
  color: #1f2937;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease;
}

.smt-fresh-field input:focus,
.smt-fresh-field textarea:focus {
  outline: none;
  border-color: #c9ab81;
  box-shadow: 0 0 0 3px rgba(201, 171, 129, 0.2);
  background: #fffdf8;
}

.smt-fresh-field textarea {
  resize: vertical;
  min-height: 120px;
}

.smt-fresh-form__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.smt-fresh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  min-width: 190px;
  border-radius: 999px;
  background: linear-gradient(120deg, #c9ab81, #9d6a36);
  border: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 18px 32px rgba(157, 106, 54, 0.32);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.smt-fresh-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 40px rgba(157, 106, 54, 0.36);
  filter: brightness(1.02);
}

.smt-fresh-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.smt-fresh-status {
  display: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.smt-fresh-status.success {
  display: block;
  background: #e6f4e8;
  color: #0f5132;
  border: 1px solid #a3d9b1;
}

.smt-fresh-status.error {
  display: block;
  background: #fde8e8;
  color: #842029;
  border: 1px solid #f5c2c7;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .smt-fresh-modal {
    padding: 10px;
  }

  .smt-fresh-modal__panel {
    padding: 22px 18px 20px;
  }

  .smt-fresh-modal__header {
    padding-right: 40px;
  }

  .smt-fresh-form__actions {
    align-items: stretch;
  }

  .smt-fresh-button {
    width: 100%;
  }
}

/* Top Header - Unique Classes */
.smt-unique-header-top {
  background-color: #1a1a1a; /* Dark background */
  color: #fff !important;
  padding: 8px 0; /* Thin padding */
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.smt-unique-header-top a,
.smt-unique-header-top li,
.smt-unique-header-top i {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.smt-unique-header-top a:hover,
.smt-unique-header-top i:hover {
  color: #c9ab81 !important; /* Theme gold color */
}

.smt-unique-header-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.smt-unique-header-links li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.smt-unique-header-links i {
  color: #c9ab81;
}

.smt-unique-social-links {
  display: flex;
  gap: 10px;
}

.smt-unique-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  transition: all 0.3s ease;
  color: #fff;
}

.smt-unique-social-links a:hover {
  background: #c9ab81;
  color: #fff;
}

/* WhatsApp Floating Button - Unique Class */
.smt-unique-whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  left: 30px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 2147483647 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.smt-unique-whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff !important;
}

/* Footer Social Subsection - Unique Classes */
.smt-unique-footer-social-links {
  display: flex !important;
  gap: 12px;
  margin-bottom: 15px;
}

.smt-unique-footer-social-link {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  color: #fff !important;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.smt-unique-footer-social-link:hover {
  background: #c9ab81 !important;
  color: #fff !important;
  transform: translateY(-3px);
}

/* Instagram Highlight - Unique Classes */
.smt-unique-instagram-highlight {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  ) !important;
  padding: 12px 15px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 15px !important;
  color: #fff !important;
  text-decoration: none !important;
  max-width: 300px;
  width: 100%;
}

.smt-unique-instagram-highlight:hover {
  transform: translateY(-3px);
  color: #fff !important;
}

.smt-unique-insta-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.smt-unique-insta-icon {
  font-size: 24px;
  color: #fff !important;
}

.smt-unique-insta-details {
  display: flex;
  flex-direction: column;
}

.smt-unique-insta-name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #fff !important;
}

.smt-unique-insta-handle {
  font-size: 12px;
  opacity: 0.9;
  color: #fff !important;
}

.smt-unique-insta-follow-btn {
  background: #fff !important;
  color: #000 !important;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .smt-unique-header-top {
    display: none; /* Hide on mobile if needed, or adjust */
  }
  .smt-unique-whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
  }
}
