/* SEO Pages Stylesheet - GuideSofia
   Matches the nova-seo design language
*/

:root {
  --electric: #00BEDD;
  --bone: #F5F5F0;
  --dark: #0C1417;
  --serif: 'Playfair Display', serif;
  --sans: 'Raleway', sans-serif;
  --shadow: 0 10px 40px rgba(0,0,0,0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow {
  max-width: 800px;
}

/* --- MAIN NAVIGATION --- */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(245, 245, 240, 0.4);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-menu {
  display: none;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--electric);
}

.nav-cta-btn {
  text-decoration: none;
  background: var(--dark);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s;
}

.nav-cta-btn:hover {
  background: var(--electric);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--dark);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-dropdown {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu-dropdown.active {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-dropdown {
    display: none !important;
  }
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.mobile-nav-menu li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-menu li:last-child {
  border-bottom: none;
}

.mobile-nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

.mobile-nav-menu a:hover {
  color: var(--electric);
}

.mobile-cta-btn {
  display: block;
  text-align: center;
  width: 100%;
  background: var(--electric);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: 0.3s;
}

.mobile-cta-btn:hover {
  opacity: 0.9;
}

/* Adjust body margin for fixed header */
body {
  padding-top: 65px;
}

/* --- OLD HEADER --- */
.header {
  padding: 20px 0;
  background: rgba(245, 245, 240, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  color: var(--dark);
}

.logo img {
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--electric);
}

.nav-btn {
  text-decoration: none;
  color: var(--electric);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--electric);
  padding: 8px 16px;
  border-radius: 50px;
  transition: 0.3s;
}

.nav-btn:hover {
  background: var(--electric);
  color: white;
}

/* --- HERO --- */
.hero {
  padding: 100px 0 60px;
  text-align: center;
}

.chip {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: white;
  border: 1px solid rgba(0,190,221,0.2);
  color: var(--electric);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}

.serif-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 25px;
}

.text-electric {
  color: var(--electric);
}

.description {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(12, 20, 23, 0.6);
  max-width: 650px;
  margin: 0 auto;
  margin-bottom: 30px;
}

/* --- APP BUTTONS --- */
.app-btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-app {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  transition: 0.3s;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

.app-store {
  background: var(--dark);
  color: white;
}

.play-store {
  background: white;
  color: var(--dark);
  border: 1px solid #ddd;
}

.btn-app:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- INFO BAR --- */
.info-bar {
  background: white;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.info-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-val {
  font-size: 1.25rem;
  font-weight: 700;
}

/* --- STOPS SECTION --- */
.stops-section {
  padding: 80px 0;
}

.stops-section > .container > h2 {
  text-align: center;
  margin-bottom: 50px;
}

.stop-card {
  background: white;
  border-radius: 28px;
  padding: 35px;
  margin-bottom: 45px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.03);
}

.stop-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.stop-number {
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stop-title h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 0;
}

.stop-subtitle {
  font-size: 10px;
  font-weight: 700;
  color: var(--electric);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}

.stop-duration {
  font-size: 12px;
  color: #aaa;
  margin-left: auto;
}

.stop-image {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 25px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.stop-description {
  font-size: 0.95rem;
  color: rgba(12, 20, 23, 0.75);
  line-height: 1.8;
  margin-bottom: 25px;
}

.stop-audio {
  background: var(--bone);
  padding: 18px;
  border-radius: 14px;
}

.stop-audio p {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.stop-audio audio {
  width: 100%;
  height: 35px;
}

/* --- CTA SECTION --- */
.cta-section {
  padding: 100px 0;
  background: var(--electric);
  color: white;
  text-align: center;
  border-radius: 45px 45px 0 0;
}

.cta-section h2 {
  color: white;
  font-family: var(--serif);
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-section p {
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary {
  background: white;
  color: var(--dark);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
}

/* --- MAIN FOOTER --- */
.main-footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-col-brand {
  max-width: 300px;
}

.footer-logo {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  transition: opacity 0.3s;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--electric);
  transform: scale(1.1);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--electric);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-app-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.footer-app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}

.app-download-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.app-download-btn i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.app-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  line-height: 1;
}

.app-name {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .footer-bottom {
    gap: 20px;
  }
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: white;
}

/* --- OLD FOOTER --- */
.footer {
  padding: 60px 0;
  text-align: center;
  opacity: 0.4;
  font-size: 0.8rem;
}

.footer-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 15px;
}

.footer-nav a {
  color: var(--dark);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--electric);
}

/* --- STOPS LIST SECTION --- */
.stops-list-section {
  padding: 60px 0;
  background: white;
}

.stops-list-section h2 {
  margin-bottom: 30px;
}

.simple-stops-list {
  list-style: none;
  padding: 0;
}

.simple-stops-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.6;
}

.simple-stops-list li:last-child {
  border-bottom: none;
}

.simple-stops-list li:hover {
  color: var(--electric);
}

/* --- CAROUSEL SECTION --- */
.carousel-section {
  padding: 60px 0;
  overflow: hidden;
}

.carousel-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.perspective-container {
  perspective: 1000px;
  width: 100%;
  position: relative;
  padding: 40px 0;
}

#coverflow-track {
  display: flex;
  overflow-x: auto;
  padding: 0 50vw;
  scroll-snap-type: x mandatory;
  gap: -40px;
  cursor: grab;
  scroll-behavior: smooth;
}

#coverflow-track:active {
  cursor: grabbing;
}

.coverflow-card {
  flex-shrink: 0;
  width: 300px;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transition: transform 0.1s linear;
  will-change: transform, opacity;
  border: 1px solid rgba(0,0,0,0.03);
  user-select: none;
}

@media (min-width: 768px) {
  .coverflow-card {
    width: 340px;
    padding: 25px;
  }
}

.coverflow-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}

.coverflow-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.coverflow-card p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.drag-hint {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.3;
  margin-top: 20px;
}

/* --- FAKE AUDIO PLAYER --- */
.fake-player {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bone);
  padding: 12px 15px;
  border-radius: 12px;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.fake-player:hover {
  background: white;
  border-color: var(--electric);
}

.fake-player .play-btn {
  width: 36px;
  height: 36px;
  background: var(--electric);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.fake-player:hover .play-btn {
  transform: scale(1.1);
}

.fake-player .play-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid white;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}

.fake-player .progress-bar {
  flex: 1;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.fake-player .progress-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: var(--electric);
  border-radius: 2px;
}

.fake-player .duration {
  font-size: 11px;
  color: #aaa;
  font-weight: 600;
}

/* --- DOWNLOAD PROMPT MODAL --- */
.download-prompt {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.download-prompt.active {
  display: flex;
}

.download-prompt-content {
  background: white;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  max-width: 400px;
  margin: 20px;
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.download-prompt-content h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.download-prompt-content p {
  color: #666;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.download-prompt-content .btn {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.download-prompt-content .close-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 15px;
  padding: 8px 16px;
}

.download-prompt-content .close-btn:hover {
  color: var(--dark);
}

/* --- ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .serif-title {
    font-size: 2.5rem;
  }

  .stop-card {
    padding: 25px;
    border-radius: 20px;
  }

  .stop-header {
    flex-wrap: wrap;
  }

  .stop-duration {
    width: 100%;
    margin-left: 68px;
    margin-top: -10px;
  }

  .cta-section {
    border-radius: 30px 30px 0 0;
    padding: 60px 20px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-btn-group {
    flex-direction: column;
    gap: 10px;
  }

  .btn-app {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

/* --- UNLOCK FULL AUDIO SECTION --- */
.unlock-audio-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 190, 221, 0.05) 0%, rgba(0, 190, 221, 0.02) 100%);
}

.unlock-box {
  background: white;
  border-radius: 28px;
  padding: 50px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 190, 221, 0.1);
}

.unlock-icon {
  font-size: 3.5rem;
  color: var(--electric);
  margin-bottom: 20px;
}

.unlock-title {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.unlock-description {
  font-size: 1rem;
  color: rgba(12, 20, 23, 0.7);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .unlock-box {
    padding: 40px 25px;
  }

  .unlock-title {
    font-size: 1.6rem;
  }

  .unlock-icon {
    font-size: 2.5rem;
  }
}

/* --- B2B SECTION --- */
.b2b-section {
  padding: 80px 0;
  background: var(--bone);
}

.b2b-box {
  display: flex;
  align-items: center;
  gap: 50px;
  background: white;
  padding: 50px;
  border-radius: 35px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.02);
}

.b2b-box .b2b-text {
  flex: 2;
}

.b2b-box .b2b-img {
  flex: 1;
}

@media (max-width: 768px) {
  .b2b-box {
    flex-direction: column;
    gap: 30px;
    padding: 40px 25px;
    text-align: center;
  }

  .b2b-box .b2b-text,
  .b2b-box .b2b-img {
    flex: 1;
  }
}

.b2b-text h3 {
  margin: 15px 0 20px 0;
  color: var(--dark);
}

.b2b-text p {
  color: rgba(12, 20, 23, 0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.b2b-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--electric);
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.b2b-link:hover {
  gap: 12px;
}

.b2b-img {
  text-align: center;
}

.b2b-img img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}


/* New Teaser & Locked Stops */
.teaser-list {
  margin-top: 30px;
}
.teaser-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: 0.3s;
  cursor: pointer;
}
.teaser-item:hover {
  border-color: var(--electric);
  transform: translateX(5px);
}
.teaser-lock {
  color: #ccc;
  font-size: 1.2rem;
  padding-top: 5px;
}
.teaser-text h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--dark);
}
.teaser-text p {
  margin: 5px 0 0 0;
  font-size: 0.85rem;
  color: #777;
  line-height: 1.4;
}

/* Related Guides / Internal Linking */
.related-guides-nav {
  padding: 40px 0;
  border-top: 1px solid #eee;
  margin-top: 20px;
}
.tag-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tag-link {
  padding: 8px 18px;
  border: 1px solid #eee;
  border-radius: 50px;
  text-decoration: none;
  color: #666;
  font-size: 0.8rem;
  font-weight: 700;
  transition: 0.3s;
}
.tag-link:hover {
  border-color: var(--electric);
  color: var(--electric);
  background: rgba(0, 190, 221, 0.05);
}

/* Sticky Footer CTA */
.sticky-footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0C1417;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-footer-cta.active {
  transform: translateY(0);
}
.btn-sticky {
  background: var(--electric);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Spacing for paragraphs in full description */
.stop-description p {
  margin-bottom: 1.2em;
}