/* Non-Critical CSS - Load Asynchronously */

/* Extended Service Styles */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  contain: layout style;
  border: 1px solid #DED9D9;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 150, 143, 0.15);
}

.service-card h3 {
  color: #1D1011;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  color: #636161;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: #00968F;
  margin-bottom: 1rem;
}

/* Extended Button Styles */
.btn-secondary {
  background: white;
  color: #00968F;
  border: 2px solid #00968F;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #00968F;
  color: white;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #636161;
  border: 2px solid #DED9D9;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: #00968F;
  color: #00968F;
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section-lg {
  padding: 6rem 0;
}

.section-sm {
  padding: 3rem 0;
}

/* Background Variations */
.bg-light {
  background-color: #EFEEEE;
}

.bg-gradient {
  background: linear-gradient(135deg, #00968F 0%, #00D6C8 100%);
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #1E3A5F 0%, #00968F 100%);
}

/* Typography Extensions */
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

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

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

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

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

/* Content Sections */
.content-section {
  margin: 3rem 0;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1D1011;
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 1rem;
}

.content-section p {
  color: #636161;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Feature Lists */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #DED9D9;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✓';
  color: #00968F;
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Cards and Components */
.card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #DED9D9;
}

.card-header {
  border-bottom: 1px solid #DED9D9;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1D1011;
  margin: 0;
}

.card-content {
  color: #636161;
}

/* Navigation Styles */
.nav-link {
  color: #636161;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: #00968F;
  background-color: rgba(0, 150, 143, 0.1);
}

.nav-link.active {
  color: #00968F;
  background-color: rgba(0, 150, 143, 0.15);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: #1D1011;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #DED9D9;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #00968F;
  box-shadow: 0 0 0 3px rgba(0, 150, 143, 0.1);
}

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

/* Footer Styles */
.footer {
  background-color: #1D1011;
  color: #8A8888;
  padding: 3rem 0 2rem;
}

.footer h4 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer a {
  color: #8A8888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #00D6C8;
}

.footer-bottom {
  border-top: 1px solid #636161;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }

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

.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }

/* Responsive Utilities */
.hidden { display: none; }

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

@media (min-width: 1024px) {
  .lg\\:block { display: block; }
  .lg\\:hidden { display: none; }
  .lg\\:flex { display: flex; }
  .lg\\:grid { display: grid; }
}

/* Performance Optimizations */
.gpu-accelerated {
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.smooth-scroll {
  scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

.slide-up {
  animation: slideUp 0.6s ease-out;
}

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