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

  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  [class*="text-"] strong,
  [class*="text-"] b,
  [style*="color"] strong,
  [style*="color"] b,
  .text-white strong, .text-white b,
  .text-gray-100 strong, .text-gray-100 b,
  .text-gray-200 strong, .text-gray-200 b {
    color: inherit;
  }

  .glass-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  }
  
  .glass-dark {
    background-color: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(55, 65, 81, 0.5);
  }
  
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #65a30d;
    border-radius: 0.75rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
  }
  .btn-primary:hover {
    background-color: #4d7c0f;
    box-shadow: 0 25px 50px -12px rgba(101, 163, 13, 0.5);
    transform: translateY(-4px);
  }
  
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
  }
  .btn-secondary:hover {
    border-color: #65a30d;
    color: #4d7c0f;
    box-shadow: 0 25px 50px -12px rgba(101, 163, 13, 0.5);
  }
  
  .section-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #111827;
  }
  @media (min-width: 768px) {
    .section-title {
      font-size: 3rem;
      line-height: 1;
    }
  }
  
  .section-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #4b5563;
  }
  @media (min-width: 768px) {
    .section-subtitle {
      font-size: 1.5rem;
      line-height: 2rem;
    }
  }
  
  .service-card {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
  }
  .service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
  }
  
  .service-card-hover {
    position: absolute;
    inset: 0px;
    background-image: linear-gradient(135deg, rgba(101, 163, 13, 0.9) 0%, rgba(74, 143, 20, 0.9) 100%);
    opacity: 0;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
  }
  .service-card:hover .service-card-hover {
    opacity: 1;
  }
  
  .floating-shape {
    position: absolute;
    border-radius: 9999px;
    opacity: 0.2;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  
  .nav-link {
    position: relative;
    color: #374151;
    font-weight: 500;
    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: 300ms;
  }
  .nav-link:hover {
    color: #65a30d;
  }
  
  .nav-link::after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 0px;
    height: 0.125rem;
    background-color: #65a30d;
    transition-property: width, transform, opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    content: '';
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-link-active {
    color: #65a30d;
  }
  
  .stat-number {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    color: #65a30d;
  }
  @media (min-width: 768px) {
    .stat-number {
      font-size: 4rem;
    }
  }

  .text-balance {
    text-wrap: balance;
  }
  
  .animation-delay-200 {
    animation-delay: 200ms;
  }
  
  .animation-delay-400 {
    animation-delay: 400ms;
  }
  
  .animation-delay-600 {
    animation-delay: 600ms;
  }

  .cookie-consent-banner {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 50;
    padding: 1.5rem;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(101, 163, 13, 0.3);
  }
  
  .cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 0.5rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    border: 2px solid transparent;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .cookie-accept {
    background-color: #65a30d;
    color: #ffffff;
    border-color: #65a30d;
  }
  .cookie-accept:hover {
    background-color: #4d7c0f;
    border-color: #4d7c0f;
    box-shadow: 0 8px 25px rgba(101, 163, 13, 0.5), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }

  .cookie-decline {
    background-color: #ffffff;
    color: #1f2937;
    border-color: #ffffff;
  }
  .cookie-decline:hover {
    background-color: #f3f4f6;
    border-color: #f3f4f6;
    color: #111827;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0px;
    z-index: 40;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    transform: translateX(0px);
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
  }
  
  .hamburger-space {
    width: 2rem;
    height: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
  }
  
  .hamburger-line {
    width: 2rem;
    height: 0.125rem;
    background-color: #ffffff;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, background-position, background-size, border-spacing, border-image-outset, border-image-slice, border-image-width, clip-path, filter, transform, opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
  }
  
  .hamburger-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  
  .hamburger-active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .testimonial-card {
    position: relative;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-quote {
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 4rem;
    color: #a3e635;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  }
  
  .team-card {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .process-number {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #65a30d;
    border-radius: 9999px;
    margin-bottom: 1rem;
  }
  
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: #f3f4f6;
    border-radius: 0.75rem;
    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: 300ms;
  }
  .contact-info-item:hover {
    background-color: #f0fdf4;
  }

  .hero-gradient {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(17, 24, 39, 0.85) 100%);
  }
  
  .card-hover-lift {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
  }
  .card-hover-lift:hover {
    transform: translateY(-8px);
  }
  
  .gradient-text {
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #84cc16, #65a30d);
  }
  
  .interactive-card {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
  }
  .interactive-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
  }
  
  .interactive-card::before {
    position: absolute;
    inset: 0px;
    background-image: linear-gradient(to right, #84cc16, #65a30d);
    opacity: 0;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    content: '';
  }
  
  .interactive-card:hover::before {
    opacity: 0.1;
  }

  .faq-item {
    border-bottom: 1px solid #e5e7eb;
  }
  
  .faq-question {
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    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: 300ms;
  }
  
  .faq-answer {
    padding-bottom: 1.5rem;
    color: #4b5563;
  }
  
  .blog-card {
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
  }
  .blog-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .form-input {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: #111827;
    background-color: #ffffff;
    border-width: 2px;
    border-color: #e5e7eb;
    border-radius: 0.75rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
  }
  .form-input:focus {
    border-color: #65a30d;
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #65a30d;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }
  
  .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
  }

  .map-container {
    width: 100%;
    height: 24rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  @media (min-width: 768px) {
    .map-container {
      height: 500px;
    }
  }
  
  .cta-section {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
  }
  
  .cta-overlay {
    position: absolute;
    inset: 0px;
    background-image: radial-gradient(ellipse at top right, rgba(101, 163, 13, 0.2) 0%, transparent 50%, transparent 100%);
  }
  
  .footer-link {
    color: #9ca3af;
    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: 300ms;
  }
  .footer-link:hover {
    color: #84cc16;
  }
  
  .social-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    background-color: #1f2937;
    border-radius: 9999px;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
  }
  .social-icon:hover {
    background-color: #65a30d;
    color: #ffffff;
  }
