/* ==============================================
   NAVIGATION & FOOTER STYLES - Semantic CSS Classes
   ============================================== */

/* ==============================================
   NAVIGATION COMPONENTS
   ============================================== */

/* Header container */
.header-container {
  position: sticky;
  height: 56px;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
}

@media (min-width: 900px) {
  .header-container {
    height: 80px;
  }
}

/* Navigation wrapper */
.nav-wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

/* Logo section */
.nav-logo {
  flex-shrink: 0;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-img {
  height: auto;
}

/* Desktop navigation links */
.nav-links-desktop {
  display: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

@media (min-width: 900px) {
  .nav-links-desktop {
    display: flex;
  }
}

.nav-link {
  color: #171717;
  font-weight: 400;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}

.nav-link--active {
  font-weight: 700;
}

/* CTA Button */
.nav-cta-button {
  display: none;
  border-radius: 6px;
  background-color: black;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

@media (min-width: 900px) {
  .nav-cta-button {
    display: block;
  }
}

.nav-cta-button:hover {
  background-color: #151515;
}

/* Mobile menu button */
.mobile-menu-button {
  display: block;
  color: black;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 900px) {
  .mobile-menu-button {
    display: none;
  }
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  /* backdrop-filter: blur(12px); */
  z-index: 9999;
  display: none;
}

@media (min-width: 900px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

.mobile-menu-overlay.hidden {
  display: none;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

/* Mobile menu header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-close {
  color: #171717;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile menu navigation */
.mobile-menu-nav {
  flex: 1;
  padding: 30px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-menu-link {
  display: block;
  color: #171717;
  font-size: 18px;
  line-height: 24px;
  padding: 8px 0;
  text-decoration: none;
  text-align: center;
}

.mobile-menu-link--active {
  font-weight: 700;
}

/* Mobile CTA */
.mobile-menu-cta {
  padding: 32px 24px 32px;
}

.mobile-menu-cta-button {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 6px;
  background-color: #171717;
  padding: 12px 24px;
  color: #ffffff;
  text-decoration: none;
}

/* ==============================================
   FOOTER COMPONENTS
   ============================================== */

/* Footer container */
.footer-container {
  background-color: #FAFAFA;
  padding: 32px 32px;
  font-family: "Geist", sans-serif;
}

@media (min-width: 900px) {
  .footer-container {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.footer-content {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Footer decorative logo */
.footer-dino-logo {
  display: none;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 160px;
  top: 40px;
  transform: scale(4.5);
}

@media (min-width: 900px) {
  .footer-dino-logo {
    display: block;
  }
}

/* Main footer grid */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .footer-main-grid {
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    margin-bottom: 32px;
  }
}

/* Newsletter section */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

@media (min-width: 900px) {
  .footer-logo-container {
    margin-bottom: 32px;
  }
}

.footer-logo {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 160px;
}

@media (min-width: 900px) {
  .footer-logo img {
    width: 224px;
  }
}

@media (min-width: 1024px) {
  .footer-logo img {
    width: 256px;
  }
}

.footer-newsletter-text {
  color: rgba(11, 12, 14, 0.8);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 900px) {
  .footer-newsletter-text {
    font-size: 16px;
  }
}

/* Newsletter form */
.footer-form {
  display: flex;
  width: 100%;
  height: 40px;
  max-width: 400px;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.footer-form .wpcf7-form-control-wrap {
  margin-right: 0;
}

.footer-form-input {
  width: 75%;
  height: 40px;
  border-radius: 6px;
  margin-right: 0;
  font-family: "Geist", sans-serif;
  border: 1px solid #E2E4E9;
  margin-bottom: 0;
  background-color: white;
  padding: 0 12px;
  color: #667085;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  box-sizing: border-box;
}

.footer-form-input:focus {
  outline: none;
  box-shadow: none;
}

.footer-form-button {
  width: 25%;
  height: 40px;
  border-radius: 6px;
  background-color: #171717;
  padding: 0 16px;
  color: #FAFAFA;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  font-size: 16px;
  font-family: "Geist", sans-serif;
  box-sizing: border-box;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
  height: 40px;
  margin-bottom: 16px;
  margin-top: 24px;
  margin-left: 0;
  margin-right: 0;
  justify-content: flex-start;
}

@media (min-width: 900px) {
  .footer-social {
    margin-top: 16px;
  }
}

.footer-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.footer-social-link img {
  object-fit: unset !important;
}

.footer-social-link:hover {
  background-color: rgba(243, 244, 246, 1);
}

/* Footer links section */
.footer-links-section {
  display: flex;
  gap: 81px;
  flex-direction: row;
}

@media (min-width: 640px) {
  .footer-links-section {
    gap: 75px;
  }
}


.footer-links-group {
  display: flex;
  flex-direction: column;
}

.footer-links-title {
  font-size: 18px;
  font-weight: 600;
  color: #0b0c0e;
  margin-bottom: 24px;
  font-family: "Manrope", sans-serif;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links-item {
  margin: 0;
}

.footer-links-link {
  color: rgba(11, 12, 14, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-link:hover {
  color: #333333;
}

/* Footer bottom section */
.footer-bottom {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  padding-top: 24px;
}

.footer-bottom-border {
  width: 85%;
  border-top: 1px solid #E5E5E5;
  display: flex;
  justify-content: center;
}

.footer-copyright {
  color: rgba(11, 12, 14, 0.7);
  text-align: center;
  font-size: 16px;
  margin-top: 24px;
}

/* ==============================================
   FAQ/ACCORDION COMPONENTS
   ============================================== */

.faq-section {
  padding-left: 3rem;
  padding-right: 3rem;
  position: relative;
  background-color: #fff;
}

@media (min-width: 768px) {
  .faq-section {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}
/* FAQ Section Header */
.faq-header {
  text-align: center;
  font-size: 28px;
  color: #0B0C0E;
  line-height: normal;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
}

@media (min-width: 768px) {
  .faq-header {
    font-size: 42px;
  }
}

/* Accordion Item */
.faq-accordion-item {
  margin-bottom: 32px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #E2E4E9;
}

@media (min-width: 768px) {
  .faq-accordion-item {
    margin-bottom: 24px;
  }
}

/* Accordion Item Active State */
.faq-accordion-item--active {
  background-color: white;
  border-bottom: 1px solid #E2E4E9;
}

/* Accordion Button */
.faq-accordion-button {
  width: 100%;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #0B0C0E;
  font-size: 16px;
  font-weight: 600;
}

.faq-accordion-button:focus {
  outline: none;
}

@media (min-width: 768px) {
  .faq-accordion-button {
    margin-bottom: 16px;
    font-size: 18px;
  }
}

/* Accordion Content */
.faq-accordion-content {
  margin-top: 12px;
  color: #0B0C0E;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .faq-accordion-content {
    margin-top: 16px;
  }
}

/* Accordion Content Text */
.faq-accordion-text {
  color: #0B0C0E;
  font-size: 16px;
  margin-bottom: 0;
  padding-right: 22px;
  padding-bottom: 32px;

}

.faq-accordion-text--spaced {
  margin-bottom: 16px;
}

/* Accordion List */
.faq-accordion-list {
  color: #0B0C0E;
  font-size: 16px;
  list-style-type: disc;
  list-style-position: inside;
  line-height: 24px;
  margin: 0;
  padding: 0;
}

.faq-accordion-list li {
  margin-bottom: 8px;
}

.faq-accordion-list li:last-child {
  margin-bottom: 0;
}

/* Accordion Icon */
.faq-accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion-icon--rotated {
  transform: rotate(180deg);
}

/* ==============================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ============================================== */

@media (max-width: 1100px) {
  .footer-form-input {
    width:234px;
    font-size: 16px;
  }
  
  .header-close-img {
    width: 17px;
    height: 17px;
    margin-top: 4px;
  }
  
  .footer-form button {
    font-size: 12px;
    padding: 12px 16px;
  }
  
  .footer-form input {
    font-size: 14px;
    padding: 12px 11px;
    max-width: 434px;
  }
}