/* ============================================================
   HALEEFGO — Premium Design System (Traavellio Framer Style)
   Color Palette: Warm Cream (#faf8f0), Logo Mint (#29F19C) & Logo Teal (#02CEDF)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: "Cal Sans";
  src: url("https://fonts.gstatic.com/s/calsans/v2/fdN99sWUv3gWqXxqqSBevloE4LZx.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  /* Colors */
  --clr-bg: #faf8f0;            /* Warm Cream Background */
  --clr-bg-card: #ffffff;       /* Pure White Cards */
  --clr-bg-dark: #0d1315;       /* Dark Charcoal Navbar & Footer */
  --clr-bg-dark-hover: #151d20;
  
  --clr-border: rgba(18, 27, 29, 0.08);
  --clr-border-hover: rgba(18, 27, 29, 0.15);
  
  --clr-text: #121b1d;          /* Slate Charcoal Main Text */
  --clr-text-alt: #505c60;      /* Slate Gray Secondary Text */
  --clr-text-muted: #8c9b9f;    /* Light Slate Gray Muted Text */
  
  --clr-text-light: #ffffff;
  --clr-text-light-alt: rgba(255, 255, 255, 0.7);
  
  /* Brand Identity (Logo Theme Colors) */
  --clr-primary: #29F19C;       /* Brand Logo Mint Green */
  --clr-primary-hover: #22d68a;
  --clr-primary-glow: rgba(41, 241, 156, 0.25);
  
  --clr-accent: #02CEDF;        /* Brand Logo Teal/Cyan Blue */
  --clr-accent-hover: #02b6c4;
  --clr-accent-glow: rgba(2, 206, 223, 0.25);
  
  --clr-gradient: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  --clr-gradient-dark: linear-gradient(180deg, #151d20 0%, #0d1315 100%);
  
  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-display: 'Cal Sans', 'Outfit', sans-serif;
  
  /* Layout Radius */
  --radius-xs: 8px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  
  /* Shadows & Depth */
  --shadow-subtle: 0 10px 30px rgba(18, 27, 29, 0.04);
  --shadow-premium: 0 20px 50px rgba(18, 27, 29, 0.08);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.4);
  
  /* Animation Timing */
  --ease-standard: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Global Reset & Body ───────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  cursor: none; /* Hide standard cursor for the custom cursor experience */
}

body {
  font-family: var(--font-main);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (max-width: 992px) {
  html { cursor: auto; }
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--clr-primary);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-expo), height 0.25s var(--ease-expo), background-color 0.25s;
  box-shadow: 0 0 15px var(--clr-primary-glow);
}

.custom-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--clr-text);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-expo), height 0.25s var(--ease-expo), border-color 0.25s;
}

body.cursor-hover .custom-cursor {
  width: 14px;
  height: 14px;
  background-color: var(--clr-accent);
  box-shadow: 0 0 20px var(--clr-accent-glow);
}

body.cursor-hover .custom-cursor-ring {
  width: 50px;
  height: 50px;
  border-color: var(--clr-accent);
  background-color: rgba(2, 206, 223, 0.05);
}

@media (max-width: 992px) {
  .custom-cursor, .custom-cursor-ring { display: none; }
}

/* Base Image Adjustments */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── Typography & Tags ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--clr-text);
  letter-spacing: -0.02em;
}

p {
  color: var(--clr-text-alt);
  font-size: 1.05rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-text-alt);
  background-color: rgba(18, 27, 29, 0.04);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(18, 27, 29, 0.05);
}

/* When the parent is a dark section */
.dark-section .section-tag {
  color: var(--clr-primary);
  background-color: rgba(41, 241, 156, 0.1);
  border-color: rgba(41, 241, 156, 0.15);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--clr-text-alt);
  max-width: 600px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── Layout Containers ─────────────────────────────────────── */
.container, .container-sm, .container-lg {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.container { max-width: 1200px; }
.container-sm { max-width: 800px; }
.container-lg { max-width: 1400px; }

.section {
  padding: 120px 0;
  position: relative;
}

.section-lg {
  padding: 160px 0;
  position: relative;
}

.section-sm {
  padding: 60px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-lg { padding: 100px 0; }
  .section-sm { padding: 40px 0; }
}

main {
  flex: 1;
}

/* ─── Grid Systems ──────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ─── Navigation (Dark Matte Header) ───────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  background-color: rgba(13, 19, 21, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: height 0.3s var(--ease-standard), background-color 0.3s;
}

#nav.scrolled {
  height: 75px;
  background-color: rgba(13, 19, 21, 0.85);
}

#nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-text-light-alt);
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-primary);
}

/* Hamburger Menu Button */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

/* Mobile Navigation Drawer */
.nav-mobile {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #0d1315;
  z-index: 999;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
  gap: 24px;
  transition: height 0.4s var(--ease-expo), padding 0.4s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile.open {
  height: calc(100vh - 80px);
  padding-top: 40px;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--clr-text-light-alt);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--clr-primary);
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease-standard);
  border: 1px solid transparent;
  cursor: pointer;
}

/* Primary Button: Solid Brand Mint Green with Dark Text */
.btn-primary {
  background-color: var(--clr-primary);
  color: var(--clr-bg-dark);
}

.btn-primary:hover {
  background-color: var(--clr-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--clr-primary-glow);
}

/* Secondary Button: Transparent/Border Dark Link */
.btn-secondary {
  background-color: transparent;
  color: var(--clr-text);
  border: 1px solid rgba(18, 27, 29, 0.12);
}

.btn-secondary:hover {
  background-color: rgba(18, 27, 29, 0.04);
  border-color: rgba(18, 27, 29, 0.2);
  transform: translateY(-2px);
}

/* Light button used inside dark sections */
.btn-light {
  background-color: #ffffff;
  color: var(--clr-bg-dark);
}

.btn-light:hover {
  background-color: #f7f7f7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-dark-cta {
  background-color: var(--clr-bg-dark);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark-cta:hover {
  background-color: var(--clr-bg-dark-hover);
  transform: translateY(-2px);
}

/* ─── Card Design Systems ───────────────────────────────────── */

/* Clean white containers with thin borders */
.card {
  background-color: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.4s var(--ease-standard), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-premium);
}

/* Icon box inside cards */
.card-icon {
  width: 48px;
  height: 48px;
  color: var(--clr-primary); /* Logo Mint default */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Card images */
.card-image-wrapper {
  margin: -36px -36px 28px -36px;
  height: 220px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-standard);
}

.card:hover .card-image {
  transform: scale(1.06);
}

/* Image Hover Card (Framer Style overlay) */
.framer-image-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(18, 27, 29, 0.05);
}

.framer-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-standard);
}

.framer-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 19, 21, 0) 40%, rgba(13, 19, 21, 0.8) 100%);
  z-index: 1;
  transition: opacity 0.4s;
}

.framer-image-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  color: #ffffff;
}

.framer-image-card-content h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.framer-image-card-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.framer-image-card:hover img {
  transform: scale(1.06);
}

/* Testimonial Cards */
.testimonial-card {
  padding: 40px;
  background-color: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--clr-text);
  margin-bottom: 24px;
  font-style: normal;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(18, 27, 29, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-alt);
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* ─── Hero Section (Replication of Traavellio) ────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
  color: #ffffff;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.hero-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
  z-index: -1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-tag-rating {
  display: inline-flex;
  align-items: center;
  color: #ffcc00;
  gap: 4px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 24px;
  max-width: 1000px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin-bottom: 48px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

/* Glassmorphic Floating Proof Badges */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.hero-proof-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  text-align: left;
  min-width: 200px;
}

.hero-proof-badge h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.hero-proof-badge p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  #hero { padding-top: 120px; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 12px; }
  .hero-ctas .btn { width: 100%; }
  .hero-proof { flex-direction: column; width: 100%; gap: 16px; margin-top: 24px; }
  .hero-proof-badge { width: 100%; text-align: center; padding: 20px; }
}

/* ─── Inner Subpages Hero ───────────────────────────────────── */
.hero-inner {
  position: relative;
  padding: 160px 0 80px 0;
  background-color: var(--clr-bg-dark);
  color: #ffffff;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-inner { padding: 140px 0 60px 0; }
}

/* Background image overlay */
.hero-inner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  background-size: cover;
  background-position: center;
}

.hero-inner .container-sm {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-inner h1 {
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

.hero-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
}

.hero-inner .section-tag {
  color: var(--clr-primary);
  background-color: rgba(41, 241, 156, 0.12);
  border-color: rgba(41, 241, 156, 0.2);
}

/* ─── Split Form Sections ───────────────────────────────────── */
.split-form-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background-color: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.split-form-image {
  background-size: cover;
  background-position: center;
  min-height: 450px;
}

.split-form-content {
  padding: 60px;
}

@media (max-width: 992px) {
  .split-form-section {
    grid-template-columns: 1fr;
  }
  .split-form-image {
    min-height: 300px;
  }
  .split-form-content {
    padding: 36px 24px;
  }
}

@media (max-width: 576px) {
  .split-form-image {
    min-height: 200px;
  }
  .split-form-content {
    padding: 24px 20px;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-text-alt);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  background-color: #fafafa;
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: all 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px var(--clr-accent-glow);
}

/* ─── Accordion (FAQ Layout) ────────────────────────────────── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.accordion-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.25s;
}

.accordion-header h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-header .icon-mint {
  color: var(--clr-primary);
}

.accordion-arrow {
  transition: transform 0.3s;
  color: var(--clr-text-alt);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-standard), padding 0.4s;
  padding: 0 24px;
}

.accordion-content p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-item.active {
  border-color: var(--clr-border-hover);
}

.accordion-item.active .accordion-header {
  background-color: rgba(18, 27, 29, 0.02);
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
  max-height: 400px; /* Adjust as necessary */
  padding: 0 24px;
}

/* ─── Parallax / Visual Banner ─────────────────────────────── */
.image-banner-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  color: #ffffff;
}

.image-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(13, 19, 21, 0.65);
  z-index: 1;
}

.image-banner-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.image-banner-section h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.image-banner-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

/* ─── Text Scroll Ticker Banner (Framer Mockup) ───────────── */
.ticker-banner {
  background-color: var(--clr-bg-dark);
  padding: 24px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-wrap {
  display: inline-block;
  animation: ticker 25s linear infinite;
}

.ticker-item {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-right: 48px;
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ─── Pre-Footer CTA Section ────────────────────────────────── */
.pre-footer-cta {
  background-color: var(--clr-bg-dark);
  padding: 120px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pre-footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(41, 241, 156, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.pre-footer-cta .container-sm {
  position: relative;
  z-index: 2;
}

.pre-footer-cta h2 {
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

.pre-footer-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

/* ─── Footer Section ────────────────────────────────────────── */
#footer {
  background-color: var(--clr-bg-dark);
  color: var(--clr-text-light-alt);
  padding: 100px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--clr-text-light-alt);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--clr-primary);
}

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

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-light-alt);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s;
}

.footer-social-links a:hover {
  color: var(--clr-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.footer-bottom-links a {
  color: var(--clr-text-muted);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.25s;
}

.footer-bottom-links a:hover {
  color: var(--clr-primary);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-bottom-links a {
    margin: 0 10px;
  }
}

/* ─── Scroll Reveal Animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ─── Detail Lists and Page Elements ────────────────────────── */
.detail-list {
  list-style: none;
  padding: 0;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.98rem;
  color: var(--clr-text);
}

.detail-list li svg {
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

/* Packages grid detail pill (e.g. Price tags) */
.package-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  background-color: rgba(41, 241, 156, 0.12);
  color: #1b8a59;
  border: 1px solid rgba(41, 241, 156, 0.2);
}

.package-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-top: 8px;
}
