/* ================================================
   LOGPOSE MEDIA — Design System & Styles
   Where Brands Meet Creators
   ================================================ */

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

/* --- CSS Custom Properties --- */
:root {
  /* Primary Palette */
  --navy-deep: #0B1D33;
  --navy: #132D4F;
  --navy-light: #1E3A5F;
  --navy-muted: #243B56;
  --gold: #D4A017;
  --gold-light: #F5C842;
  --gold-dark: #B8860B;
  --ocean: #1A6FA0;
  --ocean-light: #2A8FCC;
  --foam: #F5EACC;

  /* Parchment / Old Map Colors */
  --parchment: #F4E4C1;
  --parchment-light: #FAF0D7;
  --parchment-dark: #E8D5A3;
  --parchment-deep: #D4C099;
  --parchment-edge: #C4A96A;
  --sand: #EAD9B5;
  --white: #FAF0D7;

  /* Neutral tones adjusted for map theme */
  --gray-100: #F0E4C8;
  --gray-200: #D9C89D;
  --gray-400: #A08D6A;
  --gray-600: #6B5B3E;
  --gray-800: #3D3122;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --gradient-navy: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  --gradient-ocean: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  --gradient-hero: linear-gradient(135deg, #0B1D33 0%, #132D4F 50%, #1E3A5F 100%);
  --gradient-parchment: linear-gradient(180deg, var(--parchment-light) 0%, var(--parchment) 50%, var(--parchment-dark) 100%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.3s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(60, 40, 10, 0.1);
  --shadow-md: 0 4px 20px rgba(60, 40, 10, 0.14);
  --shadow-lg: 0 8px 40px rgba(60, 40, 10, 0.18);
  --shadow-gold: 0 4px 30px rgba(212, 160, 23, 0.25);
  --shadow-glow: 0 0 40px rgba(212, 160, 23, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--parchment);
  line-height: 1.6;
  overflow-x: hidden;
  /* Subtle aged paper texture */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--parchment-light) 0%, var(--parchment) 30%, var(--parchment-dark) 100%);
  background-attachment: fixed;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy-deep);
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle.light {
  color: var(--foam);
  opacity: 0.85;
}

.highlight {
  color: var(--gold);
}

/* ================================================
   SCROLL REVEAL ANIMATION
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Global Navbar Text Styles (Always dark text on white bg) */
.nav-logo-text {
  color: var(--navy-deep);
}

.nav-links a:not(.nav-cta) {
  color: var(--navy);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--navy-deep);
}

.nav-toggle span {
  background: var(--navy-deep);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 80px;
  width: auto;
  margin: -20px 0 -20px -8px;
  border-radius: 6px;
  transition: var(--transition-base);
  object-fit: contain;
  background: transparent;
  padding: 4px;
  border-radius: 8px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-deep);
  letter-spacing: 1px;
  transition: color var(--transition-base);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--navy-deep);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gradient-gold);
  color: var(--navy-deep) !important;
  font-weight: 600 !important;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(212, 160, 23, 0.4);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E"),
    var(--gradient-hero);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  padding: 120px 0 140px;
}

/* Hero Split Layout */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  gap: 60px;
  position: relative;
  z-index: 5;
}

/* Starfield */
.hero-stars {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--white);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.8;
  }
}

/* Compass background */
.hero-compass {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.22;
  pointer-events: none;
}

.compass-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: compassPulse 4s ease-in-out infinite;
}

.compass-ring:nth-child(1) {
  width: 300px;
  height: 300px;
  animation-delay: 0s;
}

.compass-ring:nth-child(2) {
  width: 400px;
  height: 400px;
  animation-delay: 1s;
}

.compass-ring:nth-child(3) {
  width: 500px;
  height: 500px;
  animation-delay: 2s;
}

@keyframes compassPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Compass needle */
.compass-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 180px;
  transform-origin: bottom center;
  transform: translate(-50%, -100%);
  animation: needleSwing 6s ease-in-out infinite;
}

.compass-needle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 90px solid rgba(255, 255, 255, 0.3);
}

.compass-needle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 90px solid rgba(212, 160, 23, 0.5);
}

@keyframes needleSwing {

  0%,
  100% {
    transform: translate(-50%, -100%) rotate(-15deg);
  }

  25% {
    transform: translate(-50%, -100%) rotate(25deg);
  }

  50% {
    transform: translate(-50%, -100%) rotate(-10deg);
  }

  75% {
    transform: translate(-50%, -100%) rotate(20deg);
  }
}

.compass-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: left;
  max-width: 560px;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 1s var(--ease-smooth) forwards;
  opacity: 0;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(212, 160, 23, 0);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 1s 0.2s var(--ease-smooth) forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title .title-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 0 44px;
  line-height: 1.7;
  animation: fadeInUp 1s 0.4s var(--ease-smooth) forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.6s var(--ease-smooth) forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212, 160, 23, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero .btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s 1s var(--ease-smooth) forwards;
  opacity: 0;
  z-index: 5;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212, 160, 23, 0.6), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.3;
  }
}

/* Hero wave divider */
.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-divider .shape-fill {
  fill: var(--parchment);
}

.wave-divider-dark .shape-fill {
  fill: var(--navy-deep);
}

.wave-divider-sand .shape-fill {
  fill: var(--sand);
}

.wave-divider-parchment .shape-fill {
  fill: var(--parchment-dark);
}

.hero-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background: linear-gradient(to bottom, transparent, var(--parchment));
  z-index: 3;
  border-bottom: 2px dashed var(--parchment-edge);
}

/* ================================================
   HERO VISUAL
   ================================================ */
.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 480px;
  margin-top: -80px;
  animation: fadeInUp 1s 0.5s var(--ease-smooth) forwards;
  opacity: 0;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-motion-graphic {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
  mix-blend-mode: screen;
  /* Adapts well to the dark gradient background */
}

/* ================================================
   ABOUT / SERVICES SECTION
   ================================================ */
.services {
  padding: var(--section-padding);
  background: var(--parchment);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

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

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--parchment-light);
  border: 1px solid var(--parchment-deep);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(26, 111, 160, 0.08));
  border-radius: var(--radius-md);
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--gradient-gold);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(26, 111, 160, 0.08);
  color: var(--ocean);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-top: 16px;
}

/* ================================================
   HOW IT WORKS SECTION
   ================================================ */
.process {
  padding: var(--section-padding);
  background: var(--parchment-dark);
  position: relative;
  border-top: 2px dashed var(--parchment-edge);
  border-bottom: 2px dashed var(--parchment-edge);
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

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

/* Connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      var(--gold) 0px,
      var(--gold) 8px,
      transparent 8px,
      transparent 16px);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--parchment-light);
  border: 3px solid var(--parchment-edge);
  border-radius: 50%;
  transition: all var(--transition-base);
  position: relative;
}

.step-number .step-icon {
  font-size: 2rem;
  transition: var(--transition-base);
}

.step-number .step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background: var(--gradient-gold);
  color: var(--navy-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(212, 160, 23, 0.3);
}

.process-step:hover .step-number {
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: var(--shadow-glow);
}

.process-step h3 {
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats {
  padding: 100px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

/* Animated wave bg */
.stats-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
}

.stats-wave-path {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 200px;
}

.stats-wave-path:nth-child(1) {
  animation: waveSlide 8s linear infinite;
  opacity: 0.5;
}

.stats-wave-path:nth-child(2) {
  animation: waveSlide 12s linear infinite reverse;
  opacity: 0.3;
}

@keyframes waveSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.stats-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(232, 244, 253, 0.65);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ================================================
   DUAL AUDIENCE SECTION
   ================================================ */
.audience {
  padding: 0;
  position: relative;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.audience-panel {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.audience-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.04;
  pointer-events: none;
}

.audience-brands {
  background: var(--navy-deep);
  color: var(--white);
}

.audience-brands::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.audience-creators {
  background: linear-gradient(135deg, #F5C842 0%, #D4A017 100%);
  color: var(--navy-deep);
}

.audience-panel .audience-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.audience-brands .audience-label {
  color: var(--gold);
}

.audience-creators .audience-label {
  color: var(--navy);
  opacity: 0.7;
}

.audience-panel h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
  line-height: 1.2;
}

.audience-panel .audience-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.audience-brands .audience-desc {
  color: rgba(232, 244, 253, 0.7);
}

.audience-creators .audience-desc {
  color: rgba(11, 29, 51, 0.7);
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.audience-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.audience-list .check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.audience-brands .check {
  background: rgba(212, 160, 23, 0.2);
  color: var(--gold-light);
}

.audience-creators .check {
  background: rgba(11, 29, 51, 0.15);
  color: var(--navy-deep);
}

.btn-brands {
  background: var(--gradient-gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
  align-self: flex-start;
}

.btn-brands:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212, 160, 23, 0.5);
}

.btn-creators {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(11, 29, 51, 0.3);
  align-self: flex-start;
}

.btn-creators:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(11, 29, 51, 0.4);
}

/* ================================================
   CONTACT / FORMS SECTION
   ================================================ */
.contact {
  padding: var(--section-padding);
  background: var(--parchment);
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

/* Tab Switcher */
.form-tabs {
  display: flex;
  background: var(--parchment-dark);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: 48px;
  position: relative;
}

.form-tab {
  flex: 1;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  background: transparent;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-align: center;
  cursor: pointer;
  z-index: 2;
  position: relative;
}

.form-tab.active {
  color: var(--navy-deep);
}

.tab-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--parchment-light);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base);
  z-index: 1;
}

.tab-indicator.right {
  transform: translateX(100%);
}

/* Form Styles */
.form-panel {
  display: none;
  animation: fadeIn 0.4s var(--ease-smooth);
}

.form-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.3px;
}

.form-group label .required {
  color: var(--gold);
  margin-left: 2px;
}

.form-input {
  padding: 14px 16px;
  background: var(--parchment-light);
  border: 2px solid var(--parchment-deep);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--navy-deep);
  transition: all var(--transition-fast);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:focus {
  background: var(--parchment-light);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Checkbox Group */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--parchment-light);
  border: 2px solid var(--parchment-deep);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.checkbox-label input {
  display: none;
}

.checkbox-label:has(input:checked) {
  background: rgba(212, 160, 23, 0.1);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.checkbox-label:hover {
  border-color: var(--gray-200);
}

/* Submit Button */
.form-submit-wrapper {
  margin-top: 32px;
  text-align: center;
}

.btn-submit {
  padding: 16px 48px;
  background: var(--gradient-gold);
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212, 160, 23, 0.45);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.btn-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-submit .btn-text {
  transition: var(--transition-fast);
}

.btn-submit.loading .btn-text {
  opacity: 0;
}

.btn-submit .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 3px solid rgba(11, 29, 51, 0.2);
  border-top-color: var(--navy-deep);
  border-radius: 50%;
  opacity: 0;
  animation: none;
}

.btn-submit.loading .spinner {
  opacity: 1;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
  animation: fadeIn 0.6s var(--ease-smooth);
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(212, 160, 23, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  animation: successPop 0.6s var(--ease-bounce);
}

@keyframes successPop {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.form-success h3 {
  font-size: 1.6rem;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray-600);
  font-size: 1rem;
}

/* Form Error */
.form-input.error {
  border-color: #E74C3C;
  animation: shake 0.4s var(--ease-smooth);
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-6px);
  }

  50% {
    transform: translateX(6px);
  }

  75% {
    transform: translateX(-4px);
  }
}

.error-text {
  font-size: 0.8rem;
  color: #E74C3C;
  display: none;
}

.form-group.has-error .error-text {
  display: block;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.footer-wave svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.footer-wave .shape-fill {
  fill: var(--parchment);
}

.footer-content {
  padding: 100px 0 40px;
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .footer-logo img {
  height: 75px;
  margin: -18px -10px -18px 0;
  border-radius: 6px;
  object-fit: contain;
}

.footer-brand .footer-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.footer-brand .footer-tagline {
  color: rgba(232, 244, 253, 0.5);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  color: rgba(232, 244, 253, 0.55);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: all var(--transition-fast);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(232, 244, 253, 0.35);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(232, 244, 253, 0.35);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-timeline::before {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    padding: 80px 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11, 29, 51, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    gap: 24px;
    transition: right var(--transition-base);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--white);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-compass {
    width: 300px;
    height: 300px;
    right: -80px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .audience-panel {
    padding: 60px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* --- Utility --- */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-overlay.active {
  display: block;
}

/* ================================================
   CAMPAIGN VOYAGE / SIMULATOR SECTION
   ================================================ */
.campaign-voyage {
  padding: var(--section-padding);
  background: var(--parchment);
  position: relative;
  border-top: 2px dashed var(--parchment-edge);
}

.simulator-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: var(--parchment-light);
  border: 3px double var(--parchment-edge);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.simulator-scenario {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scenario-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid var(--parchment-edge);
  border-radius: var(--radius-full);
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.simulator-scenario h3 {
  font-size: 2rem;
  color: var(--navy-deep);
}

.scenario-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.budget-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 10px 0;
}

.budget-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--parchment);
  border: 1px solid var(--parchment-deep);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.budget-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.budget-btn.active {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.budget-btn .budget-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.budget-btn.active .budget-label {
  color: var(--gold-light);
}

.budget-btn .budget-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.scenario-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px dashed var(--parchment-deep);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-icon {
  width: 36px;
  height: 36px;
  background: var(--parchment);
  border: 1px solid var(--parchment-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.meta-item div {
  display: flex;
  flex-direction: column;
}

.meta-item div strong {
  font-size: 0.85rem;
  color: var(--navy-deep);
}

.meta-item div span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* Logbook / Steps list styling */
.logbook-voyage {
  background: var(--parchment);
  border: 1px solid var(--parchment-deep);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.logbook-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--parchment-deep);
}

.logbook-header h4 {
  font-size: 1rem;
  color: var(--navy-deep);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.logbook-dots {
  display: flex;
  gap: 4px;
}

.logbook-dots span {
  width: 8px;
  height: 8px;
  background: var(--parchment-edge);
  border-radius: 50%;
}

.voyage-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

/* Connecting timeline line */
.voyage-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 17px;
  width: 2px;
  background: repeating-linear-gradient(180deg,
      var(--parchment-edge) 0px,
      var(--parchment-edge) 4px,
      transparent 4px,
      transparent 8px);
  z-index: 1;
}

.voyage-step-item {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.voyage-step-number {
  width: 36px;
  height: 36px;
  background: var(--navy-deep);
  color: var(--gold-light);
  border: 2px solid var(--parchment-edge);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.voyage-step-item:hover .voyage-step-number {
  background: var(--gold);
  color: var(--navy-deep);
  transform: scale(1.1);
}

.voyage-step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.voyage-step-content h5 {
  font-size: 1rem;
  color: var(--navy-deep);
  font-weight: 700;
  margin: 0;
}

.voyage-step-content p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
  transition: color var(--transition-fast);
}

/* Responsive simulation design */
@media (max-width: 992px) {
  .simulator-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .budget-selector-grid {
    grid-template-columns: 1fr;
  }
}

/* Force white logo contrast on dark scrolled navbar & footer backgrounds */
.navbar.scrolled .nav-logo img,
.footer-logo img {
  filter: brightness(0) invert(1) !important;
}

/* ================================================
   HERO RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
    gap: 48px;
    padding-top: 20px;
  }

  .hero-content {
    text-align: center;
    max-width: 600px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 7vw, 3.5rem);
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    min-height: 320px;
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 0 120px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .ship-container {
    width: 120px;
  }

  .route-node {
    padding: 12px 20px;
    min-width: 100px;
  }

  .route-label {
    font-size: 13px;
  }
}

/* Footer Logo Adjustment */
.footer-logo img {
  padding: 8px;
  border-radius: 6px;
  object-fit: contain;
  height: 80px;
  width: 80px;
}

/* ================================================
   WHATSAPP FLOATING ICON
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: floatPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@keyframes floatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}