


:root {
  --primary-blue: #2563eb;
  --primary-dark: #1e40af;
  --secondary-blue: #3b82f6;
  --accent-blue: #60a5fa;
  --dark-gray: #374151;
  --medium-gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --emergency-red: #dc2626;
  --success-green: #059669;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
}


[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;
}


.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand .navbar-item {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.navbar-menu {
  background-color: var(--white);
}

.navbar-item {
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-item:hover {
  color: var(--primary-blue);
}

.navbar-item.is-active {
  color: var(--primary-blue);
  font-weight: 600;
}


.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-section.hero-100vh {
  min-height: 100vh;
}

.hero-section.hero-compact {
  min-height: 400px;
  padding: 80px 0;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(30, 64, 175, 0.9) 50%, rgba(15, 30, 80, 0.95) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px, 60px 60px, 100px 100px;
  animation: float 20s infinite linear;
}

.hero-particles::after {
  animation-delay: -10s;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.hero-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 2rem;
  display: inline-block;
  animation: badgeGlow 3s ease-in-out infinite alternate;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
  animation: titleFadeIn 1.5s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-subtitle {
  animation: subtitleFadeIn 1.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  animation: featuresSlideIn 2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 1.1rem;
  color: var(--accent-blue);
  animation: iconPulse 2s infinite;
}

.hero-buttons {
  animation: buttonsSlideIn 2.2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-commitment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 12px;
  padding: 1rem 2rem;
  margin-top: 2rem;
  animation: commitmentSlideIn 2.5s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-guarantee i {
  color: var(--success-green);
  font-size: 1.2rem;
}

.hero-guarantee span {
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}


.button {
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.button-primary {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 12px 24px;
}

.button-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.button-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 12px 24px;
}

.button-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.button-emergency {
  background-color: var(--emergency-red);
  color: var(--white);
  padding: 12px 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes badgeGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
}

@keyframes titleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes featuresSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonsSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes commitmentSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}


.service-card, .team-card, .review-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--medium-gray);
  margin-bottom: 1rem;
}


.price-tag {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.price-label {
  font-size: 0.875rem;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--light-gray);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--medium-gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
}


.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.field {
  margin-bottom: 1.5rem;
}

.label {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
  display: block;
}

.input, .textarea, .select select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input:focus, .textarea:focus, .select select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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


.contact-info {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--white);
  font-size: 1.25rem;
}

.contact-text {
  font-weight: 500;
  color: var(--dark-gray);
}


.emergency-banner {
  background-color: var(--emergency-red);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.emergency-banner .icon {
  margin-right: 0.5rem;
}


.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem 0;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 1rem;
  text-align: center;
  color: var(--medium-gray);
}


.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-width: 400px;
  margin: 0 auto;
}

.cookie-banner-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cookie-banner-text {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

.cookie-button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--primary-blue);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: var(--primary-dark);
}

.cookie-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-decline:hover {
  background-color: var(--white);
  color: var(--dark-gray);
}


@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section.hero-100vh {
    min-height: 80vh;
    padding: 40px 0;
  }
  
  .hero-section.hero-compact {
    min-height: 300px;
    padding: 60px 0;
  }
  
  .hero-badge {
    margin-bottom: 1.5rem;
    padding: 6px 16px;
  }
  
  .badge-text {
    font-size: 0.8rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .feature-item {
    padding: 0.5rem 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .button-primary, .button-secondary, .button-emergency {
    width: 100%;
    text-align: center;
  }
  
  .hero-commitment {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
  }
  
  .navbar-item {
    padding: 0.75rem 0;
  }
  
  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    max-width: none;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .card-content {
    padding: 1rem;
  }
  
  .contact-form, .contact-info {
    padding: 1.5rem;
  }
}