/* Additional Utility Classes */

/* Spacing */
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
.mt-5 { margin-top: 32px; }
.mb-5 { margin-bottom: 32px; }

/* Background Colors */
.bg-light { background-color: var(--color-gray-light); }
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-brown); }

/* Text Colors */
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-gray); }
.text-danger { color: #dc3545; }

/* Text Alignment */
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Display */
.d-flex { display: flex; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-none { display: none; }

/* Flex Utilities */
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* Position */
.position-relative { position: relative; }
.position-absolute { position: absolute; }

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

/* Border Radius */
.rounded { border-radius: var(--radius); }
.rounded-circle { border-radius: 50%; }

/* Shadow */
.shadow { box-shadow: var(--shadow-soft); }
.shadow-lg { box-shadow: var(--shadow-hover); }

/* Width and Height */
.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Object Fit */
.object-fit-cover { object-fit: cover; }

/* z-index */
.z-index-1 { z-index: 1; }
.z-index-2 { z-index: 2; }

/* Responsive Utilities */
@media (max-width: 768px) {
  .d-md-none {
    display: none;
  }
  
  .text-center-md {
    text-align: center;
  }
  
  .flex-column-md {
    flex-direction: column;
  }
}

/* Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Compact values section */
.compact-values .grid-3-cols {
  gap: 16px;
}

.compact-values .text-center {
  padding: 16px 8px;
}

.compact-values .feature-icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
  margin: 0 auto 8px;
}

.compact-values h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.compact-values p {
  font-size: 0.85rem;
  margin: 0;
}

/* Custom Checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
  gap: 8px;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 20px;
  width: 20px;
  background-color: var(--color-white);
  border: 2px solid var(--color-gray);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--color-gray-light);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}