/* ==========================================================================
   BUTTONS COMPONENT - LOGO GREEN COLOR
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.05rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}

.btn:focus {
  outline: 2px solid rgba(0, 0, 0, 0.08);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(31, 181, 122, 0.12);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.03);
}

.btn-primary-light {
  padding: 14px 32px;
  background: #39a63d;
  color: #fff;
  border: 2px solid #39a63d;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary-light:hover {
  background: #2d8532;
  border-color: #2d8532;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(57, 166, 61, 0.3);
}

.btn-outline-light {
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-view-project {
  display: inline-block;
  padding: 12px 30px;
  background: #39a63d;
  color: #fff !important;
  text-decoration: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(57, 166, 61, 0.25);
}

.btn-view-project:hover {
  background: #2d8532;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(57, 166, 61, 0.35);
  color: #fff !important;
}

.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  background: #1a1f36;
  color: #fff !important;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #1a1f36;
}

.btn-cta:hover {
  background: #0f1320;
  border-color: #0f1320;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 31, 54, 0.3);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: #fff;
  color: #0a1436;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  background: #39a63d;
  color: #fff;
}

.submit-btn,
.wpcf7-form .wpcf7-submit {
  align-self: flex-start;
  padding: 14px 40px;
  background: #0b2b47;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 43, 71, 0.2);
}

.submit-btn:hover,
.wpcf7-form .wpcf7-submit:hover {
  background: #0a1f35;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 43, 71, 0.3);
}

.apply-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31, 181, 122, 0.1);
  color: var(--accent);
  transition: all 0.2s ease;
  text-decoration: none;
}

.apply-link:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-light,
  .btn-outline-light {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-button {
    padding: 12px 28px;
    font-size: 1rem;
  }

  .submit-btn,
  .wpcf7-form .wpcf7-submit {
    width: 100%;
    text-align: center;
  }
}