/*
Topographic background texture by Freepik
https://www.freepik.com/
*/


/*--------------------------------------------------------------
# Qurious Travel - Brand Color System
--------------------------------------------------------------*/
:root {
  /* Fonts */
  --default-font: "Questrial", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* Brand Colors (Pulled from Qurious Travel source) */
  --primary-color: #ffcd05;       /* The bright "Qurious Yellow" */
  --accent-color: #fcb424;        /* Deep Orange-Yellow for hover/links */
  --accent-soft-color: #fef9e7;   /* Very pale yellow for section tints */

  /* Text Colors */
  --heading-color: #0a0500;       /* Rich Black for readability */
  --default-color: #504e4a;       /* Dark Grey for body text */
  --contrast-color: #ffffff;      /* White text on dark/yellow backgrounds */

  /* Backgrounds & Surfaces */
  --background-color: #ffffff;    
  --surface-color: #f9fafb;       /* Off-white for card backgrounds */
  --footer-bg: #121519;           /* Dark footer color from Blocksy theme */

  /* Navigation & UI */
  --nav-color: #0a0500;
  --nav-hover-color: #ffcd05;
  --nav-mobile-bg: #ffffff;
  --border-radius: 8px;           /* Consistent rounding for buttons/cards */

  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  margin-top: 0;
}

a {
  color: var(--heading-color); /* Navigation usually looks better in dark */
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--accent-color);
}

/* Custom Button Class for "Bekijk alle reizen" */
.btn-primary {
  background-color: var(--primary-color);
  color: var(--heading-color);
  padding: 12px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: inline-block;
  transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Firebase Loading States (Recommendations) plan for later one html page site. 
--------------------------------------------------------------*/
/* .skeleton-loader {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: var(--border-radius);
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
  <div id="promo-section">
   <div class="skeleton-loader"></div> </div>

<script>
   // Fetch from Firebase
   db.collection("promo").doc("current").get().then((doc) => {
      if (doc.exists) {
         // Replace the skeleton with real content
         document.getElementById('promo-section').innerHTML = `<h1>${doc.data().title}</h1>`;
      }
   });
</script>
*/


  /*--------------------------------------------------------------
  # Qurious Travel Navbar – Glass + Premium
  --------------------------------------------------------------*/
  /* --- Header & Glassmorphism --- */
  .nr-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    height: 84px;
    display: flex;
    align-items: center;
  }

  .nr-header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: inset 0 -2px 0 var(--primary-color);
  }

  .nr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    color: var(--heading-color);
    transition: all 0.3s ease;
  }

  .nr-logo:hover {
    opacity: 0.9;
  }

  .nr-logo .logo-img {
    height: 44px;
    width: auto;
  }

  .nr-logo .sitename {
    font-family: var(--heading-font, "Playfair Display", serif);
    letter-spacing: -0.5px;
  }

  /* Desktop Nav */
  .nr-nav {
    display: flex;
    align-items: center;
    gap: 48px;
  }

  .nr-nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
    margin: 0;
    padding: 0;
  }

  /* 2. Path-drawing Underline Effect */
  /* --- Navigation Links & Path Underline --- */
.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--heading-color);
  padding: 8px 0;
  transition: 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 0;
  background: var(--primary-color);
  border-radius: 6px;
  transition: width 0.4s ease;
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-link.active::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%);
}
/* 3. Reizen Dropdown Styling */
/* --- Reizen Dropdown Cards --- */
.nr-dropdown {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.nr-dropdown-parent:hover .nr-dropdown {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.nav-link:hover { color:var(--accent-color) }

.nr-reis-card { width: 200px; display: flex; flex-direction: column; gap: 8px; }
.nr-reis-card img { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; }
.nr-reis-card h4 { font-size: 15px; margin: 0; }

.nr-badge { background: var(--primary-color); font-size: 10px; padding: 2px 8px; border-radius: 10px; width: fit-content; }

/* --- Asymmetrical Burger --- */
  .nr-burger {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    cursor: pointer;
  }

  .nr-burger span { height: 3px; background: var(--heading-color); border-radius: 3px; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
  .line-1 { width: 22px; }
  .line-2 { width: 32px; }
  .line-3 { width: 28px; }

  .nr-burger:hover span { transform: scaleY(1.15); }
  .nr-burger:hover .line-2 { width: 38px; }

  .nr-burger.active .line-1 { transform: rotate(45deg) translate(6px, 6px); width: 32px; }
  .nr-burger.active .line-2 { opacity: 0; }
  .nr-burger.active .line-3 { transform: rotate(-45deg) translate(7px, -7px); width: 32px; }

  /* --- CTA & Floating --- */
  .nr-btn {
    background: var(--primary-color);
    color: var(--heading-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    animation: gentlePulse 10s infinite;
  }
   .nr-btn:hover {
    color: var(--contrast-color);
   }

  @keyframes gentlePulse {
    0%, 90%, 100% { transform: scale(1); }
    95% { transform: scale(1.05); }
  }

  .nr-floating-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--primary-color);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none;
    z-index: 999;
}
/* Mobile Drawer */
    .nr-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 320px;
      max-width: 85%;
      height: 100dvh;
      background: var(--surface-color);
      box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
      padding: 24px;
      transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
      z-index: 1050;
      display: flex;
      flex-direction: column;
    }

    .drawer-nav {
      flex: 1;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .nr-drawer.open {
      right: 0;
    }

    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .drawer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 700;
      color: var(--heading-color);
      text-decoration: none;
    }

    .drawer-logo img {
      height: 40px;
    }

    .drawer-close {
      font-size: 28px;
      color: var(--default-color);
      cursor: pointer !important;
      transition: color 0.3s;
    }

    .drawer-close:hover {
      color: var(--accent-color)!important;
    }

    .drawer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .drawer-nav a {
      display: block;
      padding: 16px 0;
      font-size: 18px;
      font-weight: 500;
      color: var(--heading-color);
      text-decoration: none;
      border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
      transition: all 0.3s;
    }


    .drawer-nav li a:hover {
      color: var(--accent-color)!important;
      padding-left: 8px;
    }

    .drawer-btn {
      display: inline-block;
      margin-top: 20px;
      text-align: center;
      width: 100%;
    }

  
   .drawer-nav .drawer-btn:hover {
      color: var(--contrast-color)!important;
    }



    /* Overlay */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1040;
    }

    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Dropdown Accordion */

    .dropdown-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      cursor: pointer;
      user-select: none;
      transition: color 0.2s;
    }

    .dropdown-header:hover {
      color: var(--accent-color);
    }

    .dropdown-title {
      font-size: 18px;
      font-weight: 500;
      color: var(--heading-color);
    }
    .drawer-dropdown-list {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      list-style: none;
      padding-left: 20px;
      margin: 8px 0 12px 0;
      border-left: 3px solid var(--primary-color);
    }

    /* .drawer-dropdown.active .drawer-dropdown-list {
      max-height: 400px;
      transition: max-height 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    } */


    .drawer-toggle-btn i {
      transition: transform 0.35s ease;
      display: inline-block;
      margin-left: 8px;
      color: var(--accent-color);

    }

    .drawer-dropdown.active .drawer-toggle-btn i {
      transform: rotate(180deg);
      color: var(--primary-color);
    }

    /* Staggered entrance */
    .nr-drawer.open .drawer-nav ul li {
      opacity: 1;
      transform: translateX(0);
      transition: all 0.5s ease;
      transition-delay: calc(0.08s * var(--i));
    }

    /* Floating CTA (optional - appears on scroll) */
    .nr-floating-cta {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: var(--primary-color);
      color: var(--heading-color);
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      z-index: 999;
    }

    .nr-floating-cta.visible {
      opacity: 1;
      visibility: visible;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .nr-nav {
        display: none;
      }
      .nr-burger {
        display: flex;
      }
    }

    @media (max-width: 576px) {
      .nr-container {
        padding: 0 16px;
        height: 76px;
      }
      .nr-logo .sitename {
        font-size: 21px;
      }
    }
  /* Responsive */
  @media (max-width: 992px) {
    .nr-nav {
      display: none;
    }
    .nr-burger {
      display: flex;
    }
  }

  @media (max-width: 576px) {
    .nr-container {
      padding: 0 16px;
      height: 76px;
    }
    .nr-logo .sitename {
      font-size: 21px;
    }
  }
  @media (max-width: 768px) {
  .nr-logo .sitename {
    display: none;
  }
  
  /* Optional: slightly larger logo on mobile to fill the gap */
  .nr-logo .logo-img {
    height: 48px; 
  }
 }

  
/*--------------------------------------------------------------
# Qurious Footer – Earthy & Grounded
--------------------------------------------------------------*/
/* Qurious Footer – Earthy & Grounded */
.qurious-footer {
  background: #0f1419;                    /* deep charcoal earth tone */
  color: rgba(255,255,255,0.82);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Very faint topographic texture */
.qurious-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/backgrounds/earthly-contours-quirous.webp'); /* from Haikei or similar */
  background-size: 180% auto;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0.04;                          /* extremely subtle – test 0.03–0.06 */
  pointer-events: none;
  z-index: 0;
    background-size: cover;               /* ← changed to cover */
  background-position: center;
}

/* Soft radial glow in yellow (campfire warmth) */
.qurious-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 80%,
    rgba(255,205,5,0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.qurious-footer .container {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand img.footer-logo {
  height: 48px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1); /* makes logo white */
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 24px;
  font-size: 15px;
}

.footer-contact p {
  margin: 12px 0;
  font-size: 14.5px;
}

.footer-contact a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
  opacity: 0.9;
}

/* Headings */
.footer-links h4,
.footer-social h4 {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

/* Links – subtle underline grow */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 12px;
  position: relative;
  transition: color 0.3s;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.35s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Social Icons – minimal */
.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  transition: all 0.35s ease;
}

.social-icons a:hover {
  background: var(--primary-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

/* Bottom Strip */
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  opacity: 0.75;
}

.footer-bottom .made-with {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-top {
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .qurious-footer {
    padding: 80px 0 50px;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-brand img.footer-logo {
    margin: 0 auto 20px;
  }
  .footer-contact {
    justify-content: center;
  }
}
.asset-credit {
  font-size: 11px;
  opacity: 0.4;
  margin-top: 8px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

 .scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px; /* Slightly larger for the circle */
  height: 50px;
  border-radius: 50%;
  background: white; /* Clean base */
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top svg.progress-circle path {
  fill: none;
  stroke: var(--primary-color); /* Your yellow accent */
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 0.2s linear;
  /* Length of the path: approx 307.919 */
  stroke-dasharray: 307.919, 307.919;
  stroke-dashoffset: 307.919;
}

.scroll-top i {
  position: absolute;
  font-size: 28px;
  color: var(--heading-color);
  z-index: 2;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;                /* or 120px top / 100px bottom like hero */
}
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}
/*--------------------------------------------------------------
# Preloader - Compass Concept
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #0f1113;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* The "Stay Put" logic */
  opacity: 1;
  visibility: visible; 
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* The Permission Class from JS */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* Permission to let clicks through */
}




.loader-content {
  text-align: center;
}

/* Compass Container */
.compass {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

/* The Outer Ring */
/* .compass-circle {
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(252, 180, 36, 0.05);
  position: relative;
} */
 /* Optional: Make the ring pulse to show it's "loading" */
.compass-circle {
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: relative;
  animation: circle-glow 2s ease-in-out infinite;
}

/* The Needle */
 .compass-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 35px;
  background: var(--primary-color);
  border-radius: 2px;
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(0deg);
  
  /* 1. needleSearch runs ONCE to settle (1.5s)
     2. needle-wobble runs INFINITELY after a 1.5s delay
  */
  animation: 
    needleSearch 1.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards,
    needle-wobble 3s ease-in-out infinite 1.5s; 
}

/* Subtle Center Pin */
.compass-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 10px rgba(252, 180, 36, 0.4);
}

/* The Text */
.loader-text {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: textFadeIn 1s ease forwards;
  animation-delay: 0.5s;
  animation: textFadeIn 1s ease forwards, text-breath 2s ease-in-out infinite 1s;
}


/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes needleSearch {
  0% {
    transform: translate(-50%, -100%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -100%) rotate(220deg); /* Search swing */
  }
  75% {
    transform: translate(-50%, -100%) rotate(130deg); /* Counter swing */
  }
  100% {
    transform: translate(-50%, -100%) rotate(155deg); /* Final direction */
  }
}

@keyframes textFadeIn {
  to {
    opacity: 0.6;
  }
}
/* Added "Alive" Needle Animation */
@keyframes needleIdle {
  0%, 100% { transform: translate(-50%, -100%) rotate(155deg); }
  50% { transform: translate(-50%, -100%) rotate(152deg); }
}

/* The "Searching" loop for slow connections */
@keyframes needle-wobble {
  0%, 100% { transform: translate(-50%, -100%) rotate(155deg); }
  25% { transform: translate(-50%, -100%) rotate(165deg); }
  50% { transform: translate(-50%, -100%) rotate(145deg); }
  75% { transform: translate(-50%, -100%) rotate(175deg); }
}

@keyframes circle-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(252, 180, 36, 0.05); border-color: rgba(255, 255, 255, 0.2); }
  50% { box-shadow: 0 0 25px rgba(252, 180, 36, 0.2); border-color: rgba(252, 180, 36, 0.4); }
}

@keyframes text-breath {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.3; }
}

/* Main Section Button */
  /* .btn-lg  {
    display: inline-block;
    background: var(--primary-color);
    color: var(--heading-color);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 205, 5, 0.2);
    border: 2px solid var(--primary-color);
  }

  .btn-lg:hover {
    background: transparent;
    color: var(--heading-color);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 205, 5, 0.4);
  }
   */
 











/*--------------------------------------------------------------
# Under construction Page
--------------------------------------------------------------*/

 /* Under Construction – Final Polish */
    .under-construction {
      text-align: center;
      padding: 60px 20px;
      max-width: 820px;
      position: relative;
      z-index: 2;
    }

    .car-wrapper {
      position: relative;
      margin: 0 auto 50px;
      width: 180px;
      height: 100px;
    }

    .car-animated {
      width: 160px;
      height: auto;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
      animation: drive 5s infinite ease-in-out;
    }

    .road-line {
      position: absolute;
      bottom: 10px;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--primary-color) 30%, var(--primary-color) 70%, transparent);
      border-radius: 2px;
      overflow: hidden;
    }

    .road-line::after {
      content: "";
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
      animation: road-slide 3s linear infinite;
    }

    @keyframes drive {
      0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
      25% { transform: translate(-50%, -62%) rotate(-1.5deg); }
      75% { transform: translate(-50%, -58%) rotate(1.5deg); }
    }

    @keyframes road-slide {
      0% { left: -60%; }
      100% { left: 100%; }
    }

    .under-construction h1 {
      font-size: clamp(2.6rem, 8vw, 4.2rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 1.4rem;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -1px;
    }

    .under-construction p {
      font-size: 1.28rem;
      line-height: 1.75;
      max-width: 640px;
      margin: 0 auto 40px;
      opacity: 0.92;
      color: var(--default-color);
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 44px;
      font-size: 1.18rem;
      font-weight: 700;
      background: var(--primary-color);
      color: var(--heading-color);
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(255,205,5,0.35);
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
    }

    .btn-primary:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(255,205,5,0.45);
    }

    .btn-primary i {
      transition: transform 0.4s ease;
    }

    .btn-primary:hover i {
      transform: translateX(8px);
    }

    /* Floating subtle shapes – very faint topography feel */
    .bg-shape {
      position: absolute;
      opacity: 0.05;
      pointer-events: none;
      z-index: 1;
      animation: floatSlow 40s infinite linear;
    }

    .bg-shape.shape-1 {
      top: 12%;
      left: 8%;
      width: 380px;
    }

    .bg-shape.shape-2 {
      bottom: 18%;
      right: 10%;
      width: 480px;
      animation-delay: -20s;
    }

    @keyframes floatSlow {
      0%   { transform: translate(0, 0) rotate(0deg); }
      100% { transform: translate(120px, -80px) rotate(360deg); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .under-construction {
        padding: 40px 16px;
      }
      .under-construction h1 {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
      }
      .under-construction p {
        font-size: 1.15rem;
      }
      .car-animated {
        width: 120px;
      }
      .btn-primary {
        padding: 14px 36px;
        font-size: 1.05rem;
      }
    }

    @media (max-width: 480px) {
      .car-wrapper {
        margin-bottom: 40px;
      }
      .bg-shape.shape-1,
      .bg-shape.shape-2 {
        width: 280px;
      }
    }