/* Navbar Actions Wrapper */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 58, 52, 0.15);
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(15, 58, 52, 0.05);
}

.theme-toggle-btn:hover {
  transform: scale(1.08);
  border-color: var(--gold-metallic);
  color: var(--gold-metallic);
  box-shadow: 0 6px 15px rgba(212, 164, 55, 0.15);
}

.dark-theme .theme-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--primary-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.dark-theme .theme-toggle-btn:hover {
  border-color: var(--gold-metallic);
  color: var(--gold-light);
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 10000 !important;
  isolation: isolate;
  -webkit-transform: translateZ(9999px);
  transform: translateZ(9999px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  height: 75px;
  box-shadow: var(--shadow-sm);
}

.nav-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.nav-logo-container span {
  font-family: 'Empirez-Regular', 'Empirez', Georgia, serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.logo-tagline {
  color: #b8860b !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  font-size: clamp(0.72rem, 0.99vw, 0.79rem) !important;
  white-space: nowrap !important;
  width: 100% !important;
  display: block !important;
  text-align: justify !important;
  text-align-last: justify !important;
  letter-spacing: 0.2px !important;
}

.dark-theme .logo-tagline {
  color: #f2c94c !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  font-size: clamp(0.72rem, 0.99vw, 0.79rem) !important;
  white-space: nowrap !important;
  width: 100% !important;
  display: block !important;
  text-align: justify !important;
  text-align-last: justify !important;
  letter-spacing: 0.2px !important;
}

.logo-circle {
  width: 64px;
  height: 64px;
  background-color: transparent; /* Transparent background to allow the transparent logo to sit naturally on the navbar */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-circle svg {
  width: 36px;
  height: 36px;
}

.logo-circle img {
  transform: none; /* No scaling required as background is transparent and won't crop */
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.8;
  position: relative;
  padding: 5px 0;
  color: var(--primary-dark);
  text-decoration: none;
}

.nav-link:hover {
  opacity: 1;
  color: var(--gold-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-metallic);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(135deg, #b38624 0%, #d1a842 100%);
  color: #ffffff; /* White text */
  border: none;
  border-top: 1.5px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 6px 16px rgba(179, 134, 36, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #d1a842 0%, #b38624 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(179, 134, 36, 0.35), 0 0 15px rgba(179, 134, 36, 0.2);
  color: #ffffff;
}


/* Footer Section */
.footer-wrapper {
  background: linear-gradient(90deg, #152331 0%, #000000 100%);
  color: #FAF8F5;
  padding: 80px 5% 30px;
  position: relative;
  overflow: hidden;
}

/* Main footer columns */
.footer-main-columns {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 50px;
}

/* Footer Journey Box */
.footer-col-journey {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-journey-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.35);
  background-image: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%), linear-gradient(135deg, rgba(38,122,108,0.22) 0%, rgba(30,117,101,0.22) 100%);
  background-size: cover;
  background-position: center;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  max-width: 420px;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.footer-journey-box:hover {
  transform: perspective(800px) rotateY(3deg) rotateX(2deg) translateY(-6px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(212, 175, 55, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Ashoka Chakra Watermark */
.chakra-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  opacity: 0.08;
  color: var(--gold-light);
  pointer-events: none;
  z-index: 0;
}

.chakra-watermark svg {
  width: 100%;
  height: 100%;
  animation: spin-clockwise 25s linear infinite;
  display: block;
}

@keyframes spin-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Footer Flag Image Card */
.footer-flag-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-flag-card-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  max-width: 420px;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.footer-flag-card-inner:hover {
  transform: perspective(800px) rotateY(-3deg) rotateX(2deg) translateY(-6px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(212, 175, 55, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-flag-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.footer-top-banner {
  max-width: 1400px;
  margin: 0 auto 60px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 50px 6%;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%), linear-gradient(135deg, rgba(38,122,108,0.22) 0%, rgba(30,117,101,0.22) 100%), url('../images/india_democracy_panoramic_banner.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  gap: 8%;
  align-items: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), 0 0 30px rgba(0, 168, 181, 0.06);
}

.footer-top-banner-content h2 {
  color: #FAF8F5;
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.footer-top-banner-content p {
  color: #FAF8F5;
  opacity: 0.8;
  font-size: 0.98rem;
}

.footer-top-banner .btn-pill-gold {
  flex-shrink: 0;
}

/* Main footer columns */
.footer-main-columns {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 50px;
}

.footer-col-contact {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-contact-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.35);
  background-image: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%), linear-gradient(135deg, rgba(38,122,108,0.22) 0%, rgba(30,117,101,0.22) 100%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  max-width: 420px;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.footer-contact-box:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(2deg) translateY(-6px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(212, 175, 55, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-col-contact h3 {
  color: #FAF8F5;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  opacity: 0.8;
}

.footer-contact-list li span {
  word-break: break-all;
  overflow-wrap: break-word;
}

.footer-contact-list i {
  color: var(--gold-light);
  margin-top: 3px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.social-icon-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-metallic);
  background: rgba(212, 164, 55, 0.08);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 4px 12px rgba(212, 164, 55, 0.15);
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.4s ease;
}

.social-icon-link:hover .footer-social-icon {
  transform: rotate(360deg);
}

/* Newsletter Col */
.footer-col-news h3 {
  color: #FAF8F5;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.footer-col-news p {
  color: #FAF8F5;
  opacity: 0.75;
  font-size: 0.88rem;
  margin-bottom: 20px;
}


/* Links Col */
.footer-col-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-links-subcol h4 {
  color: var(--gold-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-list a {
  color: #FAF8F5;
  opacity: 0.75;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link-list a:hover {
  opacity: 1;
  color: var(--gold-light);
  padding-left: 4px;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-bottom p {
  color: #FAF8F5;
  margin: 0;
}

.footer-bottom-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-logo-ring {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold-metallic);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold-metallic);
  font-weight: 800;
  font-size: 0.7rem;
}

.footer-meta-links {
  display: flex;
  gap: 20px;
}

.footer-meta-links a {
  color: #FAF8F5;
  text-decoration: none;
}

.footer-meta-links a:hover {
  color: var(--gold-light);
}


/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #b45309;
    border: none;
    color: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.4);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                background-color 0.3s ease, 
                border-color 0.3s ease, 
                color 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    background-color: #92400e;
    color: #ffffff;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.6);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background-color: rgba(0, 0, 0, 0.85);
    color: #FFFFFF;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateX(-10px);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #b45309;
    border: none;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, border-color 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.4);
    outline: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #92400e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(180, 83, 9, 0.6);
}

.scroll-top-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.scroll-top-btn:hover .scroll-top-icon {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
    .whatsapp-tooltip {
        display: none;
    }
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    .scroll-top-icon {
        width: 18px;
        height: 18px;
    }
}

/* Dark Theme overrides for widgets */
.dark-theme .whatsapp-float {
    background-color: rgba(5, 28, 28, 0.85) !important;
    border: 1.5px solid rgba(0, 168, 181, 0.25) !important;
    color: #D4AF37 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 168, 181, 0.1) !important;
}
.dark-theme .whatsapp-float:hover {
    background-color: rgba(9, 34, 37, 0.95) !important;
    border-color: #D4AF37 !important;
    color: #F2C94C !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3) !important;
}
.dark-theme .scroll-top-btn {
    background-color: rgba(5, 28, 28, 0.85) !important;
    border: 1.5px solid rgba(0, 168, 181, 0.25) !important;
    color: #D4AF37 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 168, 181, 0.1) !important;
}
.dark-theme .scroll-top-btn:hover {
    background-color: rgba(9, 34, 37, 0.95) !important;
    border-color: #D4AF37 !important;
    color: #F2C94C !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3) !important;
}

.dark-theme .nav-btn:hover {
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6), 0 0 15px rgba(212, 175, 55, 0.35) !important;
}

.dark-theme .btn-pill-gold:hover {
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6), 0 0 15px rgba(212, 175, 55, 0.35) !important;
}


/* Active Page Nav Highlight */
.nav-link { border: 1.5px solid transparent !important; border-radius: 6px !important; padding: 8px 16px !important; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important; }
.nav-link:hover { border-color: rgba(212, 175, 55, 0.35) !important; background-color: rgba(212, 175, 55, 0.05) !important; opacity: 1 !important; }
.nav-link.active { border-color: var(--gold-metallic) !important; background-color: rgba(212, 175, 55, 0.08) !important; color: var(--gold-metallic) !important; opacity: 1 !important; }
.nav-link::after, .nav-link:hover::after { display: none !important; }

/* Premium Footer Quote Styles */
.footer-quote-container {
  position: relative;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 3px double rgba(212, 164, 55, 0.25);
  border-bottom: 3px double rgba(212, 164, 55, 0.25);
  margin: 10px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}

.footer-quote-container:hover {
  border-top-color: var(--gold-light);
  border-bottom-color: var(--gold-light);
  transform: translateY(-2px);
}

.quote-ornament {
  position: absolute;
  top: -20px;
  left: -20px;
  color: rgba(212, 164, 55, 0.08);
  font-size: 8rem;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.premium-quote {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gold-light);
  margin: 0 0 15px 0;
  font-style: italic;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.3px;
}

.quote-author {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #FAF8F5;
  display: block;
  position: relative;
  z-index: 2;
  opacity: 0.85;
}


/* Mobile-only menu link list item styling */
.mobile-only {
  display: none !important;
}

/* Default Menu Toggle Button Styling (hidden on desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1005;
  flex-shrink: 0 !important;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #0F3A34;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.dark-theme .menu-toggle .bar,
html.dark-theme .menu-toggle .bar {
  background-color: #F2C94C !important;
}

/* Responsiveness overrides for shared components (Navbar, Footer) */
@media (max-width: 1024px) {
  .nav-logo-container {
    margin-right: auto;
    min-width: 0;
  }
  
  .nav-actions {
    margin-right: 12px;
    flex-shrink: 0;
  }

  .mobile-only {
    display: block !important;
  }
  
  .menu-toggle {
    display: flex !important;
    flex-shrink: 0 !important;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }

  .dark-theme .nav-links {
    background: var(--bg-cream);
    border-left: 1px solid rgba(0, 168, 181, 0.25);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  /* Mobile Menu Hamburger Animation active states */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .navbar {
    padding: 0 1.5rem;
    height: 75px;
  }
  
  .navbar.scrolled {
    height: 75px;
  }
  
  .logo-circle {
    width: 48px;
    height: 48px;
  }
  
  .nav-logo-container span {
    font-size: 0.95rem;
  }
  
  /* Hide the desktop register button on mobile navbar */
  .nav-actions .nav-btn {
    display: none !important;
  }
  
  .nav-actions {
    gap: 15px;
  }
  
  /* Style for mobile-only register button in slide-out menu */
  .nav-btn-mobile {
    background: var(--primary-dark) !important;
    color: var(--bg-cream) !important;
    border: 1.5px solid var(--primary-dark) !important;
    border-radius: 40px !important;
    padding: 12px 28px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    box-shadow: 0 6px 15px rgba(15, 58, 52, 0.2);
    margin-top: 10px;
  }
  
  .dark-theme .nav-btn-mobile {
    background: var(--gold-metallic) !important;
    color: var(--primary-deep) !important;
    border-color: var(--gold-metallic) !important;
  }

  /* Footer Top Banner Mobile Responsiveness */
  .footer-top-banner {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .footer-top-banner-content h2 {
    font-size: 1.8rem;
  }
  
  .footer-top-banner .btn-pill-gold {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 900px) {
  .footer-meta-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-main-columns {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-bottom: 40px !important;
  }

  .footer-col-journey,
  .footer-col-contact,
  .footer-flag-card {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .footer-journey-box,
  .footer-flag-card-inner,
  .footer-contact-box {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: auto !important;
    min-height: 220px !important;
    padding: 30px 24px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .footer-wrapper {
    padding: 40px 16px 24px !important;
  }

  .footer-journey-box,
  .footer-flag-card-inner,
  .footer-contact-box {
    padding: 24px 18px !important;
    min-height: 200px !important;
  }

  .footer-journey-box h3,
  .footer-contact-box h3 {
    font-size: 1.3rem !important;
  }
}
