@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@600;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

:root {
  /* Colors - HSL format */
  --background: 0 0% 100%;
  --foreground: 220 13% 18%;
  --card: 0 0% 100%;
  --card-foreground: 220 13% 18%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 13% 18%;
  
  /* Oryx Brand Colors - Intensifiées pour plus de visibilité */
  --primary: 4 89% 58%; /* Rouge Oryx vif */
  --primary-foreground: 0 0% 100%;
  --primary-dark: 4 89% 50%; /* Rouge plus foncé pour contrastes */
  --primary-light: 4 89% 70%; /* Rouge plus clair pour accents */
  
  --secondary: 25 95% 53%; /* Orange Oryx vif */
  --secondary-foreground: 0 0% 100%;
  --secondary-dark: 25 95% 45%; /* Orange plus foncé */
  --secondary-light: 25 95% 65%; /* Orange plus clair */
  
  --accent: 197 71% 73%; /* Bleu ciel Oryx */
  --accent-foreground: 220 13% 18%;
  --accent-dark: 197 71% 60%; /* Bleu plus foncé */
  --accent-light: 197 71% 85%; /* Bleu plus clair */
  
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 4 89% 58%;
  --radius: 0.875rem;
  
  /* Gradients simplifiés et professionnels */
  --gradient-hero: linear-gradient(135deg, hsl(4 89% 58%) 0%, hsl(25 95% 53%) 100%);
  --gradient-accent: linear-gradient(180deg, hsl(197 71% 73% / 0.08), hsl(197 71% 73% / 0.03));
  --gradient-card: linear-gradient(135deg, hsl(4 89% 58% / 0.03) 0%, transparent 100%);
  
  /* Shadows professionnels et subtils */
  --shadow-card: 0 2px 8px hsl(0 0% 0% / 0.06), 0 1px 3px hsl(0 0% 0% / 0.08);
  --shadow-card-hover: 0 8px 24px hsl(0 0% 0% / 0.1), 0 4px 8px hsl(0 0% 0% / 0.06);
  --shadow-hero: 0 20px 40px hsl(0 0% 100% / 0.2);
  --shadow-elegant: 0 10px 40px hsl(0 0% 0% / 0.12);
  --shadow-floating: 0 25px 50px hsl(0 0% 0% / 0.2);
  --shadow-button: 0 4px 12px hsl(4 89% 58% / 0.25);
  --shadow-button-hover: 0 6px 20px hsl(4 89% 58% / 0.35);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Manrope', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

/* Utility Classes */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

/* Responsive utilities supplémentaires */
@media (max-width: 640px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* Typography - Enhanced */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h1 { 
  font-size: 2.5rem;
  line-height: 1.1;
}

h2 { 
  font-size: 2rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.28;
  color: hsl(var(--foreground));
  font-weight: 700;
}

h4 { 
  font-size: 1.5rem;
  line-height: 1.4;
}

h5 { 
  font-size: 1.25rem;
  line-height: 1.5;
}

h6 { 
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 640px) {
  h1 { 
    font-size: 2.5rem;
  }
  h2 { 
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  h1 { 
    font-size: 3rem;
  }
  h2 { 
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  h1 { 
    font-size: 3.5rem;
  }
  h2 {
    font-size: 3rem;
  }
}

/* Buttons - Enhanced with modern UX */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

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

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

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

.btn-primary {
  background: var(--gradient-hero);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-button);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: hsl(var(--secondary-foreground));
  box-shadow: 0 4px 12px hsl(25 95% 53% / 0.3);
}

.btn-secondary:hover {
  box-shadow: 0 6px 20px hsl(25 95% 53% / 0.4);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  border-radius: var(--radius);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid hsl(var(--border));
  color: hsl(var(--foreground));
  position: relative;
}

.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: hsl(var(--accent) / 0.1);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.btn-outline:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.btn-outline:hover::after {
  opacity: 1;
}

/* Cards - Enhanced with modern design et couleurs du logo */
.card {
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: hsl(var(--primary) / 0.3);
}

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

/* Quote Form Card - Style spécial pour les formulaires de devis */
.quote-form-card {
  background: hsl(var(--card));
  border: 2px solid hsl(var(--primary) / 0.2);
  position: relative;
  overflow: visible;
}

.quote-form-card:hover {
  border-color: hsl(var(--primary) / 0.4);
}

.quote-form-card .card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid hsl(var(--primary) / 0.15);
}

.quote-form-card .card-header .card-title {
  color: hsl(var(--primary));
  font-weight: 700;
  font-size: 1.75rem;
}

.quote-form-card .card-header .card-description {
  color: hsl(var(--foreground) / 0.85);
  font-size: 0.9375rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

.quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-button);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: var(--shadow-button);
  }
  50% {
    box-shadow: var(--shadow-button-hover), var(--shadow-glow-primary);
  }
}

.card-header {
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
}

.card-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Forms - Enhanced with better UX */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: hsl(var(--foreground));
  letter-spacing: 0.01em;
  opacity: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid hsl(var(--input));
  border-radius: calc(var(--radius) - 2px);
  font-size: 1rem;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: all var(--transition-base);
  font-family: inherit;
}

input:hover,
select:hover,
textarea:hover {
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.05);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
  transform: translateY(-1px);
}

input:invalid:not(:placeholder-shown),
select:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: hsl(var(--destructive));
}

textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

select {
  cursor: pointer;
  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='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  appearance: none;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

/* Grid - Responsive */
.grid {
  display: grid;
  gap: 1rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
  
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid {
    gap: 2rem;
  }
  
  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Flexbox */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Spacing - Responsive */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 4rem; padding-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

@media (min-width: 768px) {
  .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .mb-12 { margin-bottom: 3rem; }
  .mb-16 { margin-bottom: 4rem; }
}

/* Text - Responsive */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-sm { font-size: 0.875rem; line-height: 1.5; }
.text-base { font-size: 1rem; line-height: 1.6; }
.text-lg { font-size: 1.125rem; line-height: 1.6; }
.text-xl { font-size: 1.25rem; line-height: 1.6; }
.text-2xl { font-size: 1.5rem; line-height: 1.4; }
.text-3xl { font-size: 1.875rem; line-height: 1.3; }
.text-4xl { font-size: 2.25rem; line-height: 1.2; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

/* Prose styles for articles */
.prose {
  color: hsl(var(--foreground));
}

.prose h2 {
  color: hsl(var(--foreground));
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h3 {
  color: hsl(var(--foreground));
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1rem;
  color: hsl(var(--foreground) / 0.9);
}

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

.prose li {
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground) / 0.85);
}

.prose strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

@media (min-width: 768px) {
  .text-lg { font-size: 1.25rem; }
  .text-xl { font-size: 1.5rem; }
  .text-2xl { font-size: 2rem; }
  .text-3xl { font-size: 2.5rem; }
  .text-4xl { font-size: 3rem; }
  .text-5xl { font-size: 3.5rem; }
}

/* Colors */
.text-primary { color: hsl(var(--primary)); }
.text-secondary { color: hsl(var(--secondary)); }
.text-accent { color: hsl(var(--accent)); }
.text-white { color: white; }
.text-muted { 
  color: hsl(var(--muted-foreground)); 
  font-weight: 400;
}

.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-accent { background-color: hsl(var(--accent)); }
.bg-white { background-color: white; }
.bg-gradient-hero { background: var(--gradient-hero); }
.bg-gradient-accent { background: var(--gradient-accent); }

/* Section Header Card - Rectangle blanc de séparation */
.section-header-card {
  background: hsl(var(--card));
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 8px 32px hsl(0 0% 0% / 0.12), 0 4px 16px hsl(0 0% 0% / 0.08);
  padding: 2.5rem 1.5rem;
  margin: -3.5rem auto 3rem;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  border: 1px solid hsl(var(--border));
  transition: all var(--transition-base);
}

.section-header-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-hero);
  border-radius: 0 0 9999px 9999px;
}

@media (min-width: 768px) {
  .section-header-card {
    padding: 3.5rem 3rem;
    margin: -5rem auto 4rem;
  }
}

.section-header-card h2 {
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* Text on orange/gradient background - Force white text */
.bg-gradient-hero,
.bg-gradient-hero *,
.bg-gradient-hero h1,
.bg-gradient-hero h2,
.bg-gradient-hero h3,
.bg-gradient-hero h4,
.bg-gradient-hero h5,
.bg-gradient-hero h6,
.bg-gradient-hero p,
.bg-gradient-hero span,
.bg-gradient-hero a:not(.btn-primary):not(.btn-secondary):not(.btn),
.bg-gradient-hero li,
.bg-gradient-hero label,
.bg-gradient-hero div:not(.btn):not(.card) {
  color: white !important;
}

.bg-gradient-secondary,
.bg-gradient-secondary *,
.bg-gradient-secondary h1,
.bg-gradient-secondary h2,
.bg-gradient-secondary h3,
.bg-gradient-secondary h4,
.bg-gradient-secondary h5,
.bg-gradient-secondary h6,
.bg-gradient-secondary p,
.bg-gradient-secondary span,
.bg-gradient-secondary a:not(.btn-primary):not(.btn-secondary):not(.btn),
.bg-gradient-secondary li,
.bg-gradient-secondary label,
.bg-gradient-secondary div:not(.btn):not(.card) {
  color: white !important;
}

/* Orange/Red solid backgrounds - Force white text */
.bg-primary,
.bg-primary *,
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
.bg-primary p,
.bg-primary span,
.bg-primary a:not(.btn-primary):not(.btn-secondary):not(.btn),
.bg-primary li,
.bg-primary label,
.bg-primary div:not(.btn):not(.card) {
  color: white !important;
}

.bg-secondary,
.bg-secondary *,
.bg-secondary h1,
.bg-secondary h2,
.bg-secondary h3,
.bg-secondary h4,
.bg-secondary h5,
.bg-secondary h6,
.bg-secondary p,
.bg-secondary span,
.bg-secondary a:not(.btn-primary):not(.btn-secondary):not(.btn),
.bg-secondary li,
.bg-secondary label,
.bg-secondary div:not(.btn):not(.card) {
  color: white !important;
}

/* Ensure buttons on gradient backgrounds maintain proper contrast */
.bg-gradient-hero .btn-primary,
.bg-gradient-secondary .btn-primary {
  background: white;
  color: hsl(var(--primary));
}

.bg-gradient-hero .btn-primary:hover,
.bg-gradient-secondary .btn-primary:hover {
  background: hsl(var(--muted));
  color: hsl(var(--primary));
}

/* Shadows */
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-hero { box-shadow: var(--shadow-hero); }
.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-floating { box-shadow: var(--shadow-floating); }

/* Improved UX/UI - Smooth transitions and hover effects */
* {
  transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

/* Better focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
  border-radius: 4px;
}

/* Improved card hover effects */
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Better spacing and typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.7;
  color: hsl(var(--foreground) / 0.88);
}

/* Improved button states */
.btn:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

/* Better form inputs */
input, select, textarea {
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

input:focus,
select:focus,
textarea:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

/* Border */
.border { border: 1px solid hsl(var(--border)); }
.border-t { border-top: 1px solid hsl(var(--border)); }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 2px); }
.rounded-full { border-radius: 9999px; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Display */
.hidden { display: none; }
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

/* Width & Height */
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Flex utilities */
.flex-grow { flex-grow: 1; }
.mt-auto { margin-top: auto; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Enhanced Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-up {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px hsl(4 89% 58% / 0.3);
  }
  50% {
    box-shadow: 0 0 40px hsl(4 89% 58% / 0.6), 0 0 60px hsl(25 95% 53% / 0.4);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scale-in-bounce {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-scale {
  animation: fade-in-scale 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-float-up {
  animation: float-up 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-gradient-shift {
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

.animate-glow-pulse {
  animation: glow-pulse 2s ease-in-out infinite;
}

.animate-slide-in-left {
  animation: slide-in-left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale-in-bounce {
  animation: scale-in-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-bounce {
  animation: bounce 2s infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Stagger animation delays */
.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }
.animate-delay-400 { animation-delay: 400ms; }

/* Transitions */
.transition-all {
  transition: all var(--transition-base);
}

.transition-fast {
  transition: all var(--transition-fast);
}

.transition-slow {
  transition: all var(--transition-slow);
}

.hover\:shadow-hero:hover {
  box-shadow: var(--shadow-card-hover);
}

.hover\:opacity-90:hover {
  opacity: 0.9;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-4px);
}

/* Header - Enhanced with modern design */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid hsl(var(--border));
  background-color: hsl(var(--background) / 0.98);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  transition: all var(--transition-base);
}

@media (max-width: 767px) {
  header {
    background-color: hsl(var(--background));
  }
}

header.scrolled {
  box-shadow: 0 4px 20px hsl(0 0% 0% / 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-content {
    height: 4.5rem;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: hsl(var(--foreground));
  transition: transform var(--transition-base);
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.logo-link:hover .logo-img {
  transform: rotate(5deg);
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--primary));
  letter-spacing: -0.02em;
}

nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

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

nav a {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: hsl(var(--foreground));
  transition: all var(--transition-base);
  padding: 0.6rem 1.1rem;
  border-radius: calc(var(--radius) - 4px);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-hero);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

nav a:hover {
  color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.08);
  transform: translateY(-1px);
}

nav a:hover::after {
  width: 80%;
}

nav a.active {
  color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.1);
}

nav a.active::after {
  width: 80%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: hsl(var(--foreground));
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--radius) - 4px);
  transition: all var(--transition-base);
}

.dropdown-toggle:hover {
  color: hsl(var(--primary));
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1) 0%, hsl(var(--secondary) / 0.1) 100%);
}

.dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition-base);
}

.dropdown.active .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: hsl(var(--background));
  border: 2px solid hsl(var(--primary) / 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-floating), 0 0 20px hsl(var(--primary) / 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  z-index: 100;
  padding: 0.5rem 0;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: hsl(var(--foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: hsl(var(--primary) / 0.05);
  color: hsl(var(--primary));
  border-left-color: hsl(var(--primary));
  padding-left: 1.5rem;
}

.dropdown-menu a.active {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border-left-color: hsl(var(--primary));
  font-weight: 600;
}

@media (max-width: 767px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid hsl(var(--border));
    border-radius: 0;
    margin-top: 0.5rem;
    padding-left: 1rem;
  }
  
  .dropdown.active .dropdown-menu {
    transform: none;
  }
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 20rem;
  height: 100vh;
  background-color: hsl(var(--background));
  border-left: 1px solid hsl(var(--border));
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 100;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 0.75rem;
  text-decoration: none;
  color: hsl(var(--foreground));
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.mobile-menu a:hover {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1) 0%, hsl(var(--secondary) / 0.1) 100%);
  color: hsl(var(--primary));
  transform: translateX(4px);
}

/* Hero Section - Enhanced */
.hero-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 0;
    min-height: 70vh;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%),
              radial-gradient(circle at 70% 30%, hsl(4 89% 58% / 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, hsl(25 95% 53% / 0.15) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 1rem;
  max-width: 60rem;
  margin: 0 auto;
}

.hero-content h1 {
  text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 8px 40px rgba(0,0,0,0.6);
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 1);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.hero-content p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.7), 0 4px 20px rgba(0,0,0,0.5);
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* Footer */
footer {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 2rem 0;
}

@media (min-width: 768px) {
  footer {
    padding: 3rem 0;
  }
}

.footer-content {
  display: grid;
  gap: 2rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

.footer-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul.list-disc {
  list-style: disc;
  padding-left: 1.5rem;
}

.footer-section ul.list-disc li {
  margin-bottom: 0.25rem;
}

.footer-section a {
  color: hsl(var(--background) / 0.95);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.footer-section a:hover {
  color: hsl(var(--background));
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid hsl(var(--background) / 0.3);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--background) / 0.9);
}

/* File Upload - Enhanced */
.file-upload {
  border: 2px dashed hsl(var(--border));
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  background: hsl(var(--muted) / 0.3);
  position: relative;
  overflow: hidden;
}

.file-upload::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.file-upload:hover {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.file-upload:hover::before {
  opacity: 0.05;
}

.file-upload label {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--foreground));
  font-weight: 500;
}

.file-upload input[type="file"] {
  display: none;
}

/* Toast Notification - Enhanced */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-hero);
  color: hsl(var(--background));
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-floating);
  z-index: 1000;
  animation: slide-in-right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid hsl(var(--background));
}

.toast::before {
  content: '✓';
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsl(var(--background) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

@keyframes slide-in-right {
  from {
    transform: translateX(calc(100% + 2rem));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Space utilities */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Icon styles */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}

.card svg,
.footer-section svg,
.section-header-card svg,
.hero-section svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke-width: 1.8;
}

/* Backdrop blur */
.backdrop-blur {
  backdrop-filter: blur(8px);
}

/* Opacity */
.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.opacity-90 { opacity: 0.9; }

/* Max width */
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

/* Text utilities */
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Required field indicator */
.required::after {
  content: " *";
  color: hsl(var(--destructive));
  font-weight: 600;
}

/* Loading states */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1.5rem;
  margin: -0.75rem 0 0 -0.75rem;
  border: 2px solid hsl(var(--primary));
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

/* Smooth scroll */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Form error states */
input.error,
select.error,
textarea.error {
  border-color: hsl(var(--destructive)) !important;
  box-shadow: 0 0 0 4px hsl(var(--destructive) / 0.1) !important;
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.form-group.focused label {
  color: hsl(var(--primary));
  transform: scale(0.95);
  transition: all var(--transition-base);
}

/* Enhanced checkbox */
input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: hsl(var(--primary));
  border-radius: 4px;
  transition: all var(--transition-base);
}

input[type="checkbox"]:hover {
  transform: scale(1.1);
}

input[type="checkbox"]:checked {
  background-color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

/* Enhanced file upload visual feedback */
.file-upload input[type="file"]:focus + label,
.file-upload:hover label {
  color: hsl(var(--primary));
  font-weight: 600;
}

/* Card hover effects enhancement */
.card:hover .card-title {
  color: hsl(var(--primary));
  transition: color var(--transition-base);
}

/* Button ripple effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn:active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  to {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* Mobile menu backdrop */
.mobile-menu::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu.open::before {
  opacity: 1;
}

/* Floating quick actions (call + scroll top) */
.floating-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 120;
}

.floating-actions .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: var(--gradient-hero);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: var(--shadow-button);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
}

.floating-actions .action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover);
}

.floating-actions .action-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.floating-actions .scroll-top {
  background: hsl(var(--foreground));
  color: white;
  border-color: hsl(var(--foreground) / 0.2);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.floating-actions .scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-panel {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  width: 320px;
  max-width: calc(100% - 2.5rem);
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-hero);
  padding: 1rem;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
  z-index: 125;
}

.contact-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-panel__title {
  font-weight: 700;
  font-size: 1rem;
  color: hsl(var(--foreground));
}

.contact-panel__close {
  background: transparent;
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
}

.contact-panel__close:hover {
  background: hsl(var(--muted) / 0.5);
  transform: translateY(-1px);
}

.contact-panel__section {
  padding: 0.5rem 0;
}

.contact-panel__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.35rem;
}

.contact-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--gradient-hero);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-button);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.contact-chip:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-button-hover);
}

.contact-panel__stack {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-link {
  color: hsl(var(--primary));
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-address {
  color: hsl(var(--foreground));
  font-weight: 600;
  line-height: 1.5;
}

.contact-list {
  color: inherit;
  font-weight: 600;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .floating-actions {
    right: 1rem;
    bottom: 1rem;
    gap: 0.6rem;
  }
  .floating-actions .action-btn {
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
  }
  .contact-panel {
    right: 0.75rem;
    bottom: 5rem;
    width: calc(100% - 1.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-actions .action-btn {
    transition: none;
    transform: none !important;
  }
  .floating-actions .scroll-top {
    transition: none;
  }
}

@media print {
  .floating-actions {
    display: none;
  }
}

/* Enhanced spacing utilities */
.mx-auto { margin-left: auto; margin-right: auto; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* Text utilities */
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }

/* Print styles */
@media print {
  header, footer, .btn {
    display: none;
  }
  
  .card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* Section avec accent subtil */
.section-accent {
  background: hsl(var(--muted) / 0.5);
  position: relative;
  overflow: hidden;
}

.section-accent::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsl(4 89% 58% / 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.section-accent::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsl(25 95% 53% / 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

/* Badge simplifié */
.badge-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Highlight avec couleurs du logo */
.highlight-primary {
  background: linear-gradient(135deg, hsl(4 89% 58% / 0.15) 0%, hsl(25 95% 53% / 0.15) 100%);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.highlight-accent {
  background: linear-gradient(135deg, hsl(197 71% 73% / 0.15) 0%, hsl(4 89% 58% / 0.1) 100%);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

/* Ripple effect for buttons */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

