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

:root {
  --brand-white: #FFFFFF;
  --brand-green: #008751;
  --brand-forest: #0B3C25;
  --brand-gray-light: #F8F9FA;
  --brand-graphite: #212529;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--brand-graphite);
  background-color: var(--brand-white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Jony Ive Inspired Soft Shadow & Borders */
.premium-card {
  background-color: var(--brand-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 60, 37, 0.04);
  border-color: rgba(0, 135, 81, 0.15);
}

/* Input Styles */
.premium-input {
  background-color: var(--brand-gray-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.25s ease;
  color: var(--brand-graphite);
}

.premium-input:focus {
  outline: none;
  background-color: var(--brand-white);
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(0, 135, 81, 0.1);
}

/* Custom Navigation Highlight */
.nav-link {
  position: relative;
  transition: color 0.25s ease;
}

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

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

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--brand-gray-light);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 135, 81, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-green);
}

/* Step Connector Line */
.step-line::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 50px;
  right: -50px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(0, 135, 81, 0.2), rgba(0, 135, 81, 0.2) 4px, transparent 4px, transparent 8px);
  z-index: 0;
}

@media (max-width: 1024px) {
  .step-line::after {
    display: none;
  }
}
