
  .contact-card {
    background: #FFFFFF;
    border: 1px solid #F0E4C8; /* light yellow border like screenshot */
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.06);
  }

  .form-control, .form-select {
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid #D7D7D7;
  }

  .form-control:focus, .form-select:focus {
    border-color: #0F3E2B;
    box-shadow: 0 0 0 0.1rem rgba(15, 62, 43, 0.2);
  }

  .whatsapp-btn {
    background: #EFB943 !important;
    color: #114C39 !important;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 8px;
  }

  .contact-info i {
    color: #114C39;
    margin-right: 8px;
    font-size: 1.1rem;
  }

  h5 {
    font-size: 22px;
  }
.paw-diagonal {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 40px;
}

.paw {
  height: 26px;
  position: absolute;  /* ← Needed for top/left positioning */
}

/* Left paw */
.paw-1 {
  left: 0;
  top: 5px;
  transform: rotate(-10deg);
}

/* Right paw */
.paw-2 {
  right: 0;
  top: 0;
  transform: rotate(15deg);
}


.contact-info {
    display: flex;             /* Makes icon + text side by side */
    align-items: center;       /* Vertically centers text with icon */
    gap: 12px;                 /* Space between icon and text */
    color: #114C39;
}

.contact-info.multi-line {
    align-items: flex-start;   /* Align icon with top of multi-line text */
}

.contact-icon {
    background: #E7F6EE;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;            /* Prevents icon from shrinking */
}

.contact-icon img {
    width: 30px;               /* Adjust icon size */
    height: 30px;
    object-fit: contain;
}
/* Contact Cards */
.contact-card,
.contact-info-card {
  background: #FFFFFF;                /* White background */
  padding: 45px 40px;                 /* Inner spacing like .who-card */
  border-radius: 18px;                /* Rounded corners */
  border: 1px solid #F9E8CE;         /* Soft golden border */
  box-shadow:
    0 4px 12px rgba(0,0,0,0.05),
    0 20px 40px rgba(232,168,32,0.35); /* Strong golden glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

/* Optional hover effect */
.contact-card:hover,
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.08),
    0 25px 50px rgba(232,168,32,0.45);
}

/* Inputs focus effect (optional) */
.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: #E8A820;
  box-shadow: 0 0 8px rgba(232,168,32,0.25);
}

