/* Primary Button - Modern Style */
.btn-component-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #007d32 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--heading-font);
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 147, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-component-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 147, 60, 0.5);
    background: linear-gradient(135deg, #00a844 0%, var(--accent-color) 100%) !important;
    color: #fff !important;
}

.btn-component-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-component-primary:hover::before {
    left: 100%;
}

/* Secondary Button - Gray Style matching Primary */
.btn-component-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4a4a4a 0%, #333333 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--heading-font);
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.btn-component-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #5a5a5a 0%, #4a4a4a 100%) !important;
    color: #fff !important;
}

.btn-component-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-component-secondary:hover::before {
    left: 100%;
}

/* Mobile - Full width buttons */
@media (max-width: 768px) {
  .btn-component-primary,
  .btn-component-secondary {
    width: 100%;
    padding: 14px 30px;
  }
}
