.site-header {
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
}
/* Footer quick links - horizontal with | */
.footer-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-quick-links li {
    display: inline;
}

.footer-quick-links li:last-child span.mx-2 {
    display: none; /* removes last | */
}


/* === Headings: text-xl and above === */
.text-xl,
.text-2xl,
.text-3xl,
.text-4xl,
.text-5xl,
.text-6xl,
.text-7xl,
.text-8xl,
.text-9xl,
h1, h1 span,
h2, h2 span,
h3, h3 span {
  font-family: 'Open Sans', sans-serif;
}

/* === Body Text: text-base and below === */
.text-base,
.text-sm,
.text-xs,
p,
span,
li,
a,
small,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  /* or 'Montserrat' */
}


/* === IMPORTANT FIX: Force UI components === */
button,
input,
textarea,
select {
  font-family: 'Montserrat', sans-serif;
}

/* Placeholder font fix */
input::placeholder,
textarea::placeholder {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

/* FAQ specific (recommended) */
.faq-question,
.faq-answer {
  font-family: 'Montserrat', sans-serif;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}



.btn-primary {
  background-color: #059669; /* emerald-600 */
  color: #ffffff;
  border: 1px solid #059669;
    border-radius: 9999px;
}

.btn-primary:hover {
  background-color: #047857; /* emerald-700 */
  border-color: #047857;
}


.btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
}


@keyframes ring {
  0% {
    transform: rotate(0);
  }

  15% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  45% {
    transform: rotate(7deg);
  }

  60% {
    transform: rotate(-5deg);
  }

  75% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(0);
  }
}

.subscribe-btn:hover .fa-bell {
  animation: ring 0.7s ease-in-out;
  transform-origin: center;
  display: inline-block;
  /* Ensures the icon behaves like a block element for transform */
}


.newsletter-success-icon {
    background-color: #10b981; /* Emerald circle stays static */
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto; /* Center horizontally + spacing */
}

.newsletter-checkmark {
    color: #ffffff; /* White check */
    font-size: 1.5rem;
    line-height: 1;
    display: block;

    /* Smooth pop animation for the check only */
    animation: checkPop 4000ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Only the check animates now */
@keyframes checkPop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}