@tailwind base;
@tailwind components;
@tailwind utilities;


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}


body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}


.cookie-consent-banner.hidden {
  display: none;
}


.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.accordion-content.active {
  max-height: 1000px;
  opacity: 1;
}

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

.accordion-icon.open {
  transform: rotate(45deg);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}


.testimonials-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
}

.testimonial-card {
  scroll-snap-align: start;
  min-width: 300px;
  flex-shrink: 0;
}


.nav-link {
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #667eea;
}


.btn {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 24px;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%);
  color: white;
  padding: 12px 24px;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 50%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background: white;
  color: #333;
  padding: 12px 24px;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #333;
  padding: 12px 24px;
  border: 1px solid #e5e7eb;
}

.btn-ghost:hover {
  background: #f3f4f6;
  color: #333;
}


.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-field.error {
  border-color: #ef4444;
}

.form-group {
  margin-bottom: 20px;
}


.progress-bar {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.footer {
  background: linear-gradient(135deg, #1a2a6c 0%, #b21f2d 50%, #fdbb2d 100%);
}


.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-width: 400px;
  margin: 0 auto;
}

.cookie-consent-banner p {
  margin-bottom: 15px;
  color: #333;
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}


@media (max-width: 768px) {
  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Additional classes used in HTML but not defined in CSS */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gray-300 {
  background-color: #d1d5db;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-indigo-600 {
  background-color: #4f46e5;
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  background-color: #ffffff;
}

.border-2 {
  border-width: 2px;
}

.border-gray-800 {
  border-color: #1f2937;
}

.border-t {
  border-top-width: 1px;
}

.border-white {
  border-color: #ffffff;
}

.bottom-0 {
  bottom: 0px;
}

.flex {
  display: flex;
}

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

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.from-indigo-600 {
  --tw-gradient-from: #4f46e5;
  --tw-gradient-to: #4f46e5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-indigo-900 {
  --tw-gradient-from: #1e1b4b;
  --tw-gradient-to: #1e1b4b;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-pink-300 {
  --tw-gradient-from: #f472b6;
  --tw-gradient-to: #f472b6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

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

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-48 {
  height: 12rem;
}

.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}

.hover\:bg-gray-400:hover {
  background-color: #9ca3af;
}

.hover\:bg-indigo-700:hover {
  background-color: #3730a3;
}

.hover\:bg-white:hover {
  background-color: #ffffff;
}

.hover\:text-gray-900:hover {
  color: #111827;
}

.hover\:text-indigo-600:hover {
  color: #4f46e5;
}

.inline-block {
  display: inline-block;
}

.italic {
  font-style: italic;
}

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

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

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

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.left-0 {
  left: 0px;
}

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

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

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

.lg\:px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.lg\:py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.md\:flex {
  display: flex;
}

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

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

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

.md\:text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.md\:text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.md\:text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.md\:text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.md\:text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.object-cover {
  object-fit: cover;
}

.p-12 {
  padding: 3rem;
}

.p-6 {
  padding: 1.5rem;
}

.ph-bars::before {
  content: "≡";
}

.ph-buildings::before {
  content: "🏢";
}

.ph-check::before {
  content: "✓";
}

.ph-child::before {
  content: "👶";
}

.ph-clay-brick::before {
  content: "🧱";
}

.ph-fire::before {
  content: "🔥";
}

.ph-glass::before {
  content: "🍷";
}

.ph-hands::before {
  content: "✋";
}

.ph-hands-clapping::before {
  content: "👏";
}

.ph-heart::before {
  content: "❤️";
}

.ph-paint-brush::before {
  content: "🖌️";
}

.ph-palette::before {
  content: "🎨";
}

.ph-seedling::before {
  content: "🌱";
}

.ph-sparkle::before {
  content: "✨";
}

.pt-8 {
  padding-top: 2rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.right-0 {
  right: 0px;
}

.right-4 {
  right: 1rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-2xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow-2xl {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.sm\:flex-row {
  flex-direction: row;
}

.sm\:px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.space-x-2 {
  row-gap: 0px;
}

.space-x-4 {
  row-gap: 0px;
}

.space-x-8 {
  row-gap: 0px;
}

.space-y-4 {
  column-gap: 0px;
}

.sticky {
  position: sticky;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

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

.text-gray-200 {
  color: #e5e7eb;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-900 {
  color: #111827;
}

.text-indigo-100 {
  color: #dbeafe;
}

.text-indigo-600 {
  color: #4f46e5;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-transparent {
  color: transparent;
}

.text-white {
  color: #ffffff;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.top-0 {
  top: 0px;
}

.top-4 {
  top: 1rem;
}

.to-pink-900 {
  --tw-gradient-to: #831843;
}

.to-purple-300 {
  --tw-gradient-to: #f0abfc;
}

.to-purple-600 {
  --tw-gradient-to: #9333ea;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.via-purple-900 {
  --tw-gradient-via: #581c87;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.z-50 {
  z-index: 50;
}