:root {
  --primary: #fc7101;
  --primary-light: #fd9a45;
  --primary-dark: #e05e00;
}

* {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #f8f9fa 0%, #edf2f7 100%);
  color: #333333;
}

.neomorphic {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 8px 8px 16px #f0f0f0, -8px -8px 16px #ffffff;
}

.neomorphic-button {
  border-radius: 50px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 5px 5px 10px #e6e6e6, -5px -5px 10px #ffffff;
  transition: all 0.3s ease;
}

.neomorphic-button:hover {
  box-shadow: 3px 3px 6px #e6e6e6, -3px -3px 6px #ffffff;
  transform: translateY(-2px);
}

.neomorphic-button:active {
  box-shadow: inset 5px 5px 10px #e6e6e6, inset -5px -5px 10px #ffffff;
  transform: translateY(0);
}

.primary-button {
  background: var(--primary);
  color: white;
  box-shadow: 5px 5px 10px rgba(252, 113, 1, 0.2),
    -2px -2px 5px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.primary-button:hover {
  background: var(--primary-light);
  box-shadow: 3px 3px 6px rgba(252, 113, 1, 0.3),
    -1px -1px 3px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.primary-button:active {
  background: var(--primary-dark);
  box-shadow: inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.service-icon {
  color: var(--primary);
  background: white;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 5px 5px 10px #e6e6e6, -5px -5px 10px #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.highlight-text {
  color: var(--primary);
  font-weight: 600;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hero-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 20px #e6e6e6, -10px -10px 20px #ffffff;
}

.hero-image-container:hover .hero-bg-circle:first-child {
  transform: scale(1.1) translateX(-5px);
  background-opacity: 0.15;
}

.hero-image-container:hover .hero-bg-circle:last-child {
  transform: scale(1.1) translateX(5px);
  background-opacity: 0.15;
}

@media (max-width: 768px) {
  .neomorphic {
    border-radius: 16px;
    box-shadow: 5px 5px 10px #f0f0f0, -5px -5px 10px #ffffff;
  }
}
