/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/


/*Whatsupp Button CSS*/
.btn-whatsapp {
  background: #1FBF75 !important;
  color: #fff;
  border: 1px solid #1FBF75;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-whatsapp:hover {
  background: #17a764;
}

.btn-inline {
  background: none;
  border: none;
  padding: 0;
  color: var(--cws-blue);
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.btn-inline::after {
  content: "→";
  transition: transform .2s ease;
}

.btn-inline:hover::after {
  transform: translateX(4px);
}

button,
a[class*="btn-"] {
  cursor: pointer;
}

/*Service Card hover CSS*/

.cws-service-card {
  border: 1px solid rgba(255,255,255,0.08); /* very subtle default */
}
@media (min-width: 992px) {

  .cws-service-card {
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .cws-service-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 0 0 1px #3B82F6,   /* thinner line */
      0 8px 16px rgba(0,0,0,0.15);
  }

  .cws-service-image img {
    transition: transform .35s ease;
  }

  .cws-service-card:hover .cws-service-image img {
    transform: scale(1.03);
  }
}

/*Problem Card hover CSS*/

@media (min-width: 992px) {
  .cws-problem-card {
    transition: 
      transform .2s ease,
      border-color .2s ease,
      box-shadow .2s ease;
  }

  .cws-problem-card:hover {
    transform: translateY(-4px);

    /* subtle base border shift */
    border-color: rgba(51, 102, 204, 0.6);

    /* THIS creates the crisp blue outline */
    box-shadow:
      0 0 0 1px #3B82F6,        /* sharp outline */
      0 6px 16px rgba(8, 35, 63, 0.08); /* soft shadow */
  }
}