 @import 'variables.css';
/* ==========================
   components.css
   ========================== */


span.span-color{
    color: var(--color-gold);
}


/* Buttons */
.btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
}

.btn:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
}



.btn-contact {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFC107;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    padding: 9px 40px 9px 20px;
    font-size: 16px;
    overflow: visible;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-contact .btn-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Floating icon on the right */
.btn-contact .icon-circle {
  position: absolute;
  top: 50%;
  right: -24px; /* move slightly outside the button */
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 3;
}


/* Optional: small button "press down" feel */
.btn-contact:hover {
  transform: translateY(2px);
}

.btn-contact.btn-solution{
  background:transparent;
  border: 2px solid var(--color-black);
}

.btn-contact.btn-solution .icon-circle{
background:var(--color-gold);
color:var(--color-white);
}
.btn-contact.btn-solution .icon-circle i {
    transform: rotate(137deg);
}

/* hover effects */
.btn-contact:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-contact:hover .icon-circle {
  transform: translateX(4px) rotate(45deg);
}





/* Cards */
.card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Form Fields */
input, textarea, select {
  width: fit-content;
  padding: var(--space-sm);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
}
.wpcf7-list-item {
    margin: unset !important;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    margin-top: 30px;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--color-primary);
  outline: none;
}


@media (max-width: 1024px) {
    a.btn-contact.btn-solution {
        display: block;
    }
}

@media (max-width: 768px){
  .btn-contact.btn-solution {
      width: 50%;
  }
}

@media (max-width: 526px) {
  h1 {
      font-size: var(--font-size-h3);
  }
}




