html {
  scroll-behavior: smooth;
}

body {
  color: #4b5563;
  background-color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.025em;
}

strong, p, b {
  color: inherit;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(to right, #0d9488, #06b6d4);
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  transition: all 0.3s;
}

.btn-primary:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f766e;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.5rem);
  border: 2px solid #0d9488;
  border-radius: 0.75rem;
  white-space: nowrap;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: white;
  transform: scale(1.05);
}

.glass-card {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(1.5rem);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2rem;
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

.text-gradient {
  background: linear-gradient(to right, #0d9488, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-warm {
  background: linear-gradient(to right, #f97316, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem;
  background-color: #111827;
  color: white;
  transform: translateY(0);
  transition: transform 0.5s ease-in-out;
}

.cookie-content {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-text {
  font-size: 0.875rem;
  color: #d1d5db;
  max-width: 48rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
}

.cookie-accept {
  background-color: #0d9488;
  color: white;
}

.cookie-accept:hover {
  background-color: #0f766e;
}

.cookie-decline {
  background-color: transparent;
  border: 1px solid #4b5563;
  color: #d1d5db;
}

.cookie-decline:hover {
  background-color: #1f2937;
  color: white;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: rgba(17, 24, 39, 0.98);
  backdrop-filter: blur(1rem);
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
}

.mobile-menu-hidden {
  display:none;
}

.mobile-menu-visible {
  transform: translateX(0);
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  text-align: left;
  outline: none;
}

.faq-icon {
  transition: transform 0.3s ease-in-out;
}

.faq-content {
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.faq-content-hidden {
  max-height: 0;
  opacity: 0;
}

.faq-content-visible {
  max-height: 24rem;
  opacity: 1;
  padding-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  background-color: rgba(255, 255, 255, 0.8);
  outline: none;
  transition: all 0.3s;
  color: #111827;
}

.form-input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0d9488;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: all 0.5s;
}

.service-card-hover:hover {
  transform: translateY(-0.5rem);
}

.service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.review-card {
  position: relative;
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.4), transparent);
  opacity: 0;
  transition: all 0.5s;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.5s;
}

.blog-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.blog-image-hover {
  transform: translateX(0);
  transition: transform 0.7s;
}

.blog-card:hover .blog-image-hover {
  transform: scale(1.1);
}

.page-header {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom right, #111827, #1f2937, #0d9488);
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-header {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSA2MCAwIEwgMCAwIDAgNjAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+");
  opacity: 0.3;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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