/* Atelier IA Specific Styles */

/* Hero Banner for Atelier IA */
.c-banners.ai-shop {
  background: linear-gradient(135deg, #043024 0%, #007F37 50%, #039739 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #EDC953;
}

.c-banners.ai-shop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.c-banners.ai-shop small {
  color: #EDC953;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.c-banners.ai-shop h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #EDC953, #D4A340, #C88F37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.c-banners.ai-shop p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Shopping Cart */
.c-cart {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.c-cart.open {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.cart-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-items {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.empty-cart {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 50px;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  margin-right: 15px;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.cart-item-price {
  color: #007F37;
  font-weight: 600;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.quantity-btn {
  background: #f5f5f5;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.quantity-input {
  width: 50px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 10px;
  padding: 5px;
}

.remove-item {
  background: #ff4757;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  margin-left: 10px;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
}

.cart-total {
  margin-bottom: 20px;
  font-size: 1.2rem;
  text-align: center;
}

.cart-total strong {
  color: #333;
}

/* Cart Toggle Button */
.cart-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #007F37;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 20px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 127, 55, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cart-toggle:hover {
  background: #039739;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 127, 55, 0.4);
}

.cart-icon {
  font-size: 20px;
}

.cart-count {
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* Client Journey Section */
.c-client-journey {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 50%, #f0f8f0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.c-client-journey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,127,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

/* Journey Trigger */
.journey-trigger {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.trigger-content {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,255,248,0.95));
  padding: 60px 40px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,127,55,0.15);
  border: 2px solid rgba(237,201,83,0.3);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.trigger-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007F37, #EDC953, #007F37);
}

.trigger-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,127,55,0.25);
  border-color: rgba(237,201,83,0.5);
}

.trigger-icon {
  font-size: 4rem;
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

.trigger-icon svg {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
}

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

.trigger-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.trigger-content p {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.trigger-btn {
  background: linear-gradient(135deg, #007F37, #039739);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 127, 55, 0.3);
}

.trigger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 127, 55, 0.4);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.trigger-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.trigger-btn .btn-icon {
  transition: transform 0.3s ease;
}

.trigger-btn:hover .btn-icon {
  transform: scale(1.1);
}

/* Full Screen Questionnaire Modal */
.questionnaire-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.questionnaire-modal.active {
  display: flex;
  opacity: 1;
}

.questionnaire-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.questionnaire-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Questionnaire Header */
.questionnaire-header {
  background: linear-gradient(135deg, #043024, #007F37);
  color: white;
  padding: 30px 40px;
  position: relative;
  z-index: 10;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.questionnaire-logo {
  height: 50px;
  filter: brightness(0) invert(1);
}

.header-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.header-text p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.close-questionnaire {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-questionnaire:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Progress Section */
.questionnaire-progress {
  background: #f8f9fa;
  padding: 30px 40px;
  border-bottom: 1px solid #e9ecef;
}

.progress-container {
  max-width: 1200px;
  margin: 0 auto;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 30px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #007F37, #039739);
  width: 25%;
  transition: width 0.5s ease;
  border-radius: 3px;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background: #007F37;
  color: white;
  transform: scale(1.1);
}

.step-item.completed .step-number {
  background: #039739;
  color: white;
}

.step-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  transition: color 0.3s ease;
}

.step-item.active .step-label {
  color: #007F37;
}

.step-item.completed .step-label {
  color: #039739;
}

/* Question Content */
.questionnaire-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 40px 120px 40px;
  min-height: 0;
  overflow-y: auto;
}

.question-slide {
  width: 100%;
  max-width: 800px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.question-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.question-container {
  width: 100%;
}

.journey-progress {
  margin-bottom: 40px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #007F37, #039739);
  width: 25%;
  transition: width 0.3s ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.step {
  padding: 10px 20px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
}

.step.active {
  background: #007F37;
  color: white;
}

.step.completed {
  background: #039739;
  color: white;
}

.journey-content {
  min-height: 300px;
}

.question-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.question-subtitle {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
  font-style: italic;
}

.question-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.option-card {
  padding: 30px;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  position: relative;
  overflow: hidden;
}

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

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

.option-card:hover {
  border-color: #007F37;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 127, 55, 0.15);
}

.option-card.selected {
  border-color: #007F37;
  background: linear-gradient(135deg, #f8fff8, #ffffff);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 127, 55, 0.2);
}

.option-card.selected::after {
  content: '✓';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: #007F37;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.option-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.option-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.option-examples,
.option-portfolio,
.option-timeline {
  font-size: 12px;
  margin-top: 8px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid #007F37;
}

.option-examples strong,
.option-portfolio strong,
.option-timeline strong {
  color: #007F37;
  font-weight: 600;
}

.option-examples {
  color: #666;
}

.option-portfolio {
  color: #007F37;
  background: #f8fff8;
}

.option-timeline {
  color: #333;
  background: #fff8e1;
  border-left-color: #EDC953;
}

.option-timeline strong {
  color: #D4A340;
}

/* Text Input Styles */
.question-input {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.text-input-field {
  width: 100%;
  max-width: 500px;
  padding: 20px 25px;
  border: 3px solid #E0E0E0;
  border-radius: 15px;
  font-size: 1.1rem;
  font-family: inherit;
  background: white;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.text-input-field:focus {
  outline: none;
  border-color: #007F37;
  box-shadow: 0 0 0 3px rgba(0, 127, 55, 0.1);
  transform: translateY(-2px);
}

.text-input-field::placeholder {
  color: #999;
  font-style: italic;
}

/* Questionnaire Navigation */
.questionnaire-navigation {
  background: #f8f9fa;
  padding: 30px 40px;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  bottom: 0;
  z-index: 100;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.nav-btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.nav-btn.primary {
  background: linear-gradient(135deg, #007F37, #039739);
  color: white;
  box-shadow: 0 5px 20px rgba(0, 127, 55, 0.3);
}

.nav-btn.primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 127, 55, 0.4);
}

.nav-btn.primary:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

.nav-btn.secondary {
  background: #f5f5f5;
  color: #666;
}

.nav-btn.secondary:hover:not(:disabled) {
  background: #e0e0e0;
  transform: translateY(-1px);
}

.nav-btn.secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.nav-btn:hover .btn-icon {
  transform: scale(1.1);
}

/* Results Screen */
.questionnaire-results {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 5px;
  background: linear-gradient(135deg, #f8fff8, #ffffff);
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-overflow-scrolling: touch;
  border-top: 3px solid #EDC953;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.results-content {
  max-width: 95vw;
  text-align: center;
  animation: slideInUp 0.6s ease;
  width: 100%;
  padding: 30px 15px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.results-header {
  margin-bottom: 30px;
  flex-shrink: 0;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007F37, #039739);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 15px;
  animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.results-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
  background: linear-gradient(45deg, #007F37, #EDC953);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.results-header p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.recommended-solution {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  border: 3px solid #EDC953;
  border-left: 8px solid #007F37;
  position: relative;
  overflow: hidden;
}

.recommended-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007F37, #EDC953, #007F37);
}

.solution-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,255,248,0.98));
  border-radius: 25px;
  padding: 30px 20px;
  margin-bottom: 30px;
  box-shadow: 0 20px 60px rgba(0,127,55,0.15);
  border: 3px solid #EDC953;
  border-left: 8px solid #007F37;
  text-align: left;
  max-width: 100%;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007F37, #EDC953, #007F37);
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.solution-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #007F37, #039739);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.solution-title {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
  font-weight: 700;
}

.solution-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1rem;
}

.solution-portfolio {
  margin-bottom: 25px;
}

.solution-portfolio h4 {
  color: #333;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 100%;
}

.portfolio-tag {
  background: linear-gradient(135deg, #007F37, #039739);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 127, 55, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.portfolio-tag.clickable {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.portfolio-tag.clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 127, 55, 0.4);
  background: linear-gradient(135deg, #039739, #007F37);
}

.portfolio-tag.clickable:hover .portfolio-icon {
  transform: scale(1.2);
}

.portfolio-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.solution-features h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 100%;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 127, 55, 0.05);
  border-radius: 10px;
  border-left: 3px solid #007F37;
}

.feature-icon {
  color: #007F37;
  font-weight: bold;
  font-size: 16px;
}

.feature-text {
  color: #333;
  font-size: 14px;
}

.solution-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.solution-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 14px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
}

.solution-feature::before {
  content: '✓';
  color: #007F37;
  font-weight: bold;
  font-size: 16px;
}

.results-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  flex-shrink: 0;
}

.action-btn {
  padding: 20px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.action-btn.primary {
  background: linear-gradient(135deg, #007F37, #039739);
  color: white;
  box-shadow: 0 5px 20px rgba(0, 127, 55, 0.3);
}

.action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 127, 55, 0.4);
}

.action-btn.secondary {
  background: white;
  color: #007F37;
  border: 2px solid #007F37;
}

.action-btn.secondary:hover {
  background: #007F37;
  color: white;
  transform: translateY(-2px);
}

/* Quote Generator and ROI Simulator Styles */
.quote-form,
.roi-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group select,
.form-group input {
  padding: 15px;
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: #007F37;
}

.form-group input[type="range"] {
  padding: 0;
  height: 6px;
  background: #E0E0E0;
  border-radius: 3px;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #007F37;
  border-radius: 50%;
  cursor: pointer;
}

.range-value {
  font-weight: 600;
  color: #007F37;
  font-size: 1.1rem;
}

.quote-output,
.roi-output {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  min-height: 300px;
}

.quote-preview,
.roi-preview {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

/* Quote Result Styles */
.quote-result {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.quote-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.quote-header h4 {
  color: #007F37;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.quote-details {
  margin-bottom: 25px;
}

.quote-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.quote-item.total {
  border-top: 2px solid #007F37;
  border-bottom: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: #007F37;
  margin-top: 10px;
  padding-top: 15px;
}

.quote-item .label {
  color: #666;
  font-weight: 500;
}

.quote-item .value {
  color: #333;
  font-weight: 600;
}

.quote-breakdown {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}

.quote-breakdown h5 {
  color: #007F37;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: #666;
}

.breakdown-item.total {
  border-top: 1px solid #ddd;
  margin-top: 10px;
  padding-top: 12px;
  font-weight: 600;
  color: #007F37;
}

.quote-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* ROI Result Styles */
.roi-result {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.roi-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.roi-header h4 {
  color: #007F37;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.roi-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.metric-item {
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px solid transparent;
}

.metric-item:hover {
  border-color: #007F37;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.metric-label {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.metric-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
}

.metric-value.positive {
  color: #007F37;
}

.metric-value.negative {
  color: #dc3545;
}

.roi-breakdown {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}

.roi-breakdown h5 {
  color: #007F37;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

  .roi-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
  }



/* Responsive adjustments for questionnaire */
@media (max-width: 768px) {
  .questionnaire-header {
    padding: 20px;
  }
  
  .header-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .logo-section {
    flex-direction: column;
    gap: 15px;
  }
  
  .questionnaire-progress {
    padding: 20px;
  }
  
  .questionnaire-content {
    padding: 40px 20px 120px 20px;
  }
  
  .questionnaire-navigation {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-btn {
    width: 100%;
    justify-content: center;
  }
  
  .questionnaire-results {
    padding: 20px 10px 120px 10px;
  }
  
  .results-content {
    max-width: 100%;
    padding: 30px 15px;
  }
  
  .question-title {
    font-size: 2rem;
  }
  
  .question-options {
    grid-template-columns: 1fr;
  }
  
  .option-card {
    padding: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .portfolio-tags {
    justify-content: flex-start;
  }
  
  .quote-container,
  .roi-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.btn-primary, .btn-secondary {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: #007F37;
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background: #039739;
  transform: translateY(-1px);
}

.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.btn-secondary {
  background: #f5f5f5;
  color: #666;
}

.btn-secondary:hover:not(:disabled) {
  background: #e0e0e0;
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.journey-results {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.results-header {
  text-align: center;
  margin-bottom: 30px;
}

.results-header h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.recommended-solution {
  background: linear-gradient(135deg, #f8fff8, #e8f5e8);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid #007F37;
}

.solution-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.solution-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 14px;
}

.solution-feature::before {
  content: '✓';
  color: #007F37;
  font-weight: bold;
}

.results-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  flex-shrink: 0;
}

/* NSIA Showcase Section */
.c-nsia-showcase {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.c-nsia-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(0,127,55,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-grid)"/></svg>');
  opacity: 0.4;
  z-index: 0;
}

.nsia-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.nsia-header small {
  color: #007F37;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.nsia-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.nsia-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.nsia-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.nsia-technical {
  background: linear-gradient(135deg, rgba(248,249,250,0.9), rgba(255,255,255,0.9));
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(0,127,55,0.1);
  border: 2px solid rgba(237,201,83,0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.nsia-technical::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007F37, #EDC953);
}

.nsia-technical h3 {
  color: #333;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.tech-category h4 {
  color: #007F37;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 700;
}

.tech-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-category li {
  padding: 8px 0;
  color: #666;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.tech-category li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #007F37;
  font-weight: bold;
}

.nsia-capabilities h3 {
  color: #333;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.capability-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.capability-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.capability-item h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.capability-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.nsia-summary {
  background: linear-gradient(135deg, rgba(248,249,250,0.9), rgba(255,255,255,0.9));
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,127,55,0.1);
  border: 2px solid rgba(237,201,83,0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  height: fit-content;
}

.nsia-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #EDC953, #007F37);
}

.nsia-summary h3 {
  color: #333;
  margin-bottom: 25px;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.summary-content {
  position: relative;
  z-index: 1;
}

.summary-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1rem;
}

.summary-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  border-left: 4px solid #007F37;
  transition: all 0.3s ease;
}

.summary-point:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 127, 55, 0.1);
}

.point-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 5px;
}

.point-content h4 {
  color: #333;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.point-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}


.nsia-legitimacy {
  margin-top: 60px;
  text-align: center;
}

.nsia-legitimacy h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

.legitimacy-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.legitimacy-point {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.point-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.legitimacy-point h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.legitimacy-point p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Case Studies Section */
.c-case-studies {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 50%, #f0f8f0 100%);
  position: relative;
  overflow: hidden;
}

.c-case-studies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="case-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(0,127,55,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23case-dots)"/></svg>');
  opacity: 0.4;
  z-index: 0;
}

.case-studies-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.case-studies-header small {
  color: #007F37;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.case-studies-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.case-studies-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.case-study-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,255,248,0.95));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,127,55,0.1);
  border: 2px solid rgba(237,201,83,0.2);
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,127,55,0.2);
  border-color: rgba(237,201,83,0.4);
}

.case-study-card.showcase-card {
  border: 2px solid #EDC953;
  background: linear-gradient(135deg, #fff9e6, #ffffff);
}

.case-study-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.case-study-image img {
  width: 80px;
  height: 80px;
  opacity: 0.9;
}

.case-study-content {
  padding: 25px;
}

.case-study-category {
  color: #007F37;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.case-study-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.case-study-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.case-study-reference {
  background: #f8fff8;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #007F37;
}

.case-study-reference strong {
  color: #007F37;
  font-size: 14px;
}

.case-study-details {
  margin-bottom: 20px;
}

.case-study-details > div {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.case-study-details strong {
  color: #333;
  font-weight: 600;
}

.case-study-challenge {
  color: #666;
}

.case-study-solution {
  color: #666;
}

.case-study-results {
  color: #007F37;
  font-weight: 600;
}

.case-study-features {
  margin-bottom: 20px;
}

.case-study-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-study-features li {
  padding: 5px 0;
  color: #666;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.case-study-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #007F37;
  font-weight: bold;
}

.case-study-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-study-delivery {
  display: flex;
  align-items: center;
  gap: 5px;
}

.delivery-time {
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

.case-study-footer .c-btns {
  padding: 10px 20px;
  font-size: 14px;
}

.products-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.products-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Filters */
.c-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 2px solid #e0e0e0;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #007F37;
  border-color: #007F37;
  color: white;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

.product-content {
  padding: 25px;
}

.product-category {
  color: #007F37;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.product-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.product-features {
  margin-bottom: 20px;
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  padding: 5px 0;
  color: #666;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #007F37;
  font-weight: bold;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #007F37;
}

.price-type {
  color: #666;
  font-size: 14px;
}

.add-to-cart-btn {
  background: #007F37;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: #039739;
  transform: translateY(-1px);
}

/* Custom Solutions Section */
.c-custom-solutions {
  padding: 80px 0;
  background: white;
}

.custom-solutions-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.custom-solutions-text small {
  color: #007F37;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.custom-solutions-text h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
}

.custom-solutions-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.custom-solutions-visual {
  text-align: center;
}

.custom-solutions-visual img {
  width: 200px;
  height: 200px;
  opacity: 0.8;
}

/* Why Choose Section */
.c-why-choose {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.c-why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #007F37, transparent);
}

.why-choose-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-header small {
  color: #007F37;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.why-choose-header h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-choose-header p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.why-choose-item {
  text-align: center;
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 127, 55, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.why-choose-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007F37, #039739);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-choose-item:hover::before {
  transform: scaleX(1);
}

.why-choose-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 127, 55, 0.15);
  border-color: rgba(0, 127, 55, 0.2);
}

.why-choose-icon {
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.why-choose-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 127, 55, 0.1), rgba(3, 151, 57, 0.1));
  border-radius: 50%;
  z-index: -1;
  transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon::before {
  transform: translate(-50%, -50%) scale(1.2);
  background: linear-gradient(135deg, rgba(0, 127, 55, 0.15), rgba(3, 151, 57, 0.15));
}

.why-choose-icon img,
.why-choose-icon svg {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 127, 55, 0.2));
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.why-choose-item:hover .why-choose-icon img,
.why-choose-item:hover .why-choose-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(0, 127, 55, 0.3));
}

.icon-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #007F37, #039739);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 127, 55, 0.3);
  z-index: 2;
}

.why-choose-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.feature-tag {
  background: linear-gradient(135deg, rgba(0, 127, 55, 0.1), rgba(3, 151, 57, 0.1));
  color: #007F37;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(0, 127, 55, 0.2);
}

.why-choose-item h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
}

.why-choose-item p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  flex-grow: 1;
}

/* Additional Benefits Section */
.why-choose-benefits {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 127, 55, 0.1);
}

.benefits-header {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-header h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.benefits-header p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  border: 1px solid rgba(0, 127, 55, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 10px 30px rgba(0, 127, 55, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto;
}

.benefit-item h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Product Modal */
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.c-modal.open {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 15px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: 25px 30px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.modal-image {
  text-align: center;
}

.modal-image img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.modal-details h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.modal-details p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-features {
  margin-bottom: 25px;
}

.modal-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-features li {
  padding: 8px 0;
  color: #666;
  font-size: 14px;
  position: relative;
  padding-left: 25px;
}

.modal-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #007F37;
  font-weight: bold;
}

.modal-price {
  margin-bottom: 25px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.modal-price .price {
  font-size: 2rem;
  font-weight: 700;
  color: #007F37;
}

.modal-price .price-type {
  color: #666;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .c-banners.ai-shop h1 {
    font-size: 2.5rem;
  }
  
  .c-banners.ai-shop p {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .c-cart {
    width: 100%;
    right: -100%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  
  .custom-solutions-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cart-toggle {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
  }
  
  .c-filters {
    padding: 0 15px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .c-banners.ai-shop {
    padding: 100px 0 60px;
  }
  
  .c-banners.ai-shop h1 {
    font-size: 2rem;
  }
  
  .products-header h2 {
    font-size: 2rem;
  }
  
  .why-choose-header h2 {
    font-size: 2rem;
  }
  
  .custom-solutions-text h2 {
    font-size: 1.8rem;
  }
}

/* 🎬 Animations au scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Classes d'animation */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
}

.animate-fade-up {
  transform: translateY(30px);
}

.animate-fade-up.animated {
  transform: translateY(0);
}

.animate-fade-left {
  transform: translateX(-30px);
}

.animate-fade-left.animated {
  transform: translateX(0);
}

.animate-fade-right {
  transform: translateX(30px);
}

.animate-fade-right.animated {
  transform: translateX(0);
}

.animate-scale {
  transform: scale(0.8);
}

.animate-scale.animated {
  transform: scale(1);
}

/* 🛒 Section Cas d'études et réalisations */
.case-studies-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.case-studies-header {
  text-align: center;
  margin-bottom: 50px;
}

.case-studies-header small {
  color: #007F37;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.case-studies-header h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin: 15px 0;
  font-weight: 700;
}

.case-studies-header p {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.case-studies-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  background: white;
  border: 2px solid #e2e8f0;
  color: #64748b;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover {
  border-color: #007F37;
  color: #007F37;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #007F37;
  border-color: #007F37;
  color: white;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.case-study-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 127, 55, 0.8), rgba(3, 151, 57, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-study-card:hover .case-study-overlay {
  opacity: 1;
}

.case-study-overlay .case-study-icon {
  font-size: 4rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.case-study-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-study-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.case-study-icon {
  font-size: 2.5rem;
  margin-right: 15px;
}

.case-study-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.case-study-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-study-features {
  margin-bottom: 25px;
}

.case-study-features h4 {
  color: #1a202c;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  color: #64748b;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007F37;
  font-weight: bold;
}

.case-study-price {
  background: linear-gradient(135deg, #007F37, #039739);
  color: white;
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.1rem;
}

.case-study-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.btn-add-cart {
  flex: 1;
  background: #007F37;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  background: #005A2B;
  transform: translateY(-2px);
}

.btn-details {
  background: transparent;
  color: #007F37;
  border: 2px solid #007F37;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-details:hover {
  background: #007F37;
  color: white;
}

.btn-quote {
  background: linear-gradient(135deg, #EDC953, #F4D03F);
  color: #1a202c;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-quote:hover {
  background: linear-gradient(135deg, #F4D03F, #EDC953);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 201, 83, 0.3);
}

/* 🛒 Panier */
.cart-section {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-header h3 {
  color: #1a202c;
  margin: 0;
  font-size: 1.5rem;
}

.cart-toggle {
  background: #007F37;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cart-toggle:hover {
  background: #005A2B;
  transform: translateY(-2px);
}

.cart-count {
  background: #EDC953;
  color: #1a202c;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.cart {
  display: none;
}

.cart.open {
  display: block;
}

.cart-items {
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-info h4 {
  color: #1a202c;
  margin: 0 0 5px 0;
  font-size: 1rem;
}

.cart-item-info p {
  color: #64748b;
  margin: 0;
  font-size: 0.9rem;
}

.cart-item-price {
  color: #007F37;
  font-weight: 600;
  font-size: 1.1rem;
}

.cart-actions {
  display: flex;
  gap: 15px;
}

.cart-actions .btn-primary,
.cart-actions .btn-secondary {
  flex: 1;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-actions .btn-primary {
  background: #007F37;
  color: white;
  border: none;
}

.cart-actions .btn-primary:hover {
  background: #005A2B;
  transform: translateY(-2px);
}

.cart-actions .btn-secondary {
  background: transparent;
  color: #64748b;
  border: 2px solid #e2e8f0;
}

.cart-actions .btn-secondary:hover {
  border-color: #64748b;
  color: #1a202c;
}

.cart-empty {
  text-align: center;
  color: #64748b;
  font-style: italic;
  padding: 40px 0;
}

/* 🤖 IA: Nouvelles sections pour les résultats intelligents */

.solution-roadmap {
  background: linear-gradient(135deg, rgba(0, 127, 55, 0.05), rgba(3, 151, 57, 0.05));
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #007F37;
}

.solution-roadmap h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap-list li {
  background: white;
  border-radius: 10px;
  padding: 12px 16px;
  margin: 8px 0;
  border-left: 3px solid #007F37;
  box-shadow: 0 2px 8px rgba(0, 127, 55, 0.1);
  font-size: 0.95rem;
  color: #555;
}

.solution-insights {
  background: linear-gradient(135deg, rgba(0, 127, 55, 0.08), rgba(3, 151, 57, 0.08));
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #007F37;
}

.solution-insights h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.ai-project-description {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 12px;
  color: #444;
  line-height: 1.6;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 127, 55, 0.1);
}

.ai-project-description p {
  margin-bottom: 15px;
}

.ai-project-description p:last-child {
  margin-bottom: 0;
}

.solution-timeline {
  background: linear-gradient(135deg, rgba(237, 201, 83, 0.1), rgba(244, 208, 63, 0.1));
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #EDC953;
}

.solution-timeline h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.solution-timeline p {
  color: #666;
  font-size: 1rem;
  margin: 5px 0;
}

/* Modal pour le panier - Formulaire de devis */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
  color: #007F37;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #f1f5f9;
  color: #333;
}

.modal-body {
  padding: 30px;
}

.cart-summary-section {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  border-left: 4px solid #007F37;
}

.cart-summary-section h3 {
  color: #007F37;
  margin: 0 0 15px 0;
  font-size: 1.2rem;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item-summary {
  background: white;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.item-info h4 {
  margin: 0 0 5px 0;
  color: #333;
  font-size: 1rem;
}

.item-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.quote-form-section h3 {
  color: #333;
  margin: 0 0 20px 0;
  font-size: 1.2rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #007F37;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.submit-btn {
  flex: 1;
  background: linear-gradient(135deg, #007F37, #039739);
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 127, 55, 0.3);
}

.cancel-btn {
  background: #f1f5f9;
  color: #666;
  border: 2px solid #e2e8f0;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn:hover {
  background: #e2e8f0;
  color: #333;
}

/* Notifications */
.success-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #007F37, #039739);
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 127, 55, 0.3);
  z-index: 10001;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
}

.success-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.error-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
  z-index: 10001;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
}

.error-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .modal-header {
    padding: 20px 20px 15px;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .success-notification {
    right: 10px;
    left: 10px;
    transform: translateY(-100px);
  }
  
  .success-notification.show {
    transform: translateY(0);
  }
}