:root {
    /* Color variables */
    --red-50: #fef2f2;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --orange-50: #fff7ed;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --blue-50: #eff6ff;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --green-50: #f0fdf4;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --purple-50: #faf5ff;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --teal-50: #f0fdfa;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
  }
  
  .why-choose-us-section {
    padding: 0 16px 80px;
    background: white;
    position: relative;
    overflow: hidden;
  }
  
  .bg-decoration {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(96px);
    pointer-events: none;
  }
  
  .bg-decoration-top {
    top: 0;
    right: 0;
    background: rgba(249, 115, 22, 0.05);
  }
  
  .bg-decoration-bottom {
    bottom: 0;
    left: 0;
    background: rgba(249, 115, 22, 0.05);
  }
  
  .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
  }
  
  .section-header {
    text-align: center;
    margin: 0 auto 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    border: 1px solid rgba(217, 119, 6, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin: 0 auto 24px;
    font-size: 14px;
    font-weight: 500;
    max-width: fit-content;
    color: #b45309;
    letter-spacing: 0.5px;
  }
  
  .badge-dot {
    width: 8px;
    height: 8px;
    background: #d97706;
    transition: all 0.3s ease;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
    }
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 4px rgba(217, 119, 6, 0);
    }
    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
    }
  }
  
  .title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(to right, rgb(30, 41, 59), rgb(71, 85, 105));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  
  .description {
    color: rgb(71, 85, 105);
    max-width: 768px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
  }
  
  /* Grid Layout */
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  @media (max-width: 1024px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .grid {
      grid-template-columns: 1fr;
      max-width: 600px;
    }
  }
  
  /* Cards */
  .card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 32px;
    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 rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
  }
  
  /* Card background gradient */
  .card-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, rgba(254, 226, 226, 0.3) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
  }
  
  .card:hover .card-bg-gradient {
    opacity: 1;
  }
  
  /* Icon container */
  .icon-container {
    position: relative;
    margin-bottom: 24px;
  }
  
  .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .card:hover .icon-wrapper {
    transform: scale(1.1);
  }
  
  .icon-wrapper svg {
    width: 48px;
    height: 48px;
    color: white;
  }
  
  .icon-decoration {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #fb923c;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .card:hover .icon-decoration {
    opacity: 1;
  }
  
  /* Content */
  .content {
    position: relative;
  }
  
  .card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
    transition: color 0.3s ease;
  }
  
  .card:hover .card-title {
    color: #f59e0b;
  }
  
  .card-description {
    color: #475569;
    line-height: 1.75;
  }
  
  /* Decorative circle */
  .decorative-circle {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: 2px solid #fecaca;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .card:hover .decorative-circle {
    opacity: 1;
  }
  
  /* Animation classes */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Stagger animation delays */
  .card[data-index="0"] {
    animation-delay: 0.1s;
  }
  .card[data-index="1"] {
    animation-delay: 0.2s;
  }
  .card[data-index="2"] {
    animation-delay: 0.3s;
  }
  