/* ===== Footer ===== */
.site-footer {
    background: #0b0c10;
    color: #eee;
    font-family: Arial, sans-serif;
  }
  .footer-cta {
    text-align: center;
    padding: 3rem 1rem 1rem;
  }
  .footer-cta .cta-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ccc;
  }
  .footer-cta .cta-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .footer-cta .btn-footer {
    display: inline-block;
    background: black;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 36px;
    border: 2px solid #66fcf1;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  .footer-cta .btn-footer:hover {
    background: #66fcf1;
    border: 2px solid white;
    color: black;
  }
  
  /* Main Columns */
  .footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem 4rem;
    gap: 2rem;
  }
  .footer-col {
    flex: 1;
    min-width: 250px;
  }
  
  /* Left */
  .footer-left .footer-logo img {
    height: 42px;
    margin-bottom: 1rem;
  }
  .social-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .social-icon {
    width: 48px;
    height: 48px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #eee;
    font-size: 1.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
  }
  .social-icon:hover {
    background: #ff6600;
    transform: translateY(-3px);
  }
  .footer-address {
    font-style: normal;
    color: #ccc;
    line-height: 1.5;
  }
  
  /* Middle */
  .footer-middle {
    display: flex;
    gap: 2rem;
  }
  .footer-links-group h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #fff;
  }
  .footer-links-group ul {
    list-style: none;
    padding: 0;
  }
  .footer-links-group ul li {
    margin-bottom: 0.5rem;
  }
  .footer-links-group ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links-group ul li a:hover {
    color: #ff6600;
  }
  
  /* Right (Form) */
  .footer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-form input,
  .footer-form select,
  .footer-form textarea {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
  }
  .footer-form input,
  .footer-form textarea {
    background: #333;
    color: #eee;
  }
  .footer-form select {
    background: #fff;
    color: #333;
  }
  .footer-form input::placeholder,
  .footer-form textarea::placeholder {
    color: #aaa;
  }
  .footer-form button {
    background: #66fcf1;
    color: black;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .footer-form button:hover {
    background: #9cf1ec;
    cursor: pointer;
  }
  
  /* Bottom */
  .footer-bottom {
    text-align: center;
    padding: 1.5rem 1rem 2rem;
    border-top: 1px solid #444;
  }
  .footer-legal a {
    color: #ccc;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #ff6600;
  }
  .footer-copy {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #666;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
        padding: 2rem 1rem;
    }
    .footer-middle {
      flex-direction: column;
      align-items: center;
    }
    .footer-links-group {
      width: 100%;
    }
    .social-icons {
        justify-content: center;
        margin-bottom: 1.5rem;
      }
      .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
      }
      .footer-links-group h3 {
        margin-bottom: 0.5rem;
      }
      .footer-links-group ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0;
        margin-bottom: 1.5rem;
      }
      .footer-links-group ul li {
        margin: 0;
      }
      .footer-right .footer-form {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
      }
      .footer-form input,
      .footer-form select,
      .footer-form textarea {
        width: 100%;
        box-sizing: border-box;
      }
    
      /* Center the duration select’s placeholder */
      .footer-form select {
        text-align: center;
      }
      .footer-col {
   width: 90%;
      }
  }
  