:root {
  /* Colors */
  --primary-light: #ffebd362;
  /* Teal color derived from OKLCH */
  --primary: #b97f52;
  /* Teal color derived from OKLCH */
  --primary-dark: #443728;
  --primary-hover: #098b94;
  --primary-foreground: #ffffff;

  --background: #ffffff;
  --secondary-background: #f7eee950;
  --foreground: #020617;

  --card: #ffffff;
  --border: #b97f52;
  --secondary: #f1f5f9;
  --destructive: #ef4444;

  --navbar-scrolled-bg: rgba(255, 255, 255, 0.95);
  --muted-foreground: #64748b;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible {
  outline: none;
  box-shadow: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Typography Classes */
.text-center {
  text-align: center;
}

/* Width Classes */
.w-fit-content {
  width: fit-content;
}

.border-top-pprimary {
  border-top: 1px solid var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: .6rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  outline: none;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--primary);
  opacity: 0.9;
}

.btn-primary:active {
  background-color: var(--primary) !important;
  opacity: 0.8;
}

.btn-ghost {
  color: var(--foreground);

}

.btn-ghost:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--navbar-scrolled-bg);
  backdrop-filter: blur(8px);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.brand-image {
  height: 2.5rem;
  width: auto;
  display: block;
}

.brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.nav-links a.active {
  color: var(--primary);
  text-decoration: underline;
  font-weight: bold;
}

.btn-menu {
  font-size: 1.5rem;
  color: var(--foreground);
}

/* Mobile Menu Styles */
@media (max-width: 767.98px) {
  .nav-container {
    position: static;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background);
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  }

  .nav-links.active {
    display: flex !important;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* Animation classes for observer */
.fade-up-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Utilities */
.position-relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.text-destructive {
  color: var(--primary);
}

.primary-text {
  color: var(--primary);
}

/* Common Section Styles */
.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  color: var(--foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}

/* Backgrounds */
.bg-secondary {
  background-color: var(--secondary);
}

/* Cards */
.card {
  position: relative;
  background-color: var(--card);
  border: 2px solid var(--primary-light);
  border-radius: 1rem;
  padding: 2rem;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}

/* @media (max-width:640px) {
  .card {
    border: 2px solid var(--primary);
  }
} */

.card:hover {
  border: 2px solid var(--primary);

}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.card-desc {
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.card-stats {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--foreground);
}

.card-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.card:hover .card-icon-wrapper {
  transform: scale(1.1);
}

.card-icon-wrapper.destructive {
  background-color: var(--primary-light);
}

.card-hover-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.card:hover .card-hover-bg {
  opacity: 1;
}

.card-hover-bg.destructive-bg {
  background: linear-gradient(to bottom, var(--primary-light), transparent);
}


/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--primary) 0%, transparent 50%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(#ffb86b 1px, transparent 1px), linear-gradient(90deg, #ffb86b 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--secondary-background);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--foreground);
  animation: fadeIn 1s ease-out;
}

.badge-dot {
  position: relative;
  display: flex;
  height: 0.5rem;
  width: 0.5rem;
}

.badge-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: var(--primary);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.badge-dot::after {
  content: '';
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  height: 0.5rem;
  width: 0.5rem;
  background-color: var(--primary);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;

    .btn {
      width: fit-content;
    }
  }

}


.btn-lg {
  padding: 1.5rem 2rem;
  font-size: 1rem;
}

.btn-outline {
  background-color: var(--background);
  color: var(--foreground);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--background);
}

.btn-outline:hover {
  border: 1px solid var(--border);
  background-color: var(--secondary);
}

.icon-right {
  transition: transform 0.2s;
}

.btn:hover .icon-right {
  transform: translateX(4px);
}

.hero-features {
  row-gap: 1rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--secondary-background);
  /* secondary semi-transparent */
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

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

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

/* Problem Section */
.problem-section {
  padding: 5rem 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.problem-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background-color: var(--primary-light);
  /* destructive */
  border-radius: 50%;
  filter: blur(80px);
}

/* Solution Section */
.solution-section {
  padding: 5rem 0;
  background-color: var(--secondary-background);
  /* secondary/30 */
  position: relative;
  overflow: hidden;
}

.ms-0 {
  margin-left: 0 !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.text-start {
  text-align: left !important;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: var(--card);
  border: 1px solid var(--primary-light);
  transition: all 0.3s;
  cursor: pointer;
  transform: scale(1);
}

.solution-item.active {
  transform: scale(1.02);
  background-color: var(--primary-light);
  /* primary/10 */
  border-color: var(--primary);
}

.solution-item:not(.active):hover {
  border-color: var(--primary);
}

.solution-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--secondary-background);
  color: var(--primary);
  transition: all 0.3s;
}

.solution-item.active .solution-icon {
  background-color: var(--primary);
  color: var(--card);
}

.solution-heading {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--primary);
  transition: color 0.3s;
}

.solution-item.active .solution-heading {
  color: var(--primary-dark);
}

.solution-desc {
  font-size: 0.875rem;
  color: var(--foreground);
  margin: 0;
}

/* Phone Mockup */
.solution-preview-wrapper {
  position: relative;
  width: 280px;
}

@media (min-width: 768px) {
  .solution-preview-wrapper {
    width: 320px;
  }
}

.phone-mockup {
  background-color: var(--background);
  border: 3px solid var(--border);
  border-radius: 3rem;
  /* padding: 0.5rem; */
  box-shadow: inset 0 0 20px var(--secondary-background);
}

.phone-image {
  width: 100%;
  height: auto;
  border-radius: 3rem;
  display: block;
}

.phone-screen {
  background-color: var(--background);
  border-radius: 2.25rem;
  overflow: hidden;
  aspect-ratio: 9/19;
  position: relative;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 1.5rem;
  background-color: var(--secondary);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.phone-header {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.phone-logo {
  height: 2rem;
}

.phone-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-icon-small {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background-color: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

.avatar-small {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--secondary);
}

.qr-card {
  background-color: var(--secondary-background);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: auto;
}

.qr-placeholder {
  width: 8rem;
  height: 8rem;
  background-color: var(--secondary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.qr-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.qr-subtitle {
  font-size: 0.75rem;
  color: var(--foreground);
  margin-top: 0.25rem;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.phone-btn {
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.phone-btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.phone-btn-secondary {
  background-color: var(--secondary-background);
  color: var(--foreground);
}

.floating-badge {
  position: absolute;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--box-shadow);
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-left {
  left: -1rem;
  top: 25%;
  animation: float 2.5s ease-in-out infinite;
}

.badge-right {
  right: -1rem;
  top: 66%;
  animation: float 2.5s ease-in-out infinite 1.25s;
}

@keyframes float {

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

  50% {
    transform: translateY(-12px);
  }
}

/* Ecosystem Section */
.ecosystem-section {
  padding: 5rem 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.ecosystem-bg-dots {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, var(--foreground) 1px, transparent 0);
  background-size: 40px 40px;
}

.eco-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: var(--secondary-background);
  color: var(--foreground);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.eco-btn:hover {
  color: var(--foreground);
}

.eco-btn.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.ecosystem-content-box {
  display: none;
  opacity: 0;
  visibility: hidden;
  background-color: var(--card);
  border: 1px solid var(--primary);
  border-radius: 1.5rem;
  padding: 2rem;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.ecosystem-content-box.active {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .ecosystem-content-box {
    padding: 3rem;
  }
}

.eco-icon-lg {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-bg-light {
  background-color: var(--secondary-background);
}

.eco-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .eco-title {
    font-size: 1.875rem;
  }
}

.eco-desc {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.eco-features-list {
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
}

.eco-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--secondary-background);
  border-radius: 0.75rem;
}

.eco-icon-md {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eco-feature-text {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.5;
  margin: 0;
}

/* Orbit Graphic */
.eco-circle-outer {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-circle-inner {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 10px var(--secondary-background);
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(7.5rem) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(7.5rem) rotate(-360deg);
  }
}

.orbit-node {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1.5rem;
  margin-left: -1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow-lg);
  z-index: 3;
  animation: orbit 15s linear infinite;
}

.node-1 {
  animation-delay: 0s;
}

.node-2 {
  animation-delay: -5s;
}

.node-3 {
  animation-delay: -10s;
}

.eco-circle-outer.two-node .node-2 {
  animation-delay: -7.5s;
}

.integrations-section {
  margin-top: 4rem;
}

.integrations-subtitle {
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.integration-logos {
  opacity: 0.8;
}

.brand-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--secondary-background);
  /* secondary/30 */
  position: relative;
  overflow: hidden;
}


.contact-bg-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background-color: rgba(12, 165, 176, 0.05);
  /* primary slightly transparent */
  border-radius: 50%;
  filter: blur(80px);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--primary);
  /* Primary slightly transparent */
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: var(--secondary-background);
  /* Primary slightly transparent */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-info {
  flex: 1;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--foreground);
  margin: 0;
}

.contact-value {
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s;
  margin: 0;
}

.contact-card:hover .contact-value {
  color: var(--primary);
}

.list-arrow {
  color: var(--foreground);
  opacity: 0;
  transition: opacity 0.3s;
}

.contact-card:hover .list-arrow {
  opacity: 1;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--foreground);
}

/* Form Styles */
.form-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .form-card {
    padding: 2.5rem;
  }
}

.form-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-desc {
  color: var(--foreground);
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.5rem 0.75rem;
  /* border: 1px solid transparent; */
  border-radius: 0.375rem;
  /* background-color: var(--secondary-background); */
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  height: 2.5rem;
  /* Standard input height */
  border-color: var(--border);
  background-color: var(--card);
}

textarea.form-control {
  height: auto;
  resize: vertical;
  border-color: var(--border);
  background-color: var(--card);
}

.contact-form .form-control:focus,
.form-card .form-control:focus {
  outline: none;
  border-color: var(--border);
  box-shadow: none !important;
}

.form-control::placeholder {
  color: var(--foreground);
  opacity: 0.7;
}

.disabled{
  background-color: var(--primary) !important;
  cursor: not-allowed !important;
  opacity: 0.8 !important;
  pointer-events: unset !important;
}

.w-100 {
  width: 100%;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.form-terms {
  font-size: 0.75rem;
  color: var(--foreground);
}

.form-terms a {
  text-decoration: underline;
}

.form-terms a:hover {
  color: var(--foreground);
}

/* Footer Section */
.footer {
  padding: 2rem 0;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

.footer-nav a {
  color: var(--foreground);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--foreground);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.copyright {
  font-size: 0.875rem;
  color: var(--foreground);
  margin: 0;
}

.footer-links a {
  color: var(--foreground);
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

/* Legal pages */
.legal-page .navbar {
  background-color: var(--navbar-scrolled-bg);
  backdrop-filter: blur(8px);
}

.legal-page-header {
  margin-top: var(--nav-height);
  padding: 4.5rem 1.5rem;
  background: var(--primary-light);
  text-align: center;
}

.legal-page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.legal-content-section {
  padding: 3rem 0 4rem;
}

/* .legal-content {
  max-width: 48rem;
  margin: 0 auto;
} */

.legal-content .last-updated {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--foreground);
  line-height: 1.7;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  opacity: 0.85;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: var(--primary-foreground);
  font-size: 1.75rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: var(--primary-foreground);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.contact-submit-btn:disabled {
    background-color: #929292 !important;
    border-color: #929292 !important;
    opacity: 1 !important;
    cursor: not-allowed;
}

/* SweetAlert custom content */
.swal2-popup .modal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0;
}

.swal2-popup .icon-base {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.swal2-popup .icon-success {
  color: #fff;
}

.swal2-popup .icon-warning {
  color: #fff;
}

.swal2-popup .icon-error {
  color: #fff;
}

.swal2-popup .title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
  font-family: var(--font-sans);
}

.swal2-popup .message {
  margin: 0;
  font-size: 0.95rem;
  color: var(--foreground);
  text-align: center;
  line-height: 1.5;
  font-family: var(--font-sans);
}

/* Modal styles for custom swal alerts */
.modal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.icon-base {
  font-size: 28px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-success {
  background-color: var(--primary);
}

.icon-warning {
  background-color: var(--primary);
}

.icon-error {
  background-color: var(--primary);
}
@media (max-width: 767.98px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.625rem;
  }
}