/* Modern SaaS-style CSS for Evenements Page */
:root {
  --primary-color: #d97706;
  --accent-color: #f59e0b;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --border-color: #e5e7eb;
  --success: #10b981;
  --error: #ef4444;
  --warning: #ea580c;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient-primary: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(253, 230, 138, 0.1) 0%, rgba(254, 243, 199, 0.1) 100%);
  color: var(--text-primary);
  padding: 30px 0 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
}

.hero-content-wrapper {
  flex: 1;
  z-index: 2;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  border: 1px solid rgba(217, 119, 6, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  margin: 0 auto 24px;
  font-size: 14px;
  font-weight: 500;
  max-width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  transition: all 0.3s ease;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.title-highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 auto 20px;
  opacity: 0.9;
  max-width: 700px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 auto 30px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 4px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.8;
  flex-wrap: wrap;
  padding: 0 10px;
}

.breadcrumb-link {
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.breadcrumb-link:hover {
  opacity: 1;
}

.breadcrumb-separator {
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--accent-color);
  font-weight: 600;
}

/* Enhanced Main Content */
.main-content {
  padding: 80px 0 120px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.content-wrapper {
  position: relative;
}

/* Filters Bar */
.filters-bar {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
}

.filters-bar:hover {
  box-shadow: var(--shadow-lg);
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.filters-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.filters-title i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.results-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

#results-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 12px;
  background: var(--gray-100);
  border-radius: 20px;
}

.filters-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.filter-label i {
  color: var(--accent-color);
  font-size: 14px;
}

.filter-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  outline: none;
  transition: all 0.2s ease;
  background: var(--white);
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
}

.filter-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.filter-select:hover {
  border-color: var(--gray-400);
}

.filter-actions {
  display: flex;
  align-items: end;
}

.btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-reset:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-reset i {
  font-size: 12px;
}

.filters-meta {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Responsive Filters */
@media (max-width: 768px) {
  .filters-bar {
    padding: 20px;
  }

  .filters-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .filters-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .btn-reset {
    width: 100%;
    justify-content: center;
  }
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.evenements-modal-dialog {
  background: white;
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
}

.evenements-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
  transition: color 0.2s;
}

.evenements-close:hover {
  color: var(--gray-700);
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form input[type="number"],
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* Confirmation Modal */
.confirmation-modal-dialog {
  background: white;
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 500px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.confirmation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.confirmation-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #e6f7ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.confirmation-icon i {
  font-size: 2rem;
  color: var(--success);
}

.confirmation-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.confirmation-content p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.confirm-evenements-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
  transition: color 0.2s;
}

.confirm-evenements-close:hover {
  color: var(--gray-700);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .evenements-modal-dialog {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .confirmation-modal-dialog {
    margin: 1rem;
    padding: 1.5rem;
  }
}

/* Enhanced Events Grid */
.evenements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .evenements-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Enhanced Event Cards */
.evenement-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  position: relative;
  height: fit-content;
}

.evenement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(217, 119, 6, 0.2);
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--gray-100);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.evenement-card:hover .card-image img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.category-badge {
  left: 16px;
  background: rgba(217, 119, 6, 0.9);
  color: var(--white);
}

.price-badge {
  right: 16px;
  background: rgba(16, 185, 129, 0.9);
  color: var(--white);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-header {
  margin-bottom: 24px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.card-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card-category,
.card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.card-category i,
.card-location i {
  color: var(--accent-color);
  font-size: 12px;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
}

.info-section {
  margin-top: 1rem;
}

.info-section-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-section-content {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-section-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.info-section-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.info-section-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
.info-section-list li:last-child {
  margin-bottom: 0;
}
.info-section-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.info-section-list li:before {
  content: "•";
  color: var(--text-secondary);
  margin-bottom: 24px;
}


/* Enhanced Content Sections */
.presentation-section,
.service-section,
.experience-section,
.specialite-section,
.themes-section,
.programme-section,
.points-forts-section,
.appreciations-section,
.etapes-section,
.service-personnalise-section,
.personnalisation-section,
.service-general-section,
.engagement-section,
.conclusion-section {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
}

.presentation-section h4,
.service-section h4,
.experience-section h4,
.specialite-section h4,
.themes-section h4,
.programme-section h4,
.points-forts-section h4,
.appreciations-section h4,
.etapes-section h4,
.service-personnalise-section h4,
.personnalisation-section h4,
.service-general-section h4,
.engagement-section h4,
.conclusion-section h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.presentation-section h4 i,
.service-section h4 i,
.experience-section h4 i,
.specialite-section h4 i,
.themes-section h4 i,
.programme-section h4 i,
.points-forts-section h4 i,
.appreciations-section h4 i,
.etapes-section h4 i,
.service-personnalise-section h4 i,
.personnalisation-section h4 i,
.service-general-section h4 i,
.engagement-section h4 i,
.conclusion-section h4 i {
  color: var(--accent-color);
  font-size: 16px;
}

.themes-list,
.points-list,
.appreciations-list {
  list-style: none;
  padding: 0;
}

.themes-list li,
.points-list li,
.appreciations-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.themes-list li i,
.points-list li i,
.appreciations-list li i {
  color: var(--success);
  margin-top: 2px;
  font-size: 12px;
}

.etapes-list {
  padding-left: 20px;
}

.etapes-list li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.activites-list {
  display: grid;
  gap: 16px;
}

.activite-item {
  padding: 16px;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.activite-item h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.activite-item h5 i {
  color: var(--accent-color);
  font-size: 14px;
}

.activite-item p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Enhanced Card Footer */
.card-footer {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--border-color);
  background: var(--gray-50);
}

.card-details {
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.detail-item i {
  color: var(--accent-color);
  font-size: 12px;
  width: 14px;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.stars {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--gray-300);
}

.stars::before {
  content: "★★★★★";
}

.stars::after {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(var(--rating) * 20%);
  overflow: hidden;
  color: var(--accent-color);
}

.rating-text {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.reviews {
  font-size: 13px;
  color: var(--text-secondary);
}

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.card-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.card-button.primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.card-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card-button.secondary {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.card-button.secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Enhanced Empty State */
.empty-state {
  display: none;
  text-align: center;
  padding: 80px 20px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin: 40px 0;
}

.empty-state-icon {
  font-size: 4rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.empty-state p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 16px;
}

/* Enhanced Load More Button */
.load-more-container {
  text-align: center;
  margin-top: 60px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-lg);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-loader {
  display: none;
}

.load-more-btn.loading .btn-text {
  display: none;
}

.load-more-btn.loading .btn-loader {
  display: block;
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(217, 119, 6, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
  }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero-stats {
    gap: 40px;
  }

  .evenements-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 60px;
    min-height: 50vh;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-item {
    padding: 12px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .main-content {
    padding: 60px 0 80px;
  }

  .evenements-grid {
    grid-template-columns: 1fr;
  }

  .card-content {
    padding: 24px;
  }

  .card-footer {
    padding: 20px 24px 24px;
  }

  .card-actions {
    flex-direction: column;
  }

  .card-button {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-badge {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .breadcrumb {
    font-size: 14px;
    gap: 8px;
  }

  .card-image {
    height: 240px;
  }

  .card-content {
    padding: 20px;
  }

  .card-title {
    font-size: 1.3rem;
  }
}

/* Enhanced Alert Styles */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 32px;
  border-left: 4px solid;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-left-color: var(--error);
  color: #991b1b;
}

.alert i {
  font-size: 20px;
  margin-top: 2px;
}

.alert-content h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

.alert-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

#reset-filters {
  margin-top: 16px;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}
