/* =====================================================
   SECTION LABEL
===================================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    color: #f97316;
    gap: 6px;
    
    font-weight: 700;
    font-size: 1.0rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-label::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #f97316;
    border-radius: 50%;
    flex-shrink: 0;
}

/* =====================================================
   ABOUT CARDS
===================================================== */
.about-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 32px;
    padding: 2rem;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 48px rgba(249, 115, 22, 0.10),
        0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(249, 115, 22, 0.18);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #ffedd5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-card:hover .icon-box {
    background: #fed7aa;
    transform: scale(1.1) rotate(-4deg);
}

.icon-orange {
    width: 28px;
    height: 28px;
    color: #ea580c;
}

.small-icon {
    width: 17px;
    height: 17px;
    color: #fff;
}

.card-title {
    color: #161616;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.card-text {
    color: #6b7280;
    line-height: 1.75;
}

.line {
    height: 1px;
    background: #f1f1f1;
    margin-bottom: 1.25rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff7ed;
    color: #ea580c;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ea580c;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid;
    border-radius: 16px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.category-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.category-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =====================================================
   CONTACT STRIP CARDS
===================================================== */
.contact-strip-card {
    border-radius: 1rem;
    padding: 1rem 1.25rem;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.contact-strip-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-3px);
}

/* =====================================================
   FLOATING WHATSAPP
===================================================== */
.floating-whatsapp {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 999;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 20px 0 6px;
      height: 52px;
      border-radius: 999px;

      /* Glass look: semi-transparent dark with blur */
      background: rgba(30, 30, 30, 0.55);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.4);

      color: #fff;
      text-decoration: none;
      transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
      animation: wa-pulse 3s ease-in-out infinite;
    }

    @keyframes wa-pulse {

      0%,
      100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.5);
      }

      50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
      }
    }

    .floating-whatsapp:hover {
      background: rgba(37, 211, 102, 0.85);
      backdrop-filter: blur(14px);
      border-color: rgba(255, 255, 255, 0.22);
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 16px 40px rgba(37, 211, 102, 0.3);
      animation: none;
    }

    /* Green icon circle */
    .wa-icon-wrap {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s;
    }

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.toast {
  min-width: 280px;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 20px;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast-visible {
  opacity: 1;
  transform: translateX(0);
}

.toast-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.toast-error {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.toast-title {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.toast-message {
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.95;
}

.loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #000000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

    .floating-whatsapp:hover .wa-icon-wrap {
      background: rgba(255, 255, 255, 0.25);
    }

    .wa-icon-wrap svg {
      width: 20px;
      height: 20px;
    }

    /* Text label inside button */
    .wa-text {
      display: flex;
      flex-direction: column;
    }

    .wa-text .wa-label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1;
      margin-bottom: 2px;
      letter-spacing: 0.04em;
    }

    .wa-text .wa-action {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      line-height: 1;
      letter-spacing: 0.01em;
    }

    /* Mobile: icon-only */
    @media(max-width:768px) {
      .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        padding: 0;
        width: 52px;
        justify-content: center;
      }

      .wa-text {
        display: none;
      }
    }