/* =====================================================
   PickPetite - CSS Styles
   European Design meets Japanese Minimalism
   ===================================================== */

/* CSS Custom Properties */
:root {
  /* Colors - Warm, earthy, sophisticated */
  --color-primary: #2d3436;
  --color-primary-light: #636e72;
  --color-accent: #d4a373;
  --color-accent-dark: #bc8a5f;
  --color-accent-light: #e9c46a;

  --color-bg: #fefefe;
  --color-bg-warm: #faf8f5;
  --color-bg-cream: #f5f0e8;
  --color-bg-dark: #2d3436;

  --color-text: #2d3436;
  --color-text-light: #636e72;
  --color-text-muted: #b2bec3;
  --color-text-inverse: #fefefe;

  --color-border: #e8e4df;
  --color-shadow: rgba(45, 52, 54, 0.08);

  /* Gradients */
  --gradient-warm: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
  --gradient-accent: linear-gradient(135deg, #d4a373 0%, #e9c46a 100%);
  --gradient-dark: linear-gradient(135deg, #2d3436 0%, #4a5568 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px var(--color-shadow);
  --shadow-md: 0 4px 12px var(--color-shadow);
  --shadow-lg: 0 8px 24px var(--color-shadow);
  --shadow-xl: 0 16px 48px var(--color-shadow);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: var(--space-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1rem;
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.logo-icon {
  color: var(--color-accent);
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

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

.nav-links .btn {
  margin-left: var(--space-md);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-fast);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(72px + var(--space-4xl)) 0 var(--space-4xl);
  background: var(--gradient-warm);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  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='%23d4a373' fill-opacity='0.08'%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");
  opacity: 0.5;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero-tagline {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(212, 163, 115, 0.15);
  color: var(--color-accent-dark);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.hero-title {
  margin-bottom: var(--space-xl);
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--color-accent-dark);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero-card {
  background: var(--color-bg);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  transition: var(--transition-base);
}

.hero-card:hover {
  transform: translateX(8px);
}

.hero-card:nth-child(1) {
  transform: translateX(20px);
}

.hero-card:nth-child(2) {
  transform: translateX(40px);
}

.hero-card:nth-child(3) {
  transform: translateX(20px);
}

.hero-card:nth-child(1):hover {
  transform: translateX(28px);
}

.hero-card:nth-child(2):hover {
  transform: translateX(48px);
}

.hero-card:nth-child(3):hover {
  transform: translateX(28px);
}

.card-icon {
  font-size: 2rem;
}

.hero-card p {
  margin: 0;
  font-weight: 500;
  color: var(--color-primary);
}

/* =====================================================
   Values Section
   ===================================================== */
.values {
  padding: var(--space-4xl) 0;
  background: var(--color-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.value-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

.value-card h3 {
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.125rem;
}

.value-card p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin: 0;
}

/* =====================================================
   Features Section
   ===================================================== */
.features {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-cream);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: var(--transition-base);
  border: 1px solid var(--color-border);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-large {
  grid-column: span 2;
  background: var(--gradient-dark);
}

.feature-large .feature-content {
  color: var(--color-text-inverse);
}

.feature-large h3 {
  color: var(--color-text-inverse);
}

.feature-large p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-highlight {
  background: var(--gradient-accent);
}

.feature-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.feature-large .feature-label,
.feature-highlight .feature-label {
  color: rgba(255, 255, 255, 0.7);
}

.feature-card h3 {
  margin-bottom: var(--space-md);
}

.feature-card p {
  margin: 0;
  color: var(--color-text-light);
}

/* =====================================================
   How It Works Section
   ===================================================== */
.how-it-works {
  padding: var(--space-4xl) 0;
  background: var(--color-bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.step {
  position: relative;
  padding: var(--space-2xl);
}

.step::after {
  content: '';
  position: absolute;
  top: 3rem;
  right: 0;
  width: 50%;
  height: 2px;
  background: var(--color-border);
}

.step:last-child::after {
  display: none;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.step h3 {
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
  font-weight: 600;
}

.step p {
  color: var(--color-text-light);
  margin: 0;
}

/* =====================================================
   Quote Section
   ===================================================== */
.quote-section {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-warm);
}

.quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.5;
  margin: 0;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq {
  padding: var(--space-4xl) 0;
  background: var(--color-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.faq-item {
  padding: var(--space-xl);
  background: var(--color-bg-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.faq-item h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.faq-item p {
  color: var(--color-text-light);
  margin: 0;
  font-size: 0.9375rem;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
  padding: var(--space-4xl) 0;
  background: var(--gradient-dark);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--color-text-inverse);
  margin-bottom: var(--space-lg);
}

.cta-content>p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: var(--space-2xl);
}

.signup-form {
  display: flex;
  gap: var(--space-md);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
}

.signup-form input {
  flex: 1;
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-inverse);
  transition: var(--transition-fast);
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.signup-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent);
}

.form-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  padding: var(--space-4xl) 0 var(--space-xl);
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-4xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.footer-column h4 {
  color: var(--color-text-inverse);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

.footer-column a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin: 0;
}

.affiliate-disclosure {
  font-size: 0.8125rem !important;
  max-width: 500px;
  text-align: right;
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-image {
    display: none;
  }

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

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

  .feature-large {
    grid-column: span 1;
  }

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

  .step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    flex-direction: column;
    padding: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  .nav-links li {
    margin: 0;
    margin-bottom: var(--space-lg);
    width: 100%;
    text-align: center;
  }

  .nav-links li:last-child {
    margin-bottom: 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

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

  .signup-form {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

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

  .affiliate-disclosure {
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero {
    padding-top: calc(72px + var(--space-2xl));
  }

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

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

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

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

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-card {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.hero-card:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-card:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-card:nth-child(3) {
  animation-delay: 0.6s;
}

/* =====================================================
   Micro-Interactions
   ===================================================== */

/* Logo hover animation */
.logo:hover .logo-icon {
  animation: logoSpin 0.6s ease-in-out;
}

@keyframes logoSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.2);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.logo:hover .logo-text {
  color: var(--color-accent-dark);
}

/* Button micro-interactions */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(212, 163, 115, 0.4);
}

.btn:active {
  transform: scale(0.97);
}

/* Nav link underline animation */
.nav-links>li>a:not(.btn) {
  position: relative;
}

.nav-links>li>a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

.nav-links>li>a:not(.btn):hover::after {
  width: 100%;
}

/* Value card icon animations */
.value-icon {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotate(-5deg);
}

.value-card {
  transition: var(--transition-base);
  border-radius: var(--radius-lg);
}

.value-card:hover {
  background: var(--color-bg-warm);
  transform: translateY(-4px);
}

/* Hero card icon bounce */
.card-icon {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-card:hover .card-icon {
  animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

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

  25% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(0.95);
  }

  75% {
    transform: scale(1.1);
  }
}

/* Feature card interactions */
.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-label {
  transition: letter-spacing 0.3s ease;
}

.feature-card:hover .feature-label {
  letter-spacing: 0.15em;
}

/* Step number pulse on hover */
.step {
  cursor: default;
}

.step-number {
  transition: all 0.4s ease;
}

.step:hover .step-number {
  opacity: 0.6;
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(212, 163, 115, 0.5);
}

.step-content h3 {
  transition: color 0.3s ease;
}

.step:hover .step-content h3 {
  color: var(--color-accent-dark);
}

/* FAQ item interactions */
.faq-item {
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.faq-item h3 {
  transition: color 0.3s ease;
}

.faq-item:hover h3 {
  color: var(--color-accent-dark);
}

/* Input focus glow */
.signup-form input {
  transition: all 0.3s ease;
}

.signup-form input:focus {
  box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.2);
}

/* Quote breathing animation */
.quote p {
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {

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

  50% {
    transform: scale(1.01);
  }
}

/* Footer link interactions */
.footer-column a {
  position: relative;
  display: inline-block;
}

.footer-column a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.footer-column a:hover::after {
  width: 100%;
}

/* Mobile menu button animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Floating animation for hero cards */
.hero-card:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.2s both, float 6s ease-in-out infinite 1s;
}

.hero-card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.4s both, float 6s ease-in-out infinite 1.5s;
}

.hero-card:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.6s both, float 6s ease-in-out infinite 2s;
}

@keyframes float {

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

  50% {
    transform: translateX(20px) translateY(-8px);
  }
}

.hero-card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.4s both, float2 6s ease-in-out infinite 1.5s;
}

@keyframes float2 {

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

  50% {
    transform: translateX(40px) translateY(-8px);
  }
}

/* CTA section glow effect */
.cta-section .btn-primary {
  animation: ctaGlow 2s ease-in-out infinite;
}

@keyframes ctaGlow {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
  }

  50% {
    box-shadow: 0 4px 25px rgba(212, 163, 115, 0.6);
  }
}

/* Smooth scroll indicator for tagline */
.hero-tagline {
  animation: fadeInUp 0.6s ease-out, subtlePulse 3s ease-in-out infinite 1s;
}

@keyframes subtlePulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.85;
  }
}