





<style>
  /* 🔁 Gradient Background Animation */
  @keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* 🔁 Fade-in from below */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* 🔁 Gentle Floating Effect */
  @keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }

  /* 💡 Section Titles */
  .animated-title, h1, h2 {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    color: #ffffff;
  }

  /* 🗺️ Map Search Floating Link */
  .map-float-link {
    color: #ffd700;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    animation: gentleFloat 3s ease-in-out infinite;
  }

  .map-float-link:hover {
    color: #ffea92;
    transform: scale(1.05);
  }

  /* 📦 Map Search Container (Optional) */
  .map-search-container {
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .map-text {
    font-size: 1.2em;
    font-weight: bold;
    animation: fadeInUp 1s ease-out;
    color: #fff;
  }

  /* 💎 Universal CTA Button */
  .cta-button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #ffd700, #ffea92);
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0px 6px 14px rgba(255, 223, 88, 0.6);
    display: inline-block;
  }

  .cta-button:hover {
    background: linear-gradient(135deg, #ffe600, #fff5b1);
    box-shadow: 0px 8px 20px rgba(255, 239, 100, 0.9);
    transform: scale(1.05);
    border: 2px solid #fffacd;
  }

  /* ✨ Transparent Outline Button Variant */
  .cta-button-outline {
    padding: 14px 28px;
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .cta-button-outline:hover {
    background: #ffd700;
    color: #000;
    box-shadow: 0 0 10px #ffd700;
    transform: scale(1.05);
  }

  /* ❓ FAQ Section Styles */
  .faq-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 30px;
    background: #0b0f19;
    color: #fff;
    border-radius: 12px;
  }

  .faq-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .faq-section p {
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .faq-section strong {
    display: inline-block;
    margin-bottom: 6px;
  }

  /* 🌀 Gradient Intro Section (moving background) */
  .gradient-intro-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 30px;
    background: linear-gradient(-45deg, #0b0f19, #101a2b, #141e35, #0d1323);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
    color: #ffffff;
    border-radius: 12px;
    text-align: center;
  }
</style>