/* footer.css - Footer styles and responsive */

  /* ══ Footer ══ */
  .site-footer {
    background: #0f172a;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: 2rem 0;
    margin-top: 0;
  }

  .footer-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 2rem;
  }

  .footer-links {
    position: absolute;
    left: 2rem;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.2s ease;
  }

  .footer-links a:hover {
    color: #ffffff;
  }

  .footer-newsletter {
    text-align: left;
  }

  .footer-nl-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
  }

  .footer-nl-form .wpcf7-form p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* CF7 inserts a <br> between input and submit — hide it */
  .footer-nl-form .wpcf7-form p br {
    display: none;
  }

  .footer-nl-form input[type="email"],
  .footer-nl-form input[type="text"] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #fff;
    width: 220px;
    outline: none;
    transition: border-color 0.2s;
  }

  .footer-nl-form input[type="email"]::placeholder,
  .footer-nl-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }

  .footer-nl-form input[type="email"]:focus,
  .footer-nl-form input[type="text"]:focus {
    border-color: var(--accent-blue);
  }

  .footer-nl-form input[type="submit"] {
    background: var(--accent-blue);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .footer-nl-form input[type="submit"]:hover {
    background: #0284c7;
  }

  .footer-nl-form .wpcf7-response-output {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.4rem 0 0;
    padding: 0;
    border: none;
  }


  /* ══ Footer ══ */
  @media (max-width: 768px) {
    .footer-inner {
      flex-direction: column;
      gap: 1.5rem;
      padding: 0 1.25rem;
    }

    .footer-links {
      position: static;
    }

    .footer-links a {
      font-size: 0.85rem;
    }

    .footer-newsletter {
      order: -1;
    }

    .footer-nl-form .wpcf7-form {
      flex-direction: column;
    }

    .footer-nl-form .wpcf7-form p {
      flex-direction: column;
      align-items: stretch;
    }

    .footer-nl-form input[type="email"],
    .footer-nl-form input[type="text"] {
      width: 100%;
    }
  }

